You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(132) |
Jul
(50) |
Aug
(172) |
Sep
(87) |
Oct
|
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(39) |
Oct
(2) |
Nov
|
Dec
|
2004 |
Jan
(47) |
Feb
|
Mar
(11) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
(9) |
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
From: Geert J. <gj...@us...> - 2002-08-17 13:11:35
|
Update of /cvsroot/woc/woc/source/wocjava In directory usw-pr-cvs1:/tmp/cvs-serv32448 Modified Files: Makefile.am Log Message: correction on cygwin support Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/source/wocjava/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Makefile.am 17 Aug 2002 11:44:59 -0000 1.5 --- Makefile.am 17 Aug 2002 13:11:30 -0000 1.6 *************** *** 12,22 **** JAVA=${JAVA_HOME}/java - JARS=`ls -1 ../../lib/java/*.jar | perl -ne "s/\n|\r/:/g; print;"` ! # convert the unix path to windows ! if [ "$OSTYPE" = "cygwin32" ] || [ "$OSTYPE" = "cygwin" ] ! || [ "$OSTYPE" = "posix" ] ; then ! JARS=`cygpath --path --windows "$JARS"` ! fi all: jar --- 12,17 ---- JAVA=${JAVA_HOME}/java ! JARS=`ls -1 ../../lib/java/*.jar | perl -ne "s/\n|\r/:/g; print;"` all: jar *************** *** 24,28 **** --- 19,33 ---- classes: mkdir -p build + @if [ "$$OSTYPE" = "cygwin32" ] || [ "$$OSTYPE" = "cygwin" ] || ["$$OSTYPE" = "posix" ] ; then \ + ${MAKE} JARS=${JARS} winclasses ; \ + else \ + ${MAKE} unixclasses ; \ + fi + + unixclasses: ${JAVAC} -classpath ${JARS} -d build -O `find source/com -name "*.java"` + + winclasses: + ${JAVAC} -classpath `cygpath --path --windows ${JARS}` -d build -O `find source/com -name "*.java"` clean: |
From: Geert J. <gj...@us...> - 2002-08-17 11:45:02
|
Update of /cvsroot/woc/woc/source/wocjava In directory usw-pr-cvs1:/tmp/cvs-serv17024 Modified Files: Makefile.am Log Message: support for cygwin added Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/source/wocjava/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Makefile.am 15 Aug 2002 13:05:41 -0000 1.4 --- Makefile.am 17 Aug 2002 11:44:59 -0000 1.5 *************** *** 14,17 **** --- 14,23 ---- JARS=`ls -1 ../../lib/java/*.jar | perl -ne "s/\n|\r/:/g; print;"` + # convert the unix path to windows + if [ "$OSTYPE" = "cygwin32" ] || [ "$OSTYPE" = "cygwin" ] + || [ "$OSTYPE" = "posix" ] ; then + JARS=`cygpath --path --windows "$JARS"` + fi + all: jar |
From: Geert J. <gj...@us...> - 2002-08-17 11:43:40
|
Update of /cvsroot/woc/woc/bin/wml2html In directory usw-pr-cvs1:/tmp/cvs-serv16753 Modified Files: make-items.in make-groups.in make-woord.in Log Message: support for cygwin added Index: make-items.in =================================================================== RCS file: /cvsroot/woc/woc/bin/wml2html/make-items.in,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** make-items.in 15 Aug 2002 12:02:06 -0000 1.1 --- make-items.in 17 Aug 2002 11:43:36 -0000 1.2 *************** *** 3,9 **** JAVA=@PATHTOJAVA@ PERL=@PATHTOPERL@ - JARS=`ls -1 ../../lib/java/*.jar | ${PERL} -ne "s/\n|\r/:/g; print;"` OPTIONS="-r `pwd`/repository_def.xml" ${JAVA} -cp ${JARS} com.egonw.woc.tools.MaakLosseItems ${OPTIONS} --- 3,16 ---- JAVA=@PATHTOJAVA@ PERL=@PATHTOPERL@ + JARS=`ls -1 ../../lib/java/*.jar | ${PERL} -ne "s/\n|\r/:/g; print;"` OPTIONS="-r `pwd`/repository_def.xml" + + # convert the unix path to windows + if [ "$OSTYPE" = "cygwin32" ] || [ "$OSTYPE" = "cygwin" ] + || [ "$OSTYPE" = "posix" ] ; then + JARS=`cygpath --path --windows "$JARS"` + OPTIONS=`cygpath --path --windows "$OPTIONS"` + fi ${JAVA} -cp ${JARS} com.egonw.woc.tools.MaakLosseItems ${OPTIONS} Index: make-groups.in =================================================================== RCS file: /cvsroot/woc/woc/bin/wml2html/make-groups.in,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** make-groups.in 15 Aug 2002 12:02:06 -0000 1.1 --- make-groups.in 17 Aug 2002 11:43:36 -0000 1.2 *************** *** 1,9 **** #! /bin/sh JAVA=@PATHTOJAVA@ PERL=@PATHTOPERL@ - JARS=`ls -1 ../../lib/java/*.jar | ${PERL} -ne "s/\n|\r/:/g; print;"` OPTIONS="-r ./repository_def.xml" ${JAVA} -cp ${JARS} com.egonw.woc.tools.GroupFiles ${OPTIONS} --- 1,18 ---- #! /bin/sh + prefix="@prefix@" + JAVA=@PATHTOJAVA@ PERL=@PATHTOPERL@ + JARS=`ls -1 ../../lib/java/*.jar | ${PERL} -ne "s/\n|\r/:/g; print;"` OPTIONS="-r ./repository_def.xml" + + # convert the unix path to windows + if [ "$OSTYPE" = "cygwin32" ] || [ "$OSTYPE" = "cygwin" ] + || [ "$OSTYPE" = "posix" ] ; then + JARS=`cygpath --path --windows "$JARS"` + OPTIONS=`cygpath --path --windows "$OPTIONS"` + fi ${JAVA} -cp ${JARS} com.egonw.woc.tools.GroupFiles ${OPTIONS} Index: make-woord.in =================================================================== RCS file: /cvsroot/woc/woc/bin/wml2html/make-woord.in,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** make-woord.in 15 Aug 2002 12:02:06 -0000 1.1 --- make-woord.in 17 Aug 2002 11:43:36 -0000 1.2 *************** *** 7,9 **** --- 7,16 ---- OPTIONS="-r `pwd`/repository_def.xml" + # convert the unix path to windows + if [ "$OSTYPE" = "cygwin32" ] || [ "$OSTYPE" = "cygwin" ] + || [ "$OSTYPE" = "posix" ] ; then + JARS=`cygpath --path --windows "$JARS"` + OPTIONS=`cygpath --path --windows "$OPTIONS"` + fi + ${JAVA} -cp ${JARS} com.egonw.woc.tools.Woord ${OPTIONS} |
From: Geert J. <gj...@us...> - 2002-08-17 11:42:55
|
Update of /cvsroot/woc/woc/bin/wml2html In directory usw-pr-cvs1:/tmp/cvs-serv16597 Modified Files: insert-item.in Log Message: support for cygwin added Index: insert-item.in =================================================================== RCS file: /cvsroot/woc/woc/bin/wml2html/insert-item.in,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** insert-item.in 15 Aug 2002 15:16:23 -0000 1.2 --- insert-item.in 17 Aug 2002 11:42:51 -0000 1.3 *************** *** 24,26 **** --- 24,33 ---- OPTIONS="-r woc -R ${prefix}/bin/wml2html/repository_def.xml" + # convert the unix path to windows + if [ "$OSTYPE" = "cygwin32" ] || [ "$OSTYPE" = "cygwin" ] + || [ "$OSTYPE" = "posix" ] ; then + JARS=`cygpath --path --windows "$JARS"` + OPTIONS=`cygpath --path --windows "$OPTIONS"` + fi + ${JAVA} -cp ${JARS} com.egonw.woc.tools.SimpleAddItem ${OPTIONS} $1 |
From: Egon W. <eg...@us...> - 2002-08-16 15:57:53
|
Update of /cvsroot/woc/woc/data/wml/123 In directory usw-pr-cvs1:/tmp/cvs-serv26259/data/wml/123 Added Files: Makefile.am Log Message: Choline can now be converted to HTML. And validated, try: ./validate_source c/choline.xml --- NEW FILE: Makefile.am --- wmldir=${prefix}/web-docs/data/wml wml_DATA=*.xml CLEANFILES= |
From: Egon W. <eg...@us...> - 2002-08-16 15:57:53
|
Update of /cvsroot/woc/woc/data/wml In directory usw-pr-cvs1:/tmp/cvs-serv26259/data/wml Modified Files: validate_source Log Message: Choline can now be converted to HTML. And validated, try: ./validate_source c/choline.xml Index: validate_source =================================================================== RCS file: /cvsroot/woc/woc/data/wml/validate_source,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** validate_source 13 Jun 2002 19:55:31 -0000 1.2 --- validate_source 16 Aug 2002 15:57:50 -0000 1.3 *************** *** 6,10 **** for f in $files; \ do \ ! echo -n Checking $f...; \ export SGML_CATALOG_FILES="./catalog"; \ xmllint --catalogs --noout --valid $f && echo done; \ --- 6,10 ---- for f in $files; \ do \ ! echo -n "Checking $f... "; \ export SGML_CATALOG_FILES="./catalog"; \ xmllint --catalogs --noout --valid $f && echo done; \ *************** *** 13,20 **** if test -e $1; then ! echo -n Checking $1...; \ export SGML_CATALOG_FILES="./catalog"; \ xmllint --catalogs --noout --valid $1 && echo done; \ exit 0; fi fi --- 13,22 ---- if test -e $1; then ! echo -n "Checking $1... "; \ export SGML_CATALOG_FILES="./catalog"; \ xmllint --catalogs --noout --valid $1 && echo done; \ exit 0; + else + echo "File $1 does not exist!"; fi fi |
From: Egon W. <eg...@us...> - 2002-08-16 15:57:53
|
Update of /cvsroot/woc/woc In directory usw-pr-cvs1:/tmp/cvs-serv26259 Modified Files: configure.in Log Message: Choline can now be converted to HTML. And validated, try: ./validate_source c/choline.xml Index: configure.in =================================================================== RCS file: /cvsroot/woc/woc/configure.in,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** configure.in 15 Aug 2002 15:16:23 -0000 1.13 --- configure.in 16 Aug 2002 15:57:49 -0000 1.14 *************** *** 116,119 **** --- 116,120 ---- data/wml/y/Makefile data/wml/z/Makefile + data/wml/123/Makefile data/dadml/Makefile data/dadml/physicalprop/Makefile |
From: Egon W. <eg...@us...> - 2002-08-16 15:17:29
|
Update of /cvsroot/woc/woc In directory usw-pr-cvs1:/tmp/cvs-serv32197 Modified Files: install-sh Log Message: Keep last-changed-date intact. Index: install-sh =================================================================== RCS file: /cvsroot/woc/woc/install-sh,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** install-sh 20 Jul 2002 09:34:26 -0000 1.1 --- install-sh 16 Aug 2002 15:17:25 -0000 1.2 *************** *** 34,38 **** mvprog="${MVPROG-mv}" ! cpprog="${CPPROG-cp}" chmodprog="${CHMODPROG-chmod}" chownprog="${CHOWNPROG-chown}" --- 34,38 ---- mvprog="${MVPROG-mv}" ! cpprog="${CPPROG-cp} -p" chmodprog="${CHMODPROG-chmod}" chownprog="${CHOWNPROG-chown}" |
From: Egon W. <eg...@us...> - 2002-08-16 15:17:02
|
Update of /cvsroot/woc/woc/source/wocjava/source/com/egonw/woc/files In directory usw-pr-cvs1:/tmp/cvs-serv31800/source/com/egonw/woc/files Modified Files: WMLHandler.java Log Message: Fixed parsing of strings from WML. Index: WMLHandler.java =================================================================== RCS file: /cvsroot/woc/woc/source/wocjava/source/com/egonw/woc/files/WMLHandler.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** WMLHandler.java 8 Jun 2002 20:29:02 -0000 1.1 --- WMLHandler.java 16 Aug 2002 15:17:00 -0000 1.2 *************** *** 201,204 **** --- 201,205 ---- for (int i = 0; i < atts.getLength(); i++) { // System.out.println(" Att: " + atts.getQName(i)); + // System.out.println(" " + atts.getValue(i)); if (atts.getQName(i).equals("CLASS")) { if (atts.getValue(i).equals("MSDS-CODE")) { *************** *** 481,548 **** public void characters (char ch[], int start, int length) { ! StringBuffer x = new StringBuffer(); ! switch (CurrentElement) { ! case ANY : ! for (int i =0; i < length; i++) ! x.append(ch[start+i]); ! memo.add(x.toString()); ! break; ! case XSL : ! for (int i =0; i < length; i++) ! xslString.append(ch[start+i]); ! break; ! case XItem.XFORMULA : ! formula.setCDATA(toString(ch, start, length).trim()); ! break; ! case XItem.XDISCDATE : ! DiscDate = toString(ch, start, length).trim(); ! break; ! case XItem.XDISCPLACE : ! DiscPlace = toString(ch, start, length).trim(); ! break; ! case LANG : ! x.append(xlang.getValue()); ! for (int i =0; i < length; i++) ! x.append(ch[start+i]); ! xlang.setValue(x.toString().trim()); ! break; ! case INDEX : ! for (int i =0; i < length; i++) x.append(ch[start+i]); ! // System.out.println(" content: " + x.toString() + "-"); ! switch (CI) { ! case CI_MSDS: ! item.add(Item.MSDS, x.toString()); ! break; ! case CI_CAS: ! item.add(Item.CASNR, x.toString()); break; ! case CI_NSC: ! item.add(XItem.XNSC, x.toString()); break; ! case CI_SMILES: ! item.add(Item.SMILE, x.toString()); break; ! case CI_UNNR: ! item.add(XItem.XUNNR, x.toString()); break; ! case CI_ENR: ! item.add(XItem.XENR, x.toString()); break; - } - break; case XItem.XMEDIA : ! x = new StringBuffer(media.getCDATA()); ! for (int i =0; i < length; i++) ! x.append(ch[start+i]); ! media.setCDATA(x.toString()); break; case XItem.XINSERTS : ! insert.setCDATA(toString(ch, start, length).trim()); break; case XItem.XAFKORT : ! abbrev.setCDATA(toString(ch, start, length).trim()); break; case Item.URL : ! String url = toString(ch, start, length).trim(); if (url.length() > 0) { v.addElement(url); --- 482,545 ---- public void characters (char ch[], int start, int length) { ! String s = new String(ch, start, length); ! switch (CurrentElement) { ! case ANY : ! memo.add(s); ! break; ! case XSL : ! xslString.append(s); ! break; ! case XItem.XFORMULA : ! formula.setCDATA(s.trim()); break; ! case XItem.XDISCDATE : ! DiscDate = s.trim(); break; ! case XItem.XDISCPLACE : ! DiscPlace = s.trim(); break; ! case LANG : ! xlang.setValue(xlang.getValue() + s.trim()); break; ! case INDEX : ! s = s.trim(); ! // System.out.println("Parsing INDEX chars: " + s); ! switch (CI) { ! case CI_MSDS: ! item.add(Item.MSDS, s); ! break; ! case CI_CAS: ! // System.out.println("Adding CAS"); ! if (item.get(Item.CASNR) != null) { ! item.add(Item.CASNR, item.get(Item.CASNR) + s); ! } else { ! item.add(Item.CASNR, s); ! } ! break; ! case CI_NSC: ! item.add(XItem.XNSC, s); ! break; ! case CI_SMILES: ! item.add(Item.SMILE, s); ! break; ! case CI_UNNR: ! item.add(XItem.XUNNR, s); ! break; ! case CI_ENR: ! item.add(XItem.XENR, s); ! break; ! } break; case XItem.XMEDIA : ! media.setCDATA(media.getCDATA() + s); break; case XItem.XINSERTS : ! insert.setCDATA(s.trim()); break; case XItem.XAFKORT : ! abbrev.setCDATA(s.trim()); break; case Item.URL : ! String url = s.trim(); if (url.length() > 0) { v.addElement(url); *************** *** 550,554 **** break; case Item.GROUP : ! String s = toString(ch, start, length).trim(); if (s.length() > 0) { groups.addElement(s); --- 547,551 ---- break; case Item.GROUP : ! s = s.trim(); if (s.length() > 0) { groups.addElement(s); *************** *** 559,571 **** break; case XItem.XMEERVOUD : ! s = toString(ch, start, length).trim(); meervoud.setCDATA(s); break; case Item.VERGELIJK : ! s = toString(ch, start, length).trim(); if (s.length() > 0) vergs.addElement(s); break; case Item.ZIE : ! s = toString(ch, start, length).trim(); if (s.length() > 0) zies.addElement(s); break; --- 556,568 ---- break; case XItem.XMEERVOUD : ! s = s.trim(); meervoud.setCDATA(s); break; case Item.VERGELIJK : ! s = s.trim(); if (s.length() > 0) vergs.addElement(s); break; case Item.ZIE : ! s = s.trim(); if (s.length() > 0) zies.addElement(s); break; |
From: Egon W. <eg...@us...> - 2002-08-16 15:17:02
|
Update of /cvsroot/woc/woc/source/wocjava In directory usw-pr-cvs1:/tmp/cvs-serv31800 Modified Files: repository_def.xml.in Log Message: Fixed parsing of strings from WML. Index: repository_def.xml.in =================================================================== RCS file: /cvsroot/woc/woc/source/wocjava/repository_def.xml.in,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** repository_def.xml.in 15 Aug 2002 15:16:28 -0000 1.2 --- repository_def.xml.in 16 Aug 2002 15:16:59 -0000 1.3 *************** *** 5,9 **** <path id="PhysicalRoot">@PHYSPATH@/web-docs/</path> <!-- definition of DADML dirs --> ! <path id="DADMLSubDir">wocdata/dadml/</path> <path id="MolSubDir">mol/</path> <path id="PdbSubDir">pdb/</path> --- 5,9 ---- <path id="PhysicalRoot">@PHYSPATH@/web-docs/</path> <!-- definition of DADML dirs --> ! <path id="DADMLSubDir">data/dadml/</path> <path id="MolSubDir">mol/</path> <path id="PdbSubDir">pdb/</path> *************** *** 22,29 **** <specific repository="woc"> <!-- source --> ! <path id="DataSubDir">wocdata/</path> <path id="WMLSubDir">data/wml</path> ! <path id="PictureSubDir">wocdata/pictures/</path> ! <path id="ModelsSubDir">wocdata/compounds/</path> <!-- website --> <path id="LetterFileSubDir">gui/letters/</path> --- 22,29 ---- <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> |
From: Egon W. <eg...@us...> - 2002-08-16 14:24:20
|
Update of /cvsroot/woc/woc/data/wml/c In directory usw-pr-cvs1:/tmp/cvs-serv10980/c Modified Files: Makefile.am Log Message: Install all data files in the same dir. Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/data/wml/c/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Makefile.am 15 Aug 2002 15:16:25 -0000 1.2 --- Makefile.am 16 Aug 2002 14:23:45 -0000 1.3 *************** *** 1,3 **** ! wmldir=${prefix}/web-docs/data/wml/c wml_DATA=*.xml --- 1,3 ---- ! wmldir=${prefix}/web-docs/data/wml wml_DATA=*.xml |
From: Egon W. <eg...@us...> - 2002-08-16 14:24:20
|
Update of /cvsroot/woc/woc/data/wml/f In directory usw-pr-cvs1:/tmp/cvs-serv10980/f Modified Files: Makefile.am Log Message: Install all data files in the same dir. Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/data/wml/f/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Makefile.am 15 Aug 2002 15:16:25 -0000 1.2 --- Makefile.am 16 Aug 2002 14:23:45 -0000 1.3 *************** *** 1,3 **** ! wmldir=${prefix}/web-docs/data/wml/f wml_DATA=*.xml --- 1,3 ---- ! wmldir=${prefix}/web-docs/data/wml wml_DATA=*.xml |
From: Egon W. <eg...@us...> - 2002-08-16 14:24:20
|
Update of /cvsroot/woc/woc/data/wml/e In directory usw-pr-cvs1:/tmp/cvs-serv10980/e Modified Files: Makefile.am Log Message: Install all data files in the same dir. Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/data/wml/e/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Makefile.am 15 Aug 2002 15:16:25 -0000 1.2 --- Makefile.am 16 Aug 2002 14:23:45 -0000 1.3 *************** *** 1,3 **** ! wmldir=${prefix}/web-docs/data/wml/e wml_DATA=*.xml --- 1,3 ---- ! wmldir=${prefix}/web-docs/data/wml wml_DATA=*.xml |
From: Egon W. <eg...@us...> - 2002-08-16 14:24:20
|
Update of /cvsroot/woc/woc/data/wml/d In directory usw-pr-cvs1:/tmp/cvs-serv10980/d Modified Files: Makefile.am Log Message: Install all data files in the same dir. Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/data/wml/d/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Makefile.am 15 Aug 2002 15:16:25 -0000 1.2 --- Makefile.am 16 Aug 2002 14:23:45 -0000 1.3 *************** *** 1,3 **** ! wmldir=${prefix}/web-docs/data/wml/d wml_DATA=*.xml --- 1,3 ---- ! wmldir=${prefix}/web-docs/data/wml wml_DATA=*.xml |
From: Egon W. <eg...@us...> - 2002-08-16 14:24:19
|
Update of /cvsroot/woc/woc/data/wml/a In directory usw-pr-cvs1:/tmp/cvs-serv10980/a Modified Files: Makefile.am Log Message: Install all data files in the same dir. Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/data/wml/a/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** Makefile.am 15 Aug 2002 15:16:25 -0000 1.1 --- Makefile.am 16 Aug 2002 14:23:45 -0000 1.2 *************** *** 1,3 **** ! wmldir=${prefix}/web-docs/data/wml/a wml_DATA=*.xml --- 1,3 ---- ! wmldir=${prefix}/web-docs/data/wml wml_DATA=*.xml |
From: Egon W. <eg...@us...> - 2002-08-16 14:24:19
|
Update of /cvsroot/woc/woc/data/wml In directory usw-pr-cvs1:/tmp/cvs-serv10980 Modified Files: Makefile.am Log Message: Install all data files in the same dir. Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/data/wml/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** Makefile.am 15 Aug 2002 15:16:24 -0000 1.1 --- Makefile.am 16 Aug 2002 14:23:44 -0000 1.2 *************** *** 2,4 **** SUBDIRS= a b c d e f g h i j k l m \ ! n o p q r s t u v w x y z --- 2,4 ---- SUBDIRS= a b c d e f g h i j k l m \ ! n o p q r s t u v w x y z 123 |
From: Egon W. <eg...@us...> - 2002-08-16 14:24:19
|
Update of /cvsroot/woc/woc/data/wml/b In directory usw-pr-cvs1:/tmp/cvs-serv10980/b Modified Files: Makefile.am Log Message: Install all data files in the same dir. Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/data/wml/b/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Makefile.am 15 Aug 2002 15:16:25 -0000 1.2 --- Makefile.am 16 Aug 2002 14:23:45 -0000 1.3 *************** *** 1,3 **** ! wmldir=${prefix}/web-docs/data/wml/b wml_DATA=*.xml --- 1,3 ---- ! wmldir=${prefix}/web-docs/data/wml wml_DATA=*.xml |
From: Egon W. <eg...@us...> - 2002-08-16 14:23:55
|
Update of /cvsroot/woc/woc/data/wml/x In directory usw-pr-cvs1:/tmp/cvs-serv10980/x Modified Files: Makefile.am Log Message: Install all data files in the same dir. Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/data/wml/x/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Makefile.am 15 Aug 2002 15:16:27 -0000 1.2 --- Makefile.am 16 Aug 2002 14:23:47 -0000 1.3 *************** *** 1,3 **** ! wmldir=${prefix}/web-docs/data/wml/x wml_DATA=*.xml --- 1,3 ---- ! wmldir=${prefix}/web-docs/data/wml wml_DATA=*.xml |
From: Egon W. <eg...@us...> - 2002-08-16 14:23:55
|
Update of /cvsroot/woc/woc/data/wml/y In directory usw-pr-cvs1:/tmp/cvs-serv10980/y Modified Files: Makefile.am Log Message: Install all data files in the same dir. Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/data/wml/y/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Makefile.am 15 Aug 2002 15:16:27 -0000 1.2 --- Makefile.am 16 Aug 2002 14:23:47 -0000 1.3 *************** *** 1,3 **** ! wmldir=${prefix}/web-docs/data/wml/y wml_DATA=*.xml --- 1,3 ---- ! wmldir=${prefix}/web-docs/data/wml wml_DATA=*.xml |
From: Egon W. <eg...@us...> - 2002-08-16 14:23:54
|
Update of /cvsroot/woc/woc/data/wml/w In directory usw-pr-cvs1:/tmp/cvs-serv10980/w Modified Files: Makefile.am Log Message: Install all data files in the same dir. Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/data/wml/w/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Makefile.am 15 Aug 2002 15:16:27 -0000 1.2 --- Makefile.am 16 Aug 2002 14:23:47 -0000 1.3 *************** *** 1,3 **** ! wmldir=${prefix}/web-docs/data/wml/w wml_DATA=*.xml --- 1,3 ---- ! wmldir=${prefix}/web-docs/data/wml wml_DATA=*.xml |
From: Egon W. <eg...@us...> - 2002-08-16 14:23:54
|
Update of /cvsroot/woc/woc/data/wml/u In directory usw-pr-cvs1:/tmp/cvs-serv10980/u Modified Files: Makefile.am Log Message: Install all data files in the same dir. Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/data/wml/u/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Makefile.am 15 Aug 2002 15:16:27 -0000 1.2 --- Makefile.am 16 Aug 2002 14:23:47 -0000 1.3 *************** *** 1,3 **** ! wmldir=${prefix}/web-docs/data/wml/u wml_DATA=*.xml --- 1,3 ---- ! wmldir=${prefix}/web-docs/data/wml wml_DATA=*.xml |
From: Egon W. <eg...@us...> - 2002-08-16 14:23:54
|
Update of /cvsroot/woc/woc/data/wml/v In directory usw-pr-cvs1:/tmp/cvs-serv10980/v Modified Files: Makefile.am Log Message: Install all data files in the same dir. Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/data/wml/v/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Makefile.am 15 Aug 2002 15:16:27 -0000 1.2 --- Makefile.am 16 Aug 2002 14:23:47 -0000 1.3 *************** *** 1,3 **** ! wmldir=${prefix}/web-docs/data/wml/v wml_DATA=*.xml --- 1,3 ---- ! wmldir=${prefix}/web-docs/data/wml wml_DATA=*.xml |
From: Egon W. <eg...@us...> - 2002-08-16 14:23:54
|
Update of /cvsroot/woc/woc/data/wml/s In directory usw-pr-cvs1:/tmp/cvs-serv10980/s Modified Files: Makefile.am Log Message: Install all data files in the same dir. Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/data/wml/s/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Makefile.am 15 Aug 2002 15:16:27 -0000 1.2 --- Makefile.am 16 Aug 2002 14:23:46 -0000 1.3 *************** *** 1,3 **** ! wmldir=${prefix}/web-docs/data/wml/s wml_DATA=*.xml --- 1,3 ---- ! wmldir=${prefix}/web-docs/data/wml wml_DATA=*.xml |
From: Egon W. <eg...@us...> - 2002-08-16 14:23:54
|
Update of /cvsroot/woc/woc/data/wml/r In directory usw-pr-cvs1:/tmp/cvs-serv10980/r Modified Files: Makefile.am Log Message: Install all data files in the same dir. Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/data/wml/r/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Makefile.am 15 Aug 2002 15:16:27 -0000 1.2 --- Makefile.am 16 Aug 2002 14:23:46 -0000 1.3 *************** *** 1,3 **** ! wmldir=${prefix}/web-docs/data/wml/r wml_DATA=*.xml --- 1,3 ---- ! wmldir=${prefix}/web-docs/data/wml wml_DATA=*.xml |
From: Egon W. <eg...@us...> - 2002-08-16 14:23:54
|
Update of /cvsroot/woc/woc/data/wml/z In directory usw-pr-cvs1:/tmp/cvs-serv10980/z Modified Files: Makefile.am Log Message: Install all data files in the same dir. Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/data/wml/z/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Makefile.am 15 Aug 2002 15:16:28 -0000 1.2 --- Makefile.am 16 Aug 2002 14:23:47 -0000 1.3 *************** *** 1,3 **** ! wmldir=${prefix}/web-docs/data/wml/z wml_DATA=*.xml --- 1,3 ---- ! wmldir=${prefix}/web-docs/data/wml wml_DATA=*.xml |