Please open a new post for the WebHelp problems.
Thank you,
Dan
Search found 327 matches
- Fri Dec 28, 2018 10:29 am
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Glossary term referenced with <abbreviated-form> not appearing in PDF
- Replies: 7
- Views: 529
- Thu Dec 27, 2018 12:46 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Glossary term referenced with <abbreviated-form> not appearing in PDF
- Replies: 7
- Views: 529
Re: Glossary term referenced with <abbreviated-form> not appearing in PDF
Hello Rick, This is a known issue that we already solved on the development branch. If you want to beta-test it, we have a nightly build that packages a DITA-OT with our publishing plugins available here: https://mirror.oxygenxml.com/maven-nightly/com/oxygenxml/oxygen-publishing-engine-2.x/21.0-SNAP...
- Tue Dec 04, 2018 3:13 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Footer on last page pdf with CSS
- Replies: 2
- Views: 416
Re: Footer on last page pdf with CSS
Hello Benny, Please try the following: First approach (using position:fixed) 1. Group all the footer topics under a single parent topic, under the last topic from your map. For example you can have: ... End topic Footer parent topic Footer content topic 1 Footer content topic 2. 2. Put an outputclas...
- Tue Dec 04, 2018 1:02 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: CSS-Based PDF, change language of "Note", "Warning", "Caution" etc
- Replies: 6
- Views: 791
Re: CSS-Based PDF, change language of "Note", "Warning", "Caution" etc
Hello, Can you give us more details? - the language you are using - what scenario are you using, the one named "DITA Map PDF - based on HTML5 & CSS", or "DITA Map PDF - based on DITA & CSS (WYSIWYG) "? The first one uses the i18n support provided by DITA-OT, and has a goo...
- Thu Nov 29, 2018 1:24 pm
- Forum: Common Problems
- Topic: Numbering problems
- Replies: 8
- Views: 559
Re: Numbering problems
The layout engine figures out how many dots are entering in the leader that links the text to the numbers. The text width of the titles seem to vary a bit and sometimes the dot does not fit. Unfortunately there is no setting to control that..
All the best,
Dan
All the best,
Dan
- Thu Nov 29, 2018 12:19 pm
- Forum: Common Problems
- Topic: Numbering problems
- Replies: 8
- Views: 559
Re: Numbering problems
To reset the page on the first chapter, please add this to the customization CSS: *[class ~= "map/map"] > *[class ~= "placeholder/toc"] + *[class ~= "topic/topic"][is-chapter]:not([is-part]) { counter-reset: page section1; } So it will reset both the page and the sectio...
- Thu Nov 29, 2018 12:01 pm
- Forum: Common Problems
- Topic: Numbering problems
- Replies: 8
- Views: 559
Re: Numbering problems
I see that the numbering of the chapter starts with 1. Do you refer to the page number of the first chapter?
From your message I understood that you have succeeded in resetting the page, but the sub-sections numbers were wrong (after the fix). Is this correct?
From your message I understood that you have succeeded in resetting the page, but the sub-sections numbers were wrong (after the fix). Is this correct?
- Thu Nov 29, 2018 10:36 am
- Forum: Common Problems
- Topic: Numbering problems
- Replies: 8
- Views: 559
Re: Numbering problems
Hello Stanislav, I think a counter-reset used to reset the page on the first chapter has overwritten other counter-reset properties that reset other counters as well. (The counter-reset property can affect multiple counters at once.) If you cannot detect the problem, please send us your CSS using th...
- Wed Nov 28, 2018 4:11 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: DITA map PDF – based on HTML5 &CSS transformation with xslt extension points
- Replies: 8
- Views: 697
Re: DITA map PDF – based on HTML5 &CSS transformation with xslt extension points
My mistake, please add a mode="#current" on the apply-templates: <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" exclude-result-prefixes="xs"...
- Wed Nov 28, 2018 3:44 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Frontmatter and Backmatter with Chemistry
- Replies: 1
- Views: 294
Re: Frontmatter and Backmatter with Chemistry
I think you should use the outputclass="before-toc" attribute on the topic refs in the DITA Map that you want them to move before the TOC, plus the @toc="no" for the topics you want excluded from the TOC. Have you tried this?
Many regards,
Dan
Many regards,
Dan
- Tue Nov 27, 2018 12:01 pm
- Forum: Feature Request
- Topic: CSS to PDF Transform -- Prompt for File
- Replies: 6
- Views: 1154
Re: CSS to PDF Transform -- Prompt for File
Looking closer in the pugin source, I found an hidden parameter that can be used for the purpose. You should set it manually, as it is not shown in the list of parameters in the transformation scenario dialog: outputFile: ${ask('Enter the full path for the pdf:')} Be aware that oXygen will not open ...
- Tue Nov 27, 2018 11:03 am
- Forum: Feature Request
- Topic: CSS to PDF Transform -- Prompt for File
- Replies: 6
- Views: 1154
Re: CSS to PDF Transform -- Prompt for File
Hello, I checked the plugin. In PDF2 (the DITA-OT default plugin for PDF) there is an args.output.base parameter that lets you specify the name of the file without extension. I added an issue for that, we should add support for this parameter in the CSS to PDF based transformation as well. Many rega...
- Tue Nov 27, 2018 10:36 am
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: DITA map PDF – based on HTML5 &CSS transformation with xslt extension points
- Replies: 8
- Views: 697
Re: DITA map PDF – based on HTML5 &CSS transformation with xslt extension points
Yes, the "copy" element will simply copy the oxy: element from the merged map to the HTML output. You should replace it by a div or other element: <xsl:template match="*[contains(@class, ' front-page/front-page-title ')]" mode="#all"> <div class="doctype">Data...
- Mon Nov 26, 2018 4:51 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: DITA map PDF – based on HTML5 &CSS transformation with xslt extension points
- Replies: 8
- Views: 697
Re: DITA map PDF – based on HTML5 &CSS transformation with xslt extension points
Let the XSL extend the merged2html5 extesion point. Try adding a mode="#all" on the template. <xsl:template match="*[contains(@class, ' front-page/front-page-title ')]" mode="#all"> <div class="doctype">Datasheet</div> <xsl:copy> <xsl:copy-of select="@*&q...
- Mon Nov 26, 2018 2:44 pm
- Forum: Feature Request
- Topic: CSS to PDF Transform -- Prompt for File
- Replies: 6
- Views: 1154
Re: CSS to PDF Transform -- Prompt for File
Thank you for the details!
We will check if it is possible to change the name of the output file.
Many regards,
Dan
We will check if it is possible to change the name of the output file.
Many regards,
Dan
- Mon Nov 26, 2018 2:43 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: DITA map PDF – based on HTML5 &CSS transformation with xslt extension points
- Replies: 8
- Views: 697
Re: DITA map PDF – based on HTML5 &CSS transformation with xslt extension points
The extension should be bound to the last transformation, the merge2html5. it is currenlty bound to merged2merged in your publishing template, so please correct to: <xslt> <extension id="com.oxygenxml.pdf.css.xsl.merged2html5" file="xslt/document-type.xsl"/> </xslt> In this way t...
- Fri Nov 23, 2018 1:10 pm
- Forum: Feature Request
- Topic: CSS to PDF Transform -- Prompt for File
- Replies: 6
- Views: 1154
Re: CSS to PDF Transform -- Prompt for File
If you need to transform multiple documents (the JIRA output for each product version) to PDF, I recommend creating a script that invokes the DITA-OT multiple times. If you are using an oxygen publishing template to store the customization, you can use the pdf.publishing.template parameter to point ...
- Fri Nov 16, 2018 12:09 pm
- Forum: Common Problems
- Topic: Intermittent Lock after Transform to PDF
- Replies: 17
- Views: 1713
Re: Intermittent Lock after Transform to PDF
Maybe you take a look at the messages from the transformation console (Options/Preferences/DITA/Logging/Console). It might show up that the DITA-OT is processing more resources than expected.
Regards,
Dan
Regards,
Dan
- Mon Nov 12, 2018 11:12 am
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: CSS-Based PDF - Creating solid color headers
- Replies: 1
- Views: 328
Re: CSS-Based PDF - Creating solid color headers
Hello, If you set the margins of a page size to zero, the page margin boxes from that side will not be visible. In general, if you want to style the header of the page, we recommend using a background image set on the entire page, as explained here: https://www.oxygenxml.com/doc/versions/20.1/ug-che...
- Thu Oct 25, 2018 9:06 am
- Forum: XSLT and FOP
- Topic: Link between SVG image and text in an XML document
- Replies: 6
- Views: 692
Re: Link between SVG image and text in an XML document
In theory this should work: .... <!-- Declare the ID as named destination --> <fox:destination internal-destination="circle"/> .... <fo:block color="green"> <fo:basic-link external-destination="#circle"> Go to circle. </fo:basic-link> </fo:block> ... In the SVG you shou...
- Wed Oct 24, 2018 5:32 pm
- Forum: XSLT and FOP
- Topic: Link between SVG image and text in an XML document
- Replies: 6
- Views: 692
Re: Link between SVG image and text in an XML document
I have not tested it, but you can easily try the reverse.
In the SVG sample put an ID on the circle, then add an fo:external-link (or internal) in the FO document having the target that ID.
Many regards,
Dan
In the SVG sample put an ID on the circle, then add an fo:external-link (or internal) in the FO document having the target that ID.
Many regards,
Dan
- Wed Oct 24, 2018 4:55 pm
- Forum: XSLT and FOP
- Topic: Link between SVG image and text in an XML document
- Replies: 6
- Views: 692
Re: Link between SVG image and text in an XML document
Hello David, I set up an example, but it works with mixed results. Assuming that in the XSL FO you have a block with the id "my_block_id": <?xml version="1.0" encoding="UTF-8"?> <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:fox="http://xmlgr...
- Wed Oct 24, 2018 4:25 pm
- Forum: XSLT and FOP
- Topic: How to publish a PDF Document with two flow data in parallel
- Replies: 3
- Views: 934
Re: How to publish a PDF Document with two flow data in parallel
Hello David,
As far as I know, the XSL-FO supports only one flow declaration. Please try to contact a commercial XSL-FO processor vendor, like Antenna House or Xep, they may have the needed extensions and expertise.
Many regards,
Dan
As far as I know, the XSL-FO supports only one flow declaration. Please try to contact a commercial XSL-FO processor vendor, like Antenna House or Xep, they may have the needed extensions and expertise.
Many regards,
Dan
- Tue Oct 16, 2018 10:39 am
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Adding page numbers to links in DITA PDFs generated with CSS?
- Replies: 2
- Views: 426
Re: Adding page numbers to links in DITA PDFs generated with CSS?
When applying the DITA Map to PDF (WYSIWIG or HTML5 based) transformation scenario, (having Chemistry as CSS processor ) you should automatically get links with a "(on page NN)" text following them. Are the links working (i.e. are clickable and navigate correctly)? What oXygen version are ...
- Mon Oct 08, 2018 2:20 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: CSS-Based PDF: navigation pane
- Replies: 8
- Views: 899
- Mon Oct 08, 2018 8:31 am
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: PDF Table of Contents formatting
- Replies: 3
- Views: 530
Re: PDF Table of Contents formatting
Hello Victoria,
What transformation scenario are you using? Is it based on XSL-FO or CSS?
Many Regards,
Dan
What transformation scenario are you using? Is it based on XSL-FO or CSS?
Many Regards,
Dan
- Thu Oct 04, 2018 2:26 pm
- Forum: Common Problems
- Topic: HTML Styled Correctly But PDF Isn't
- Replies: 2
- Views: 547
Re: HTML Styled Correctly But PDF Isn't
There are differences in the CSS support from Chemistry and a full Web Browser. For Chemistry, the column-count should be set on the @page, not on the matching element. Please use the following technique: 1. Define an outputclass on the topic root element. (as you already did) <topic outputclass=&qu...
- Thu Oct 04, 2018 12:19 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: CSS-Based PDF: footnote
- Replies: 3
- Views: 571
Re: CSS-Based PDF: footnote
The @footnote part of a @page declaration controls the style of the separator between the page content and the footnotes. As content you should set a leader. The leader uses a letter or a line style to fill the entire width of the page. @page { margin:0.5in; .... @footnote { content: leader(solid); ...
- Mon Sep 24, 2018 12:27 pm
- Forum: Feature Request
- Topic: support text rotation
- Replies: 10
- Views: 2588
Re: support text rotation
The recommended way is to set a width and optionally a height to rotated block. Negative paddings or margins should be used as last resort. If you are using the HTML based transformation try: *[outputclass ~= "rotated"] > *[class ~= "topic/p"] { display: block; transform: rotate(...
- Mon Sep 17, 2018 10:27 am
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Avoid Chapter numbering of some topics
- Replies: 8
- Views: 1167
Re: Avoid Chapter numbering of some topics
Can you send us your CSS to our support email address?
Thank you, Dan
Thank you, Dan