Skip to content
Snippets Groups Projects
Commit 16054dd8 authored by Boris Kolpackov's avatar Boris Kolpackov
Browse files

Move the documentation creation scripts to tools

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@637124 13f79535-47bb-0310-9956-ffa450edef68
parent 5eecae86
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
java -Djava.awt.headless=true -classpath "tools/jars/stylebook-1.0-b2.jar:tools/jars/xalan.jar:tools/jars/xerces.jar" org.apache.stylebook.StyleBook "targetDirectory=doc/html" doc/xerces-c_book.xml doc/style
java -classpath "tools/jars/stylebook-1.0-b2.jar;tools/jars/xalan.jar;tools/jars/xerces.jar" org.apache.stylebook.StyleBook "targetDirectory=doc/html" doc/xerces-c_book.xml doc/style
......@@ -180,12 +180,12 @@ rpmbuild -ta &XercesC3SrcInstallDir;.tar.gz (rpm 4.1 and later; ships with RedHa
<p>Before proceeding, copy the contents of the &XercesC3ToolsInstallDir;
distribution into your <code>$XERCESCROOT</code>. Then invoke
a terminal or a command window and setup PATH to include the
JDK 1.2.2 bin directory. Next, cd to the <code>$XERCESCROOT</code>
source root directory, and enter:</p>
JDK 1.2.2 bin directory. Next, cd to the <code>$XERCESCROOT/tools</code>
directory, and enter:</p>
<source>
createDocs.bat (Windows)
./createDocs.sh (UNIX)
createdocs.bat (Windows)
./createdocs.sh (UNIX)
</source>
<p>This should generate the .html files in the 'doc/html' directory.</p>
......
......@@ -395,8 +395,8 @@ catch (const XMLException&amp; toCatch) {
should copy its contents into your <code>&XercesC3SrcInstallDir;</code>
directory.</p>
<p>To regenerate the documentation, go to &XercesC3SrcInstallDir;
and start <code>createDocs.sh</code> (for Unix) or
<p>To regenerate the documentation, go to the &XercesC3SrcInstallDir;/tools
directory and start <code>createdocs.sh</code> (for Unix) or
<code>createdocs.bat</code> (for Windows). The result can be
found in directory <code>&XercesC3SrcInstallDir;/doc/html</code>.</p>
......
java -classpath "jars/stylebook-1.0-b2.jar;jars/xalan.jar;jars/xerces.jar" org.apache.stylebook.StyleBook "targetDirectory=../doc/html" ../doc/xerces-c_book.xml ../doc/style
#!/bin/sh
java -Djava.awt.headless=true -classpath "jars/stylebook-1.0-b2.jar:jars/xalan.jar:jars/xerces.jar" org.apache.stylebook.StyleBook "targetDirectory=../doc/html" ../doc/xerces-c_book.xml ../doc/style
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment