Search found 268 matches

by alin
Fri Jun 09, 2023 10:09 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: Controlling <topichead> behaviour in the HTML output
Replies: 6
Views: 943

Re: Controlling <topichead> behaviour in the HTML output

Hello, In the Publication TOC, the value for the href attribute of the nodes corresponding to <topichead> elements is computed in the computeHrefAttr XSL template (line 415) in {DITA_OT_DIR}\plugins\com.oxygenxml.webhelp.responsive\xsl\navLinks\sidetoc.xsl : <xsl:template name="computeHrefAttr&...
by alin
Mon Apr 10, 2023 4:49 pm
Forum: Common Problems
Topic: Add release version on url for webhelp responsive
Replies: 2
Views: 560

Re: Add release version on url for webhelp responsive

Hello, This depends on the location on the HTTP server where you deploy your WebHelp Responsive output corresponding to each product version. Please keep in mind that the configuration of the HTTP server and the way resources are organized on it are settings from outside WebHelp Responsive. To achie...
by alin
Wed Mar 22, 2023 8:43 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Conditional DRAFT watermark
Replies: 2
Views: 502

Re: Conditional DRAFT watermark

Hello, You can set the @outputclass attribute on the root element of each topic you want to apply the watermark on. For example: <topic id="my-topic" outputclass="watermark"> ... </topic> The value of the @outputclass attribute will be transferred on the <body> element of the ass...
by alin
Thu Mar 09, 2023 3:34 pm
Forum: Feature Request
Topic: Does Oxygen XML Have the Feature like WebHelp Document Version Switch
Replies: 6
Views: 1135

Re: Does Oxygen XML Have the Feature like WebHelp Document Version Switch

