Plug in not working correctly (ant build file)
Posted: Tue Sep 13, 2016 9:47 pm
I created a plugin and it is integrated into oXygen. I got a Build Successful after running the integrator, and my PDF appears in the new output directory that I specified in the ant build file. However, when I try to edit elements, ,my changes do not appear in my PDF. If it helps, I'm following the dita for Print (http://xmlpress.net/publications/dita/dita-for-print/) instructions. I have gone through these instructions multiple times to ensure my files are all set up correctly.
I tried this test and my PDF output was unchanged:
Copied commons-attr.xsl from DITA-OT/plugins/org.dita.pdf2/cfg/fo/attrs to DITA-OT/plugins/com.company.custpdf/cfg/fo/attrs.
In the copied file in my plugin directory, I changed:
to:
In my custom.xsl, I added:
Sorry for the novel - I'm an xsl-fo newbie just trying to add an image to my cover page and adjust my global margins 
I tried this test and my PDF output was unchanged:
Copied commons-attr.xsl from DITA-OT/plugins/org.dita.pdf2/cfg/fo/attrs to DITA-OT/plugins/com.company.custpdf/cfg/fo/attrs.
In the copied file in my plugin directory, I changed:
Code: Select all
<xsl:attribute-set name=topic.title" use-attribute-sets="common.title">
<xsl:attribute name="border-bottom">3pt solid black<xsl:attribute>
Code: Select all
<xsl:attribute-set name=topic.title" use-attribute-sets="common.title">
<xsl:attribute name="border-bottom">3pt solid red<xsl:attribute>
Code: Select all
<xsl:import href="commons-attrs.xsl"/>
