From: Egon W. <eg...@us...> - 2002-08-15 15:16:56
|
Update of /cvsroot/woc/woc/bin/wml2html In directory usw-pr-cvs1:/tmp/cvs-serv21511/bin/wml2html Modified Files: insert-item.in Log Message: Install WML in correct dir. And install physical properties. (Still trying to generate a HTML file, but getting close). Index: insert-item.in =================================================================== RCS file: /cvsroot/woc/woc/bin/wml2html/insert-item.in,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** insert-item.in 15 Aug 2002 12:02:06 -0000 1.1 --- insert-item.in 15 Aug 2002 15:16:23 -0000 1.2 *************** *** 1,5 **** #! /bin/sh ! if (test $# = 1) then : --- 1,10 ---- #! /bin/sh ! prefix="@prefix@" ! ! JAVA=@PATHTOJAVA@ ! PERL=@PATHTOPERL@ ! ! if (test $# = 1) then : *************** *** 9,18 **** fi ! prefix="@prefix@" - JAVA=@PATHTOJAVA@ - PERL=@PATHTOPERL@ JARS=`ls -1 ../../lib/java/*.jar | ${PERL} -ne "s/\n|\r/:/g; print;"` - OPTIONS="-r woc -R ${prefix}/bin/wml2html/repository_def.xml" --- 14,25 ---- fi ! if (test -d ${prefix}/web-docs/gui/items) ! then ! : ! else ! mkdir -p ${prefix}/web-docs/gui/items ! fi JARS=`ls -1 ../../lib/java/*.jar | ${PERL} -ne "s/\n|\r/:/g; print;"` OPTIONS="-r woc -R ${prefix}/bin/wml2html/repository_def.xml" |