diff options
author | Olivier Hallot <olivier.hallot@libreoffice.org> | 2022-09-17 16:25:34 -0300 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@libreoffice.org> | 2022-09-17 22:35:55 +0200 |
commit | 7c924256f4ea9c328d7b384b2cff31829399decd (patch) | |
tree | 3ef3b3d78e6c493d9719f44a09e97a98f3457a86 /help3xsl | |
parent | 112fa92d3b4c9c643c76afbfe3b04269308a7705 (diff) |
tdf119421 - More on conditional formatting/Icon sets
+ Housekeeping
+ handle icon images in the XSLT
+ Fill missing information on Icon Sets.
Change-Id: Iaab3e1231ad4a2212adfc1d353a593cc116c7978
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/140108
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Diffstat (limited to 'help3xsl')
-rw-r--r-- | help3xsl/online_transform.xsl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/help3xsl/online_transform.xsl b/help3xsl/online_transform.xsl index fa28ad0ffa..6176574c33 100644 --- a/help3xsl/online_transform.xsl +++ b/help3xsl/online_transform.xsl @@ -1182,6 +1182,9 @@ <xsl:when test="starts-with(@src,'media/screenshots/')"> <xsl:value-of select="'screenshot'"/> </xsl:when> + <xsl:when test="starts-with(@src,'media/icon-themes/')"> + <xsl:value-of select="'iconimage'"/> + </xsl:when> <xsl:when test="starts-with(@src,'media/')"> <xsl:value-of select="'genericimage'"/> </xsl:when> |