Search found 497 matches

by cristi_talau
Wed Mar 07, 2018 6:06 pm
Forum: Common Problems
Topic: Button click handler and Save form data
Replies: 9
Views: 3967

Re: Button click handler and Save form data

Hello, 1. Oxygen XML Editor offer you an easy way to edit XML documents in a graphical way. You do not have to submit the form - your changes are saved in the edited XML file when you "save". You mentioned that you wanted to save the data somewhere. Maybe explaining better your use-case wi...
by cristi_talau
Tue Mar 06, 2018 2:54 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Missing button "Insert topicref" with WebAuthor 19.1
Replies: 1
Views: 1319

Re: Missing button "Insert topicref" with WebAuthor 19.1

Hello, There are several cases in which this button is not present: 1. Your framework has some missing configuration. Can you check the "web/framework.js" file in your DITA framework? It should contain some code that registers this button. 2. There is no file browser registered. This actio...
by cristi_talau
Thu Feb 01, 2018 11:05 am
Forum: SDK-API, Frameworks - Document Types
Topic: Calling a Java class from javascript framework
Replies: 1
Views: 2092

Re: Calling a Java class from javascript framework

Hello,

In order to specify a cell fragment you can try one of the suggestions in this forum topic: topic15398.html .

Best,
Cristian
by cristi_talau
Thu Feb 01, 2018 11:04 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: Auto-insertion of p in entry when new table is inserted - WEB AUTHOR
Replies: 2
Views: 2432

Re: Auto-insertion of p in entry when new table is inserted - WEB AUTHOR

Hello, Another alternative is to extend the DITA framework [1], and create a new version of InsertTableOperation[2] that also inserts a paragraph inside each cell. The code sample can be found below import ro.sync.ecss.extensions.api.ArgumentsMap; import ro.sync.ecss.extensions.api.AuthorAccess; imp...
by cristi_talau
Thu Feb 01, 2018 10:06 am
Forum: SDK-API, Frameworks - Document Types
Topic: Web Author HTTP headers
Replies: 2
Views: 2652

Re: Web Author HTTP headers

Hello,

These are good ideas. I registered a feature request for this.

Just one comment regarding the "Accept-Language" header. Web Author has its own language settings, we plan to send that value when we call the REST API besides the value provided by the user's browser.

Best,
Cristian
by cristi_talau
Wed Jan 24, 2018 3:28 pm
Forum: Other Issues
Topic: Turn off auto insertion of http:// in Web Link
Replies: 3
Views: 2686

Re: Turn off auto insertion of http:// in Web Link

Hello,

Thanks for the suggestion. It's a good idea. I noted it.

Best,
Cristian
by cristi_talau
Mon Jan 22, 2018 2:53 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Creating a custom Dialog for Link
Replies: 14
Views: 7720

Re: Creating a custom Dialog for Link

Hello, First of all, I would suggest starting new Forum posts for each of your problems. Regarding your questions: 1) We have such an API: workspace.getNotificationManager().showInfo("message"); 2) Currently, the only feasible way is to list those tags manually. You can take a look at all ...
by cristi_talau
Mon Jan 22, 2018 2:27 pm
Forum: Other Issues
Topic: Turn off auto insertion of http:// in Web Link
Replies: 3
Views: 2686

Re: Turn off auto insertion of http:// in Web Link

Hello, I registered an internal improvement request for the "Insert Web Link" action. We will update this forum post when we release the improvement. Meanwhile, you can replace the "Insert Web Link" action with one that does not add "http://" using the "Preferences...
by cristi_talau
Fri Jan 19, 2018 2:31 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Creating a custom Dialog for Link
Replies: 14
Views: 7720

Re: Creating a custom Dialog for Link

Hello, The ro.sync.ecss.extensions.api.AuthorAccess API is a server-side API. You can implement AuthorOperation-s that run on the server using JS, but the code needs to be placed in a different file. For mode information you can take a look at this sample code: https://github.com/oxygenxml/javascrip...
by cristi_talau
Fri Jan 19, 2018 1:16 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Creating a custom Dialog for Link
Replies: 14
Views: 7720

Re: Creating a custom Dialog for Link

Hello,

The signature of the callback is documented here: https://www.oxygenxml.com/maven/com/oxy ... ctCallback . Basically, the first argument is the key of the pressed button and the event is the second.

