Search found 9055 matches

by Radu
Fri May 08, 2015 8:32 am
Forum: Other Issues
Topic: Print glossdefs in parent topic?
Replies: 5
Views: 2279

Re: Print glossdefs in parent topic?

Hi Ashley, I made a small sample DITA Map with the content like: <!DOCTYPE map PUBLIC "-//OASIS//DTD DITA Map//EN" "map.dtd"> <map title="Terms" print="yes"> <title>Localytics Terms</title> <glossref href="Terms/deep-link.dita" keys="deep" ...
by Radu
Thu May 07, 2015 12:04 pm
Forum: General XML Questions
Topic: Duplicated Topics in PDF-Output?
Replies: 5
Views: 3299

Re: Duplicated Topics in PDF-Output?

Hi, Are you sure the problem for the duplicate topic content is caused by the relationship table? For example if you comment or remove it, then publish, do you obtain the content for those particular topics output only once in the PDF? Usually in such cases a topic's content is shown twice or more t...
by Radu
Thu May 07, 2015 8:35 am
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,

I'm not sure. Maybe the @domains attribute is not properly defined on the map.
If you can send us (support@oxygenxml.com) some sample file + the specialization plugin we could try to look into this.

Regards,
Radu
by Radu
Wed May 06, 2015 8:09 am
Forum: SDK-API, Frameworks - Document Types
Topic: The list of actions available for applet
Replies: 1
Views: 1692

Re: The list of actions available for applet

Hi Scott, So: Where is this "list of actions" mentioned on the last line? That remark meant that you can use System.out.println("Common actions: " + authorCommonActions); and then look in the Java console to see what action keys are available for usage. If I add a "save"...
by Radu
Wed May 06, 2015 7:55 am
Forum: Other Issues
Topic: Print glossdefs in parent topic?
Replies: 5
Views: 2279

Re: Print glossdefs in parent topic?

Hi Ashley,

I would need more details about this. For example a small snippet of DITA content from which I could see how the glossentry's are referenced in the DITA Map.
Or you could create a sample DITA project (map + one or two topics) and send it to us (support@oxygenxml.com).

Regards,
Radu
by Radu
Tue May 05, 2015 9:02 am
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, I'm not sure. Does the element which refers to the DITA Map have the format="ditamap" attribute set on it? Does it also have the default class attribute value set so that it identifies a topicref? - map/topicref .... If you load the main map in the DITA Maps manager view, is the ...
by Radu
Tue May 05, 2015 8:51 am
Forum: SDK-API, Frameworks - Document Types
Topic: Deploy applet to local server fails
Replies: 8
Views: 4673

Re: Deploy applet to local server fails

Hi Scott, My colleague should have generated an Author Component evaluation license key for you and instead he generated a trial license key, he'll probably reply to your email shortly. The author component also works with a trial license key but not injected directly in the Java code, in the Java c...
by Radu
Tue May 05, 2015 8:27 am
Forum: Other Issues
Topic: Print glossdefs in parent topic?
Replies: 5
Views: 2279

Re: Print glossdefs in parent topic?

Hi Ashley,

How exactly are you linking to your glossary entries from the DITA Map?
If you are using the glossref element you should also set the print="yes" attribute on it because by default it is configured not to show up when the content is printed.

Regards,
Radu
by Radu
Mon May 04, 2015 3:34 pm
Forum: XSLT and FOP
Topic: How do I loop through several Charges and then display value
Replies: 1
Views: 2066

Re: How do I loop through several Charges and then display v

Hi,

You should try to address XSLT-related questions to the XSLT users list or on Stack Overflow:

http://www.mulberrytech.com/xsl/xsl-list/

Regards,
Radu
by Radu
Mon May 04, 2015 3:32 pm
Forum: Common Problems
Topic: Working with XSL:FO in it Choose When not working properly.
Replies: 1
Views: 1473

Re: Working with XSL:FO in it Choose When not working proper

Hi,

I'm sorry but I do not understand what you want.
There is an XSLT users list here, maybe they can help you further:

http://www.mulberrytech.com/xsl/xsl-list/

Regards,
Radu
by Radu
Mon May 04, 2015 3:25 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Automatically add specific optional elements
Replies: 17
Views: 11868

Re: Automatically add specific optional elements

