Search found 156 matches

by shudson310
Wed Jan 04, 2017 1:30 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: scrollbar not displaying in Webhelp Classic Mobile
Replies: 2
Views: 1576

Re: scrollbar not displaying in Webhelp Classic Mobile

shudson310 wrote:Fixed it in oxygen-webhelp/resources/css/webhelp_topic.css. I added overflow:auto to the following style:

Code: Select all

#content{
border-left:2px solid gray;
padding-left:1em;
overflow:auto;
}
by shudson310
Wed Jan 04, 2017 1:28 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: scrollbar not displaying in Webhelp Classic Mobile
Replies: 2
Views: 1576

Re: scrollbar not displaying in Webhelp Classic Mobile

Fixed it in webhelp_topic.css. I added overflow:auto to the following style:

Code: Select all

#content{
border-left:2px solid gray;
padding-left:1em;
overflow:auto;
}
by shudson310
Tue Jan 03, 2017 11:47 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: scrollbar not displaying in Webhelp Classic Mobile
Replies: 2
Views: 1576

scrollbar not displaying in Webhelp Classic Mobile

On longer topics, there is no way to scroll to see the rest of the topic in Webhelp Classic Mobile transform. How can I force the scrollbars to display?
by shudson310
Tue Jan 03, 2017 11:03 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: breadcrumbs in Webhelp Classic Mobile not displaying
Replies: 8
Views: 3519

breadcrumbs in Webhelp Classic Mobile not displaying

I am using the Webhelp Classic Mobile transform scenario and have args.breadcrumbs="yes" set. I am not seeing any breadcrumbs in the output. What am I missing?
by shudson310
Tue Jan 03, 2017 7:52 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Default window size for webhelp?
Replies: 1
Views: 1245

Default window size for webhelp?

I have a requirement to force the initial window size for webhelp content to 580x700. How can I set this initial window size? I've tried setting: <script Language="JavaScript"> var width=580; var height=700; self.moveTo((screen.availwidth-width)/2,(screen.availheight-height)/2); self.resiz...
by shudson310
Mon Dec 19, 2016 5:18 pm
Forum: XSLT and FOP
Topic: Schematron to comment out a set of nodes
Replies: 4
Views: 3817

Re: Schematron to comment out a set of nodes

Thanks, Octavian! That solution works perfectly for me.
by shudson310
Mon Dec 19, 2016 7:31 am
Forum: XSLT and FOP
Topic: Schematron to comment out a set of nodes
Replies: 4
Views: 3817

Re: Schematron to comment out a set of nodes

The problem that I'm running into is that the markup is not preserved within the comment. With your solution, I still get:

Code: Select all

<!--


-->
by shudson310
Sun Dec 18, 2016 10:18 pm
Forum: XSLT and FOP
Topic: Schematron to comment out a set of nodes
Replies: 4
Views: 3817

Schematron to comment out a set of nodes

I'm trying to create a quick fix to take a selected set of nodes and add XML comments around them. I can't seem to get the nodes to copy into the body of the comment. <sqf:fix id="commentElement"> <sqf:description> <sqf:title>Comment out the element.</sqf:title> </sqf:description> <sqf:add...
by shudson310
Wed Dec 14, 2016 5:04 pm
Forum: XSLT and FOP
Topic: Schematron to find plural keywords
Replies: 4
Views: 3250

Re: Schematron to find plural keywords

Thanks, Octavian! The first suggestion is exactly what I needed.
by shudson310
Wed Dec 14, 2016 4:21 am
Forum: XSLT and FOP
Topic: Schematron to find plural keywords
Replies: 4
Views: 3250

Re: Schematron to find plural keywords

I've found a few instances where an author is trying to create a plural version of an existing term, using something like: <keyword keyref="display"/>s . I know this will create issues with the content is translated, or potentially if the value of the key changes. Any suggestions on how t...
by shudson310
Wed Dec 14, 2016 4:20 am
Forum: XSLT and FOP
Topic: Schematron to find plural keywords
Replies: 4
Views: 3250

