Search found 496 matches

by cristi_talau
Wed May 04, 2016 8:55 am
Forum: Common Problems
Topic: New Actions Toolbar
Replies: 4
Views: 2059

Re: New Actions Toolbar

Hello, You can find here [1] a tutorial about implementing a new action. In order to add a new toolbar you have to listen for the "sync.api.Workspace.EventType.BEFORE_EDITOR_LOADED" event [2] and modify the "actionsConfiguration" field of the event to match the desired structure ...
by cristi_talau
Fri Apr 29, 2016 2:23 pm
Forum: Common Problems
Topic: WebApp Response Message
Replies: 4
Views: 1977

Re: WebApp Response Message

We are going to make this change in the next version of oXygen XML Web Author. If you want this functionality in 18.0 you will need to patch our WebDAV plugin available on GitHub [1] and install it in Web Author [2]. You will have to use webdav-http instead of http when passing the URL to the Web Au...
by cristi_talau
Wed Apr 27, 2016 4:26 pm
Forum: Common Problems
Topic: WebApp Response Message
Replies: 4
Views: 1977

Re: WebApp Response Message

Hello, To be sure I understand your context: you are using oXygen XML Web Author 18.0.0 (as part of the SDK) and using the "http" or "webdav" protocol to load and save document. Right? In Web Author we currently ignore the server response on HTTP requests since sometimes it conta...
by cristi_talau
Wed Mar 23, 2016 3:59 pm
Forum: Common Problems
Topic: WebApp Autosave and Smartquotes bugs
Replies: 6
Views: 2621

Re: WebApp Autosave and Smartquotes bugs

Hello, Thanks for sharing your solution! A solution which in essence is the same as yours, but is intended to be used from a plugin.js file and which uses uses only the API is the following: goog.events.listen(workspace, sync.api.Workspace.EventType.EDITOR_LOADED, function(e) { setInterval(function(...
by cristi_talau
Wed Mar 16, 2016 5:23 pm
Forum: Common Problems
Topic: WebApp Autosave and Smartquotes bugs
Replies: 6
Views: 2621

Re: WebApp Autosave and Smartquotes bugs

Hello,

We released the SDK project version 17.1.0.4. It contains the fix for the smart quotes problem.

You can use it by changing the oxygen.sdk.version in the pom.xml of your SDK project to 17.1.0.4. After that you should rebuild the SDK project.

Best,
Cristian
by cristi_talau
Mon Mar 14, 2016 3:21 pm
Forum: Common Problems
Topic: WebApp Autosave and Smartquotes bugs
Replies: 6
Views: 2621

Re: WebApp Autosave and Smartquotes bugs

Hello, Regarding the first issue with the "autosave" option. I confirm that it is not currently supported in Web Author. It is on our priority list, but since the 18.0 release will be out very soon I cannot promise it may be postponed for the next version. Regarding the smart quotes issue,...
by cristi_talau
Fri Dec 11, 2015 11:54 am
Forum: SDK-API, Frameworks - Document Types
Topic: Toolbars and context menus in WebApp
Replies: 3
Views: 2519

Re: Toolbars and context menus in WebApp

Hello, You'll have to annotate and re-compile only your custom operations. This annotation is intended to tell us whether the actions are webapp-compatible or not. For example, if you show a swing dialog while performing one of the operations, it will not work in webapp, so you may want to disable t...
by cristi_talau
Thu Dec 10, 2015 1:19 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Toolbars and context menus in WebApp
Replies: 3
Views: 2519

Re: Toolbars and context menus in WebApp

Hello, One possible cause is that your custom actions use custom Java operations. These Java operations need to be annotated with @WebappCompatible in order to be used in WebApp. More details here [1]. If you added some JS code to your framework, it may help looking for errors in the browser console...
by cristi_talau
Thu Jul 16, 2015 3:00 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Oxygen web app customization!
Replies: 3
Views: 2289

Re: Oxygen web app customization!

Hello, The problem with 16.1 is that it does not have a toolbar and context menu. These are features we added in 17.0. Anyway, I don't see any problems in having an extension for oXygen Eclipse plugin 16.1 and one for oXygen XML WebApp 17.0 - you can still reuse a lot of code between them. The Java ...
by cristi_talau
Tue Jul 07, 2015 11:02 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: Oxygen web app customization!
Replies: 3
Views: 2289

Re: Oxygen web app customization!

Hello, oXygen XML WebApp can be customized using plugins [1] which have the same format as oXygen Standalone plugins. They are similar but different from Eclipse plugins. In order to add libraries to the classpath you can check the "Referencing Libraries" section here [2]. The GUI of the c...
by cristi_talau
Mon May 04, 2015 9:47 am
Forum: Other Issues
Topic: Using the SDK
Replies: 3
Views: 2102

Re: Using the SDK

Hello, Regarding the oXygen Author WebApp support for text mode, as Alex said, a full-featured Text mode is not a priority for us right now. However, we plan to support an Author-mode action that is available when you right-click an XML element (e.g. paragraph, section, etc.) and edits its content i...
by cristi_talau
Tue Sep 23, 2014 12:02 pm
Forum: SDK-API, Frameworks - Document Types
Topic: How to deploy oxygen-sdk-sample-webapp.war?
Replies: 2
Views: 2267

Re: How to deploy oxygen-sdk-sample-webapp.war?

Hello Frank, Thanks for taking time to try our WebApp product. It seems you managed to do the hard part - building the oxygen-sdk-sample-webapp.war file. The deployment is not detailed in the documentation because is very sever-specific. For Tomcat, you basically have to drop the war file in the web...
by cristi_talau
Wed Sep 10, 2014 3:59 pm
Forum: SDK-API, Frameworks - Document Types
Topic: SDK usage
Replies: 7
Views: 4786

Re: SDK usage

Hello, First of all please make sure that the "options.xml" and "application.layout" are not inside the "template" folder; they should be next to it. Secondly, I noticed a bug in our SDK. The options.xml and application.layout and the template folder don't get included ...
by cristi_talau
Tue Sep 09, 2014 2:45 pm
Forum: SDK-API, Frameworks - Document Types
Topic: SDK usage
Replies: 7
Views: 4786

Re: SDK usage

Hello, The error you are getting seems to be related to network connectivity. Maven requires an Internet connection in order to download the archetype from the Maven central repository. In order to troubleshoot the networking problem please check the following things: - The <proxy> tag should be add...
by cristi_talau
Fri Sep 05, 2014 3:10 pm
Forum: SDK-API, Frameworks - Document Types
Topic: SDK usage
Replies: 7
Views: 4786

Re: SDK usage

Hello, In order to integrate with the oXygen Eclipse plugin you should develop another Eclipse plugin which communicates with the oXygen plugin. You have to declare a dependency between your plugin and the oXygen plugin by adding a "Require-Bundle: com.oxygenxml.editor" entry in your MANIF...
by cristi_talau
Thu Sep 04, 2014 4:44 pm
Forum: SDK-API, Frameworks - Document Types
Topic: SDK usage
Replies: 7
Views: 4786

Re: SDK usage

Hello, Starting from version 16.0, oXygen provides the SDK as a Maven archetype. You can use it to create projects for any kind of oXygen customization including plugins for the standalone distribution, plugins Eclipse IDE integration, frameworks. More details about all kinds of customizations can b...