From aventimiglia at common-lisp.net Tue Nov 25 15:55:35 2003 From: aventimiglia at common-lisp.net (Anthony Ventimiglia) Date: Tue, 25 Nov 2003 10:55:35 -0500 Subject: [bayescl-cvs] CVS update: Module improted: bayescl Message-ID: Update of /project/bayescl/cvsroot/bayescl In directory common-lisp.net:/tmp/cvs-serv1063 Log Message: Initial Transfer to Common-lisp.net repository Status: Vendor Tag: aventimiglia Release Tags: start N bayescl/filter.lisp N bayescl/bayescl.asd N bayescl/bucket.lisp N bayescl/package.lisp No conflicts created by this import Date: Tue Nov 25 10:55:35 2003 Author: aventimiglia New module bayescl added From aventimiglia at common-lisp.net Tue Nov 25 16:12:53 2003 From: aventimiglia at common-lisp.net (Anthony Ventimiglia) Date: Tue, 25 Nov 2003 11:12:53 -0500 Subject: [bayescl-cvs] CVS update: bayescl/TODO bayescl/README bayescl/COPYING bayescl/BUGS Message-ID: Update of /project/bayescl/cvsroot/bayescl In directory common-lisp.net:/tmp/cvs-serv8593 Added Files: TODO README COPYING BUGS Log Message: Added some required text files Date: Tue Nov 25 11:12:53 2003 Author: aventimiglia From aventimiglia at common-lisp.net Tue Nov 25 21:51:35 2003 From: aventimiglia at common-lisp.net (Anthony Ventimiglia) Date: Tue, 25 Nov 2003 16:51:35 -0500 Subject: [bayescl-cvs] CVS update: Module improted: public_html Message-ID: Update of /project/bayescl/cvsroot/public_html In directory common-lisp.net:/tmp/cvs-serv26150 Log Message: Initial Web site repository. Status: Vendor Tag: aventimiglia Release Tags: START N public_html/project.dtd N public_html/index.xml No conflicts created by this import Date: Tue Nov 25 16:51:35 2003 Author: aventimiglia New module public_html added From aventimiglia at common-lisp.net Tue Nov 25 22:09:53 2003 From: aventimiglia at common-lisp.net (Anthony Ventimiglia) Date: Tue, 25 Nov 2003 17:09:53 -0500 Subject: [bayescl-cvs] CVS update: public_html/project2html.xsl public_html/Makefile Message-ID: Update of /project/bayescl/cvsroot/public_html In directory common-lisp.net:/tmp/cvs-serv1652 Added Files: project2html.xsl Makefile Log Message: Working on the XSLT, I think I'll eventually make this a transformation into an intermediate XML format, which will then be formatted asd HTML Date: Tue Nov 25 17:09:53 2003 Author: aventimiglia From aventimiglia at common-lisp.net Wed Nov 26 19:08:22 2003 From: aventimiglia at common-lisp.net (Anthony Ventimiglia) Date: Wed, 26 Nov 2003 14:08:22 -0500 Subject: [bayescl-cvs] CVS update: public_html/webpage.dtd public_html/web2html.xsl public_html/project2web.xsl public_html/index.xml public_html/Makefile public_html/project2html.xsl Message-ID: Update of /project/bayescl/cvsroot/public_html In directory common-lisp.net:/tmp/cvs-serv7549 Modified Files: index.xml Makefile Added Files: webpage.dtd web2html.xsl project2web.xsl Removed Files: project2html.xsl Log Message: Working towards a generic XML application that can be used to describe and document projects. Projects are described and summarized with project.dtd Wep pages are described with webpage.dtd The Stylesheets as of now are used to convert project descriptions to HTML. I will probably make a separated dtd for documentation and use a stylesheet to convert the documentation to webpage.dtd xml Date: Wed Nov 26 14:08:21 2003 Author: aventimiglia Index: public_html/index.xml diff -u public_html/index.xml:1.1.1.1 public_html/index.xml:1.2 --- public_html/index.xml:1.1.1.1 Tue Nov 25 16:51:35 2003 +++ public_html/index.xml Wed Nov 26 14:08:21 2003 @@ -6,8 +6,13 @@ Bayescl is a Bayesian Pattern Filtering Library for Common Lisp. - - + + + Index: public_html/Makefile diff -u public_html/Makefile:1.1 public_html/Makefile:1.2 --- public_html/Makefile:1.1 Tue Nov 25 17:09:52 2003 +++ public_html/Makefile Wed Nov 26 14:08:21 2003 @@ -1,14 +1,33 @@ -# $Id: Makefile,v 1.1 2003/11/25 22:09:52 aventimiglia Exp $ +# $Id: Makefile,v 1.2 2003/11/26 19:08:21 aventimiglia Exp $ APPLYXSLT=/usr/bin/sabcmd VALIDATE=/usr/bin/xmlproc_val - VFLAGS=-rawxml -PROJECT_SHEET=project2html.xsl +PROJECT_SOURCES=index.xml + +PROJECT2WEB_XSL=project2web.xsl +WEB2HTML_XSL=web2html.xsl + +WEB_SOURCES=index.web.xml + +HTML_PAGES=index.html + +CLEAN_TARGETS=index.web.xml $(HTML_PAGES) + +all:$(HTML_PAGES) + +%.web.xml:%.xml $(PROJECT2WEB_XSL) + $(APPLYXSLT) $(PROJECT2WEB_XSL) $< $@ + +%.html:%.web.xml + $(APPLYXSLT) $(WEB2HTML_XSL) $< $@ + +clean: + for f in $(CLEAN_TARGETS); do test -f $$f && rm -v $$f; done + + -index.html: index.xml $(PROJECT_SHEET) - $(APPLYXSLT) $(PROJECT_SHEET) $< $@ From aventimiglia at common-lisp.net Wed Nov 26 21:27:35 2003 From: aventimiglia at common-lisp.net (Anthony Ventimiglia) Date: Wed, 26 Nov 2003 16:27:35 -0500 Subject: [bayescl-cvs] CVS update: public_html/webpage.css public_html/webpage.dtd public_html/web2html.xsl public_html/Makefile Message-ID: Update of /project/bayescl/cvsroot/public_html In directory common-lisp.net:/tmp/cvs-serv1188 Modified Files: webpage.dtd web2html.xsl Makefile Added Files: webpage.css Log Message: DTD's and stylesheets are finished, I think I may scrap the whole project Idea and go for a simple one Sheet transform. Date: Wed Nov 26 16:27:35 2003 Author: aventimiglia Index: public_html/webpage.dtd diff -u public_html/webpage.dtd:1.1 public_html/webpage.dtd:1.2 --- public_html/webpage.dtd:1.1 Wed Nov 26 14:08:21 2003 +++ public_html/webpage.dtd Wed Nov 26 16:27:35 2003 @@ -1,4 +1,4 @@ - + @@ -10,4 +10,6 @@ - \ No newline at end of file + + + \ No newline at end of file Index: public_html/web2html.xsl diff -u public_html/web2html.xsl:1.1 public_html/web2html.xsl:1.2 --- public_html/web2html.xsl:1.1 Wed Nov 26 14:08:21 2003 +++ public_html/web2html.xsl Wed Nov 26 16:27:35 2003 @@ -8,8 +8,48 @@ <xsl:value-of select="@title" /> + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ + + + + + Index: public_html/Makefile diff -u public_html/Makefile:1.2 public_html/Makefile:1.3 --- public_html/Makefile:1.2 Wed Nov 26 14:08:21 2003 +++ public_html/Makefile Wed Nov 26 16:27:35 2003 @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 2003/11/26 19:08:21 aventimiglia Exp $ +# $Id: Makefile,v 1.3 2003/11/26 21:27:35 aventimiglia Exp $ APPLYXSLT=/usr/bin/sabcmd VALIDATE=/usr/bin/xmlproc_val @@ -20,7 +20,7 @@ %.web.xml:%.xml $(PROJECT2WEB_XSL) $(APPLYXSLT) $(PROJECT2WEB_XSL) $< $@ -%.html:%.web.xml +%.html:%.web.xml $(WEB2HTML_XSL) $(APPLYXSLT) $(WEB2HTML_XSL) $< $@ clean: From aventimiglia at common-lisp.net Wed Nov 26 21:28:08 2003 From: aventimiglia at common-lisp.net (Anthony Ventimiglia) Date: Wed, 26 Nov 2003 16:28:08 -0500 Subject: [bayescl-cvs] CVS update: public_html/webpage.css Message-ID: Update of /project/bayescl/cvsroot/public_html In directory common-lisp.net:/tmp/cvs-serv1364 Modified Files: webpage.css Log Message: Oops forgot to fix the CSS Date: Wed Nov 26 16:28:08 2003 Author: aventimiglia Index: public_html/webpage.css diff -u public_html/webpage.css:1.1 public_html/webpage.css:1.2 --- public_html/webpage.css:1.1 Wed Nov 26 16:27:35 2003 +++ public_html/webpage.css Wed Nov 26 16:28:08 2003 @@ -1,5 +1,5 @@ /* -*- c -*- */ -/* $Id: webpage.css,v 1.1 2003/11/26 21:27:35 aventimiglia Exp $ +/* $Id: webpage.css,v 1.2 2003/11/26 21:28:08 aventimiglia Exp $ Stylesheet for my Common-lisp project pages. */ @@ -73,6 +73,5 @@ float: left; clear: left; margin: 5em 0 5em 4em; - border: 1px dotted; } From aventimiglia at common-lisp.net Wed Nov 26 23:39:48 2003 From: aventimiglia at common-lisp.net (Anthony Ventimiglia) Date: Wed, 26 Nov 2003 18:39:48 -0500 Subject: [bayescl-cvs] CVS update: public_html/webpage.css public_html/project2web.xsl public_html/project.dtd public_html/index.xml Message-ID: Update of /project/bayescl/cvsroot/public_html In directory common-lisp.net:/tmp/cvs-serv30843 Modified Files: webpage.css project2web.xsl project.dtd index.xml Log Message: A little change to the project.dtd to add some more content to the front page. Date: Wed Nov 26 18:39:47 2003 Author: aventimiglia Index: public_html/webpage.css diff -u public_html/webpage.css:1.2 public_html/webpage.css:1.3 --- public_html/webpage.css:1.2 Wed Nov 26 16:28:08 2003 +++ public_html/webpage.css Wed Nov 26 18:39:47 2003 @@ -1,5 +1,5 @@ /* -*- c -*- */ -/* $Id: webpage.css,v 1.2 2003/11/26 21:28:08 aventimiglia Exp $ +/* $Id: webpage.css,v 1.3 2003/11/26 23:39:47 aventimiglia Exp $ Stylesheet for my Common-lisp project pages. */ @@ -70,8 +70,8 @@ } #body-text { - float: left; clear: left; - margin: 5em 0 5em 4em; + font-size: 130%; + margin: 5em 8em; } Index: public_html/project2web.xsl diff -u public_html/project2web.xsl:1.1 public_html/project2web.xsl:1.2 --- public_html/project2web.xsl:1.1 Wed Nov 26 14:08:21 2003 +++ public_html/project2web.xsl Wed Nov 26 18:39:47 2003 @@ -1,6 +1,6 @@ - + @@ -13,20 +13,32 @@ - + -- - + + + + - + - + + + + + + + + + + @@ -66,4 +78,40 @@ + +

