plugin.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. This file is part of the DITA Open Toolkit project.
  4. Copyright 2011 Jarno Elovirta
  5. See the accompanying LICENSE file for applicable license.
  6. -->
  7. <plugin id="org.dita.eclipsehelp" version="3.3.3">
  8. <!-- extension points -->
  9. <extension-point id="dita.xsl.eclipse.plugin" name="Eclipse plugin XSLT import"/>
  10. <extension-point id="dita.map.eclipse.index.pre" name="Eclipse index extraction pre-target"/>
  11. <extension-point id="dita.xsl.eclipse.toc" name="Eclipse TOC XSLT import"/>
  12. <extension-point id="dita.conductor.eclipse.toc.param" name="Eclipse Help TOC XSLT parameter"/>
  13. <!-- extensions -->
  14. <transtype name="eclipsehelp" extends="base-html" desc="Eclipse Help">
  15. <param name="args.eclipsehelp.jar.name" desc="Specifies that the output should be zipped and returned using this name." type="string"/>
  16. <param name="args.eclipsehelp.country" desc="Specifies the region for the language that is specified by the args." type="string"/>
  17. <param name="args.eclipsehelp.language" desc="Specifies the base language for translated content, such as en for English." type="string"/>
  18. <param name="args.eclipse.provider" desc="Specifies the name of the person or organization that provides the Eclipse help." type="string">
  19. <val default="true">DITA</val>
  20. </param>
  21. <param name="args.eclipse.version" desc="Specifies the version number to include in the output." type="string">
  22. <val default="true">0.0.0</val>
  23. </param>
  24. <param name="args.eclipse.symbolic.name" desc="Specifies the symbolic name (aka plugin ID) in the output for an Eclipse Help project." type="string">
  25. <val default="true">org.sample.help.doc</val>
  26. </param>
  27. </transtype>
  28. <require plugin="org.dita.xhtml"/>
  29. <feature extension="dita.conductor.lib.import" file="lib/eclipsehelp.jar"/>
  30. <feature extension="ant.import" file="build_dita2eclipsehelp.xml"/>
  31. <template file="build_dita2eclipsehelp_template.xml"/>
  32. <template file="xsl/map2eclipse_template.xsl"/>
  33. <template file="xsl/map2plugin_template.xsl"/>
  34. </plugin>