Schematron to find plural keywords

I've found a few instances where an author has used something like <keyword keyref="display"/>s . I know this will create issues with the content is translated, or potentially if the value of the key changes. Any suggestions on how to detect this construction? I've tried variations on subs...
by shudson310
Sat Dec 10, 2016 8:07 pm
Forum: XSLT and FOP
Topic: Get username
Replies: 3
Views: 4562

Re: Get username

Does this also work for schematron? Is there a way to get the current user in schematron?
by shudson310
Mon Oct 03, 2016 7:08 pm
Forum: Feature Request
Topic: Accessibility improvements for webhelp
Replies: 3
Views: 2869

Re: Accessibility improvements for webhelp

Also, based on https://www.w3.org/TR/WCAG20-TECHS/ARIA11.html , it's also a good idea to add: id="content" role="main" to the div wrapper for both: <div id="content" role="main" class="wh_content_area"> in wt_index.html and <div id="content&quo...
by shudson310
Mon Oct 03, 2016 7:08 pm
Forum: Feature Request
Topic: Accessibility improvements for webhelp
Replies: 3
Views: 2869

Re: Accessibility improvements for webhelp

Also, based on https://www.w3.org/TR/WCAG20-TECHS/ARIA11.html , it's also a good idea to add: id="content" role="main" to the div wrapper for both: <div id="content" role="main" class="wh_content_area"> in wt_index.html and <div id="content"...
by shudson310
Mon Oct 03, 2016 6:09 pm
Forum: Feature Request
Topic: Accessibility improvements for webhelp
Replies: 3
Views: 2869

Accessibility improvements for webhelp

Just a suggestion, but a fairly easy addition to the webhelp templates to improve accessibility. This is based on the information at: http://diveintoaccessibility.info/day_11_skipping_over_navigation_links.html In the wt_index.html and wt_topic.html templates, after: <body class="wh_main_page&q...
by shudson310
Mon Sep 19, 2016 7:27 pm
Forum: Feature Request
Topic: Day / Night mode for webhelp stylesheets
Replies: 5
Views: 4006

Day / Night mode for webhelp stylesheets

