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 | |
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>
-rw-r--r-- | CustomTarget_html.mk | 2 | ||||
-rw-r--r-- | help3xsl/online_transform.xsl | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/CustomTarget_html.mk b/CustomTarget_html.mk index 3bb5c0a19e..e73ea160e0 100644 --- a/CustomTarget_html.mk +++ b/CustomTarget_html.mk @@ -237,8 +237,6 @@ $(call gb_CustomTarget_get_workdir,helpcontent2/help3xsl)/%/html.text : \ || exit \ ; done <"$$RESPONSEFILE" \ && rm "$$RESPONSEFILE" \ - && find $(call gb_CustomTarget_get_workdir,helpcontent2/help3xsl/$*) -type f -empty -delete \ - && find $(call gb_CustomTarget_get_workdir,helpcontent2/help3xsl/$*) -type d -empty -delete \ && touch $@ $(call gb_Trace_EndRange,$*/$(@F),XSL) 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 --> |