Hi Patrik, Your intuition is true, you also need to set the default attribute with name and value. The created element is an adapter so using setAttributes on it does nothing. But you can do something like: CIElementAdapter titleElem = new CIElementAdapter(){ @Override public String getQName() { ret...
by Radu
Mon May 04, 2015 1:57 pm
Forum: Other Issues
Topic: RAD not creating oxygen-editor.jar when built
Replies: 1
Views: 1039

Re: RAD not creating oxygen-editor.jar when built

Hi, My maven project for the editor is not building the oxygen-editor.jar file itself when built. I have to go manaually and change the jar file created during the build on the ROD_Editor module(ROD_Editor-0.7.jar) and rename it to oxygen-editor.jar to put it on the applets archive. Now, doing this ...
by Radu
Mon May 04, 2015 12:32 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Deploy applet to local server fails
Replies: 8
Views: 4673

Re: Deploy applet to local server fails

Hi Scott,

Thanks for the report, we'll look into this, the maven.sync.ro is an internal maven repository and it should not be used at all in our public maven deploy.
Could you try in the meantime to run maven install instead of deploy? That should work.


Regards,
Radu
by Radu
Mon May 04, 2015 11:36 am
Forum: SDK-API, Frameworks - Document Types
Topic: Connecting oXygen with REST API
Replies: 2
Views: 2990

Re: Connecting oXygen with REST API

Hi Frank, Could you tell us more about the interaction which would occur between Oxygen and the external system? If you would use Oxygen to check in, check out remote resources indeed this would resemble a CMS integration procedure. If you would just need a custom toolbar action which just looks up ...
by Radu
Mon May 04, 2015 10:43 am
Forum: SDK-API, Frameworks - Document Types
Topic: Automatically add specific optional elements
Replies: 17
Views: 11868

Re: Automatically add specific optional elements

Hi Patrik, Here's how I would do this: Each document type customization has a "Classpath" list containing a list of folders and JAR libraries which will be added to the Java class loader which will load the extensions bundle. Each of your document type customizations could have in the Clas...
by Radu
Mon May 04, 2015 8:55 am
Forum: Other Issues
Topic: Build Failed! with external DITA-OT 2.0
Replies: 15
Views: 9054

Re: Build Failed! with external DITA-OT 2.0

Hi, The DITA Open Toolkit 2.0 developers decided to compile its Java extensions with Java 1.7. So you need at least Java 1.7 to run the publishing engine. By default Mac OSX comes with only Java 1.6 installed but you can also download and install Java 1.8 on it. After this, if you edit the transform...
by Radu
Thu Apr 30, 2015 4:51 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Automatically add specific optional elements
Replies: 17
Views: 11868

Re: Automatically add specific optional elements

Hi Patrik, Right now the CIElement does not allow accessing additional annotations which were set in the schema for it. If you were to do this on your side you could either: 1) Keep annotations in the schema and possibly apply an XSLT stylesheet which produces a more simple XML file which can be loa...
by Radu
Thu Apr 30, 2015 4:17 pm
Forum: Common Problems
Topic: How to show opened dita file in ditamap tree
Replies: 2
Views: 971

Re: How to show opened dita file in ditamap tree

Hi Thomas,

In the DITA Maps Manager there is a toolbar button called Link with editor which can be selected in order to always select in the DITA Maps Manager the current edited topic. By default it is selected but it's possible you disabled it at some point.

Regards,
Radu
by Radu
Thu Apr 30, 2015 12:01 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Automatically add specific optional elements
Replies: 17
Views: 11868

Re: Automatically add specific optional elements

Hi Patrik, Right now I am quite skeptical about adding an annotation in the XML Schema to suggest that an element should be inserted as if it were required although it is not. Alex has a few days off so I'm not sure what previous discussions you had with him so sorry if I might repeat previous sugge...
by Radu
Wed Apr 29, 2015 12:39 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: How to add MathML support to DITA customization?
Replies: 4
Views: 3150

Re: How to add MathML support to DITA customization?

Hi Frank, The Oxygen provided mathml plugin does not come with MathML DTDs. Instead, its modules refer to it using the public ID -//W3C//DTD MathML 2.0//EN . Also the catalog.xml from our plugin has an entry like: <nextCatalog catalog="../../../../mathml/catalog.xml"/> which means that we ...
by Radu
Wed Apr 29, 2015 9:19 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: How to add MathML support to DITA customization?
Replies: 4
Views: 3150

Re: How to add MathML support to DITA customization?

Hi Frank, If it helps you, the DITA OT distribution which comes with Oxygen contains a mathml plugin inside it which you could use as a starting point: OXYGEN_INSTALL_DIR\frameworks\dita\DITA-OT\plugins\mathml besides contributing XSLT for publishing PDF and XHTML-based topics with the equations emb...
by Radu
Tue Apr 28, 2015 5:01 pm
Forum: General XML Questions
Topic: check schema for fixed attribute
Replies: 7
Views: 5016

Re: check schema for fixed attribute

Hi, I forgot to ask if this is a showstopper for you. Oxygen uses the Xerces parser to parse the XML content and obtain the default attributes for each element while the content is parsed. And the Xerces parser loads and uses the XML Schema which is directly referenced by the XML document. So we wou...
by Radu
Tue Apr 28, 2015 4:12 pm
Forum: Common Problems
Topic: "Check Spelling in Files..." ignores Author Review PIs
Replies: 2
Views: 1480

Re: "Check Spelling in Files..." ignores Author Review PIs

Hi Frank, I understand, we have the same issue with using Find/Replace in Files to find content which might span over change tracking areas. So right now both the Find/Replace in Files and Spell Check in Files work directly over the XML text content with problems like the ones you mentioned. For Oxy...
by Radu
Tue Apr 28, 2015 2:04 pm
Forum: Other Issues
Topic: Problem with ditaval flag images not showing up
Replies: 2
Views: 1327

Re: Problem with ditaval flag images not showing up

Dear Jennifer, What happens is that the DITA Open Toolkit publishing engine does not automatically copy the flag images to the output folder. You have 3 alternatives: 1) Copy the flagging images manually to the output folder. 2) Refer the images in the DITA Map as resource-only files: <topicref href...
by Radu
Tue Apr 28, 2015 11:19 am
Forum: Other Issues
Topic: Continuous integration for XML to PDF
Replies: 3
Views: 2029

