我需要步骤如何使用氧气中名为com.elovirta.ooxml的DITA OT插件将dita转换为单词

时间:2017-01-03 08:31:11

标签: docx dita oxygenxml dita-ot

我需要使用this链接使用名为 com.elovirta.ooxml 的插件名称将DITA转换为氧气中的字处理,

输入Dita xml文件是:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE topic
  PUBLIC "urn:pubid:doctypes:dita:topic" "topic.dtd">
<topic id="d63e3" xml:lang="en-US" outputclass="Student_Notebook">
  <title outputclass="Title">Student Notebook</title>
  <body>
    <section outputclass="Handout"><title>Labs Student Notebook
        1</title><p outputclass="SC_P_Large_Center">Module 1</p><p
        outputclass="SC_P_Large_Center">Literacy Labs</p><p outputclass="SC_P_Large_Center">Student
        Notebook</p><p outputclass="SC_P_Medium">________________ _______________ _______________
        _______________ </p></section>
  </body>
</topic>

我尝试通过DITA-OT 2.1.0,在dita ot中安装了三个插件com.elovirta.ooxml,org.dita.base,org.dita.pdf2,因为这三个插件相互依赖所以我安装了三个插件。在 com.elovirta.ooxml 这样的plugin.xml代码中提到:

<?xml version="1.0" encoding="UTF-8"?>
<plugin id="com.elovirta.ooxml">
  <require plugin="org.dita.pdf2"/>
  <feature extension="dita.conductor.transtype.check" value="docx"/>
  <feature extension="dita.transtype.print" value="docx"/>
  <feature extension="dita.conductor.target.relative" file="integrator.xml"/>
</plugin>

所以我安装了三个插件。之后我在命令提示符下运行了命令,如下所示:

C:\DITA-OT\dita-ot-2.1.0-dita2word>ant -f integrator.xml

Buildfile: C:\DITA-OT\dita-ot-2.1.0-dita2word\integrator.xml

strict:

integrate:
      [jar] Building jar: C:\DITA-OT\dita-ot-2.1.0-dita2word\lib\dost-configuration.jar

BUILD SUCCESSFUL
Total time: 0 seconds

之后

我在氧气中完成了这个过程:

  • 在转型场景中,我选择了DITA OT转换,

    我选择的转换类型,

    我没有改变任何参数

    以下屏幕截图中显示的3个点

enter image description here

通过点击确定按钮,我在转换运行后创建了方案我收到此错误:

Description: [DOTJ025E] The input to the "topic merge" transform process could not be found. Correct any earlier transform errors and try the build again, or see the DITA-OT User Guide for additional causes.

所以我在插件安装后尝试使用dita-ot-2.4.1更新版本,我已经运行了命令:

C:\DITA-OT\dita-ot-2.4.1>ant -f integrator.xml
Buildfile: C:\DITA-OT\dita-ot-2.4.1\integrator.xml

integrate:

BUILD FAILED
C:\DITA-OT\dita-ot-2.4.1\integrator.xml:43: java.lang.NoClassDefFoundError: com/google/common/collect/ImmutableSet
        at org.dita.dost.platform.Integrator.<clinit>(Integrator.java:79)
        at org.dita.dost.platform.IntegratorTask.execute(IntegratorTask.java:32)
        at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:293)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
        at org.apache.tools.ant.Task.perform(Task.java:348)
        at org.apache.tools.ant.Target.execute(Target.java:435)
        at org.apache.tools.ant.Target.performTasks(Target.java:456)
        at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1405)
        at org.apache.tools.ant.Project.executeTarget(Project.java:1376)
        at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
        at org.apache.tools.ant.Project.executeTargets(Project.java:1260)
        at org.apache.tools.ant.Main.runBuild(Main.java:854)
        at org.apache.tools.ant.Main.startAnt(Main.java:236)
        at org.apache.tools.ant.launch.Launcher.run(Launcher.java:285)
        at org.apache.tools.ant.launch.Launcher.main(Launcher.java:112)
Caused by: java.lang.ClassNotFoundException: com.google.common.collect.ImmutableSet
        at org.apache.tools.ant.AntClassLoader.findClassInComponents(AntClassLoader.java:1388)
        at org.apache.tools.ant.AntClassLoader.findClass(AntClassLoader.java:1337)
        at org.apache.tools.ant.AntClassLoader.loadClass(AntClassLoader.java:1089)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
        ... 19 more

Total time: 0 seconds

我收到此错误,所以我没有使用DITA OT更新版本。

git 中执行此过程后执行此命令

$ ./dita --input=/E/SampleFile.dita -f docx

我收到的错误是:

 [pipeline] Error at xsl:element on line 64 of topicmergeImpl.xsl:
 [pipeline]   XTDE0820: Invalid element name. Invalid QName {}
 [pipeline]   in built-in template rule
Error: Failed to run pipeline: Failed to process merged topics: Invalid element name. Invalid QName {}

请提供解决此错误以及dita2word转换的建议。

先谢谢

1 个答案:

答案 0 :(得分:1)

缺少Java类,可能是因为您混合了不兼容的工具包版本或其插件。

由于您使用的是Windows计算机,因此需要一个可用的命令行界面来执行以下命令。我建议您安装Git,因为它附带 Git Bash ,它包含一个良好的命令行界面,允许您执行基本的Unix命令,如 ls vi 卷曲

Git Bash,执行:

  1. 打开您的用户主目录。

    mkdir temp
    
  2. 创建 temp 目录。

    cd temp
    
  3. 转到 temp 目录。

    curl -LO https://github.com/dita-ot/dita-ot/releases/download/2.4.1/dita-ot-2.4.1.zip
    
  4. 下载最新的DITA-OT。

    unzip dita-ot-2.4.1.zip
    
  5. 解压缩OT。

    cd dita-ot-2.4.1/bin/
    
  6. 转到 bin 目录。

    ./dita --install https://github.com/jelovirt/com.elovirta.ooxml/archive/master.zip
    
  7. 安装 com.elovirta.ooxml 插件。

    ./dita --input ../docsrc/userguide-book.ditamap -f docx
    
  8. 生成DITA-OT文档的docx。

    input