Hello, You can use the Context-Sensitive Help functionality to determine the URLs of the current topic from other versions. All you need to know is the base URL of the published output corresponding to the target version and the ID of the topic and you can build the URL as follows: {version-X-base_U...
by alin
Fri Jan 20, 2023 1:38 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: dl dt tags to be rendered as table in webhelp output
Replies: 2
Views: 461

Re: dl dt tags to be rendered as table in webhelp output

Hello, You can change the HTML content generated for a DITA definition list using a custom XSLT Extension. I have created a sample Publishing Template that exemplifies this scenario. Note : This example assumes that the all dlentries in a dl have the same number of dds and dts . This is required in ...
by alin
Wed Jan 04, 2023 7:35 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Publishing a DITAmap on a Sharepoint
Replies: 3
Views: 661

Re: Publishing a DITAmap on a Sharepoint

Hello, Please give us more details about the steps you are preforming in order to publish the WebHelp Output directly to a Sharepoint site. However, it is worth mentioning that Oxygen WebHelp Responsive has been thoroughly tested for the case where the output is generated on the local file system. T...
by alin
Wed Jan 04, 2023 6:45 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Home icon in Navbar
Replies: 4
Views: 537

Re: Home icon in Navbar

Hello, The Oxygen WebHelp output can be customized by inserting custom HTML content into designated placeholders available throughout the layout of the output HTML pages. You can read more about this customization method in our User Manual: https://www.oxygenxml.com/doc/versions/25.0/ug-webhelp-resp...
by alin
Mon Dec 19, 2022 5:29 pm
Forum: Feature Request
Topic: Oxygen Feedback for DocBook
Replies: 3
Views: 1490

Re: Oxygen Feedback for DocBook

Hello, Oxygen Feedback can be installed on any HTML website. For the WebHelp Classic output generated from Docbook sources you must follow these steps: Obtain the Oxygen Feedback installation fragment using the procedure described in this topic . Save the installation fragment to a file on your loca...
by alin
Wed Dec 14, 2022 6:35 pm
Forum: Common Problems
Topic: Fonts in WebHelp
Replies: 2
Views: 672

Re: Fonts in WebHelp

Hello, The font file is not copied in the output folder most probably because you have specified an incorrect fileset include pattern in the resources section of your OPT file. To determine if the pattern is correct or not you must specify the layout (structure) of your publishing template's directo...
by alin
Mon Nov 21, 2022 1:57 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Automatically show audience metadata in a published topic
Replies: 7
Views: 1913

Re: Automatically show audience metadata in a published topic

Hi Dave, One topic could have more than one audience element when the content is applicable to more than one audience. I have adjusted the initial template to handle multiple audience values. You can find it here: https://github.com/oxygenxml/oxygen-publishing-template-samples/tree/master/templates/...
by alin
Fri Nov 11, 2022 11:55 am
Forum: Other Issues
Topic: Search
Replies: 7
Views: 1132

Re: Search

Hello, The current search engine available in WebHelp Responsive is implemented in JavaScript. This means that the search operation is performed on the client side. The search engine needs that all the required resources (including the search index files) to be downloaded on the user's local machine...
by alin
Mon Oct 17, 2022 11:26 am
Forum: Common Problems
Topic: Cannot hide WebHelp tooltips
Replies: 4
Views: 1579

Re: Cannot hide WebHelp tooltips

Hello, You can hide the tooltip by setting the webhelp.publication.toc.tooltip.position transformation parameter to hidden . Alternatively, you can use the following CSS rule: .wh-display-tooltip { display: none; } The issue that was mentioned in the original post has been fixed since version 22. Th...
by alin
Thu Oct 13, 2022 6:35 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Adjusting the text in the header section of WebHelp Responsive output
Replies: 6
Views: 1007

Re: Adjusting the text in the header section of WebHelp Responsive output

Hello, A macro can be used in the content of an HTML Fragment file. In your case, the content of the fragment file should be: <span xmlns:whc="http://www.oxygenxml.com/webhelp/components"> - <whc:macro value="${map-xpath(/bookmap/booktitle/booktitlealt)}"/></span> You can find mo...
by alin
Wed Oct 05, 2022 3:52 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: How to display a specific element label?
Replies: 3
Views: 527

Re: How to display a specific element label?

Hello, You can place all your localized strings in a single CSS file by specifying several CSS rules using the :lang() pseudo class. For example: .prereq::before { content: "Before you begin"; display: block; font-weight: bold; font-size: 1.2em; margin-top: 1em; } .prereq:lang(de-DE)::befo...
by alin
Tue Oct 04, 2022 12:17 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: How to display a specific element label?
Replies: 3
Views: 527

Re: How to display a specific element label?

Hello, You can achieve this using the following CSS rule: .prereq::before { content: "Before you begin"; display: block; font-weight: bold; font-size: 1.2em; margin-top: 1em; } You can find more details about how to use CSS styling to customize the output in our User Guide. Regards, Alin
by alin
Fri Sep 30, 2022 9:32 am
Forum: General XML Questions
Topic: Clickable homepage icons
Replies: 3
Views: 929

Re: Clickable homepage icons

Hello,

Have a look at the following Publishing Template: https://github.com/oxygenxml/oxygen-pub ... k-on-tiles
It uses a custom JS to register a click event on the entire tile that opens the link associated with the topic title.

Regards,
Alin
by alin
Tue Sep 20, 2022 9:22 am
Forum: General XML Questions
Topic: Adding image to a tile?
Replies: 2
Views: 785

Re: Adding image to a tile?

Hello,
You can add images to the main page tiles by following the instructions available in our User Guide: https://www.oxygenxml.com/doc/versions/ ... _the_tiles

Regards,
Alin
by alin
Tue Aug 02, 2022 12:41 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Forcing a search result not present in the text
Replies: 1
Views: 480

Re: Forcing a search result not present in the text

Hello, Please note that each search result corresponds to a HTML page in the WebHelp Responsive output. When you enter a search term in the search field the Search Results page lists all the HTML pages that where matched by your search query. A search result cannot point to a subsection of a HTML pa...
by alin
Fri Jul 08, 2022 4:39 pm
Forum: Feature Request
Topic: Question about Table Display Issue
Replies: 4
Views: 1379

Re: Question about Table Display Issue

Hello, I have tested your use case and I couldn't find any problem with the way the nested tables are displayed. https://www.oxygenxml.com/forum/files/nested-tables.png Can you please provide a minimal DITA sample (map + topic) and a screenshot that would emphasize the layout problem? Regards, Alin
by alin
Fri Jul 08, 2022 3:51 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Failed using webhelp macros
Replies: 1
Views: 464

Re: Failed using webhelp macros

Hello,

I have tested your example with WebHelp 20.1 and the macros were expanded correctly for all three <link> elements.
Image

Regards,
Alin
by alin
Wed Jul 06, 2022 11:17 am
Forum: Common Problems
Topic: Only show child links in certain topics
Replies: 2
Views: 985

Re: Only show child links in certain topics

Hello, There is no out-of-the-box solution to hide the Child Links component in some topics and have it displayed in other topics. However, you can use a custom CSS to achieve this. The WebHelp Responsive output can be customized using CSS. You can find more details in our User Manual: https://www.o...
by alin
Fri Jun 24, 2022 7:51 am
Forum: Common Problems
Topic: Placing topic content into responsive tiles
Replies: 1
Views: 1458

Re: Placing topic content into responsive tiles

Hi Chris,

Thank you for sharing this use case with us!

Regards,
Alin
by alin
Mon Jun 20, 2022 5:29 pm
Forum: Feature Request
Topic: Can XHTML fragments be specified directly in a template *.opt file?
Replies: 1
Views: 838

Re: Can XHTML fragments be specified directly in a template *.opt file?

Hello Chris, I have tested your scenario and although the transformation log contains some errors, the transformation runs successfully and the output is as expected. It contains the provided HTML fragment. The WebHelp Responsive transfromation requires that the provided HTML fragments are XML well-...
by alin
Fri Jun 10, 2022 5:43 pm
Forum: Feature Request
Topic: Additional page layout templates?
Replies: 5
Views: 7089

Re: Additional page layout templates?

Hello, If we add the webhelp_publication_toc element to our main page template, it seems to be ignored during publishing. The webhelp_publication_toc element is ignored when included in the HTML Page Layout file for the main page. The stylesheet that processes this component is not applied over this...
by alin
Wed Jun 01, 2022 7:26 pm
Forum: Feature Request
Topic: Additional page layout templates?
Replies: 5
Views: 7089

Re: Additional page layout templates?

Hello, Unfortunately, we do not have a procedure that would enable you to create an additional HTML Page Layout file. However, the WebHelp Responsive output contains a component named Child Links , which lists the links to the child topics of the current topic. For each child topic its short descrip...
by alin
Fri May 27, 2022 11:52 am
Forum: Feature Request
Topic: Some problem in the webhelp output
Replies: 1
Views: 850

Re: Some problem in the webhelp output

Hello, The structure of the Publication TOC is controlled by the value of the webhelp.publication.toc.links parameter. By default, the Publication TOC of each topic contains the links of the topics that are part of the current topic's hierachy (the parameter's value is " chapter "). In ord...
by alin
Fri Apr 29, 2022 11:21 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: How to add sortable columns and search field to a table in html output
Replies: 7
Views: 1346

