Search found 9018 matches

by Radu
Thu Jul 19, 2012 12:00 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: apiref specialization
Replies: 8
Views: 5169

Re: apiref specialization

Hi Pablo, It's very hard for me to follow all your modifications. For example you are the DITA OT bundled with Oxygen 14 but the reported DITA version in the console is 1.3. This means that you have replace the bundled DITA OT with an older one, right? You also have problems in the libraries which a...
by Radu
Thu Jul 19, 2012 11:25 am
Forum: Other Issues
Topic: Getting AuthorComponentProvider from AuthorOperations in Applet
Replies: 4
Views: 1728

Re: Getting AuthorComponentProvider from AuthorOperations in Applet

Hi, I also want the PrintOperation in the right click popup menu. Besides adding an author operation to the pop-up menu by editing the associated document type you can also use this API to customize the JPopupMenu before showing (API available also from the Author Component Provider side): ro.sync.e...
by Radu
Thu Jul 19, 2012 11:15 am
Forum: Common Problems
Topic: Customizing Toolbars
Replies: 8
Views: 3818

Re: Customizing Toolbars

Hi, One might be a bug. I am getting a random "MY ACTION" button on my custom toolbars, that isn't listed anywhere in the toolbar. If I delete the toolbar where it appears, it jumps to my next custom toolbar instead. It's very odd. That's strange. So you are referring to the custom toolbar...
by Radu
Thu Jul 19, 2012 11:00 am
Forum: Other Issues
Topic: Getting AuthorComponentProvider from AuthorOperations in Applet
Replies: 4
Views: 1728

Re: Getting AuthorComponentProvider from AuthorOperations in Applet

Hi Neil, The AuthorOperations only work with AuthorAccess. And AuthorAccess does not (yet) have API to call print. Maybe a workaround would be to avoid creating the "Print" action as an "AuthorOperation" (in the associated framework). In the applet you could add a custom toolbar ...
by Radu
Wed Jul 18, 2012 5:26 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: apiref specialization
Replies: 8
Views: 5169

Re: apiref specialization

Hi Pablo, Are you using the DITA OT bundled with 14.0 or have you installed DITA OT 1.6 in a separate location? This probably is related to the libraries Oxygen uses to start the DITA OT ANT process. If you edit the transformation scenario, in the Advanced tab there is a Libraries button. By default...
by Radu
Wed Jul 18, 2012 10:22 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: old newly - dita specializations
Replies: 9
Views: 5402

Re: old newly - dita specializations

Hi Pablo,

My knowledge of DITA specializations is not good enough to answer this question.
Maybe you should write about this on the DITA Users List with some small examples. Eliot Kimber, the master of DITA specializations replies to threads quite regularly there.

Regards,
Radu
by Radu
Wed Jul 18, 2012 9:23 am
Forum: General XML Questions
Topic: Revision Bars
Replies: 2
Views: 2239

Re: Revision Bars

Hi Victor, There was an older DITA Open Toolkit version in which flagging indeed was not rendered in the PDF, but recent versions of the DITA OT overcame this limitation. Flagging in PDF seemed to work for me using Oxygen 13.2 and the bundled DITA Open Toolkit. So there are several stages: 1) In you...
by Radu
Wed Jul 18, 2012 9:07 am
Forum: Common Problems
Topic: How in element get inner XML
Replies: 2
Views: 1196

Re: How in element get inner XML

Hi Ivan, Please give us more details about what you want, do you want to obtain the content using the Author API or by applying an XSLT stylesheet over the original content? From your previous posts I will assume you want to do this using Oxygen's API. Here is a small code sample of copying the cont...
by Radu
Wed Jul 18, 2012 8:55 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: apiref specialization
Replies: 8
Views: 5169

Re: apiref specialization

Hi Pablo, First the plugin needs to be created using the available extension points: http://dita-ot.sourceforge.net/1.6.1/dev_ref/plugins-overview.html Then it needs to be installed: http://dita-ot.sourceforge.net/1.6.1/dev_ref/plugins-installing.html Basically after you copy a plugin to the "p...
by Radu
Wed Jul 18, 2012 8:38 am
Forum: SDK-API, Frameworks - Document Types
Topic: table row and column operations
Replies: 2
Views: 2885

Re: table row and column operations

Hi,

