Search found 495 matches

by cristi_talau
Mon Feb 25, 2019 6:54 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Using conkeyrefs in oXygen Web Author
Replies: 2
Views: 1815

Re: Using conkeyrefs in oXygen Web Author

Hello, I am writing to let you know that Oxygen XML Web Author version 21.0 is now released [1] and it now has support for inserting key-based references: - Now, when the "Reuse content..." dialog is used to insert a conref to an element found in another topic, Web Author automatically ins...
by cristi_talau
Mon Feb 25, 2019 6:32 pm
Forum: Feature Request
Topic: Oxygen Web Author doesn't work with NodeJS reverse proxy
Replies: 3
Views: 2976

Re: Oxygen Web Author doesn't work with NodeJS reverse proxy

Hello, I am writing to let you know that Oxygen XML Web Author version 21.0 is now released [1] and it works with the Node JS Express reverse proxy out-of-the-box without the custom code that I suggested in the previous post. Best, Cristian [1] https://www.oxygenxml.com/xml_web_author/whats_new.html
by cristi_talau
Mon Feb 25, 2019 6:27 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: does oxygen web author editor support @copy-to attribute?
Replies: 2
Views: 1813

Re: does oxygen web author editor support @copy-to attribute?

Hello,

I am updating this post to let you know that Oxygen XML Web Author version 21.0 is now released [1] and it does not show an error anymore for topics that use the copy-to attribute.

Best,
Cristian

[1] https://www.oxygenxml.com/xml_web_author/whats_new.html
by cristi_talau
Mon Feb 25, 2019 5:55 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: oxygen web editor how to add a languae for Simplified Chinese
Replies: 5
Views: 2637

Re: oxygen web editor how to add a languae for Simplified Chinese

Hello,

I am updating this forum post to let you know that starting with Oxygen XML Web Author version 21, we provide a plugin that adds language checking for Simplified Chinese [1].

Best,
Cristian

[1] https://github.com/oxygenxml/web-author ... ool-plugin
by cristi_talau
Tue Feb 19, 2019 7:57 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Check read only from framework.js
Replies: 1
Views: 1414

Re: Check read only from framework.js

