diff options
author | P. J. McDermott <pjm@nac.net> | 2013-09-30 13:46:59 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-09-30 13:46:59 (EDT) |
commit | cf29488c587334874cf491a01a1f74ba3ac7de45 (patch) | |
tree | 45235a0b54955394d6817515cffb46b6ef0d9217 /projects/ssic | |
parent | 512a14145021dc6304f0e03a7a9386f4fca0d793 (diff) | |
parent | 6bef1357e5906d92bba0e836be5880acf47a15cc (diff) | |
download | www-cf29488c587334874cf491a01a1f74ba3ac7de45.zip www-cf29488c587334874cf491a01a1f74ba3ac7de45.tar.gz www-cf29488c587334874cf491a01a1f74ba3ac7de45.tar.bz2 |
Merge branch 'new'.
Diffstat (limited to 'projects/ssic')
-rw-r--r-- | projects/ssic/index.mdwn | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/projects/ssic/index.mdwn b/projects/ssic/index.mdwn new file mode 100644 index 0000000..fcb4fee --- /dev/null +++ b/projects/ssic/index.mdwn @@ -0,0 +1,36 @@ +<!--#set var="title" value="ssic (Server Side Includes Compiler)" --> +<!--#include virtual="/includes/header.html" --> + +This is ssic, a Server Side Includes Compiler. + +ssic processes HTML documents with SSI directives formatted as SGML comments. +It can be used to process documents without an HTTP server for local browsing or +to generate static HTML documents to be efficiently served by an HTTP server. +Documents could even be preprocessed, e.g. by a Markdown processor, before being +parsed with ssic. + +The set of commands, tags, and variables supported by ssic is mostly a superset +of those supported by the old [NCSA HTTPd][ncsa-httpd-ssi] and a subset of those +supported by [Apache HTTPd's `mod_include`][mod-include-ssi]. + +ssic uses the `CGI::SSI` Perl module for directive processing. + +[ncsa-httpd-ssi]: http://web.archive.org/web/19971210170837/http://hoohoo.ncsa.uiuc.edu/docs/tutorials/includes.html +[mod-include-ssi]: http://httpd.apache.org/docs/2.2/mod/mod_include.html + + +Downloading +=========== + +ssic is maintained in a [Git repository][repo-http], which can be cloned from +`git://git.pehjota.net/ssic/ssic.git`. + +Debian packaging for ssic is maintained in a separate [Git +repository][repo-debian-http], which can be cloned from +`git://git.pehjota.net/ssic/ssic.debian.git`. Prebuilt packages are not yet +available. + +[repo-http]: http://git.pehjota.net/ssic/ssic.git/ +[repo-debian-http]: http://git.pehjota.net/ssic/ssic.debian.git/ + +<!--#include virtual="/includes/footer.html" --> |