Re: Continuous integration for XML to PDF

Hi, To run from the command line XSLT 2.0 processing you can download separately the Saxon 9 XSLT processor: http://www.saxonica.com/welcome/welcome.xml and read its getting started section: http://www.saxonica.com/documentation/index.html#!about/gettingstarted/gettingstartedjava Regards, Radu
by Radu
Tue Apr 28, 2015 10:40 am
Forum: XSLT and FOP
Topic: Possible bug with xsl:result-document
Replies: 3
Views: 3447

Re: Possible bug with xsl:result-document

Hi Mathias,

Sorry for the delay, we'll consider this.
In the meantime you can also switch to the debugger perspective and do a "Run to End", it will open tabs for each document saved using the result-document feature.

Regards,
Radu
by Radu
Tue Apr 28, 2015 10:23 am
Forum: XSLT and FOP
Topic: HTTP - Client
Replies: 3
Views: 3369

Re: HTTP - Client

Hi, We do not have much experience with this. You could try to download from the EXPath download area: http://expath.org/files the HTTP Client for Saxon ZIP file. The ZIP will contain a tar which when expanded will contain in a content/jar folder two JAR libraries: expath-http-client-java.jar and ex...
by Radu
Mon Apr 27, 2015 3:56 pm
Forum: DocBook
Topic: Having a problem with xi: and <link>
Replies: 1
Views: 4623

Re: Having a problem with xi: and <link>

Hi Robert, So by itself the module is not valid, but the entire publication is self contained and valid. You can instruct Oxygen that when a module is validated, it should actually validate the main publication XML file. You can either do this by defining a validation scenario: http://www.oxygenxml....
by Radu
Mon Apr 27, 2015 9:26 am
Forum: Common Problems
Topic: What does "Count Words" count?
Replies: 4
Views: 3596

Re: What does "Count Words" count?

Hi Christina, I found that the document contains processing instructions from FrameMaker that were added to the sum of counted words. When I deleted them from the file, I got the correct result. I will add an improvement request to avoiding counting words which are inside comments and processing ins...
by Radu
Fri Apr 24, 2015 1:50 pm
Forum: Common Problems
Topic: What does "Count Words" count?
Replies: 4
Views: 3596

Re: What does "Count Words" count?

Hi Christina, Could you possibly paste the content of the sample DITA topic you tested with? I tested on a small topic and it worked for me. If you want this statistics on a DITA Map, if you open the DITA Map in the DITA Maps Manager view, then use the "Configure transformation scenario" b...