Search found 9059 matches

by Radu
Fri Jun 05, 2015 12:36 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Format and Indent with menucascade
Replies: 2
Views: 1474

Re: Format and Indent with menucascade

Hi Eddie, Once you have set <menucascade> as space preserve, Oxygen will leave all white spaces in it exactly as they were. Here's one possible way to do that using the batch format and indent: 1) Remove <menucascade> from list of space-preserve elements.\ 2) In Preferences->"Editor / Format / ...
by Radu
Fri Jun 05, 2015 12:19 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Security Error when running from customer site
Replies: 11
Views: 9258

Re: Security Error when running from customer site

Hi Scott, Basically * means anything so you can use that. I'm not sure why setting the value for it does not work for you, in the applet demo we have on our website in the manifest.mf we also have a value like: Application-Library-Allowable-Codebase: https://www.oxygenxml.com/demo /AuthorDemoApplet/...
by Radu
Fri Jun 05, 2015 12:14 pm
Forum: Other Issues
Topic: Build Failed! with external DITA-OT 2.0
Replies: 15
Views: 9063

Re: Build Failed! with external DITA-OT 2.0

Hi Nick, One problem I saw in one of your test runs was that in the dita.bat instead of: set SAXON_9_DIR=C:\OxygenWebHelp\DITA-OT2.0.1\lib\saxonb9-1-0-8j you used: et SAXON_9_DIR=C:\OxygenWebHelp\DITA-OT2.0.1\lib\saxonb9-1-0-8j which probably did not set the variable correctly. Sorry for taking so l...
by Radu
Fri Jun 05, 2015 10:38 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: format and indent a map?
Replies: 8
Views: 4325

Re: format and indent a map?

Hi Eddie,

We could consider this.
Would it be enough for you if we add the action to the main Tools menu?
Are your DITA Maps located on the local disk or on a remote location?

Regards,
Radu
by Radu
Fri Jun 05, 2015 9:53 am
Forum: SDK-API, Frameworks - Document Types
Topic: Creating custom form controls
Replies: 1
Views: 1881

Re: Creating custom form controls

Hi Dirk, Indeed you need two java implementations, one for the editor and one for the renderer. When you open the XML document and you just scroll through it or work without interacting with any form control in the page, the renderers will be used to visually present the form control in the document...
by Radu
Fri Jun 05, 2015 9:36 am
Forum: XSLT and FOP
Topic: CGI Script To Access XSLT
Replies: 2
Views: 2634

Re: CGI Script To Access XSLT

Hi, You can see right here the contents of an obfuscated stylesheet: http://www.cranesoftwrights.com/resources/Crane-UBL-Skeleton/Crane-UBL-Skeleton-obfuscated.xsl So you could try to contact Ken Holman and find out more details about how he does that: http://www.cranesoftwrights.com/contact.htm Reg...
by Radu
Fri Jun 05, 2015 9:23 am
Forum: Common Problems
Topic: Variables for title page
Replies: 4
Views: 2696

Re: Variables for title page

Hi Carole, When you want to create separate lines with XSL-FO you need to add an fo:block around that area, something like: <xsl:variable name="pubDate"> <fo:block> <xsl:value-of select="(/*/opentopic:map//*[contains(@class, ' topic/revised ')]/@modified)[1]"/> </fo:block> <fo:bl...
by Radu
Fri Jun 05, 2015 9:18 am
Forum: Common Problems
Topic: How to declare a variable
Replies: 5
Views: 3294

Re: How to declare a variable

Hi Carole,

You were right about the quotes, whenever you already have double quotes around an attribute value, you must use single quotes inside it. The XML specification does not allow nesting double quoted.
And thanks for the kind words.

Regards,
Radu
by Radu
Fri Jun 05, 2015 9:04 am
Forum: Other Issues
Topic: Build Failed! with external DITA-OT 2.0
Replies: 15
Views: 9063

Re: Build Failed! with external DITA-OT 2.0

Hi Nick, I think we are on the right track. About this remark: Java 1.6 also throws an error. A major.minor version 51 error related to the ExtensibleAntInvoker. Despite my efforts to prevent that, the DITA Open Toolkit 2.0 main JAR library file was compiled with Java 1.7 compatibility: https://gith...
by Radu
Thu Jun 04, 2015 4:45 pm
Forum: Common Problems
Topic: How to declare a variable
Replies: 5
Views: 3294

