Search found 9198 matches

by Radu
Thu Jun 13, 2024 6:34 am
Forum: SDK-API, Frameworks - Document Types
Topic: Upgrading SDK
Replies: 5
Views: 756

Re: Upgrading SDK

Hi Scott, I do not know what is inside the "mbep.jar" library. As you are running "java -jar mbep.jar" without specifying a classpath and a main class in the command line, I assume that: 1) Either the "mbep.jar" was created to contain inside it the contents of all other...
by Radu
Thu Jun 13, 2024 6:30 am
Forum: Common Problems
Topic: Schematron validation using context="/"
Replies: 6
Views: 669

Re: Schematron validation using context="/"

Hi Audye, About this question: I have one last question, could we use the "ValidationScenarioInvoker" method from the "ro.sync.exml.workspace.api.editor.validation" package to programmatically run a validation scenario? Right now the method "ValidationScenarioInvoker.runVali...
by Radu
Wed Jun 12, 2024 4:12 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Content is not allowed in the Trailing Section
Replies: 2
Views: 545

Re: Content is not allowed in the Trailing Section

Hi, In my opinion when you read from the reader: n = clobReader.read(buf)) >= 0 that "n" variable holds the useful length from the "buf" which has been filled by the reader. So I would assume something like this might fix the problem: sb.append(buf, 0, n); Of course you can add s...
by Radu
Wed Jun 12, 2024 12:51 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Publishing webhelp with a JSON file
Replies: 4
Views: 721

Re: Publishing webhelp with a JSON file

Hi Nils, The plugin relies on some code in the DITA OT main library. I just tested installing it in an Oxygen 26.1 DITA OT and it seems to work for me. Is it possible that you have changed the folder "C:\DevTools\Oxygen XML Editor 26\frameworks\dita\DITA-OT\" from your side? Maybe place th...
by Radu
Tue Jun 11, 2024 7:09 am
Forum: Common Problems
Topic: Schematron validation using context="/"
Replies: 6
Views: 669

Re: Schematron validation using context="/"

Hi, About the WebAuthor tool, all its possible GET parameters are listed here: https://www.oxygenxml.com/doc/versions/26.0.0/ug-waCustom/topics/webauthor-integrate-with-another-app.html There is this parameter: schematron.imposed.phase - This parameter can be used to impose the Schematron phase to u...
by Radu
Mon Jun 10, 2024 3:22 pm
Forum: Common Problems
Topic: Schematron validation using context="/"
Replies: 6
Views: 669

Re: Schematron validation using context="/"

Hello Audye, Here's an example XML document: <root> <abc securityClassification="zz"></abc> <def></def> </root> and Schematron schema to validate it with: <sch:schema xmlns:sch="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2" xmlns:sqf="http://www.schema...
by Radu
Mon Jun 10, 2024 3:14 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Add-On Connection Error
Replies: 1
Views: 455

Re: Add-On Connection Error

Hi Gustavo,

Can you look in the Oxygen Preferences->"Add-ons" page? Maybe in time you added various URls to check for add-ons which should be removed.

Regards,
Radu
by Radu
Mon Jun 10, 2024 1:24 pm
Forum: Common Problems
Topic: Encoding issue (question marks instead of accents)
Replies: 10
Views: 1119

Re: Encoding issue (question marks instead of accents)

Hi, As a followup we added an internal issue to look into this, pasting the issue id below for future reference: EXM-54548 Problem with Linux Mint and Spanish layout keyboard But for now we are not sure how we could fix this issue on our side, this does not seem to be something that our application ...
by Radu
Sat Jun 08, 2024 8:10 am
Forum: SDK-API, Frameworks - Document Types
Topic: Table insertion and properties
Replies: 1
Views: 459

Re: Table insertion and properties

Hi Isabelle, I would suggest in this case for you to create your own action to insert a table, present a dialog to the end user and then insert some XML content in the editor as there is no particular API which would allow you to tell Oxygen that in that certain table insertion dialog the radio butt...
by Radu
Thu Jun 06, 2024 1:27 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Centering table in Author Mode
Replies: 2
Views: 474

Re: Centering table in Author Mode

Hi, Assuming your table has column widths which are fixed like this: <table frame="all" rowsep="1" colsep="1" id="table_ump_qnm_qbc" outputclass="center"> <title>fds</title> <tgroup cols="2"> <colspec colname="c1" colnum="1&q...
by Radu
Tue Jun 04, 2024 9:13 pm
Forum: Feature Request
Topic: Warehouse file - automatic additions/updates
Replies: 1
Views: 390

