XSL 2.0转换XML文件,同时保留文件夹结构

时间:2013-06-20 18:54:19

标签: xml xslt dita

我有以下XSL将一堆XML文件从一种格式转换为另一种格式。 转型工作正常,但到目前为止我还有两个未解决的问题:

1)首先,在转换文件时,我需要在样式表中调整我的参数,以仅定位名称长度超过7个字符的文件;

2)其次,我需要能够在保留源文件的文件夹结构的同时转换所有文件。我想知道是否有办法保留相同的文件夹结构,如源文件夹。 所有文件都位于基于字母表命名的文件夹中,如:A,B,C,D,F ....所以我需要转换文件夹A中的所有文件并将它们放在名为A的新文件夹中。文件是也按字母顺序命名。

这是我的样式表:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"
xmlns:ditaarch="http://dita.oasis-open.org/architecture/2005/">

<!-- This adds DOCTYPE declaration -->
<xsl:output method="xml" doctype-public="-//OASIS//DTD DITA Glossary//EN"
doctype-system="glossary.dtd" omit-xml-declaration="no" indent="yes"/>

<!-- The below line ensures that all empty space and carriage returns are removed from the title element producing proper file names -->
<xsl:strip-space elements="title"/>

<xsl:param name="files" select="collection('../DITA/B/?select=*.dita;recurse=yes')"/>

<!-- <xsl:variable name="filename" select="concat($files,position(),'topic')" />-->

<xsl:template match="node()">
<xsl:copy copy-namespaces="no">
<xsl:apply-templates select="node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="/">

<xsl:for-each select="$files//topic">
<xsl:if test="string-length(files) &gt; 10">
<!-- not working, the purpose is to drop all the files whose name length is less than two letters -->

<xsl:value-of select="text()" disable-output-escaping="yes"/>
</xsl:if>
<xsl:result-document href="outputDITANEW/B/{title/text()|title/b/text()}.dita">
<glossentry id="{concat('test', generate-id())}">
<glossterm id="{concat('test_title', generate-id())}">
<xsl:value-of select="title"/>
</glossterm>
<glossdef>
<xsl:for-each select="body">
<xsl:apply-templates/>
</xsl:for-each>
</glossdef>
</glossentry>
</xsl:result-document>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>

感谢。

2 个答案:

答案 0 :(得分:2)

(a)select = * .dita实际上是伪装成glob的正则表达式,你应该能够使用类似select=[A-Za-z0-9]{7,}.dita的东西来更具选择性。

(b)应用于文件的函数document-uri()返回输入文件的URI(如果已知),从中可以构造require输出文件名。

答案 1 :(得分:0)

如果您正在使用Oxygen并且安装了DITA框架,那么您将拥有库框架/ dita / DITA / plugins / net.sourceforge.dita4publishers.common.xslt / xsl / lib / relpath_util.xsl

该库提供了操作URL的功能,可以轻松完成输入文档的父路径,计算相对路径等操作。因此,应该只是构建结果URL所需的内容。