source: gli/trunk/help/generate-html.sh@ 14129

Last change on this file since 14129 was 12724, checked in by kjdon, 18 years ago

added AutoText stuff

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 437 bytes
Line 
1#!/bin/sh
2
3glihome=$GSDLHOME/gli
4
5if [ "$glihome" == "" ]; then
6 # assume glihelp in its usual place
7 pushd ../ > /dev/null
8 glihome=`pwd`
9 popd > /dev/null
10fi
11
12echo "processing english version"
13cd en
14java -cp $glihome -DGSDLHOME=$GSDLHOME ApplyXSLT ../gen-many-html.xsl help.xml | perl -S ../splithelpdocument.pl
15java -cp $glihome -DGSDLHOME=$GSDLHOME ApplyXSLT ../gen-index-xml.xsl help.xml > help_index.xml
16cd ..
17
18
19
Note: See TracBrowser for help on using the repository browser.