summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-03-08 12:13:34 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-03-08 12:26:34 +0100
commitaf5a4f4cb39eb8e5201d402bc5810d60e9ee72b8 (patch)
tree1d632d21256d455e0ecf5b28ddb8f68db030e713 /writerfilter
parent64b08929557ea10f74a2e960db9d67e70b63dceb (diff)
writerfilter: remove no longer needed doctok/resourcetools.xsl
Change-Id: I378df2ddfc0912610b5f0d674c2a76601f4440c8
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/CustomTarget_source.mk1
-rw-r--r--writerfilter/source/doctok/resourcetools.xsl386
2 files changed, 0 insertions, 387 deletions
diff --git a/writerfilter/CustomTarget_source.mk b/writerfilter/CustomTarget_source.mk
index e2a973214532..b562fbc8ba98 100644
--- a/writerfilter/CustomTarget_source.mk
+++ b/writerfilter/CustomTarget_source.mk
@@ -72,7 +72,6 @@ writerfilter_GEN_ooxml_ResourceIds_hxx=$(writerfilter_WORK)/ooxml/resourceids.hx
writerfilter_GEN_ooxml_Token_tmp=$(writerfilter_WORK)/token.tmp
writerfilter_GEN_ooxml_Token_xml=$(writerfilter_WORK)/token.xml
writerfilter_SRC_doctok_Model=$(writerfilter_SRC)/doctok/resources.xmi
-writerfilter_SRC_doctok_ResourceTools_xsl=$(writerfilter_SRC)/doctok/resourcetools.xsl
writerfilter_SRC_model_NamespacePreprocess=$(writerfilter_SRC)/resourcemodel/namespace_preprocess.pl
writerfilter_SRC_ooxml_Analyze_model_xsl=$(writerfilter_SRC)/ooxml/analyzemodel.xsl
writerfilter_SRC_ooxml_FactoryTools_xsl=$(writerfilter_SRC)/ooxml/factorytools.xsl
diff --git a/writerfilter/source/doctok/resourcetools.xsl b/writerfilter/source/doctok/resourcetools.xsl
deleted file mode 100644
index c00dc9cdaf67..000000000000
--- a/writerfilter/source/doctok/resourcetools.xsl
+++ /dev/null
@@ -1,386 +0,0 @@
-<!--
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
--->
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:UML = 'org.omg.xmi.namespace.UML' xml:space="default">
-<xsl:output method="text" />
-
-<xsl:template name='idtoqname'>
- <xsl:param name='id'/>
- <xsl:text>NS_</xsl:text>
- <xsl:value-of select='substring-before($id, ":")'/>
- <xsl:text>::LN_</xsl:text>
- <xsl:value-of select='substring-after($id, ":")'/>
-</xsl:template>
-
-<xsl:template name="parenttype">
- <xsl:param name='type'/>
- <xsl:for-each select='/XMI/XMI.content/UML:Model/UML:Namespace.ownedElement/UML:Generalization[UML:Generalization.child/UML:Class/@xmi.idref=$type]'>
- <xsl:value-of select='./UML:Generalization.parent/UML:Class/@xmi.idref'/>
- </xsl:for-each>
-</xsl:template>
-
-<xsl:template name='saltype'>
- <xsl:param name='type'/>
- <xsl:param name='parenttype'/>
- <xsl:choose>
- <xsl:when test="$type='U8'">sal_uInt8</xsl:when>
- <xsl:when test="$type='S8'">sal_Int8</xsl:when>
- <xsl:when test="$type='U16'">sal_uInt16</xsl:when>
- <xsl:when test="$type='S16'">sal_Int16</xsl:when>
- <xsl:when test="$type='U32'">sal_uInt32</xsl:when>
- <xsl:when test="$type='S32'">sal_Int32</xsl:when>
- <xsl:when test="$type='String'">OUString</xsl:when>
- <xsl:otherwise>
- <xsl:text>writerfilter::Reference &lt; </xsl:text>
- <xsl:value-of select='$parenttype'/>
- <xsl:text> &gt;::Pointer_t</xsl:text>
- </xsl:otherwise>
- </xsl:choose>
-</xsl:template>
-
-<xsl:template name='typetype'>
- <xsl:param name='type'/><xsl:choose>
- <xsl:when test="$type='U8'">simple</xsl:when>
- <xsl:when test="$type='S8'">simple</xsl:when>
- <xsl:when test="$type='U16'">simple</xsl:when>
- <xsl:when test="$type='S16'">simple</xsl:when>
- <xsl:when test="$type='U32'">simple</xsl:when>
- <xsl:when test="$type='S32'">simple</xsl:when>
- <xsl:when test="$type='String'">string</xsl:when>
- <xsl:when test="$type='Binary'">binary</xsl:when>
- <xsl:otherwise>complex</xsl:otherwise>
-</xsl:choose>
-</xsl:template>
-
-<xsl:template name="valuetype">
- <xsl:param name="type"/>
- <xsl:choose>
- <xsl:when test='$type="U8"'>WW8IntValue</xsl:when>
- <xsl:when test='$type="S8"'>WW8IntValue</xsl:when>
- <xsl:when test='$type="U16"'>WW8IntValue</xsl:when>
- <xsl:when test='$type="S16"'>WW8IntValue</xsl:when>
- <xsl:when test='$type="U32"'>WW8IntValue</xsl:when>
- <xsl:when test='$type="S32"'>WW8IntValue</xsl:when>
- <xsl:otherwise>WW8PropertiesValue</xsl:otherwise>
- </xsl:choose>
-</xsl:template>
-
-<xsl:template match="UML:Attribute" mode="valuetype">
- <xsl:call-template name="valuetype">
- <xsl:with-param name="type" select='.//UML:DataType/@xmi.idref'/>
- </xsl:call-template>
-</xsl:template>
-
-<xsl:template name="qnametostrattrs">
- <xsl:text>
- /* Attributes */</xsl:text>
- <xsl:for-each select='.//UML:Attribute[@name!="reserved"]'>
- <xsl:for-each select='.//UML:TaggedValue[.//UML:TagDefinition/@xmi.idref="attrid"]'>
- <xsl:choose>
- <xsl:when test='.//UML:Stereotype[@xmi.idref="noresolve"]'>
- </xsl:when>
- <xsl:otherwise>
- <xsl:text>
- mMap[</xsl:text>
- <xsl:call-template name='idtoqname'>
- <xsl:with-param name='id'><xsl:value-of select='.//UML:TaggedValue.dataValue'/></xsl:with-param>
- </xsl:call-template>
- <xsl:text>] = "</xsl:text>
- <xsl:value-of select='.//UML:TaggedValue.dataValue'/>
- <xsl:text>";</xsl:text>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:for-each>
- </xsl:for-each>
-</xsl:template>
-
-<xsl:key name="ids" match='UML:Attribute[@name!="reserved"]//UML:TaggedValue[.//UML:TagDefinition/@xmi.idref="attrid"]|UML:Operation[@name!="reserved"]//UML:TaggedValue[.//UML:TagDefinition/@xmi.idref="opid"]' use=".//UML:TaggedValue.dataValue"/>
-
-<xsl:template match="UML:Model" mode="qnametostrfunc">
- <xsl:text>
-string qnameToString(sal_uInt32 nToken)
-{
- string sResult;
-
- switch (nToken)
- {
- // Attributes</xsl:text>
- <xsl:for-each select='.//UML:Attribute[@name!="reserved"]//UML:TaggedValue[.//UML:TagDefinition/@xmi.idref="attrid"]'>
- <xsl:choose>
- <xsl:when test='.//UML:Stereotype[@xmi.idref="noresolve"]'>
- </xsl:when>
- <xsl:otherwise>
- <xsl:if test="generate-id(key('ids', .//UML:TaggedValue.dataValue)[1])=generate-id(.)">
- <xsl:text>
- case </xsl:text>
- <xsl:call-template name='idtoqname'>
- <xsl:with-param name='id'><xsl:value-of select='.//UML:TaggedValue.dataValue'/></xsl:with-param>
- </xsl:call-template>
- <xsl:text>:
- sResult = "</xsl:text>
- <xsl:value-of select='.//UML:TaggedValue.dataValue'/>
- <xsl:text>";
- break;</xsl:text>
- </xsl:if>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:for-each>
- <xsl:text>
- // Operations</xsl:text>
- <xsl:for-each select='.//UML:Operation[@name!="reserved"]//UML:TaggedValue[.//UML:TagDefinition/@xmi.idref="opid"]'>
- <xsl:choose>
- <xsl:when test='.//UML:Stereotype[@xmi.idref="noresolve"]'>
- </xsl:when>
- <xsl:otherwise>
- <xsl:if test="generate-id(key('ids', .//UML:TaggedValue.dataValue)[1])=generate-id(.)">
- <xsl:text>
- case </xsl:text>
- <xsl:call-template name='idtoqname'>
- <xsl:with-param name='id'><xsl:value-of select='.//UML:TaggedValue.dataValue'/></xsl:with-param>
- </xsl:call-template>
- <xsl:text>:
- sResult = "</xsl:text>
- <xsl:value-of select='.//UML:TaggedValue.dataValue'/>
- <xsl:text>";
- break;</xsl:text>
- </xsl:if>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:for-each>
- <xsl:text>
- // Classes:</xsl:text>
- <xsl:for-each select='.//UML:Class[@name!="reserved"]//UML:TaggedValue[.//UML:TagDefinition/@xmi.idref="classid"]'>
- <xsl:text>
- case </xsl:text>
- <xsl:call-template name='idtoqname'>
- <xsl:with-param name='id'><xsl:value-of select='.//UML:TaggedValue.dataValue'/></xsl:with-param>
- </xsl:call-template>
- <xsl:text>:
- sResult = "</xsl:text>
- <xsl:value-of select='.//UML:TaggedValue.dataValue'/>
- <xsl:text>";
- break;</xsl:text>
- </xsl:for-each>
- <xsl:text>
- default:
- ;
- }
-
- return sResult;
-}</xsl:text>
-</xsl:template>
-
-<xsl:template match='UML:Model' mode='sprmcodetostr'>
-<xsl:text>
-SprmIdToString::SprmIdToString()
-{</xsl:text>
-<xsl:variable name='tmp'>map &lt; sal_uInt32, string &gt; </xsl:variable>
-<xsl:for-each select='.//UML:Class[.//UML:Stereotype/@xmi.idref="ww8sprm"]'>
- <xsl:variable name="sprmconst">
- <xsl:call-template name="sprmCodeOfClass"/>
- </xsl:variable>
- <xsl:text>
- mMap[</xsl:text>
- <xsl:value-of select="$sprmconst"/>
- <xsl:text>] = "</xsl:text>
- <xsl:value-of select='.//UML:TaggedValue[.//UML:TagDefinition/@xmi.idref="sprmid"]//UML:TaggedValue.dataValue'/>
- <xsl:text>";</xsl:text>
-</xsl:for-each>
-<xsl:text>
-}
-</xsl:text>
-</xsl:template>
-
-<xsl:key name="classes-with-kind" match="UML:TagDefinition[@xmi.idref='kind']"
- use="ancestor::UML:TaggedValue/UML:TaggedValue.dataValue"/>
-
-<xsl:template name="sprmCodeOfClass">
- <xsl:variable name="tmp">
- <xsl:text>sprm:</xsl:text>
- <xsl:value-of select="substring-after(@name, 'sprm')"/>
- </xsl:variable>
- <xsl:call-template name="idtoqname">
- <xsl:with-param name="id" select="$tmp"/>
- </xsl:call-template>
-</xsl:template>
-
-<xsl:template name="sprmkindcase">
- <xsl:param name="kind"/>
- <xsl:for-each select="key('classes-with-kind', $kind)/ancestor::UML:Class">
- <xsl:text>
- case </xsl:text>
- <xsl:call-template name="sprmCodeOfClass"/>
- <xsl:text>:</xsl:text>
- </xsl:for-each>
-</xsl:template>
-
-<xsl:template match="UML:Model" mode='sprmkind'>
-<xsl:text>
-Sprm::Kind SprmKind(sal_uInt32 sprmCode)
-{
- Sprm::Kind nResult = Sprm::UNKNOWN;
-
- switch(sprmCode)
- {</xsl:text>
- <xsl:call-template name="sprmkindcase">
- <xsl:with-param name="kind">paragraph</xsl:with-param>
- </xsl:call-template>
- <xsl:text>
- nResult = Sprm::PARAGRAPH;
- break;</xsl:text>
- <xsl:call-template name="sprmkindcase">
- <xsl:with-param name="kind">character</xsl:with-param>
- </xsl:call-template>
- <xsl:text>
- nResult = Sprm::CHARACTER;
- break;</xsl:text>
- <xsl:call-template name="sprmkindcase">
- <xsl:with-param name="kind">table</xsl:with-param>
- </xsl:call-template>
- <xsl:text>
- nResult = Sprm::TABLE;
- break;</xsl:text>
- <xsl:text>
- default:
- break;
- }
-
- return nResult;
-}
-</xsl:text>
-</xsl:template>
-
-<xsl:template match="UML:Model" mode='sprmids'>
- <xsl:text>
-namespace NS_sprm { </xsl:text>
- <xsl:for-each select=".//UML:Class[.//UML:Stereotype/@xmi.idref='ww8sprm']">
- <xsl:variable name="sprmcode">
- <xsl:value-of select=".//UML:TaggedValue[.//UML:TagDefinition/@xmi.idref = 'sprmcode']/UML:TaggedValue.dataValue"/>
- </xsl:variable>
- <xsl:variable name="sprmcodelower">
- <xsl:value-of select="translate($sprmcode, 'ABCDEF', 'abcdef')"/>
- </xsl:variable>
- <xsl:variable name="sprmidname">
- <xsl:text>LN_</xsl:text>
- <xsl:value-of select="substring-after(@name, 'sprm')"/>
- </xsl:variable>
- <xsl:text>
- const sal_uInt16 </xsl:text>
- <xsl:value-of select="$sprmidname"/>
- <xsl:text> = </xsl:text>
- <xsl:value-of select="$sprmcodelower"/>
- <xsl:text>;</xsl:text>
- </xsl:for-each>
- <xsl:text>
-}
-</xsl:text>
-</xsl:template>
-
-<xsl:template match="UML:Model" mode='sprmidsed'>
- <xsl:text>#!/bin/sh
- cat $1 \&#xa;</xsl:text>
- <xsl:for-each select=".//UML:Class[.//UML:Stereotype/@xmi.idref='ww8sprm']">
- <xsl:variable name="sprmcode">
- <xsl:value-of select=".//UML:TaggedValue[.//UML:TagDefinition/@xmi.idref = 'sprmcode']/UML:TaggedValue.dataValue"/>
- </xsl:variable>
- <xsl:variable name="sprmcodelower">
- <xsl:value-of select="translate($sprmcode, 'ABCDEF', 'abcdef')"/>
- </xsl:variable>
- <xsl:variable name="sprmidname">
- <xsl:text>NS_sprm::LN_</xsl:text>
- <xsl:value-of select="substring-after(@name, 'sprm')"/>
- </xsl:variable>
- <xsl:text>| sed "s/</xsl:text>
-<xsl:value-of select="$sprmcode"/>
-<xsl:text>/</xsl:text>
-<xsl:value-of select="$sprmidname"/>
-<xsl:text>/g" \&#xa;</xsl:text>
- <xsl:text>| sed "s/</xsl:text>
-<xsl:value-of select="$sprmcodelower"/>
-<xsl:text>/</xsl:text>
-<xsl:value-of select="$sprmidname"/>
-<xsl:text>/g" \&#xa;</xsl:text>
- </xsl:for-each>
- <xsl:text> | cat&#xa;</xsl:text>
-</xsl:template>
-
-<xsl:template match="UML:Model" mode='sprmreplace'>
- <xsl:for-each select=".//UML:Class[.//UML:Stereotype/@xmi.idref='ww8sprm']">
- <xsl:variable name="pattern">
- <xsl:value-of select=".//UML:TaggedValue[.//UML:TagDefinition/@xmi.idref = 'sprmcode']/UML:TaggedValue.dataValue"/>
- </xsl:variable>
- <xsl:variable name="lowerpattern">
- <xsl:value-of select="translate($pattern, 'ABCDEF', 'abcdef')"/>
- </xsl:variable>
- <xsl:variable name="upperpattern">
- <xsl:value-of select="translate($pattern, 'abcdef', 'ABCDEF')"/>
- </xsl:variable>
- <xsl:variable name="tmp">
- <xsl:text>sprm:</xsl:text>
- <xsl:value-of select="substring-after(@name, 'sprm')"/>
- </xsl:variable>
- <xsl:variable name="constname">
- <xsl:call-template name="idtoqname">
- <xsl:with-param name="id" select="$tmp"/>
- </xsl:call-template>
- </xsl:variable>
- <xsl:text>
-sed "s/</xsl:text>
- <xsl:value-of select="$lowerpattern"/>
- <xsl:text>/</xsl:text>
- <xsl:value-of select="$constname"/>
- <xsl:text>/g" &lt; $1 > $1.out &amp;&amp; mv $1.out $1 </xsl:text>
- <xsl:text>
-sed "s/</xsl:text>
- <xsl:value-of select="$upperpattern"/>
- <xsl:text>/</xsl:text>
- <xsl:value-of select="$constname"/>
- <xsl:text>/g" &lt; $1 > $1.out &amp;&amp; mv $1.out $1 </xsl:text>
- </xsl:for-each>
- <xsl:text>&#xa;</xsl:text>
-</xsl:template>
-
-<!-- Key all attributes with the same name and same value -->
-<xsl:key name="same-valued-tagged-data"
- match="UML:TaggedValue.dataValue" use="." />
-
- <xsl:template name="licenseheader">
- <xsl:text>
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-/*
- THIS FILE IS GENERATED AUTOMATICALLY! DO NOT EDIT!
- */
-&#xa;</xsl:text>
- </xsl:template>
-</xsl:stylesheet>