mirror of
https://github.com/lunarmodules/luasocket.git
synced 2024-11-08 06:18:21 +01:00
Releasing the beta-beta.
This commit is contained in:
parent
ae898616d1
commit
6058d1838e
2
TODO
2
TODO
@ -1,6 +1,6 @@
|
|||||||
take a look at DB's smtp patch
|
take a look at DB's smtp patch
|
||||||
|
|
||||||
optmize aux_getgroupudata
|
optmize aux_getgroupudata (Mike idea)
|
||||||
make aux_newclass receive upvalues
|
make aux_newclass receive upvalues
|
||||||
use one upvalue per string name of class/group
|
use one upvalue per string name of class/group
|
||||||
make aux_checkgroup by upvalue (faster)
|
make aux_checkgroup by upvalue (faster)
|
||||||
|
@ -20,6 +20,13 @@ converted into a library, similar to the HTTP and FTP libraries, that can
|
|||||||
be used from within any luasocket application. Take a look on the source
|
be used from within any luasocket application. Take a look on the source
|
||||||
code and you will be able to figure out how to use it.
|
code and you will be able to figure out how to use it.
|
||||||
|
|
||||||
|
lp.lua -- LPD client
|
||||||
|
|
||||||
|
The lp.lua module implements the client part of the Line Printer Daemon
|
||||||
|
protocol, used to print files on Unix machines. It is courtesy of David
|
||||||
|
Burgess and I heard he would be the one supporting it, even after I messed
|
||||||
|
with it. See the source code and the lpr.lua in the examples directory.
|
||||||
|
|
||||||
get.lua -- file retriever
|
get.lua -- file retriever
|
||||||
|
|
||||||
This little program is a client that uses the FTP and HTTP code to
|
This little program is a client that uses the FTP and HTTP code to
|
||||||
|
@ -29,7 +29,7 @@ EXAMPLES = \
|
|||||||
eol.lua \
|
eol.lua \
|
||||||
listener.lua \
|
listener.lua \
|
||||||
qp.lua \
|
qp.lua \
|
||||||
lp.lua \
|
lpr.lua \
|
||||||
talker.lua \
|
talker.lua \
|
||||||
tinyirc.lua
|
tinyirc.lua
|
||||||
|
|
||||||
@ -38,6 +38,9 @@ ETC = \
|
|||||||
dict.lua \
|
dict.lua \
|
||||||
get.lua \
|
get.lua \
|
||||||
lua.lua \
|
lua.lua \
|
||||||
|
unix.c \
|
||||||
|
unix.h \
|
||||||
|
lp.lua \
|
||||||
tftp.lua
|
tftp.lua
|
||||||
|
|
||||||
CORE = \
|
CORE = \
|
||||||
@ -74,8 +77,6 @@ CORE = \
|
|||||||
MAKE = \
|
MAKE = \
|
||||||
makefile.Darwin \
|
makefile.Darwin \
|
||||||
makefile.Linux \
|
makefile.Linux \
|
||||||
luasocket.export \
|
|
||||||
mime.export \
|
|
||||||
luasocket.sln \
|
luasocket.sln \
|
||||||
luasocket.vcproj \
|
luasocket.vcproj \
|
||||||
mime.vcproj
|
mime.vcproj
|
||||||
@ -103,6 +104,8 @@ dist:
|
|||||||
mkdir -p $(DIST)/etc
|
mkdir -p $(DIST)/etc
|
||||||
mkdir -p $(DIST)/lua
|
mkdir -p $(DIST)/lua
|
||||||
mkdir -p $(DIST)/manual
|
mkdir -p $(DIST)/manual
|
||||||
|
cp -vf FIX $(DIST)
|
||||||
|
cp -vf TODO $(DIST)
|
||||||
cp -vf $(CORE) $(DIST)
|
cp -vf $(CORE) $(DIST)
|
||||||
cp -vf README $(DIST)
|
cp -vf README $(DIST)
|
||||||
cp -vf NEW $(DIST)
|
cp -vf NEW $(DIST)
|
||||||
|
@ -19,11 +19,12 @@ printed by listen.lua.
|
|||||||
These are tiny programs that perform Base64, Quoted-Printable and
|
These are tiny programs that perform Base64, Quoted-Printable and
|
||||||
end-of-line marker conversions.
|
end-of-line marker conversions.
|
||||||
|
|
||||||
lp.lua -- lp client
|
lpr.lua -- lpr client
|
||||||
|
|
||||||
This is a cool program written by David Burgess to print files using the
|
This is a cool program written by David Burgess to print files using the
|
||||||
Line Printer Daemon protocol, widely used in Unix machines.
|
Line Printer Daemon protocol, widely used in Unix machines. It uses the
|
||||||
Just run 'lua lp.lua <filename> queue=<printername>' and the file will print!
|
lp.lua implementation, in the etc directory. Just run
|
||||||
|
'lua lpr.lua <filename> queue=<printername>' and the file will print!
|
||||||
|
|
||||||
cddb.lua -- CDDB client
|
cddb.lua -- CDDB client
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user