+ Official releases can be downloaded from + + + + + the FTP server + + . +

+
+ + +

+ The + + + ViewCVS + + interface can be used to download snapshots from the CVS repository. +

+
+ + +

+ Documenatation is available + + + + + online + +

+
+
Index: public_html/project.dtd diff -u public_html/project.dtd:1.1.1.1 public_html/project.dtd:1.2 --- public_html/project.dtd:1.1.1.1 Tue Nov 25 16:51:35 2003 +++ public_html/project.dtd Wed Nov 26 18:39:47 2003 @@ -1,8 +1,11 @@ - - + + + + @@ -11,10 +14,15 @@ + + - + + + + + - - \ No newline at end of file + + Index: public_html/index.xml diff -u public_html/index.xml:1.2 public_html/index.xml:1.3 --- public_html/index.xml:1.2 Wed Nov 26 14:08:21 2003 +++ public_html/index.xml Wed Nov 26 18:39:47 2003 @@ -2,18 +2,15 @@ Bayescl + cvs-prerelease - Bayescl is a Bayesian Pattern Filtering Library for Common Lisp. - - - - - + Bayescl is a general purpose Bayesian pattern filtering library for Common Lisp. Development is done in CMUCL, but every effort will be made for cross-platform portability. It is in it's earliest development stages, but you can expect a release shortly. + + + From aventimiglia at common-lisp.net Thu Nov 27 02:50:59 2003 From: aventimiglia at common-lisp.net (Anthony Ventimiglia) Date: Wed, 26 Nov 2003 21:50:59 -0500 Subject: [bayescl-cvs] CVS update: public_html/manual2web.xsl public_html/manual.dtd public_html/index.proj.xml public_html/documentation.doc.xml public_html/Makefile public_html/index.xml Message-ID: Update of /project/bayescl/cvsroot/public_html In directory common-lisp.net:/tmp/cvs-serv20393 Modified Files: Makefile Added Files: manual2web.xsl manual.dtd index.proj.xml documentation.doc.xml Removed Files: index.xml Log Message: Working on the manual now. Date: Wed Nov 26 21:50:58 2003 Author: aventimiglia Index: public_html/Makefile diff -u public_html/Makefile:1.3 public_html/Makefile:1.4 --- public_html/Makefile:1.3 Wed Nov 26 16:27:35 2003 +++ public_html/Makefile Wed Nov 26 21:50:58 2003 @@ -1,24 +1,30 @@ -# $Id: Makefile,v 1.3 2003/11/26 21:27:35 aventimiglia Exp $ +# $Id: Makefile,v 1.4 2003/11/27 02:50:58 aventimiglia Exp $ APPLYXSLT=/usr/bin/sabcmd VALIDATE=/usr/bin/xmlproc_val VFLAGS=-rawxml -PROJECT_SOURCES=index.xml +PROJECT_SOURCES=index.proj.xml + +DOC_SOURCES=documentation.doc.xml PROJECT2WEB_XSL=project2web.xsl +DOC2WEB_XSL=manual2web.xsl WEB2HTML_XSL=web2html.xsl -WEB_SOURCES=index.web.xml +WEB_SOURCES=index.web.xml documentation.web.xml -HTML_PAGES=index.html +HTML_PAGES=index.html documentation.html CLEAN_TARGETS=index.web.xml $(HTML_PAGES) all:$(HTML_PAGES) -%.web.xml:%.xml $(PROJECT2WEB_XSL) +%.web.xml:%.proj.xml $(PROJECT2WEB_XSL) $(APPLYXSLT) $(PROJECT2WEB_XSL) $< $@ + +%.web.xml:%.doc.xml $(DOC2WEB_XSL) + $(APPLYXSLT) $(DOC2WEB_XSL) $< $@ %.html:%.web.xml $(WEB2HTML_XSL) $(APPLYXSLT) $(WEB2HTML_XSL) $< $@ From aventimiglia at common-lisp.net Thu Nov 27 04:07:58 2003 From: aventimiglia at common-lisp.net (Anthony Ventimiglia) Date: Wed, 26 Nov 2003 23:07:58 -0500 Subject: [bayescl-cvs] CVS update: public_html/webpage.dtd public_html/webpage.css public_html/web2html.xsl public_html/manual2web.xsl public_html/manual.dtd Message-ID: Update of /project/bayescl/cvsroot/public_html In directory common-lisp.net:/tmp/cvs-serv21440 Modified Files: webpage.dtd webpage.css web2html.xsl manual2web.xsl manual.dtd Log Message: Moving right along Date: Wed Nov 26 23:07:57 2003 Author: aventimiglia Index: public_html/webpage.dtd diff -u public_html/webpage.dtd:1.2 public_html/webpage.dtd:1.3 --- public_html/webpage.dtd:1.2 Wed Nov 26 16:27:35 2003 +++ public_html/webpage.dtd Wed Nov 26 23:07:57 2003 @@ -1,4 +1,6 @@ - + + + @@ -8,8 +10,14 @@ + %desc; #REQUIRED> + + + + - + - \ No newline at end of file + + \ No newline at end of file Index: public_html/webpage.css diff -u public_html/webpage.css:1.3 public_html/webpage.css:1.4 --- public_html/webpage.css:1.3 Wed Nov 26 18:39:47 2003 +++ public_html/webpage.css Wed Nov 26 23:07:57 2003 @@ -1,5 +1,5 @@ /* -*- c -*- */ -/* $Id: webpage.css,v 1.3 2003/11/26 23:39:47 aventimiglia Exp $ +/* $Id: webpage.css,v 1.4 2003/11/27 04:07:57 aventimiglia Exp $ Stylesheet for my Common-lisp project pages. */ @@ -14,7 +14,7 @@ background-color: #45AE1C; } -#page-title { +#page-title, .section-header { color: #C1693D; } @@ -73,5 +73,12 @@ clear: left; font-size: 130%; margin: 5em 8em; +} + +.section-header { + font-variant: small-caps; + display: block; + font-size: 150%; + font-weight: bold; } Index: public_html/web2html.xsl diff -u public_html/web2html.xsl:1.2 public_html/web2html.xsl:1.3 --- public_html/web2html.xsl:1.2 Wed Nov 26 16:27:35 2003 +++ public_html/web2html.xsl Wed Nov 26 23:07:57 2003 @@ -52,4 +52,23 @@ + +
+ Table of Contents +
    + +
+
+
+ + +
  • + + # + + + -- +
  • +
    + Index: public_html/manual2web.xsl diff -u public_html/manual2web.xsl:1.1 public_html/manual2web.xsl:1.2 --- public_html/manual2web.xsl:1.1 Wed Nov 26 21:50:58 2003 +++ public_html/manual2web.xsl Wed Nov 26 23:07:57 2003 @@ -12,8 +12,32 @@ + + + + + + + + + + + + + + + + + + + + + + + Index: public_html/manual.dtd diff -u public_html/manual.dtd:1.1 public_html/manual.dtd:1.2 --- public_html/manual.dtd:1.1 Wed Nov 26 21:50:58 2003 +++ public_html/manual.dtd Wed Nov 26 23:07:57 2003 @@ -1,11 +1,9 @@ - - - + - -