Search found 40 matches

by Pascale
Wed Apr 02, 2014 11:19 am
Forum: Feature Request
Topic: Defining Profiling values in Framework
Replies: 4
Views: 2843

Re: Defining Profiling values in Framework

Hi Radu,

thanks, this is working now :-)

Pascale
by Pascale
Wed Apr 02, 2014 11:17 am
Forum: SDK-API, Frameworks - Document Types
Topic: How to do Unit Testing of SmartPaste override
Replies: 4
Views: 2858

Re: How to do Unit Testing of SmartPaste override

Hi Sorin, thanks for your answer. We investigated a bit around Juxy and could not find a solution for our case, so we are wondering if we could use XSpec instead. We however want to run the Unit Tests from our Eclipse/Jenkins integrated development environment. Do you have any experience doing this,...
by Pascale
Thu Mar 27, 2014 6:34 pm
Forum: SDK-API, Frameworks - Document Types
Topic: How to do Unit Testing of SmartPaste override
Replies: 4
Views: 2858

How to do Unit Testing of SmartPaste override

Hi, We have a custom doctype, and have customized the SmartPaste feature by taking a copy of the Docbook XSLT files in our ${framework}/resources folder and we have updated them to adapt the conversion to our DTD. In Oxygen Author, I can now copy a section, table or list from MS Word and paste it as...
by Pascale
Fri Feb 28, 2014 6:28 pm
Forum: SDK-API, Frameworks - Document Types
Topic: inInlineContext not working as expected
Replies: 4
Views: 2734

Re: inInlineContext not working as expected

Thanks Alex,
I will double check my CSS.

Pascale
by Pascale
Wed Feb 26, 2014 3:18 pm
Forum: SDK-API, Frameworks - Document Types
Topic: inInlineContext not working as expected
Replies: 4
Views: 2734

Re: inInlineContext not working as expected

I was expecting the application to detect "inline context" based on the DTD, that is everywhere PCDATA content is allowed. I have now adapted the display property in the CSS and it works as I want. Could be worthwhile to add a note in the User Manual that "inline context" is rela...
by Pascale
Tue Feb 25, 2014 7:19 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Using custom ID generation in document template
Replies: 2
Views: 2604

Using custom ID generation in document template

If a document template uses the ${id} variable, the ID value is generated when a new document is based on that template. Is it possible to call a custom ID generation ? I tried by replacing <topic id=${id}> with <topic id=${com.mycompany.oxygen.MyGenerateIDsOperation}> but it does not work. Note: co...
by Pascale
Tue Feb 25, 2014 7:06 pm
Forum: SDK-API, Frameworks - Document Types
Topic: inInlineContext not working as expected
Replies: 4
Views: 2734

inInlineContext not working as expected

Hi, Is there a way to configure authorAccess.getDocumentController().inInlineContext(caretOffset) ? I am asking because it does not work as I expected; it seems to always return true. I have a custom DTD with the following declaration: <!ELEMENT block (label, ( para | list | tablecontainer | graphic...
by Pascale
Tue Feb 25, 2014 6:52 pm
Forum: Feature Request
Topic: Defining Profiling values in Framework
Replies: 4
Views: 2843

Defining Profiling values in Framework

Profiling values are currently defined in the global options of Oxygen, and must be entered one by one via a dialog box. We would like to have the profiling values defined inside the framework directory, ideally as a separate XML file, so that any change to the profiling attributes and values can be...
by Pascale
Thu Jan 30, 2014 3:09 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Referencing list from another XML file
Replies: 9
Views: 6004

Re: Referencing list from another XML file

Hi Alex, your solution works perfectly, thanks! My problem was that I did not use the oxy_replace function at the right place: I was trying string-join(oxy_replace(...)) and that does not work ! Your solution oxy_replace("string-join(...)) is working. Thanks also for the logger configuration in...
by Pascale
Wed Jan 29, 2014 4:58 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Referencing list from another XML file
Replies: 9
Views: 6004

Re: Referencing list from another XML file

Additional question on the same subject: Is it possible to constraint the list of returned values from the external file to the content of the current document ? Preferably in CSS syntax... My case: I am reading values in an external XML file using oxy_xpath to populate a popup in the CSS file. The ...