diff options
author | Olivier Hallot <olivier.hallot@libreoffice.org> | 2017-06-05 18:02:01 -0300 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@edx.srv.br> | 2017-06-05 23:05:37 +0200 |
commit | 1ee48ef08e75e6e89b2f2166661d7fe97f60ba12 (patch) | |
tree | 66b7736faeacb490ea24b3ad5c93490abb1138b5 | |
parent | fadaa62d1dd4757a355adb68f58b0a77b5e854b5 (diff) |
Improvement on help pages in browsers
Remove some debug info
Google search box in nice colors
Provision to place icons images in the right location
Change-Id: Ie3f33d52a48f3d8a60cbc4aaf89859a661538a8d
Reviewed-on: https://gerrit.libreoffice.org/38422
Reviewed-by: Olivier Hallot <olivier.hallot@edx.srv.br>
Tested-by: Olivier Hallot <olivier.hallot@edx.srv.br>
-rwxr-xr-x | source/help-to-html.sh | 3 | ||||
-rw-r--r-- | source/online_transform.xsl | 18 |
2 files changed, 11 insertions, 10 deletions
diff --git a/source/help-to-html.sh b/source/help-to-html.sh index e7be6cbead..4dbfeeed64 100755 --- a/source/help-to-html.sh +++ b/source/help-to-html.sh @@ -22,3 +22,6 @@ outfile=$outdir$DIR/$name'html' xsltproc -o $outfile $filter $filep done ln -s text/shared/main0108.html $outdir'index.html' +mkdir $outdir'media/icon-theme' +# cp -rap ../../../../../icon-themes/galaxy/* $outdir/media/icon-theme/ + diff --git a/source/online_transform.xsl b/source/online_transform.xsl index 3e02576fa9..007e9591cb 100644 --- a/source/online_transform.xsl +++ b/source/online_transform.xsl @@ -155,15 +155,15 @@ <div id="TopRight"> <script type="text/javascript"> <![CDATA[ - (function() { + (function() { var cx = '010161382024564278136:jcdsgegjym8'; var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true; gcse.src = 'https://cse.google.com/cse.js?cx=' + cx; - var s = document.getElementsByTagName('script')[0]; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s); - })(); + })(); ]]> </script> <xsl:text disable-output-escaping="yes"><gcse:search></gcse:search></xsl:text> @@ -713,17 +713,12 @@ document.getElementById("bm_system").innerHTML ="System is: "+system; </xsl:variable> <xsl:variable name="dbpostfix"><xsl:call-template name="createDBpostfix"><xsl:with-param name="archive" select="'shared'"/></xsl:call-template></xsl:variable> <xsl:variable name="alt"> - <!--<xsl:variable name="href"><xsl:value-of select="concat($urlpre,'shared/',$alttext,$urlpost,$dbpostfix)"/></xsl:variable>--> - <!--<xsl:variable name="href"><xsl:value-of select="concat($urlpre,'shared/',$alttext)"/></xsl:variable>--> <xsl:variable name="href"><xsl:value-of select="$alttext"/></xsl:variable> <xsl:variable name="anchor"><xsl:value-of select="concat('alt_',$type)"/></xsl:variable> <xsl:variable name="doc" select="document($href)"/> <xsl:apply-templates select="$doc//variable[@id=$anchor]" mode="embedded"/> </xsl:variable> -<!-- <p>href: <xsl:value-of select="$href"/></p> - <p>anchor: <xsl:value-of select="$anchor"/></p> - <p>document: <xsl:value-of select="$doc"/></p>--> - <p class="debug">image source: <xsl:value-of select="$imgsrc"/></p> +<!-- <p class="debug">image source: <xsl:value-of select="$imgsrc"/></p> --> <div class="{$type}"> <table border="0" class="{$type}" cellspacing="0" cellpadding="5"> <tr> @@ -864,6 +859,9 @@ document.getElementById("bm_system").innerHTML ="System is: "+system; <xsl:when test="starts-with(@src,'media/')"> <xsl:value-of select="concat($img_url_internal,@src)"/> </xsl:when> + <xsl:when test="not(starts-with(@src,'media/'))"> + <xsl:value-of select="concat($img_url_internal,'media/icon-theme/',@src)"/> + </xsl:when> <xsl:when test="not($ExtensionId='') and starts-with(@src,$ExtensionId)"> <xsl:value-of select="concat($ExtensionPath,'/',@src)"/> </xsl:when> @@ -879,7 +877,7 @@ document.getElementById("bm_system").innerHTML ="System is: "+system; </xsl:otherwise> </xsl:choose> </xsl:variable> - <p class="debug">Image: <xsl:value-of select="$src"/></p> +<!-- <p class="debug">Image: <xsl:value-of select="$src"/></p>--> <!--<xsl:variable name="src"><xsl:value-of select="concat($img_url_prefix,@src)"/></xsl:variable>--> <xsl:variable name="alt"><xsl:value-of select="./alt"/></xsl:variable> <xsl:variable name="width"> |