[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

Anthony Ventimiglia aventimiglia at common-lisp.net
Thu Nov 27 02:50:59 UTC 2003


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) $< $@







More information about the Bayescl-cvs mailing list