diff options
author | Kurt Zenker <kz@openoffice.org> | 2007-05-10 12:09:23 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2007-05-10 12:09:23 +0000 |
commit | 2150e1cbeed674b716f80af5a01d534f56bc47ca (patch) | |
tree | eff9c144ab425e27aa0cab161e8fe412e8f90988 /officecfg/util | |
parent | 10234ca08aebabd2b0c7b8da2b6d34b1e4def613 (diff) |
INTEGRATION: CWS libxslt02 (1.12.284); FILE MERGED
2006/12/24 08:10:57 cmc 1.12.284.1: #i30380 enable xslt usage by default
Diffstat (limited to 'officecfg/util')
-rw-r--r-- | officecfg/util/alllang.xsl | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/officecfg/util/alllang.xsl b/officecfg/util/alllang.xsl index 6829b247a9a3..4d681242e498 100644 --- a/officecfg/util/alllang.xsl +++ b/officecfg/util/alllang.xsl @@ -5,9 +5,9 @@ $RCSfile: alllang.xsl,v $ - $Revision: 1.12 $ + $Revision: 1.13 $ - last change: $Author: rt $ $Date: 2005-09-08 15:47:44 $ + last change: $Author: kz $ $Date: 2007-05-10 13:09:23 $ The Contents of this file are made available subject to the terms of GNU Lesser General Public License Version 2.1. @@ -39,9 +39,7 @@ xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:oor="http://openoffice.org/2001/registry" xmlns:install="http://openoffice.org/2004/installation" - xmlns:filehelper="http://www.jclark.com/xt/java/org.openoffice.configuration.FileHelper" - exclude-result-prefixes="install" - extension-element-prefixes="filehelper"> + exclude-result-prefixes="install"> <!-- Get the correct format --> <xsl:output method="xml" indent="yes" /> @@ -54,16 +52,10 @@ <xsl:param name="fallback-locale">en-US</xsl:param> <xsl:variable name="schemaRootURL"> - <xsl:choose> - <xsl:when test="function-available('filehelper:makeAbs')"><xsl:value-of select="filehelper:makeAbs($schemaRoot)"/></xsl:when> - <xsl:otherwise><xsl:value-of select="$schemaRoot"/></xsl:otherwise> - </xsl:choose> + <xsl:value-of select="$schemaRoot"/> </xsl:variable> <xsl:variable name="schemaURL"> - <xsl:choose> - <xsl:when test="function-available('filehelper:makeAbs')"><xsl:value-of select="filehelper:makeAbs($xcs)"/></xsl:when> - <xsl:otherwise><xsl:value-of select="$xcs"/></xsl:otherwise> - </xsl:choose> + <xsl:value-of select="$xcs"/> </xsl:variable> <!--************************** TEMPLATES ******************************** --> |