plugin.xml 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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.xhtml">
  8. <!-- extension points -->
  9. <extension-point id="dita.xsl.xhtml" name="HTML/XHTML XSLT import"/>
  10. <extension-point id="dita.conductor.html.param" name="HTML XSLT parameters"/>
  11. <extension-point id="dita.conductor.xhtml.param" name="XHTML XSLT parameters"/>
  12. <extension-point id="dita.conductor.xhtml.toc.param" name="HTML/XSLT XSLT parameter"/>
  13. <extension-point id="dita.xsl.htmltoc" name="HTML/XHTML TOC XSLT import"/>
  14. <extension-point id="dita.xsl.html.cover" name="HTML/XHTML Cover XSLT import"/>
  15. <!-- extensions -->
  16. <transtype name="base-html" abstract="true" desc="HTML-based output">
  17. <param name="args.artlbl" desc="Specifies whether to generate a label for each image; the label will contain the image file name." type="enum">
  18. <val>yes</val>
  19. <val default="true">no</val>
  20. </param>
  21. <param name="args.copycss" desc="Specifies whether to copy the custom .css file to the output directory." type="enum">
  22. <val>yes</val>
  23. <val default="true">no</val>
  24. </param>
  25. <param name="args.css" desc="Specifies the name of a custom .css file." type="file"/>
  26. <param name="args.csspath" desc="Specifies the location of a copied .css file relative to the output directory." type="file"/>
  27. <param name="args.cssroot" desc="Specifies the directory that contains the custom .css file." type="file"/>
  28. <param name="args.dita.locale" desc="Specifies the language locale file to use for sorting index entries." type="string"/>
  29. <param name="args.ftr" desc="Specifies an XML file that contains content for a running footer." type="file"/>
  30. <param name="args.gen.default.meta"
  31. desc="Specifies whether to generate extra metadata that targets parental control scanners, meta elements with name=&#34;security&#34; and name=&#34;Robots&#34;." type="enum">
  32. <val>yes</val>
  33. <val default="true">no</val>
  34. </param>
  35. <param name="args.hdf" desc="Specifies an XML file that contains content to be placed in the document head." type="file"/>
  36. <param name="args.hdr" desc="Specifies an XML file that contains content for a running header." type="file"/>
  37. <param name="args.hide.parent.link" desc="Specifies whether to hide links to parent topics in the HTML or XHTML output." type="enum">
  38. <val>yes</val>
  39. <val default="true">no</val>
  40. </param>
  41. <param name="args.indexshow" desc="Specifies whether the content of &lt;indexterm&gt; elements are rendered in the output." type="enum">
  42. <val>yes</val>
  43. <val default="true">no</val>
  44. </param>
  45. <param name="args.outext" desc="Specifies the file extension for HTML or XHTML output." type="string">
  46. <val default="true">html</val>
  47. </param>
  48. <param name="args.xhtml.classattr" desc="Specifies whether to include the DITA class ancestry inside the XHTML elements." type="enum">
  49. <val default="true">yes</val>
  50. <val>no</val>
  51. </param>
  52. <param name="args.xsl" desc="Specifies a custom XSL file to be used instead of the default XSL transformation." type="file"/>
  53. </transtype>
  54. <transtype name="xhtml" extends="base-html" desc="XHTML">
  55. <param name="args.xhtml.contenttarget" desc="Specifies the value of the @target attribute on the &lt;base&gt; element in the TOC file." type="string">
  56. <val default="true">contentwin</val>
  57. </param>
  58. <param name="args.xhtml.toc" desc="Specifies the base name of the TOC file." type="string">
  59. <val default="true">index</val>
  60. </param>
  61. <param name="args.xhtml.toc.class" desc="Specifies the value of the @class attribute on the &lt;body&gt; element in the TOC file." type="string"/>
  62. <param name="args.xhtml.toc.xsl" desc="Specifies a custom XSL file to be used for TOC generation." type="file"/>
  63. </transtype>
  64. <feature extension="ant.import" file="build_general.xml"/>
  65. <feature extension="ant.import" file="build_dita2xhtml.xml"/>
  66. <feature extension="dita.xsl.messages" file="resource/messages.xml"/>
  67. <template file="build_general_template.xml"/>
  68. <template file="build_dita2xhtml_template.xml"/>
  69. <template file="xsl/dita2html-base_template.xsl"/>
  70. <template file="xsl/map2htmltoc_template.xsl"/>
  71. <template file="xsl/map2html-coverImpl_template.xsl"/>
  72. </plugin>