squishy

Sun, 28 Nov 2010 14:23:44 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Sun, 28 Nov 2010 14:23:44 +0000
changeset 8
b8d3938d9307
parent 7
1c68b0c3d3b2
permissions
-rw-r--r--

COPYING: Add MIT/X11 licence

0
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
1
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
2 -- Dummy logger, set LAHTTP_DEBUG environment var to enable logging
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
3 Module "util.logger" "libs/logger.lua"
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
4
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
5 -- Optional helper library for managing multiple downloads
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
6 Module "multihttp" "libs/multihttp.lua"
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
7
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
8 AutoFetchURL "http://prosody.im/tip/?"
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
9
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
10 Module "net.server" "net/server_select.lua"
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
11 Module "net.httpclient_listener" "net/httpclient_listener.lua"
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
12 Module "net.connlisteners" "net/connlisteners.lua"
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
13 Module "net.http" "net/http.lua"
7
1c68b0c3d3b2 squishy: Add util.httpstream (now contains the HTTP parsing from net.http)
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
14 Module "util.httpstream" "util/httpstream.lua"
0
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
15
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
16 -- Required by multihttp, but otherwise not required (though nice to have)
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
17 Module "util.timer" "util/timer.lua"
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
18
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
19
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
20 Main "lahttp.in.lua"
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
21
6e60da4625db Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
22 Output "lahttp.lua";

mercurial