[Libreoffice-commits] help.git: help3xsl/xhp2html.sh
Olivier Hallot
olivier.hallot at libreoffice.org
Fri Jan 26 11:49:17 UTC 2018
help3xsl/xhp2html.sh | 14 ++++----------
1 file changed, 4 insertions(+), 10 deletions(-)
New commits:
commit 482fb2a966c3cfde24d94d7f43768b8edf63ceca
Author: Olivier Hallot <olivier.hallot at libreoffice.org>
Date: Fri Jan 26 09:46:22 2018 -0200
Adjust online builder xhp2html.sh to new bookmarks
Change-Id: Ie3a211d7247acd0ef7c15266368d9db7e1c8f232
Reviewed-on: https://gerrit.libreoffice.org/48681
Reviewed-by: Olivier Hallot <olivier.hallot at libreoffice.org>
Tested-by: Olivier Hallot <olivier.hallot at libreoffice.org>
diff --git a/help3xsl/xhp2html.sh b/help3xsl/xhp2html.sh
index d196625f2..919aa63f2 100755
--- a/help3xsl/xhp2html.sh
+++ b/help3xsl/xhp2html.sh
@@ -35,6 +35,8 @@ rm -f $bookmarkFile
touch $bookmarkFile
stub2=\'
+stub1='document.getElementById("Bookmarks").getElementsByClassName( "list" )[0].innerHTML='\'\\
+echo $stub1 >> $bookmarkFile
xslfile=get_bookmark.xsl
@@ -42,43 +44,35 @@ param1=' --stringparam Language '$lang' --stringparam productversion '$productve
# bookmarks for modules
-for i in CALC CHART WRITER DRAW IMPRESS MATH BASIC
+for i in WRITER CALC DRAW IMPRESS CHART MATH BASIC
do
-stub1='document.getElementById("bookmark'$i'").innerHTML='\'\\
sfind=$sourceDir'/'$(echo 'text/s'$i | tr '[:upper:]' '[:lower:]')
param=$param1' --stringparam app '$i
tempFile=$(mktemp)
find $sfind -type f -name "*.xhp" -exec xsltproc $param $xslfile {} + >> $tempFile
-echo $stub1 >> $bookmarkFile
sort -k3b -t\> -s -o $tempFile $tempFile
awk 'NF' $tempFile >> $bookmarkFile
-echo $stub2 >> $bookmarkFile
rm -f $tempFile
done
# Case of SHARED
-stub1='document.getElementById("bookmarkSHARED").innerHTML='\'\\
tempFile=$(mktemp)
param=$param1' --stringparam app SHARED'
find $sourceDir'/text/shared' -type f -name "*.xhp" -exec xsltproc $param $xslfile {} + >> $tempFile
-echo $stub1 >> $bookmarkFile
sort -k3b -t\> -s -o $tempFile $tempFile
awk 'NF' $tempFile >> $bookmarkFile
-echo $stub2 >> $bookmarkFile
rm -f $tempFile
# Case of Explorer (BASE)
-stub1='document.getElementById("bookmarkBASE").innerHTML='\'\\
tempFile=$(mktemp)
param=$param1' --stringparam app BASE'
find $sourceDir'/text/shared/explorer/database' -type f -name "*.xhp" -exec xsltproc $param $xslfile {} + >> $tempFile
-echo $stub1 >> $bookmarkFile
sort -k3b -t\> -s -o $tempFile $tempFile
awk 'NF' $tempFile >> $bookmarkFile
-echo $stub2 >> $bookmarkFile
rm -f $tempFile
+echo $stub2 >> $bookmarkFile
}
More information about the Libreoffice-commits
mailing list