Search found 11 matches

by Quick van Rijt
Wed May 12, 2021 3:02 pm
Forum: Other Issues
Topic: Word 2 DITA only exports first image
Replies: 3
Views: 1156

Re: Word 2 DITA only exports first image

My Word document had two different bitmaps.
And they come out confusingly in output\media as img.png and img(1).png.
But essentially, you are right, two images in, two out.
by Quick van Rijt
Tue Apr 13, 2021 2:12 pm
Forum: Other Issues
Topic: Word 2 DITA only exports first image
Replies: 3
Views: 1156

Word 2 DITA only exports first image

I am using Batch Documents Converter 3.0.0 in OxygenXML 23.1. When inspecting the result output\ it only contains 1 image, the first one in the Word document. All others images are not exported. And the first topic has the only reference to this image. No other images references in all DITA sources....
by Quick van Rijt
Fri Feb 01, 2019 7:40 pm
Forum: XSLT and FOP
Topic: ToC hiding Chapter level pagenumber
Replies: 3
Views: 3056

Re: ToC hiding Chapter level pagenumber

Solved it. To remove the default fancy chapter heading, I used an empty insertChapterFirstpageStaticContent template. The DITA-OT uses it also to set the chapter's @id for table of content reference. The solution is adding an empty block ($myplugin/cfg/fo/xsl/commons.xsl): <xsl:template match="...
by Quick van Rijt
Fri Feb 01, 2019 6:45 pm
Forum: XSLT and FOP
Topic: ToC hiding Chapter level pagenumber
Replies: 3
Views: 3056

Re: ToC hiding Chapter level pagenumber

My ToC entries for Chapters/Appendices do have OPENTOPIC id's for fo:basic-link/@internal-destination. I then suspected the fo:page-number-citation/@ref-id to fail (even if it has the same OPENTOPIC value) I discovered in topic.fo that the Chapters/Appendix level topics do not get assigned an early ...
by Quick van Rijt
Thu Jan 24, 2019 4:46 pm
Forum: XSLT and FOP
Topic: ToC hiding Chapter level pagenumber
Replies: 3
Views: 3056

ToC hiding Chapter level pagenumber

When rendering with DITA 3.2.1 to PDF by FOP using customization plugin, my generated topic.fo has TOC entries, all ending on <fo:basic-link ...> ... <fo:inline xsl:use-attribute-sets="__toc__page-number"> <fo:leader xsl:use-attribute-sets="__toc__leader"/> <fo:page-number-citati...
by Quick van Rijt
Sun Nov 25, 2018 2:28 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: PDF from ditamap, force pagebreak between topics
Replies: 6
Views: 3278

Re: PDF from ditamap, force pagebreak between topics

In DITA 3.x, refer to the use of the following plugin: https://github.com/dita-community/org.dita-community.pdf-page-break This plugin enables you to force a new page in a topic body. <body> <p>--- before pagebreak ---</p> <?pagebreak?> <p>--- after pagebreak ---</p> </body> To implement one (or mor...
by Quick van Rijt
Fri Nov 23, 2018 5:21 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: pagebreak before element identified with attribute
Replies: 2
Views: 1551

Re: pagebreak before element identified with attribute

You tagging a title with an attribute to trigger a page-break. If your goal is to start selected topics of interest on a new page, check-out the following plugin: https://github.com/dita-community/org.dita-community.pdf-page-break I just submitted a solution to use: <prolog> <?pagebreak?> </prolog>
by Quick van Rijt
Tue Nov 20, 2018 5:03 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: DITA-OT 3.2 re-importing xsl or How to see more xsl:messages in logging?
Replies: 5
Views: 2307

Re: DITA-OT 3.2 re-importing xsl or How to see more xsl:messages in logging?

I restored the toolkit to the DITA-OT 3.2 release. For my plugin, I renamed all mentioned import files in my $plugin/cfg/fo/xsl/custom.xsl by prefixing with 'Q-'. It works! No render errors and all front-matter template overrides and other customizations are applied! Even importing files with empty ...
by Quick van Rijt
Tue Nov 20, 2018 4:48 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: DITA-OT 3.2 re-importing xsl or How to see more xsl:messages in logging?
Replies: 5
Views: 2307

Re: DITA-OT 3.2 re-importing xsl or How to see more xsl:messages in logging?

I downloaded saxon9he.jar, renamed and insert it as Saxon-HE-9.9.0.2.jar into $ditaot/lib, and renamed the current one to *.DISABLED. I ran: dita.bat -d -i path\to\bookmap.ditamap -f pdf dita.bat -d -i path\to\bookmap.ditamap -f myplugin-pdf Both calls result in the following error : map-mapref: Pro...
by Quick van Rijt
Tue Nov 20, 2018 2:07 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: DITA-OT 3.2 re-importing xsl or How to see more xsl:messages in logging?
Replies: 5
Views: 2307

Re: DITA-OT 3.2 re-importing xsl or How to see more xsl:messages in logging?

Exactly what i am experiencing also. With Saxon-HE-9.8.0-12, whatever i tried, it will not override [Codebox=]<xsl:template name="createFrontMatter">[/Codebox] With OxygenXML 19.1 (may-2018, which includes Saxon-9EE in classpath) pointing to this the 3.2 toolkit runtime with my plugin, it ...
by Quick van Rijt
Mon Nov 19, 2018 6:38 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: DITA-OT 3.2 re-importing xsl or How to see more xsl:messages in logging?
Replies: 5
Views: 2307

DITA-OT 3.2 re-importing xsl or How to see more xsl:messages in logging?

I am using DITA-OT 3.2 out of the box with a custom plugin i am developing. I am just relying on the $plugin/cfg/fo/attrs/custom.xls and similar xsl/custom.xsl. I am not using any args.xsl.pdf in my initialization target. My code is validated all well by OxygenXml 19.1. Part of my fo:attribute custo...