From: Egon W. <eg...@us...> - 2002-06-08 20:52:28
|
Update of /cvsroot/woc/woc/bin/wml2html In directory usw-pr-cvs1:/tmp/cvs-serv26411 Added Files: .cvsignore Makefile repository_def.xml Log Message: Added tools to convert WML source to website. --- NEW FILE: .cvsignore --- WMLreport.txt --- NEW FILE: Makefile --- JAVA=${JAVA_HOME}/bin/java JARS=`ls -1 ../../lib/java/*.jar | perl -ne "s/\n|\r/:/g; print;"` OPTIONS=-R `pwd`/repository_def.xml all: items woord items: ${JAVA} -cp ${JARS} com.egonw.woc.tools.MaakLosseItems ${OPTIONS} woord: ${JAVA} -cp ${JARS} com.egonw.woc.tools.Woord ${OPTIONS} groups: ${JAVA} -cp ${JARS} com.egonw.woc.tools.GroupFiles ${OPTIONS} --- NEW FILE: repository_def.xml --- <repositories> <!-- definitions of repositories consist mostly of directory names --> <general> <path id="PhysicalRoot">/vol/www/woc/web-docs/</path> <!-- definition of DADML dirs --> <path id="DADMLSubDir">data/dadml/</path> <path id="MolSubDir">mol/</path> <path id="PdbSubDir">pdb/</path> <path id="XyzSubDir">xyz/</path> <path id="CmlSubDir">cml/</path> <path id="PhysPropSubDir">fysisch/cml/</path> <path id="GifSubDir">gifgalary/</path> <!-- website --> <path id="HtmlRoot">http://www-woc.sci.kun.nl/</path> <path id="CgiBinRoot">http://www-woc.sci.kun.nl/cgi-bin/</path> <path id="JavaSubDir">java/</path> <!-- other --> <path id="BronnenFile">woc_bron.html</path> <path id="DatabasesFile">super.xml</path> </general> <specific repository="woc"> <!-- source --> <path id="DataSubDir">data/</path> <path id="WMLSubDir">../data/wml</path> <path id="PictureSubDir">data/pictures/</path> <path id="ModelsSubDir">data/compounds/</path> <!-- website --> <path id="LetterFileSubDir">gui/letters/</path> <path id="ItemFileSubDir">gui/items/</path> <path id="GroupFileSubDir">gui/groups/</path> <path id="IndexFileSubDir">gui/index/</path> <path id="CSSSubDir">gui/styles/</path> <path id="LocatieSubDir">gui/locatie/</path> <path id="JavascriptSubDir">gui/javascript/</path> </specific> <specific repository="iupac"> <!-- source --> <path id="DataSubDir">iupac/data/</path> <path id="WMLSubDir">iupac/data/wml</path> <path id="PictureSubDir">iupac/data/pictures/</path> <path id="ModelsSubDir">iupac/data/compounds/</path> <!-- website --> <path id="LetterFileSubDir">iupac/gui/letters/</path> <path id="ItemFileSubDir">iupac/gui/items/</path> <path id="GroupFileSubDir">iupac/gui/groups/</path> <path id="IndexFileSubDir">iupac/gui/index/</path> <path id="CSSSubDir">iupac/gui/styles/</path> <path id="LocatieSubDir">iupac/gui/locatie/</path> <path id="JavascriptSubDir">iupac/gui/javascript/</path> </specific> </repositories> |