Go to file
interp 4063467f96 * Files made fit for scsh 0.6
* Added further features from Eric Marsden:

   * ftp.scm -- a module for transfering files using the FTP protocol

   * pop3.scm -- a module for accessing a maildrop using the POP3
     protocol

   * netrc.scm -- a module for parsing users' ~/.netrc files to
     obtain authentication information

   * nettime.scm -- a module for obtaining the time from remote
     machines, using either the Time (rfc868) or the NetTime (rfc867)
     protocols.

Unfortunetaly,
pop3.scm needs further revision because of undefined procedures and
netrc.scm needs further revision.

Nevertheless they were added because, beside the problems, they fit
scsh 0.6.
2001-09-12 18:53:50 +00:00
doc ftpd.scm: corrected typo; ftpd.scm.doc: doc for ftpd.scm 2001-08-09 10:55:08 +00:00
.gitignore *** empty log message *** 2000-09-26 14:35:26 +00:00
COPYING *** empty log message *** 2000-09-26 14:35:26 +00:00
ChangeLog *** empty log message *** 2000-09-26 14:35:26 +00:00
Makefile Sync with the WSI repository 2000-09-26 15:32:01 +00:00
Readme * Files made fit for scsh 0.6 2001-09-12 18:53:50 +00:00
cgi-script.scm sunet can be used with scsh 0.6 now (hopefully). 2001-08-20 11:31:03 +00:00
cgi-server.scm * Files made fit for scsh 0.6 2001-09-12 18:53:50 +00:00
crlf-io.scm thread-support merged 2001-04-27 16:19:34 +00:00
ecm-utilities.scm * Files made fit for scsh 0.6 2001-09-12 18:53:50 +00:00
format-net.scm * Files made fit for scsh 0.6 2001-09-12 18:53:50 +00:00
ftp.scm * Files made fit for scsh 0.6 2001-09-12 18:53:50 +00:00
ftpd.scm ftpd.scm: corrected typo; ftpd.scm.doc: doc for ftpd.scm 2001-08-09 10:55:08 +00:00
handle-fatal-error.scm Sync with the WSI repository 2000-09-26 15:32:01 +00:00
htmlout.scm sunet can be used with scsh 0.6 now (hopefully). 2001-08-20 11:31:03 +00:00
http-top.scm *** empty log message *** 2000-09-26 14:35:26 +00:00
httpd-access-control.scm Sync with the WSI repository 2000-09-26 15:32:01 +00:00
httpd-core.scm sunet can be used with scsh 0.6 now (hopefully). 2001-08-20 11:31:03 +00:00
httpd-error.scm Sync with the WSI repository 2000-09-26 15:32:01 +00:00
httpd-handlers.scm * Files made fit for scsh 0.6 2001-09-12 18:53:50 +00:00
info-gateway.scm * Files made fit for scsh 0.6 2001-09-12 18:53:50 +00:00
ls.scm * Files made fit for scsh 0.6 2001-09-12 18:53:50 +00:00
modules.scm * Files made fit for scsh 0.6 2001-09-12 18:53:50 +00:00
netrc.scm * Files made fit for scsh 0.6 2001-09-12 18:53:50 +00:00
nettime.scm * Files made fit for scsh 0.6 2001-09-12 18:53:50 +00:00
parse-forms.scm thread-support merged 2001-04-27 16:19:34 +00:00
pop3.scm * Files made fit for scsh 0.6 2001-09-12 18:53:50 +00:00
program-modules.scm *** empty log message *** 2000-09-26 14:35:26 +00:00
rfc822.scm * Files made fit for scsh 0.6 2001-09-12 18:53:50 +00:00
rman-gateway.scm * Files made fit for scsh 0.6 2001-09-12 18:53:50 +00:00
scheme-program-server.scm sunet can be used with scsh 0.6 now (hopefully). 2001-08-20 11:31:03 +00:00
server.scm *** empty log message *** 2000-09-26 14:35:26 +00:00
seval.scm sunet can be used with scsh 0.6 now (hopefully). 2001-08-20 11:31:03 +00:00
smtp.scm sunet can be used with scsh 0.6 now (hopefully). 2001-08-20 11:31:03 +00:00
stringhax.scm * finished adding syslogs to ftpd 2001-07-13 17:21:39 +00:00
su-httpd.txt *** empty log message *** 2000-09-26 14:35:26 +00:00
uri.scm * Files made fit for scsh 0.6 2001-09-12 18:53:50 +00:00
url.scm * Files made fit for scsh 0.6 2001-09-12 18:53:50 +00:00

Readme

The SU Net package, version 1.0
===============================

This directory contains my code for doing Net hacking from Scheme/scsh.
It includes:
    An smtp client library.
    	Forge mail from the comfort of your own Scheme process.

    rfc822 header library
    	Read email-style headers. Useful in several contexts (smtp, http, etc.)

    Simple structured HTML output library
    	Balanced delimiters, etc. htmlout.scm.

    HTTP server library
    	This is a complete implementation of an HTTP 1.0 server.
    	The server is very extensible, via a mechanism called "path handlers."
    	The library includes other standalone libraries that may be of use:
    	    + URI and URL parsers and unparsers.
    	    + A library to help writing CGI scripts in Scheme.
    	    + Server extensions for interfacing to CGI scripts.
    	    + Server extensions for uploading Scheme code.

-------------------------------------------------------------------------------
Note well:
- You can't do serious programming in Scheme within the bounds of R4RS.
  I work in Scheme 48 and scsh. Every file does have a comment header
  describing its non-R4RS dependencies, should you decide to try porting
  it to another Scheme.

- Only simple documentation, but my code is written in my usual style -- 
  voluminously commented.

    -Olin
-------------------------------------------------------------------------------
Note further:

The net package is currently being maintained by Mike Sperber
<sperber@informatik.uni-tuebingen.de>.

My main focus for further development is on making the HTTP server
into a realistic full-blown package, but I'll gladly accept patches
and suggestions for the other parts of the net package.

    -Mike

And: See the doc directory for further informations.