Best,
Cristian
by cristi_talau
Fri Jan 19, 2018 1:12 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Finding a particular attribute of tags within the document
Replies: 5
Views: 4145

Re: Finding a particular attribute of tags within the document

Hello, Thanks for the detailed explanation. Now it makes sense. I managed to reproduce the problem you reported. The fix will be shipped in the next version of Web Author. Meanwhile you can include this patch in your code: if (sync.api.Version === 'v19.1.0') { sync.model.XmlDom.getChildNodes = funct...
by cristi_talau
Thu Jan 18, 2018 8:04 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Finding a particular attribute of tags within the document
Replies: 5
Views: 4145

Re: Finding a particular attribute of tags within the document

Hello, We have to kinds of APIs, a limited client-side JS API and a more powerful server-side Java API. The JS API currently does not allow you to easily make a list of nodes with a certain attribute. If we understand your end-goal, we can either suggest a more suitable JS or Java API, or we can imp...
by cristi_talau
Tue Jan 09, 2018 5:23 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Default Symbols customization in oXygen 19.1 Web Author
Replies: 1
Views: 1484

Re: Default Symbols customization in oXygen 19.1 Web Author

Hello, The charpicker looks up the characters in the localStorage of the user's browser [1]. If you write the "recentlyUsedCharacters" key with the value being an array of strings, those chars will be presented by default by the charpicker. To this end you need to inject some JS code in We...
by cristi_talau
Fri Dec 29, 2017 1:07 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Launching SWT dialog in Oxygen Web author 19.1
Replies: 1
Views: 2103

Re: Launching SWT dialog in Oxygen Web author 19.1

Hello, You are right, some of of the actions that you developed for the Oxygen Eclipse plugin work in Web Author, but some of them don't. There are two causes for the action with the SWT dialog to not work: 1. Technology mismatch. Unfortunately, SWT is a desktop GUI technology while Web Author is a ...
by cristi_talau
Wed Oct 18, 2017 5:47 pm
Forum: Other Issues
Topic: Configure Default Value Presentation Text For Empty Tags
Replies: 2
Views: 1907

Re: Configure Default Value Presentation Text For Empty Tags

Hello,

The placeholder can be controlled using CSS: https://www.oxygenxml.com/doc/versions/ ... nsion.html .

Would that be enough for you?

Best,
Cristian
by cristi_talau
Wed Oct 18, 2017 5:44 pm
Forum: Other Issues
Topic: Disable "Edit As XML"
Replies: 2
Views: 1834

Re: Disable "Edit As XML"

Hello,

You can. Here's the tutorial: https://www.oxygenxml.com/maven/com/oxy ... ction.html .

Best,
Cristian
by cristi_talau
Fri Oct 13, 2017 12:29 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Using conkeyrefs in oXygen Web Author
Replies: 2
Views: 1848

Re: Using conkeyrefs in oXygen Web Author

Hello,

We currently have only an action to insert Conrefs. Currently we have API that could help to implement a toolbar button to a insert conkeyref, but such an action is not present out-of-the-box.

Best,
Cristian
by cristi_talau
Wed Sep 27, 2017 4:31 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Automatic ID generation in web author
Replies: 4
Views: 2378

Re: Automatic ID generation in web author

Hello, I investigated the problem a little bit more and here is how ID generation is configured: There are two places where the elements for which IDs are generated can be configured: 1. In the framework idGenerationDefaultOptions.xml file [1] 2. In the Oxygen options file. When you use the "ID...
by cristi_talau
Wed Sep 27, 2017 12:28 pm
Forum: Common Problems
Topic: AuthorDocumentModel features
Replies: 17
Views: 6802

Re: AuthorDocumentModel features

Hello, I wanted to let you know that we are about to release Web Author 19.1 and that we improved the handling of read-only mode. You can already test how it works by going to our online demo server: https://www.oxygenxml.com/webapp-demo-aws/app/oxygen.html . In order to switch the document to read-...
by cristi_talau
Wed Sep 27, 2017 11:52 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: Installing Web Author
Replies: 6
Views: 2945

Re: Installing Web Author

Hello,

We investigated the issue and one of the 3rd party components that we use for authentication does not support non-ASCII characters in user-name and passwords. The workaround would be to use a password that contains only English letters, digits and punctuation signs.

Best,
Cristian
by cristi_talau
Tue Sep 26, 2017 4:01 pm
Forum: Feature Request
Topic: XML Web Author: selecting/accepting review items
Replies: 5
Views: 3550

Re: XML Web Author: selecting/accepting review items

Hello, I wanted to let you know that Web Author version 19.1 will have the "Accept All/Reject All" actions for tracked changes. This version will be released shortly, but you can try it using our online demo server at https://www.oxygenxml.com/webapp-demo-aws/app/oxygen.html . Best, Cristian
by cristi_talau
Mon Sep 25, 2017 6:58 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Automatic ID generation in web author
Replies: 4
Views: 2378

Re: Automatic ID generation in web author

Hello, I tested the ID generation with Web Author on a simple DITA topic. By default, it generates IDs for several elements like images, tables, etc. For a custom behavior you can alter the framework associated with your document type. More information here [1]. Let me know if you encounter any prob...
by cristi_talau
Wed Sep 20, 2017 3:46 pm
Forum: Other Issues
Topic: author.quick.up.down.navigation in XML Web Author
Replies: 4
Views: 2805

Re: author.quick.up.down.navigation in XML Web Author

Hello,

Unfortunately, we are not aware of any workaround for this problem.

Best,
Cristian
by cristi_talau
Fri Sep 15, 2017 3:59 pm
Forum: Other Issues
Topic: author.quick.up.down.navigation in XML Web Author
Replies: 4
Views: 2805

Re: author.quick.up.down.navigation in XML Web Author

Hello,

Unfortunately, this options is not supported in Web Author. I registered an issue about that and added your vote to it. You will be notified when we implement it.

Best,
Cristian
by cristi_talau
Thu Aug 17, 2017 6:17 pm
Forum: Other Issues
Topic: WebApp and Frameworks
Replies: 1
Views: 1466

Re: WebApp and Frameworks

Hello, Web Author uses one of the frameworks installed on the server. When multiple frameworks are installed, the correct framework is identified based on the content of the edited XML document. To upload such a framework, you should use the Administration Page [1] of your Web Author server. Best, C...
by cristi_talau
Tue Aug 08, 2017 5:15 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Custom CSS Selectors
Replies: 1
Views: 1764

Re: Custom CSS Selectors

Hello, In Web Author, the XML documents rendering is controlled by a CSS file that applies to the XML elements in your documents. In the browser, the XML is converted to HTML elements and the CSS is converted to another CSS that applies to the generated divs. It seems that you want to supply a CSS t...
by cristi_talau
Tue Aug 08, 2017 4:59 pm
Forum: Other Issues
Topic: goog.events.listen key-press event
Replies: 1
Views: 1826

Re: goog.events.listen key-press event

Hello, It works if you listen on the "capture" phase (note the last parameter - true ): goog.events.listen(goog.dom.getDocument(), goog.events.EventType.KEYDOWN, function(e) { if(e.keyCode == goog.events.KeyCodes.DELETE){ //do stuff... e.getBrowserEvent().preventDefault(); e.getBrowserEven...
by cristi_talau
Thu Jul 13, 2017 11:02 am
Forum: Other Issues
Topic: Delete functionality pulling data up.
Replies: 1
Views: 1432

Re: Delete functionality pulling data up.

Hello, First of all, we do not consider this behaviour to be a problem. The content is still valid after the delete and also this is the behaviour encountered in a normal word processor. If you are not happy with it, we have an option that can disable this "Smart Delete" feature [1]. Here ...
by cristi_talau
Thu Jul 06, 2017 2:20 pm
Forum: Other Issues
Topic: Use of alternate CSS available in Oxygen Web Author
Replies: 5
Views: 4227

Re: Use of alternate CSS available in Oxygen Web Author

Hello, Currently we do not support changing dynamically the CSS. A similar result can be achieved by using CSS pseudo-classes [1]. You can implement a toolbar action that sets a custom pseudoclass on the document root and depending on that pseudo-class you can change the styles that apply to differe...
by cristi_talau
Fri Jun 30, 2017 11:38 am
Forum: Other Issues
Topic: Visual Studio Source Control with Web Author?
Replies: 1
Views: 1673

Re: Visual Studio Source Control with Web Author?

Hello, Web Author requires a connector to work with various version control systems. We have a builtin connector for Git repositories and a WebDAV connector that can be configured to work with SVN repositories. You can achieve the best user experience by developing a custom connector for Team Servic...