The stylesheets could incorporate code to automatically switch between day/night mode based on the local browser time: <script> <!-- function getStylesheet() { var currentTime = new Date().getHours(); if (0 <= currentTime&&currentTime < 5) { document.write("<link rel='stylesheet' href='...
by shudson310
Fri Sep 02, 2016 6:38 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: Insert ate in webhelp output
Replies: 11
Views: 5784

Re: Insert ate in webhelp output

nvrmind. setting the transform scenario as described works!
by shudson310
Fri Sep 02, 2016 5:38 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: Insert ate in webhelp output
Replies: 11
Views: 5784

Re: Insert ate in webhelp output

btw, this is using the webhelp-responsive plugin on oxygen 18.
by shudson310
Fri Sep 02, 2016 2:21 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: Insert ate in webhelp output
Replies: 11
Views: 5784

Re: Insert ate in webhelp output

I have the same need to insert the publication date. I tried setting <param name="webhelp.fragment.footer" desc="Specifies the path to the HTML file that contains the content for the WebHelp footer. It can also be an XML fragment." type="file"> <val default="true&q...
by shudson310
Fri Jul 08, 2016 5:11 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Integrator fails using DITA-OT 2.3.1
Replies: 5
Views: 2563

Re: Integrator fails using DITA-OT 2.3.1

It's definitely related to common glossary terms that are in a folder at a higher level than the bookmap. This is the only way to share common glossary terms across multiple product manuals. We use fix.external.refs.com.oxygenxml="true" to address this, but still get the errors in the log.
by shudson310
Thu Jul 07, 2016 6:45 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Integrator fails using DITA-OT 2.3.1
Replies: 5
Views: 2563

Re: Integrator fails using DITA-OT 2.3.1

I still get an error about not being able to resolve the link information, but it actually appears to have worked. Not sure why the false error, but v2.3.1 does appear to resolve the keys better than v.2.2.5.
by shudson310
Thu Jul 07, 2016 6:42 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Integrator fails using DITA-OT 2.3.1
Replies: 5
Views: 2563

Re: Integrator fails using DITA-OT 2.3.1

I had to explicitly add

Code: Select all

${configured.ditaot.dir.url}/lib/guava-19.0.jar
to the libraries in the ant scenario.
by shudson310
Thu Jul 07, 2016 5:46 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Integrator fails using DITA-OT 2.3.1
Replies: 5
Views: 2563

Integrator fails using DITA-OT 2.3.1

I cannot integrate my DITA-OT plugins using the latest DITA-OT release (v2.3.1): Executing: "c:\program files\oxygen xml editor 17\jre/bin/java" "-Dhttp.proxySet=true" "-Dhttp.proxyHost=ipv4.169.143.0.105.webdefence.global.blackspider.com" "-Dhttps.proxyHost=ipv4.1...
by shudson310
Tue Jul 05, 2016 8:19 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Is there a stylesheet for abbreviated-form
Replies: 14
Views: 8033

Re: Is there a stylesheet for abbreviated-form

I created the fix. in abbrev-domain.xsl, I added a new param to indicate whether it was an acronym: <xsl:template match="*[contains(@class,' abbrev-d/abbreviated-form ')]" name="topic.abbreviated-form"> <xsl:variable name="keys" select="@keyref"/> <xsl:variabl...
by shudson310
Tue Jul 05, 2016 7:50 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Is there a stylesheet for abbreviated-form
Replies: 14
Views: 8033

Re: Is there a stylesheet for abbreviated-form

Hi Radu, I explicitly changed the following template: <xsl:template match="*" mode="getMatchingAcronym"> <xsl:variable name="glossAcronym" select="*[contains(@class, ' glossentry/glossBody ')]/*[contains(@class, ' glossentry/glossAlt ')]/*[contains(@class, ' glosse...
by shudson310
Sat Jul 02, 2016 1:32 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: Is there a stylesheet for abbreviated-form
Replies: 14
Views: 8033

Re: Is there a stylesheet for abbreviated-form

I am using DITA-OT v2.2.5 and have a similar problem. I actually WANT the link from the first occurrence of the <abbreviated-form> to the related glossary term. What I would like to override is the generation of the link from the glossAcronym that is used on subsequent references. I've tried a few o...
by shudson310
Thu May 05, 2016 5:26 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Webhelp Responsive transform fails
Replies: 5
Views: 2726

Re: Webhelp Responsive transform fails

Hi Radu, I've tried the default 2.x and the 1.8 toolkits and neither succeed. This is DITA 1.3 content, btw. I successfully generated xhtml, pdf, chm. I cannot successfully generate any of the webhelp (classic, responsive, etc). I'll try to create a generic sample for you to test with. Thanks, --Scott
by shudson310
Thu May 05, 2016 1:49 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: Webhelp Responsive transform fails
Replies: 5
Views: 2726

Re: Webhelp Responsive transform fails

I should note that the ditamap renders just fine to PDF, without any errors. I've also successfully used this with DITA-OT 2.2.4 (to PDF).
by shudson310
Thu May 05, 2016 1:44 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: Webhelp Responsive transform fails
Replies: 5
Views: 2726

Webhelp Responsive transform fails

Downloaded oXygen v18.0 and trying to run the Webhelp Responsive transform. The transform fails, yet I have verified that those files exist in the temp dir. These files are glossary files in a common dir above the dita map dir. I do have the following params set: fix.external.refs.com.oxygenxml true...
by shudson310
Thu Apr 14, 2016 5:09 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Copy resource files to output.dir for custom xhtml
Replies: 2
Views: 1745

Re: Copy resource files to output.dir for custom xhtml

Thanks, Radu! I modified slightly: <plugin id="custom"> <require plugin="org.dita.html5"/> <feature extension="package.version" value="1.0.0"/> <feature extension="dita.conductor.transtype.check" value="custom"/> <feature extension="di...