Re: How to declare a variable

Hi Carole,

Here's my suggestion:

1) You leave the commons.xsl as it is, without any changes.
2) In the custom.xsl you use this construct:

Code: Select all

<xsl:when test="//othermeta[@name="ChapterNumbering"][@content="yes"]">
Regards,
Radu
by Radu
Thu Jun 04, 2015 11:15 am
Forum: XSLT and FOP
Topic: CGI Script To Access XSLT
Replies: 2
Views: 2634

Re: CGI Script To Access XSLT

Hi, You could for example store the XSLT on an HTTP server with certain authorization requirements. But if the user would have the authorization details he could still open the XSLT from that URL. The Saxon 9 processor also allows you to compile an XSLT stylesheet: http://saxon.sourceforge.net/saxon...
by Radu
Thu Jun 04, 2015 10:38 am
Forum: Other Issues
Topic: Build Failed! with external DITA-OT 2.0
Replies: 15
Views: 9063

Re: Build Failed! with external DITA-OT 2.0

Hi Nick, Instead of adding REM before the line: REM -lib "%DITA_OT_INSTALL_DIR%\plugins\com.oxygenxml.webhelp\lib\dost-patches-DITA-1.8.jar"^ please try to remove it completely. The command line a very long line which is split using ^ and but the Windows batch processor still interprets it...
by Radu
Thu Jun 04, 2015 10:25 am
Forum: Other Issues
Topic: Change in Content Menu—New line-break insertion
Replies: 4
Views: 2454

Re: Change in Content Menu—New line-break insertion

Hi Bill,

Right, once an element is considered space preserve by Oxygen, pressing ENTER inside it will present first the option to add a line break and then the option to split it.

Regards,
Radu
by Radu
Thu Jun 04, 2015 9:42 am
Forum: SDK-API, Frameworks - Document Types
Topic: Security Error when running from customer site
Replies: 11
Views: 9258

Re: Security Error when running from customer site

Hi Scott,

You can see what each of those manifest parameters means here:

http://docs.oracle.com/javase/7/docs/te ... ifest.html

Regards,
Radu
by Radu
Thu Jun 04, 2015 9:32 am
Forum: Common Problems
Topic: Variables for title page
Replies: 4
Views: 2696

Re: Variables for title page

Hi Carole, Just as an example, the productName variable is defined in: OXYGEN_INSTALL_DIR/frameworks/dita/DITA-OT/plugins/org.dita.pdf2/xsl/fo/root-processing.xsl as: <xsl:variable name="productName"> <xsl:variable name="mapProdname" select="(/*/opentopic:map//*[contains(@cl...
by Radu
Thu Jun 04, 2015 9:24 am
Forum: SDK-API, Frameworks - Document Types
Topic: Put the Applet on a diet
Replies: 11
Views: 5486

Re: Put the Applet on a diet