Hello, You can use a place some JavaScript code in the "web/framework.js" file of the framework. To get a reference to the current editor, you can use a code snippet like below: MyExtension = function() {} MyExtension.prototype.editorCreated = function (editor) { // ... work with the edito...
by cristi_talau
Wed Feb 13, 2019 6:32 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Right Click Actions
Replies: 10
Views: 4714

Re: Right Click Actions

Hello, To find the Id of an action you can follow the steps here [1]. The IDs of the Cut/Copy/Paste actions in the context menu are: - Author/CutSpecial - Author/CopySpecial - Author/PasteSpecial And the actions that are bound to shortcuts are - Author/Cut - Author/Copy - Author/Paste Best, Cristian...
by cristi_talau
Wed Feb 13, 2019 5:46 pm
Forum: Common Problems
Topic: Editing processing instructions in Oxygen Web Author
Replies: 4
Views: 2404

Re: Editing processing instructions in Oxygen Web Author

Hello,

The current schedule is for version 21.1 which is due this fall. We can provide a nightly version of Web Author that supports this feature much sooner for you to test. Is this schedule acceptable for you?

Best,
Cristian
by cristi_talau
Mon Feb 11, 2019 7:54 pm
Forum: Common Problems
Topic: Editing processing instructions in Oxygen Web Author
Replies: 4
Views: 2404

Re: Editing processing instructions in Oxygen Web Author

Hello,

Unfortunately, you cannot add pseudo-elements like ":before" on a processing instruction. I registered an issue to remove this limitation in Web Author.

Best,
Cristian
by cristi_talau
Mon Feb 11, 2019 5:25 pm
Forum: Common Problems
Topic: WebDAV locks and unlocks
Replies: 4
Views: 2184

Re: WebDAV locks and unlocks

Hello, When the browser tab is closed, Web Author server is notified which in turn unlocks the document. Web Author usually issues a PROPFIND request to find if the UNLOCK operation is allowed. Maybe in your case, the WebDAV server does not answers to the PROPFIND request in the way that Web Author ...
by cristi_talau
Mon Feb 11, 2019 5:20 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Right Click Actions
Replies: 10
Views: 4714

Re: Right Click Actions

Hello, To override an action from the context menu you have to register your action with the same ID in the ActionsManager. However, implementing cut/copy/paste actions yourself in the browser is quite complicated due to security restrictions. If you give us more details about what you are trying to...
by cristi_talau
Mon Feb 04, 2019 6:13 pm
Forum: Feature Request
Topic: Change text of read only message.
Replies: 4
Views: 2939

Re: Change text of read only message.

Hello, I think you might have to implement a Java plugin to solve this issue [1]. You should register a WebappEditingSessionLifecycleListener [2] that does something like below: new WebappEditingSessionLifecycleListener() { @Override public void editingSessionStarted(String sessionId, AuthorDocument...
by cristi_talau
Mon Feb 04, 2019 4:21 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Right Click Actions
Replies: 10
Views: 4714

Re: Right Click Actions

Hello, Web Author displays only the actions configured in the framework that are compatible with the web. For example, an action that displays a Java Swing dialog is not compatible. If you implemented custom AuthorOperations, that you think are compatible with Web Author but still don't show up in t...
by cristi_talau
Fri Feb 01, 2019 2:23 pm
Forum: Common Problems
Topic: WebDAV locks and unlocks
Replies: 4
Views: 2184

Re: WebDAV locks and unlocks

Hello, To troubleshoot this issue you may want to enable more verbose HTTP logging. More details here [1]. Regarding your second problem, I registered an improvement request to make it harder for one to overwrite her own changes. We will notify you when we release a fix for this version. Best, Crist...
by cristi_talau
Fri Feb 01, 2019 2:16 pm
Forum: Feature Request
Topic: Change text of read only message.
Replies: 4
Views: 2939

Re: Change text of read only message.

Hello, Web Author interprets some headers sent by the WebDAV server, such as: "oxygen_read_only" and "oxygen_read_only_reason". The first one, if present signals that the file is read-only, while the second one can specify a string to be displayed on the yellow stripe. More detai...
by cristi_talau
Fri Jan 25, 2019 10:08 am
Forum: Feature Request
Topic: Left justify toolbar
Replies: 2
Views: 1935

Re: Left justify toolbar

Hello,

You can inject some JS code in Web Author [1] to enforce the following CSS rule:

Code: Select all


.toolbar-scroller {
text-align: left;
}
Best,
Cristian

[1] https://www.oxygenxml.com/doc/versions/ ... ng_js.html
by cristi_talau
Thu Jan 24, 2019 5:04 pm
Forum: Feature Request
Topic: Oxygen Web Author doesn't work with NodeJS reverse proxy
Replies: 3
Views: 2976

Re: Oxygen Web Author doesn't work with NodeJS reverse proxy

Hello, Thanks for reporting this problem. We tried using Nginx and Apache HTTP server as reverse proxies without problems. Regarding the NodeJS reverse-proxy, you can fix the problem by adding some JS code [1] to overwrite the _isJSONMIME function to your version. I just created a pull request in th...
by cristi_talau
Wed Jan 09, 2019 4:43 pm
Forum: Common Problems
Topic: Include specific attribute or child-element text in breadcrumb rendering
Replies: 4
Views: 2002

Re: Include specific attribute or child-element text in breadcrumb rendering

Hello, You can use the same JS API as above to specify a custom element name for the element. Unfortunately, there is no such support in cc_config. We have some other requests this feature and I added your vote for it. We will update this forum thread once we add support in the cc_config file for su...
by cristi_talau
Tue Jan 08, 2019 1:33 pm
Forum: Common Problems
Topic: Include specific attribute or child-element text in breadcrumb rendering
Replies: 4
Views: 2002

Re: Include specific attribute or child-element text in breadcrumb rendering

Hello, Currently, the display string for an element in the breadcrumb can be computed based on the element name and its attributes. For example, to display the ID of the element in the breadcrumb, the following code snippet may help [1]: goog.events.listen(workspace, sync.api.Workspace.EventType.BEF...
by cristi_talau
Thu Dec 20, 2018 2:41 pm
Forum: Common Problems
Topic: Add a custom attribute option
Replies: 1
Views: 1283

Re: Add a custom attribute option

Hello, In DITA you can add attributes by creating a specialization [1]. This is not a simple thing to do. What kind of attribute are you trying to add? Maybe we can give you better alternatives or advice? For example, the outputclass attribute in DITA can be used for any purpose. Best, Cristian [1] ...
by cristi_talau
Thu Dec 06, 2018 2:10 pm
Forum: Feature Request
Topic: Oxygen Web Author print setup
Replies: 5
Views: 3602

Re: Oxygen Web Author print setup

Hello, Having a transformation to PDF would be a good alternative. However, we do not currently have such an option for Web Author. I added your vote for this feature request. An workaround would be for you to setup a Continuous Integration server (e.g. Jenkins) that publishes to PDF each time a fil...
by cristi_talau
Thu Nov 29, 2018 2:23 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: oxygen web editor how to add a languae for Simplified Chinese
Replies: 5
Views: 2637

Re: oxygen web editor how to add a languae for Simplified Chinese

Hello, 1. The language used by the spell-checker. Web Author uses Hunspell as a spell-checker and it does not have support for Chinese. We have registered a feature request to integrate other spellcheckers. For example LanguageTool (https://languagetool.org/) has support for Simplified Chinese. We h...
by cristi_talau
Wed Nov 28, 2018 3:53 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Web Author autocorrection patch
Replies: 4
Views: 2377

Re: Web Author autocorrection patch

Hello, You need to replace the [oxygen.data.dir] part with the path to your Oxygen Data Directory [1]. To clarify - in your options.xml file, you need to modify the path set as value for the autocorrect.user.defined.replacements.custom.folder entry. In case it still does not work, you should check t...
by cristi_talau
Mon Nov 26, 2018 12:38 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: oxygen web editor how to add a languae for Simplified Chinese
Replies: 5
Views: 2637

Re: oxygen web editor how to add a languae for Simplified Chinese

Hello,

There support for simplified Chinese can refer to several things:
1. The language used by the spell-checker.
2. The language of the user interface.
3. The language used to write the content.

Which one are you referring to?

Best,
Cristian
by cristi_talau
Wed Nov 21, 2018 3:51 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Web Author not warning when a file is read-only
Replies: 4
Views: 1970

Re: Web Author not warning when a file is read-only

Hello, I'm surprised the WebDAV server is not intended for use in production. I know WebDAV is a bit old, so perhaps that is why? Web Author has a WebDAV client that can be used in production. It is already used by many of our customers with a CMS that implements the WebDAV protocol or with an Apach...
by cristi_talau
Tue Nov 20, 2018 6:36 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Web Author not warning when a file is read-only
Replies: 4
Views: 1970

Re: Web Author not warning when a file is read-only

Hello, The files served by the builtin WebDAV server are found in the [oxygen.data.dir]/webdav-server/. This is the only place where they can be found. This problem was probably caused by the builtin WebDAV server that did not properly handle the case in which the file was read-only. The builtin Web...
by cristi_talau
Wed Nov 14, 2018 9:32 pm
Forum: Feature Request
Topic: Oxygen Web Author Outline view
Replies: 2
Views: 1991

Re: Oxygen Web Author Outline view

Hello,

We have a feature request registered to implement an outline view. I added your vote to it and will update this thread when we have something implemented.

Best,
Cristian
by cristi_talau
Wed Oct 31, 2018 12:54 pm
Forum: Feature Request
Topic: Oxygen Web Author print setup
Replies: 5
Views: 3602

Re: Oxygen Web Author print setup

Hello, The print functionality in Web Author delegates to the browser CSS support for paged media [1]. Unfortunately, it seems that Chrome for example does not support controlling header / footer. In the header it prints the window title and in the footer it prints the URL. There is an option in the...
by cristi_talau
Tue Oct 16, 2018 5:29 pm
Forum: SDK-API, Frameworks - Document Types
Topic: "Insert Special Character" action in WebAuthor
Replies: 1
Views: 1660

Re: "Insert Special Character" action in WebAuthor

Hello, The char picker is provided by a plugin [1]. You can use one of the releases here [2]. It is added on the toolbar of the current framework automatically. Best, Cristian [1] https://github.com/oxygenxml/web-author-charpicker-plugin [2] https://github.com/oxygenxml/web-author-charpicker-plugin/...
by cristi_talau
Fri Sep 28, 2018 1:39 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Modal dialog in Web Author
Replies: 7
Views: 4195

Re: Modal dialog in Web Author

Hello,

There is a typo in the code

Code: Select all


for (var i = 0; i < selectElement.length; i++) {
should be

Code: Select all


for (var i = 0; i < selectElement.options.length; i++) {
Best,
Cristi
by cristi_talau
Fri Sep 21, 2018 3:36 pm
Forum: Feature Request
Topic: How to set the cookie when using the web author restful api
Replies: 1
Views: 1776

Re: How to set the cookie when using the web author restful api

Hello, Currently, the user ID used for licensing is not customizable. I added your improvement request in our internal issue tracking system and we will update this thread when we implement it. It would be helpful to know which connector you are using? E.g. WebDAV / Git / something else. Best, Crist...