是否有可能使用DITA OT 1.8.5中的XHTML插件将目录复制并粘贴到特定目录

时间:2017-02-03 12:40:58

标签: xslt xhtml dita oxygenxml dita-ot

是否可能将目录或文件从org.dita.xhtml中的'resource'文件夹复制到XHTML DITA OT生成的输出文件夹。

如果可以在插件中使用xsl更改,则可能的方法为我提供代码。

有任何其他方式,请指导我做的步骤。

请帮助我。

1 个答案:

答案 0 :(得分:1)

您应该使用depend.preprocess.post扩展点或其他符合您需求的扩展点来呼叫a new Ant target

<强>的plugin.xml

<plugin id="com.example.extendchunk">
  <feature extension="depend.preprocess.post" value="copyfiles"/>
  <feature extension="dita.conductor.target.relative" file="myAntStuffWrapper.xml"/>
</plugin> 

<强> myAntStuffWrapper.xml

<dummy>
  <import file="myAntStuff.xml"/>
</dummy>

<强> myAntStuff.xml

<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." name="myAntStuff">
  <target name="copyfiles">
    <copy todir="foo">
      <fileset>
        <include name="**/*.bar"/>
      </fileset>
    </copy>
  </target>
</project>