Hi Scott, So you are interested in Text-only editing, you are creating no Author visual editing mode, right? Please see a comment for each JAR library below along with advice for removing/keeping it: batik-anim-1.7.jar (render SVG in Author, advice->remove) batik-awt-util-1.7.jar (render SVG in Auth...
by Radu
Wed Jun 03, 2015 4:55 pm
Forum: Other Issues
Topic: Build Failed! with external DITA-OT 2.0
Replies: 15
Views: 9063

Re: Build Failed! with external DITA-OT 2.0

Hi Nick,

Have you tried to edit the dita.bat script we ship with the WebHelp plugin and remove from it the reference to the dost-patches-DITA-1.8.jar library?

Regards,
Radu
by Radu
Wed Jun 03, 2015 2:33 pm
Forum: Common Problems
Topic: SVG text not rendered under Mac OSX
Replies: 14
Views: 8250

Re: SVG text not rendered under Mac OSX

Hi Pat, There is already an issue registered on the Batik issues list: https://issues.apache.org/jira/browse/BATIK-1112 The problem is that your SVG contains Inkscape extensions in it, including in the CSS properties and Batik chooses to ignore all other CSS properties after such a property that it ...
by Radu
Wed Jun 03, 2015 8:26 am
Forum: SDK-API, Frameworks - Document Types
Topic: Security Error when running from customer site
Replies: 11
Views: 9258

Re: Security Error when running from customer site

Hi Scott, Indeed the line in the properties file is automatically broken if it overflows a number of characters. So that should be OK. I'm not really sure what the problem is, just for tests could you modify in the build-trusted.xml the values for Caller-Allowable-Codebase and Application-Library-Al...
by Radu
Tue Jun 02, 2015 3:50 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Extended frameworks buggy after modifications to base
Replies: 1
Views: 1698

Re: Extended frameworks buggy after modifications to base

Hi Patrik,

If you attach to an email the base.framework and the extended.framework then give me some details about the problem I could try to look into this. It could either be a bug or a limitation of the extension mechanism.

Regards,
Radu
by Radu
Tue Jun 02, 2015 3:46 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Eclipse integration and conditional publishing
Replies: 4
Views: 2525

Re: Eclipse integration and conditional publishing

Hi Chris, We could consider adding API for this (possibly in Oxygen 17.1 we'll release in the Autumn of 2015). I would need more details about your CMS integrations. So how do users usually publish? They open a DITA Map in the Oxygen DITA Maps Manager view and use a custom toolbar button you have co...
by Radu
Tue Jun 02, 2015 2:34 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Eclipse integration and conditional publishing
Replies: 4
Views: 2525

Re: Eclipse integration and conditional publishing

Hi Chris, When users apply a profiling attribute set in the DITA Maps Manager view and publish, we dynamically create a DITAVAL file from the current applied profiling attribute set and send it as a parameter to the DITA Open Toolkit processing. But unfortunately we do not have an API way of allowin...
by Radu
Tue Jun 02, 2015 2:16 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Subject scheme not recognized from customized map
Replies: 8
Views: 3545

Re: Subject scheme not recognized from customized map

Hi Frank,

Thanks for the update.

Regards,
Radu
by Radu
Tue Jun 02, 2015 10:56 am
Forum: SDK-API, Frameworks - Document Types
Topic: Calling the applet from Javascript
Replies: 3
Views: 2647

Re: Calling the applet from Javascript

Hi Scott, I am not sure why those crashes occurred, did you find any meaningful information in the Java console view? From what I remember, when the Javascript code calls the applet code, it calls it with restrictive security permissions so we elevated the rights in the Java code. An alternative to ...
by Radu
Tue Jun 02, 2015 10:41 am
Forum: SDK-API, Frameworks - Document Types
Topic: Security Error when running from customer site
Replies: 11
Views: 9258

Re: Security Error when running from customer site

Hi Scott, This particular error: java.lang.SecurityException: JAR manifest application-library-allowable-codebase mismatch for http://www.mbepapers.org:8080/editor-1/ ... APSHOT.jar would mean that in the main applet JAR library in the Manifest.mf the application-library-allowable-codebase property ...
by Radu
Tue Jun 02, 2015 9:54 am
Forum: Other Issues
Topic: Build Failed! with external DITA-OT 2.0
Replies: 15
Views: 9063

Re: Build Failed! with external DITA-OT 2.0

Hi, So you have a DITA OT 2.0 distribution in which you integrated the Oxygen XML WebHelp plugin, right? Did you integrate the latest Oxygen XML WebHelp plugin (the one which was released along with Oxygen 17.0)? Because it is the only WebHelp plugin which should work with both DITA OT 1.8 and 2.0 (...
by Radu
Tue Jun 02, 2015 9:23 am
Forum: Common Problems
Topic: How to declare a variable
Replies: 5
Views: 3294

Re: How to declare a variable

Hi Carole, So how exactly did you mark the bookmap? Did you set the @otherprops attribute on the root element or on the title? You should have use instead the @outputclass attribute because profiling attributes, like @otherprops usually get removed in the filtering stage. And in the XSLT you could h...
by Radu
Fri May 29, 2015 3:09 pm
Forum: Other Issues
Topic: Renaming columns breaks joined cells
Replies: 2
Views: 2112

Re: Renaming columns breaks joined cells

Hi Dan,

Thanks for the report, we know about this limitation and we'll update this forum thread when the issue gets fixed.

Regards,
Radu
by Radu
Thu May 28, 2015 9:19 am
Forum: XQuery
Topic: Can't iterate across xlink:href attribute
Replies: 3
Views: 7407

Re: Can't iterate across xlink:href attribute

Hi Doug, No problem, I think XQuery is similar to XSLT in this behavior. When you copy entire chunks of XML content from the original document to the output the namespace declarations in the original document get copied to the output. But when in the XQuery or XSLT you run an XPath you need to decla...