Yes, this is a new feature in Oxygen 14.1.
For anybody else reading the post, this section of the user manual gives more details:

http://www.oxygenxml.com/doc/ug-oxygen/ ... ables.html

Regards,
Radu
by Radu
Tue Jul 17, 2012 9:13 am
Forum: Common Problems
Topic: Custom spell checker
Replies: 2
Views: 1847

Re: Custom spell checker

Hi Mike, The spell checker used in Oxygen is the Hunspell Spell Checker: http://www.oxygenxml.com/doc/ug-oxygen/index.html?q=/doc/ug-oxygen/topics/spell-checking-dictionaries.html We also support an older spell checker for backward compatibility reasons. Hunspell is an open source engine used in man...
by Radu
Mon Jul 16, 2012 11:42 am
Forum: Common Problems
Topic: AuthorDocumentController findNodesByXpath not returning expected values
Replies: 3
Views: 1671

Re: AuthorDocumentController findNodesByXpath not returning expected values

Hi Neil, The Javadoc says something like: contextNode The node in the context of which the relative XPath Expressions will computed. but XPath expressions starting with "//" are not relative. The XPath specification: http://www.w3.org/TR/xpath/ gives some examples like: //para selects all ...
by Radu
Mon Jul 16, 2012 11:26 am
Forum: Common Problems
Topic: AuthorDocumentController findNodesByXpath not returning expected values
Replies: 3
Views: 1671

Re: AuthorDocumentController findNodesByXpath not returning expected values

Hi Neil, This is how XPath expressions work, even when you interpret it relative to a node, if you use a // construct then the expression is interpreted as absolute. For your case you should have simply used the expression para which would have returned all para's from that element. You can test XPa...
by Radu
Fri Jul 13, 2012 4:05 pm
Forum: Feature Request
Topic: WebDAV option for lock/read-only access on open
Replies: 7
Views: 4931

Re: WebDAV option for lock/read-only access on open

Hi Stefan, I think we can trick Oxygen into not locking certain files. Do you have experience implementing Oxygen plugins? http://www.oxygenxml.com/oxygen_sdk.html#Developer_Plugins I think this can be done by implementing an Open Redirect plugin and a Custom Protocol plugin. The Open Redirect plugi...
by Radu
Fri Jul 13, 2012 2:22 pm
Forum: Feature Request
Topic: WebDAV option for lock/read-only access on open
Replies: 7
Views: 4931

Re: WebDAV option for lock/read-only access on open

Hi Stefan,

We do not have the API for this.
Could you elaborate a bit on your usecase? Where are you opening that remote file, in the DITA Maps Manager?

Regards,
Radu
by Radu
Fri Jul 13, 2012 1:50 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Problems with DITA customization
Replies: 2
Views: 2295

Re: Problems with DITA customization

Hi Heather, In steps (6) and (7) you were actually referring to the custom.xsl.orig and custom.xsl , right? These steps worked for me but with one other modification, instead of commenting the line: <xsl:attribute name="font-style">italic</xsl:attribute> replace it with: <xsl:attribute nam...
by Radu
Fri Jul 13, 2012 11:39 am
Forum: SDK-API, Frameworks - Document Types
Topic: How to disable xml Document in Author
Replies: 7
Views: 4158

Re: How to disable xml Document in Author

Hi Sebastien,

What do you mean by "disable"? Do you mean not-editable?

We have some API like:

Code: Select all

ro.sync.exml.workspace.api.editor.page.WSTextBasedEditorPage.setEditable(boolean)
which might be useful to you.

Regards,
Radu
by Radu
Fri Jul 13, 2012 9:02 am
Forum: Common Problems
Topic: Customizing Toolbars
Replies: 8
Views: 3818

Re: Customizing Toolbars

Hi, The Document Type Edit dialog can customize only the special toolbars and menu corresponding to your document type. If you are willing to write a Java plugin for Oxygen: http://www.oxygenxml.com/oxygen_sdk.html#Developer_Plugins We have two types of sample plugins: 1) Startup - allows you to fil...
by Radu
Fri Jul 13, 2012 8:36 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: old newly - dita specializations
Replies: 9
Views: 5402

Re: old newly - dita specializations

Hi Pablo,

If you get a validation error in the main DTD file then there is a problem with your specialization.
If you can share your specialization with us (support@oxygenxml.com) I could try to take a look at it.

