diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2023-08-14 10:12:12 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2023-08-14 10:18:33 +0200 |
commit | ebdeebb9b004df574ec90ead903ffa9c9b1f3235 (patch) | |
tree | a20e7157009ffbb9ff1151f6eb7bff7a05e3b061 /help3xsl | |
parent | a78e5c75ae11f7c401353e526a30f16187cc1f92 (diff) |
Revert "tdf#155193 Do not deliver Help files with indexer=exclude"
This reverts commit 539abfa7c3bbc9f0b234402083c743890b965cf7.
Reason for revert: daily builds fail to build with errors like
ERROR: file '/home/tdf/lode/jenkins/workspace/lo_gerrit/tb/build_master/instdir/help/en-US/text/shared/autokorr/01000000.html' does not exist
See https://ci.libreoffice.org/job/lo_daily_tb_linux_dbg/654/console
Change-Id: I9d00fb2596b280bf09934dfc87db64feb8fe6a80
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/155600
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'help3xsl')
-rw-r--r-- | help3xsl/online_transform.xsl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/help3xsl/online_transform.xsl b/help3xsl/online_transform.xsl index d95425a593..856dccbde0 100644 --- a/help3xsl/online_transform.xsl +++ b/help3xsl/online_transform.xsl @@ -118,9 +118,8 @@ ############# //--> -<!-- Create the document skeleton, test if the indexer is to include in output --> +<!-- Create the document skeleton --> <xsl:template match="/"> -<xsl:if test="//topic[@indexer='include']"> <xsl:variable name="htmlpage"><xsl:value-of select="concat(substring-before($filename,'.xhp'),'.html')"/></xsl:variable> <xsl:variable name="titleL10N"> <xsl:call-template name="brand"><xsl:with-param name="string"><xsl:value-of select="$title"/></xsl:with-param></xsl:call-template> @@ -279,7 +278,6 @@ </footer> </body> </html> -</xsl:if> </xsl:template> <!-- AHELP --> |