本文介绍了是否有可能使用DITA OT 1.8.5中的XHTML插件将目录复制并粘贴到特定目录中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

Is it possible that a directory or a file copying from 'resource' folder in org.dita.xhtml to out put folder generated by the XHTML DITA OT transform.

如果在插件中使用xsl进行更改,则可能的方式是向我提供代码.

If its possible using xsl changes in plugin its possible means provide me the code.

还有其他方法意味着请指导我执行步骤.

Any other way is there means please guide me the steps to do.

请帮助我.

推荐答案

您应使用 depend.preprocess.post 扩展点或另一个满足您需求的扩展点,以调用新的Ant目标.

You should use the depend.preprocess.post extension point, or another one that fits your needs, to call 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>

这篇关于是否有可能使用DITA OT 1.8.5中的XHTML插件将目录复制并粘贴到特定目录中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 14:29