Re: How to add sortable columns and search field to a table in html output

Hello, You can use the DataTables JQuery plugin to make your tables sortable and filterable. The following procedure describes how to include Data Tables in the WebHelp Responsive output: https://www.oxygenxml.com/doc/versions/24.1/ug-webhelp-responsive/topics/wh-add-js-amd.html Here is an example o...
by alin
Wed Apr 13, 2022 12:58 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: How to use XSLT variables in my customized webhelp
Replies: 7
Views: 1565

Re: How to use XSLT variables in my customized webhelp

Hello, The Oxygen WebHelp Responsive output can be customized using XSLT Extension files. There are several XSLT-Import Extension points available. For each extension point you can access the global variables that are available in the XSLT context where the extension file is loaded. The available XS...
by alin
Tue Jan 25, 2022 4:21 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Need to put Last Updated in the body of a topic
Replies: 29
Views: 10073

Re: Need to put Last Updated in the body of a topic

Hello, I have tested the last-modified-in-content Publishing Template using Oxygen 24.0 and it worked as expected. The error you have reported is caused by the fact the XSLT customization contained in this Publishing Template is using the file:last-modified() function which is not available in the S...
by alin
Tue Dec 21, 2021 5:40 pm
Forum: Feature Request
Topic: Oxygen Feedback Cloud message
Replies: 1
Views: 971

Re: Oxygen Feedback Cloud message

Hello, Unfortunately, at the moment, you cannot customize the content of "Want to add a comment?" label. I have registered your improvement request (reference ID OFB-2367) to add this functionality. We have a similar setting in the General Settings page of a Site Configuration , where you ...