Software /
code /
verse
Annotate
squishy @ 233:b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sun, 27 Nov 2011 21:40:42 +0000 |
parent | 227:31019cb93d59 |
child | 238:9b6fca5d9a02 |
rev | line source |
---|---|
26 | 1 Output "verse.lua" |
0 | 2 |
3 -- Verse-specific versions of libraries | |
4 Module "util.encodings" "libs/encodings.lua" | |
131
1c30dd51ca6b
squishy: Add util.hashes [libs/hashes.lua]
Matthew Wild <mwild1@gmail.com>
parents:
123
diff
changeset
|
5 Module "util.hashes" "libs/hashes.lua" |
0 | 6 Module "util.logger" "libs/logger.lua" |
136
3a85c62f544c
squishy: Re-organise and add net.dns, net.adns and util.ztact
Matthew Wild <mwild1@gmail.com>
parents:
134
diff
changeset
|
7 Module "util.sha1" "util/sha1.lua" |
3a85c62f544c
squishy: Re-organise and add net.dns, net.adns and util.ztact
Matthew Wild <mwild1@gmail.com>
parents:
134
diff
changeset
|
8 Module "lib.adhoc" "libs/adhoc.lib.lua" |
0 | 9 |
10 -- Prosody libraries | |
158
068176069dfa
squishy: Add --prosody option to specify a path to a Prosody checkout to use when squishing
Matthew Wild <mwild1@gmail.com>
parents:
157
diff
changeset
|
11 if not GetOption("prosody") then |
068176069dfa
squishy: Add --prosody option to specify a path to a Prosody checkout to use when squishing
Matthew Wild <mwild1@gmail.com>
parents:
157
diff
changeset
|
12 AutoFetchURL "http://prosody.im/tip/?" |
068176069dfa
squishy: Add --prosody option to specify a path to a Prosody checkout to use when squishing
Matthew Wild <mwild1@gmail.com>
parents:
157
diff
changeset
|
13 else |
068176069dfa
squishy: Add --prosody option to specify a path to a Prosody checkout to use when squishing
Matthew Wild <mwild1@gmail.com>
parents:
157
diff
changeset
|
14 AutoFetchURL(GetOption("prosody").."/?") |
068176069dfa
squishy: Add --prosody option to specify a path to a Prosody checkout to use when squishing
Matthew Wild <mwild1@gmail.com>
parents:
157
diff
changeset
|
15 end |
0 | 16 |
17 Module "util.stanza" "util/stanza.lua" | |
18 | 18 Module "util.timer" "util/timer.lua" |
0 | 19 Module "util.termcolours" "util/termcolours.lua" |
24
db0ed736785a
squishy: Add util.uuid dependency
Matthew Wild <mwild1@gmail.com>
parents:
19
diff
changeset
|
20 Module "util.uuid" "util/uuid.lua" |
136
3a85c62f544c
squishy: Re-organise and add net.dns, net.adns and util.ztact
Matthew Wild <mwild1@gmail.com>
parents:
134
diff
changeset
|
21 Module "net.dns" "net/dns.lua" |
3a85c62f544c
squishy: Re-organise and add net.dns, net.adns and util.ztact
Matthew Wild <mwild1@gmail.com>
parents:
134
diff
changeset
|
22 Module "net.adns" "net/adns.lua" |
30
9c96318913f7
Revert module names throughout to their Prosody equivalents
Matthew Wild <mwild1@gmail.com>
parents:
26
diff
changeset
|
23 Module "net.server" "net/server_select.lua" |
161
b177bcea2006
squishy, verse.client, verse.component, verse.bosh: Port to util.xmppstream instead of xmlhandlers which has been removed from Prosody. Also remove util.ztact from squishy for the same reason.
Matthew Wild <mwild1@gmail.com>
parents:
158
diff
changeset
|
24 Module "util.xmppstream" "util/xmppstream.lua" |
30
9c96318913f7
Revert module names throughout to their Prosody equivalents
Matthew Wild <mwild1@gmail.com>
parents:
26
diff
changeset
|
25 Module "util.jid" "util/jid.lua" |
9c96318913f7
Revert module names throughout to their Prosody equivalents
Matthew Wild <mwild1@gmail.com>
parents:
26
diff
changeset
|
26 Module "util.events" "util/events.lua" |
123
8a079aa70b84
util.dataforms, squishy: Add util.dataforms library
Matthew Wild <mwild1@gmail.com>
parents:
116
diff
changeset
|
27 Module "util.dataforms" "util/dataforms.lua" |
214
78ae20c875cd
squishy: Add a convenience function for plugins
Kim Alvefur <zash@zash.se>
parents:
208
diff
changeset
|
28 Module "util.caps" "util/caps.lua" |
227
31019cb93d59
util.vcard: Add util for converting vCard3 to/from XEP 54
Kim Alvefur <zash@zash.se>
parents:
225
diff
changeset
|
29 Module "util.vcard" "util/vcard.lua" |
116
151c8cc776df
verse.plugins.adhoc: XEP-0050 Ad-hoc commands plugin
Matthew Wild <mwild1@gmail.com>
parents:
114
diff
changeset
|
30 |
14 | 31 -- Verse plugins |
233
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
32 plugins = { |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
33 -- Login |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
34 "tls", "sasl", "bind", "session", "legacy", "compression"; |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
35 -- Reliability |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
36 "smacks", "keepalive"; |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
37 -- Queries |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
38 "disco", "version", "ping", "uptime"; |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
39 -- Privacy control |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
40 "blocking"; |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
41 -- Jingle / file transfer |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
42 "jingle", "jingle_ft", "jingle_s5b", "proxy65", "jingle_ibb"; |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
43 -- Pubsub |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
44 "pubsub", "pep"; |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
45 -- Command and control |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
46 "adhoc"; |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
47 -- Basics |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
48 "presence", "private", "roster", "register"; |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
49 -- MUC |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
50 "groupchat"; |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
51 -- vCard |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
52 "vcard", "vcard_update"; |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
53 -- Carbons |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
54 "carbons"; |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
55 } |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
56 |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
57 for _, plugin in ipairs(plugins) do |
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
58 Module("verse.plugins."..plugin)("plugins/"..plugin..".lua") |
214
78ae20c875cd
squishy: Add a convenience function for plugins
Kim Alvefur <zash@zash.se>
parents:
208
diff
changeset
|
59 end |
233
b5fd3292bdbd
squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list
Matthew Wild <mwild1@gmail.com>
parents:
227
diff
changeset
|
60 |
157
7c47e5639c00
squishy: Add util.httpstream. Now also squishes bosh by default
Matthew Wild <mwild1@gmail.com>
parents:
156
diff
changeset
|
61 Module "net.httpclient_listener" "net/httpclient_listener.lua" |
7c47e5639c00
squishy: Add util.httpstream. Now also squishes bosh by default
Matthew Wild <mwild1@gmail.com>
parents:
156
diff
changeset
|
62 Module "net.connlisteners" "net/connlisteners.lua" |
7c47e5639c00
squishy: Add util.httpstream. Now also squishes bosh by default
Matthew Wild <mwild1@gmail.com>
parents:
156
diff
changeset
|
63 Module "util.httpstream" "util/httpstream.lua" |
7c47e5639c00
squishy: Add util.httpstream. Now also squishes bosh by default
Matthew Wild <mwild1@gmail.com>
parents:
156
diff
changeset
|
64 Module "net.http" "net/http.lua" |
90
aa0b78053cec
squishy: Add --with-bosh option to squish with verse.bosh and necessarylibraries
Matthew Wild <mwild1@gmail.com>
parents:
80
diff
changeset
|
65 |
157
7c47e5639c00
squishy: Add util.httpstream. Now also squishes bosh by default
Matthew Wild <mwild1@gmail.com>
parents:
156
diff
changeset
|
66 Module "verse.bosh" "bosh.lua" |
90
aa0b78053cec
squishy: Add --with-bosh option to squish with verse.bosh and necessarylibraries
Matthew Wild <mwild1@gmail.com>
parents:
80
diff
changeset
|
67 |
134
2101acbb27c4
squishy: Use --internal-bit-module to squish with the pure-Lua bit library
Matthew Wild <mwild1@gmail.com>
parents:
131
diff
changeset
|
68 if GetOption "internal-bit-module" then |
2101acbb27c4
squishy: Use --internal-bit-module to squish with the pure-Lua bit library
Matthew Wild <mwild1@gmail.com>
parents:
131
diff
changeset
|
69 Module "bit" "libs/bit.lua" |
2101acbb27c4
squishy: Use --internal-bit-module to squish with the pure-Lua bit library
Matthew Wild <mwild1@gmail.com>
parents:
131
diff
changeset
|
70 end |
2101acbb27c4
squishy: Use --internal-bit-module to squish with the pure-Lua bit library
Matthew Wild <mwild1@gmail.com>
parents:
131
diff
changeset
|
71 |
26 | 72 Module "verse.client" "client.lua" |
138
35971523c8fc
squishy: Add verse.component
Matthew Wild <mwild1@gmail.com>
parents:
136
diff
changeset
|
73 Module "verse.component" "component.lua" |
0 | 74 |
75 -- Main verse file | |
76 Main "init.lua" |