xsddoc/bin xsddoc.bat,1.9,1.10 xsddoc,1.4,1.5 lcp.bat,1.1,1.2
Kurt Riede <[email protected]>
| Newsgroups | gmane.text.xml.xframe.xsddoc.devel |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/xframe/xsddoc/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31960/bin Modified Files: xsddoc.bat xsddoc lcp.bat Log Message: changed to ASCII Index: xsddoc.bat =================================================================== RCS file: /cvsroot/xframe/xsddoc/bin/xsddoc.bat,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** xsddoc.bat 27 Feb 2004 08:19:01 -0000 1.9 --- xsddoc.bat 30 Sep 2004 11:24:06 -0000 1.10 *************** *** 1,50 **** ! @echo off ! ! rem This file is part of the xframe software package ! rem hosted at http://xframe.sourceforge.net ! rem ! rem Copyright (c) 2003 Kurt Riede. ! rem ! rem This library is free software; you can redistribute it and/or ! rem modify it under the terms of the GNU Lesser General Public ! rem License as published by the Free Software Foundation; either ! rem version 2.1 of the License, or (at your option) any later version. ! rem ! rem This library is distributed in the hope that it will be useful, ! rem but WITHOUT ANY WARRANTY; without even the implied warranty of ! rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! rem Lesser General Public License for more details. ! rem ! rem You should have received a copy of the GNU Lesser General Public ! rem License along with this library; if not, write to the Free Software ! rem Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! ! rem win32 batch file for command line interface of xsddoc. ! rem ! rem author <a href="mailto:kurt.riede-S0/[email protected]">Kurt Riede</a> ! ! if "%OS%"=="Windows_NT" @setlocal ! ! set DEFAULT_XSDDOC_HOME=%~dp0.. ! if "%XSDDOC_HOME%"=="" set XSDDOC_HOME=%DEFAULT_XSDDOC_HOME% ! set DEFAULT_XSDDOC_HOME= ! ! set CMD_LINE_ARGS=%1 ! if ""%1""=="""" goto doneStart ! shift ! :setupArgs ! if ""%1""=="""" goto doneStart ! set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1 ! shift ! goto setupArgs ! :doneStart ! ! set LOCALCLASSPATH=%CLASSPATH% ! for %%i in ("%XSDDOC_HOME%\lib\*.jar") do call "%XSDDOC_HOME%\bin\lcp.bat" %%i ! ! "%JAVA_HOME%\bin\java.exe" -classpath "%LOCALCLASSPATH%" net.sf.xframe.xsddoc.Main %CMD_LINE_ARGS% ! ! set LOCALCLASSPATH= ! set CMD_LINE_ARGS= ! ! if "%OS%"=="Windows_NT" @endlocal --- 1,50 ---- ! @echo off ! ! rem This file is part of the xframe software package ! rem hosted at http://xframe.sourceforge.net ! rem ! rem Copyright (c) 2003 Kurt Riede. ! rem ! rem This library is free software; you can redistribute it and/or ! rem modify it under the terms of the GNU Lesser General Public ! rem License as published by the Free Software Foundation; either ! rem version 2.1 of the License, or (at your option) any later version. ! rem ! rem This library is distributed in the hope that it will be useful, ! rem but WITHOUT ANY WARRANTY; without even the implied warranty of ! rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! rem Lesser General Public License for more details. ! rem ! rem You should have received a copy of the GNU Lesser General Public ! rem License along with this library; if not, write to the Free Software ! rem Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! ! rem win32 batch file for command line interface of xsddoc. ! rem ! rem author <a href="mailto:kurt.riede-S0/[email protected]">Kurt Riede</a> ! ! if "%OS%"=="Windows_NT" @setlocal ! ! set DEFAULT_XSDDOC_HOME=%~dp0.. ! if "%XSDDOC_HOME%"=="" set XSDDOC_HOME=%DEFAULT_XSDDOC_HOME% ! set DEFAULT_XSDDOC_HOME= ! ! set CMD_LINE_ARGS=%1 ! if ""%1""=="""" goto doneStart ! shift ! :setupArgs ! if ""%1""=="""" goto doneStart ! set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1 ! shift ! goto setupArgs ! :doneStart ! ! set LOCALCLASSPATH=%CLASSPATH% ! for %%i in ("%XSDDOC_HOME%\lib\*.jar") do call "%XSDDOC_HOME%\bin\lcp.bat" %%i ! ! "%JAVA_HOME%\bin\java.exe" -classpath "%LOCALCLASSPATH%" net.sf.xframe.xsddoc.Main %CMD_LINE_ARGS% ! ! set LOCALCLASSPATH= ! set CMD_LINE_ARGS= ! ! if "%OS%"=="Windows_NT" @endlocal Index: lcp.bat =================================================================== RCS file: /cvsroot/xframe/xsddoc/bin/lcp.bat,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lcp.bat 30 Oct 2003 18:31:52 -0000 1.1 --- lcp.bat 30 Sep 2004 11:24:06 -0000 1.2 *************** *** 1,36 **** ! rem This file is part of the xframe software package ! rem hosted at http://xframe.sourceforge.net ! rem ! rem Copyright (c) 2003 Kurt Riede. ! rem ! rem This library is free software; you can redistribute it and/or ! rem modify it under the terms of the GNU Lesser General Public ! rem License as published by the Free Software Foundation; either ! rem version 2.1 of the License, or (at your option) any later version. ! rem ! rem This library is distributed in the hope that it will be useful, ! rem but WITHOUT ANY WARRANTY; without even the implied warranty of ! rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! rem Lesser General Public License for more details. ! rem ! rem You should have received a copy of the GNU Lesser General Public ! rem License along with this library; if not, write to the Free Software ! rem Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! ! rem win32 batch file for command line interface of xsd. ! rem ! rem author <a href="mailto:kurt.riede-S0/[email protected]">Kurt Riede</a> ! ! set _CLASSPATHCOMPONENT=%1 ! if ""%1""=="""" goto gotAllArgs ! shift ! ! :argCheck ! if ""%1""=="""" goto gotAllArgs ! set _CLASSPATHCOMPONENT=%_CLASSPATHCOMPONENT% %1 ! shift ! goto argCheck ! ! :gotAllArgs ! set LOCALCLASSPATH=%_CLASSPATHCOMPONENT%;%LOCALCLASSPATH% ! --- 1,36 ---- ! rem This file is part of the xframe software package ! rem hosted at http://xframe.sourceforge.net ! rem ! rem Copyright (c) 2003 Kurt Riede. ! rem ! rem This library is free software; you can redistribute it and/or ! rem modify it under the terms of the GNU Lesser General Public ! rem License as published by the Free Software Foundation; either ! rem version 2.1 of the License, or (at your option) any later version. ! rem ! rem This library is distributed in the hope that it will be useful, ! rem but WITHOUT ANY WARRANTY; without even the implied warranty of ! rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! rem Lesser General Public License for more details. ! rem ! rem You should have received a copy of the GNU Lesser General Public ! rem License along with this library; if not, write to the Free Software ! rem Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! ! rem win32 batch file for command line interface of xsd. ! rem ! rem author <a href="mailto:kurt.riede-S0/[email protected]">Kurt Riede</a> ! ! set _CLASSPATHCOMPONENT=%1 ! if ""%1""=="""" goto gotAllArgs ! shift ! ! :argCheck ! if ""%1""=="""" goto gotAllArgs ! set _CLASSPATHCOMPONENT=%_CLASSPATHCOMPONENT% %1 ! shift ! goto argCheck ! ! :gotAllArgs ! set LOCALCLASSPATH=%_CLASSPATHCOMPONENT%;%LOCALCLASSPATH% ! ------------------------------------------------------- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your business? Tell us what you think of them. Give us Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more http://productguide.itmanagersjournal.com/guidepromo.tmpl