Re: Warehouse file - automatic additions/updates

Hi Petr, Your use case makes sense, we already have an internal issue opened for it, I added your remarks to it, pasting its ID below for future reference: EXM-52494 Refactor to extract element to reusable components topic The problem is that most companies do not have just one reusable elements fil...
by Radu
Tue Jun 04, 2024 9:05 pm
Forum: Common Problems
Topic: Schematron validation using context="/"
Replies: 6
Views: 669

Re: Schematron validation using context="/"

Hi Audye, The XPath "/" means the entire document node context (containing the root element and the possible comments/processing instructions before and after it), so it's not even the root element context. The root element xpath context is "/*". So this is probably why Oxygen do...
by Radu
Mon Jun 03, 2024 4:36 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Information about content completion
Replies: 1
Views: 491

Re: Information about content completion

Hi Isabelle,
I added an internal issue to see if we can find the time to investigate the problem. In general when the cc_config.xml is not enough you need to use some java code, our schema manager filter API for example.
Regards,
Radu
by Radu
Mon Jun 03, 2024 1:48 pm
Forum: General XML Questions
Topic: Best practice: many, many files - in Oxygen, in filesystem in database
Replies: 1
Views: 313

Re: Best practice: many, many files - in Oxygen, in filesystem in database

Hi, The Oxygen XML Forum is not a very good place where to ask the community questions as most people on the forum register to receive notifications only for their posts. So maybe the Oxygen XML Users List is a better place: https://www.oxygenxml.com/mailman/listinfo/oxygen-user There is also an XML...
by Radu
Mon Jun 03, 2024 7:33 am
Forum: General XML Questions
Topic: Author mode css styling
Replies: 2
Views: 558

Re: Author mode css styling

Hi, The oxy_link-text() CSS function in general receives no parameter: https://www.oxygenxml.com/doc/versions/26.1/ug-editor/topics/dg-oxy-link-text.html It gets expanded usually by a specific Java extension placed in the framework configuration, like for example we have such implementations for DIT...
by Radu
Thu May 30, 2024 11:25 am
Forum: General XML Questions
Topic: Efficiently Including Dynamic Content in DITA Maps
Replies: 1
Views: 288

Re: Efficiently Including Dynamic Content in DITA Maps

Hi, If you want to ask the larger DITA community about this, the Oxygen XML Forum is not that a great place where to ask such questions for the community because most of our users register to receive notifications only about their own topics, so they might not receive notifications of newly added to...
by Radu
Wed May 29, 2024 2:49 pm
Forum: Other Issues
Topic: Use nested keydef
Replies: 1
Views: 432

Re: Use nested keydef

Hi, I'm not sure if I understand your needs. Maybe you could post the DITA Map XML structure you attempted to make. A <ph keyref> only expands to plain text content, it cannot expand to text + link content: https://www.oxygenxml.com/dita/1.3/specs/archSpec/base/processing-keyref-for-text.html If you...
by Radu
Wed May 29, 2024 8:01 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: How can profiling condition values follow the transformed output?
Replies: 3
Views: 809

Re: How can profiling condition values follow the transformed output?

Hello Ann, Usually the ditaval filter has one or multiple <prop> elements with action="exclude". There is also an action="passthrough" value which implies that the profiling attribute values should be passed through to the HTML5 output as "data-*" attributes, so maybe y...
by Radu
Wed May 29, 2024 7:52 am
Forum: Common Problems
Topic: saxon:evaluate in XQuery script
Replies: 1
Views: 311

Re: saxon:evaluate in XQuery script

Hi Naoki, The XQuery scripts are evaluated using the Saxon libraries. At some point we upgraded the Saxon library in Oxygen to version 12.3 and Saxon's developers have decided to remove completely the support for saxon:evaluate. This means we had to adapt our scripts with their own inline implementa...
by Radu
Tue May 28, 2024 6:41 am
Forum: Common Problems
Topic: oXygen (+ git add-on?) seem to modify files unasked
Replies: 5
Views: 752

Re: oXygen (+ git add-on?) seem to modify files unasked

Hi Piotr,
Right, I also suspect some kind of locale related operating system setting on your side.
Regards,
Radu
by Radu
Sat May 25, 2024 12:24 pm
Forum: Feature Request
Topic: Automatically switch root map based on open ditamap
Replies: 9
Views: 3438