Regards,
Radu
by Radu
Wed Jul 11, 2012 2:02 pm
Forum: SDK-API, Frameworks - Document Types
Topic: How to store user's informations
Replies: 4
Views: 3649

Re: How to store user's informations

Hi Sebastien, Yes, you can use the options storage API to store simple key=>value pairs. Oxygen has a preferences folder, depending on the operating system it is located in different places. In this topic you can see at step (3) the locations on the preferences folder: http://www.oxygenxml.com/doc/u...
by Radu
Wed Jul 11, 2012 10:26 am
Forum: Other Issues
Topic: Applet Save dialog on close
Replies: 2
Views: 1250

Re: Applet Save dialog on close

Hi Neil, You cannot take control over that message dialog. But how about this? When the user wants to close, you use the API to check if the editor is modified (AuthorEditorAccess.isModified()), if so, you show your own dialog. If the user chooses to save, you use our API to save and then you use ou...
by Radu
Wed Jul 11, 2012 10:22 am
Forum: SDK-API, Frameworks - Document Types
Topic: How to store user's informations
Replies: 4
Views: 3649

Re: How to store user's informations

Hello Sebastien, I found a method "StandalonePluginWorkspace.getOptionsStorage()" in the Author API. But could you say me where are store the informations, only in memory, or in a file also ? The settings which you save are persistent, they are saved on disk when Oxygen is closed together ...
by Radu
Tue Jul 10, 2012 5:34 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: validate and check ... also scans non dita files
Replies: 5
Views: 3186

Re: validate and check ... also scans non dita files

Hi,

Oxygen 14.0 which was released should fix this behavior as well.

Regards,
Radu
by Radu
Tue Jul 10, 2012 5:32 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: author mode codeblock / coderef in dita
Replies: 3
Views: 3421

Re: author mode codeblock / coderef in dita

Hi,

Oxygen 14.0 which was released a couple of weeks ago should insert a coderef when dragging files in a codeblock.

Regards,
Radu
by Radu
Tue Jul 10, 2012 5:02 pm
Forum: Common Problems
Topic: Validation error when conref pushreplacing specialization of an element
Replies: 4
Views: 2440

Re: Validation error when conref pushreplacing specialization of an element

Hi Andy,

Oxygen 14.0 which was released a couple of weeks ago fixed the problem reported in the Author page.
As for the publishing problem, probably Oxygen 14.1 will come with DITA OT 1.6.1 which will fix this second problem.

Regards,
Radu
by Radu
Tue Jul 10, 2012 4:50 pm
Forum: Common Problems
Topic: Show Definition cannot find definition
Replies: 4
Views: 3136

Re: Show Definition cannot find definition

Hi,

Oxygen 14.0 which was released a couple of weeks ago should have this issue fixed.

Regards,
Radu
by Radu
Tue Jul 10, 2012 4:42 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Sync Problem Building DITA Book from Exist Data Source
Replies: 3
Views: 2989

Re: Sync Problem Building DITA Book from Exist Data Source

Hi Brian,

Oxygen 14.0 was released a couple of weeks ago and should have this issue fixed.

Regards,
Radu
by Radu
Tue Jul 10, 2012 4:31 pm
Forum: Common Problems
Topic: Equation as Image
Replies: 3
Views: 1729

Re: Equation as Image

Hi,

Oxygen 14.0 which was released a couple of weeks ago should allow the possibility to view in the Author page the TIFF preview from an EPS image:

http://www.oxygenxml.com/doc/ug-oxygen/ ... pport.html

Regards,
Radu
by Radu
Tue Jul 10, 2012 4:29 pm
Forum: Feature Request
Topic: Values in XPath results as separate column
Replies: 11
Views: 9541

Re: Values in XPath results as separate column

Hi,

In Oxygen 14.0 which was released a couple of weeks ago the results presented for an XPath evaluation have an extra XPath location column.

Regards,
Radu
by Radu
Mon Jul 09, 2012 10:52 am
Forum: Other Issues
Topic: Printing a document within author applet
Replies: 5
Views: 1998

Re: Printing a document within author applet

Hi Neil, Ideally I think that if you would be using in your CSS constructs like: @media print { *{ font-size:10px; } } These "print" media sections would have to be ignore when the XML document is edited but taken into account when the document is printed (this is the way in which a web br...