Re: Automatically switch root map based on open ditamap

Hi,
Thanks for the feedback, can you maybe post the entire error message that you considered to be unhelpful?
Regards,
Radu
by Radu
Sat May 25, 2024 12:21 pm
Forum: Other Issues
Topic: copying files from sharepoint
Replies: 4
Views: 960

Re: copying files from sharepoint

Hi, Not sure how I can help here. Maybe you can search for some sort of Sharepoint/Git integration or as you said, have a script which updates the Git project daily with the contents from Sharepoint. Ideally the publishing engine should have all necessary resources available on the local disk. Regar...
by Radu
Fri May 24, 2024 2:26 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Oxygen XML Author not finding DTD from DOCTYPE declaration
Replies: 1
Views: 438

Re: Oxygen XML Author not finding DTD from DOCTYPE declaration

Hello Ann, Officially we no longer support Oxygen 23 in any way: https://www.oxygenxml.com/eol.html Coming back to your question, once a plugin is installed in Oxygen, it may alter Oxygen's behavior in ways that Oxygen no longer controls. For example we have an API which allows a plugin to resolve r...
by Radu
Fri May 24, 2024 10:53 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: Keydef error
Replies: 2
Views: 455

Re: Keydef error

Hi, When you use Oxygen's actions to insert the keydef's href, Oxygen should insert it like this: <keydef href="https://docs.nordicsemi.com/bundle?labelkey=nrf7002&amp;labelkey=errata" scope="peer" format="html" keys="link_errata7002" navtitle="nRF700...
by Radu
Tue May 21, 2024 6:54 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Turn Off Tracked Changes for All Topics Via XSLT Custom Refactoring
Replies: 3
Views: 751

Re: Turn Off Tracked Changes for All Topics Via XSLT Custom Refactoring

Hi Daniel,
Great, thanks for posting the solution!
I know it's a bit rough but for most devs making changes before and after the root element is not something usual.
Regards,
Radu
by Radu
Mon May 20, 2024 6:18 am
Forum: Other Issues
Topic: Is there a way to automate multiple transformations?
Replies: 8
Views: 822

Re: Is there a way to automate multiple transformations?

Hi,
A scenario of type "Publish DITA-OT Project (all deliverables)" can be duplicated and in the "Output" tab you can manually specify a single HTML file location to open after the scenario runs, so you cannot specify two or more locations.
Regards,
Radu
by Radu
Mon May 20, 2024 6:05 am
Forum: Common Problems
Topic: How can I add a drop down menu to the top boarder?
Replies: 5
Views: 646

Re: How can I add a drop down menu to the top boarder?

Hi,
What type of XML documents are you editing? Are they document types like DITA or DocBook for which Oxygen provides out of the box publishing or did you set up your own publishing pipeline?
Regards,
Radu
by Radu
Fri May 17, 2024 4:33 pm
Forum: Other Issues
Topic: Is there a way to automate multiple transformations?
Replies: 8
Views: 822

Re: Is there a way to automate multiple transformations?

Hi, Right, here are some example DITA OT project files from our projects: https://github.com/oxygenxml/userguide/blob/master/DITA/Sample%20DITA-OT%20Project/ditaProject.xml https://github.com/oxygenxml/blog/blob/master/blog-project.xml So when you define on a deliverable a transformation type you ca...
by Radu
Fri May 17, 2024 4:08 pm
Forum: Other Issues
Topic: Is there a way to automate multiple transformations?
Replies: 8
Views: 822

Re: Is there a way to automate multiple transformations?

Hi, I'm not publishing just 2 maps. I have 2 completely separate projects. Oxygen WebHelp output can be obtained by opening a DITA Map and publishing it to WebHelp output. So you are probably publishing multiple DITA Maps to WebHelp output. It does not matter in what folder or project they are place...
by Radu
Fri May 17, 2024 3:45 pm
Forum: Other Issues
Topic: Is there a way to automate multiple transformations?
Replies: 8
Views: 822

Re: Is there a way to automate multiple transformations?

Hi, So you are publishing DITA XML content, correct? And you want to automate the sequential publishing of two or more DITA Maps, correct? Maybe you could define a DITA OT project which defines contexts and deliverables for each DITA Map and the publish the entire DITA OT project file with its assoc...