Search found 52 matches
- Wed Apr 14, 2021 6:46 pm
- Forum: Common Problems
- Topic: Replacement for jackson-mapper-asl.jar?
- Replies: 2
- Views: 55
Re: Replacement for jackson-mapper-asl.jar?
Hello, Web Author 23.1+ depends on com.fasterxml.jackson 2.11.1 [1] instead of org.codehaus.jackson. You will find most of the previous classes under different package names: com.fasterxml.jackson.databind.ObjectMapper, com.fasterxml.jackson.databind.JsonNode. Best, Gabriel [1] https://github.com/Fa...
- Fri Mar 26, 2021 3:09 pm
- Forum: Common Problems
- Topic: URGENT: Need a workaround for multi-factor authentication
- Replies: 2
- Views: 116
Re: URGENT: Need a workaround for multi-factor authentication
Hello, You should be able to configure Web Author to delegate authentication (and thus support 2FA that you have configured there) for any of the following Git providers [1]: - GitHub - GitHub Enteprise - Bitbucket - Bitbucket Server - GitLab - GitLab on-premise What Git provider are you using? We d...
- Mon Mar 08, 2021 5:58 pm
- Forum: Other Issues
- Topic: Link attribute in web author for PI element not working
- Replies: 15
- Views: 1550
Re: Link attribute in web author for PI element not working
Hello, Oxygen XML Web Author version 23.1 has been released and form-control action tooltips no longer say "Unknown action id" when the action is defined using javascript. For more details about this release you can check out the what's new page: https://www.oxygenxml.com/xml_web_author/whatisnew23....
- Mon Mar 08, 2021 5:21 pm
- Forum: Common Problems
- Topic: Adding event listener to images
- Replies: 5
- Views: 580
Re: Adding event listener to images
Hello, We have released Oxygen XML Web Author 23.1 [1]. Among other fixes, clicking an image selects the whole image element now. So you can write a CSS rule that targets selected images to add your custom floating toolbar [2] near them. Best, Gabriel [1] https://www.oxygenxml.com/xml_web_author/wha...
- Mon Mar 08, 2021 4:58 pm
- Forum: Common Problems
- Topic: How to customize remove comment action
- Replies: 4
- Views: 336
Re: How to customize remove comment action
Hello,
We have released Oxygen XML Web Author 23.1 which contains 2 new API methods which will allow you to set/remove your own custom properties on AuthorPersistentHighlights:
- setPersistentHighlightProperties
- removePersistentHighlightProperties
Best,
Gabriel
We have released Oxygen XML Web Author 23.1 which contains 2 new API methods which will allow you to set/remove your own custom properties on AuthorPersistentHighlights:
- setPersistentHighlightProperties
- removePersistentHighlightProperties
Best,
Gabriel
- Thu Mar 04, 2021 1:09 pm
- Forum: Other Issues
- Topic: Need to open a browser for SSO login in oxygen
- Replies: 3
- Views: 232
Re: Need to open a browser for SSO login in oxygen
Hello, Is it possible to open the default system browser and get the cookies from that in oxygen? It's not possible. I'll describe how we share the authentication from the browser with Oxygen Editor in our Content Fusion product: ┌────────┐ ┌─────┐ ┌─────────┐ │ │ │ │ │ │ │ Plugin │ │ CMS │ │ Browse...
- Mon Mar 01, 2021 2:50 pm
- Forum: Feature Request
- Topic: Searching Across Topics in Content Fusion
- Replies: 2
- Views: 137
Re: Searching Across Topics in Content Fusion
Hello, I've added your vote for this feature request. As a workaround you could use the "View topic content" button [1] which is available for ditamap files. After the topic content from referenced topics is expanded you can use the find action to search through all topics. Best, Gabriel [1] view to...
- Thu Feb 25, 2021 12:53 pm
- Forum: Common Problems
- Topic: reviewer interaction
- Replies: 1
- Views: 134
Re: reviewer interaction
This is a duplicate topic.
Please see the answer on the original topic: viewtopic.php?f=37&t=22471
Please see the answer on the original topic: viewtopic.php?f=37&t=22471
- Thu Feb 25, 2021 12:49 pm
- Forum: Common Problems
- Topic: reviewer interaction
- Replies: 2
- Views: 338
Re: reviewer interaction
Hello Ben, A reviewer can delete another reviewer's comment. This is a known bug and we plan to fix it in a future version. I've added your vote to increase its priority. Only one reviewer at a time can comment on a topic. This limitation will be addressed in Content Fusion 4.0 which is scheduled fo...
- Wed Jan 13, 2021 5:56 pm
- Forum: Common Problems
- Topic: RefreshReference without making doc dirty
- Replies: 6
- Views: 623
Re: RefreshReference without making doc dirty
You can call after you invoke the CommitRefreshTest operation. See this forum post [1].
Best,
Gabriel
[1] topic13562.html#p40382
Code: Select all
this.editor.setDirty(false);
Best,
Gabriel
[1] topic13562.html#p40382
- Fri Nov 20, 2020 6:37 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Missing button "Edit git repository" Web Author 19.1 plus Bitbucket plugin question
- Replies: 4
- Views: 1678
Re: Missing button "Edit git repository" Web Author 19.1 plus Bitbucket plugin question
Hello, Oxygen XML Web Author 23.0 was released and it now has enhanced support for Bitbucket server [1]: Users can now authenticate using Bitbucket Server instead of using their username and password Pull requests can be created directly from Web Author The overall performance is improved for Bitbuc...
- Fri Nov 20, 2020 6:19 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Oxygen XML Web Author with Git using Bitbucket
- Replies: 12
- Views: 10009
Re: Oxygen XML Web Author with Git using Bitbucket
Hello, Oxygen XML Web Author 23.0 was released and it now has enhanced support for Bitbucket server [1]. Instead of authenticating with a user-name and password, a "Login with Bitbucket Server" button is now available on the Web Author dashboard [2]. You can find instructions for how to enable the n...
- Fri Feb 08, 2019 6:38 pm
- Forum: SDK-API, Frameworks - Document Types
- Topic: Right Click Actions
- Replies: 10
- Views: 2689
Re: Right Click Actions
why does this get called 3 times when a page loads The EDITOR_LOADED event is called only once. Maybe you are referring to the ACTIONS_LOADED event. Look at this code to better understand how the events are fired: goog.events.listen(workspace, sync.api.Workspace.EventType.EDITOR_LOADED, function(e)...
- Fri Oct 26, 2018 2:58 pm
- Forum: SDK-API, Frameworks - Document Types
- Topic: calling focusView with Web Author
- Replies: 2
- Views: 1269
Re: calling focusView with Web Author
Hello, To expand the validation side-view after opening a document you can use the EDITOR_LOADED event [1]. goog.events.listen(workspace, sync.api.Workspace.EventType.EDITOR_LOADED, function(e) { // You will have to use setTimeout because the side-views are shown immediately after the EDITOR_LOADED ...
- Fri Sep 28, 2018 1:56 pm
- Forum: SDK-API, Frameworks - Document Types
- Topic: Modal dialog in Web Author
- Replies: 7
- Views: 2659
Re: Modal dialog in Web Author
There are 2 more problems: 1. The function passed to the onSelect method should be bound to your WebLinkAction object because you are calling this.editor.getSelectionManager() . Example: this.dialog.onSelect(function () { // function body here }.bind(this)); // Notice the bind here. This will ensure...
- Wed Sep 26, 2018 4:21 pm
- Forum: SDK-API, Frameworks - Document Types
- Topic: Modal dialog in Web Author
- Replies: 7
- Views: 2659
Re: Modal dialog in Web Author
Hello, Here's an example of how to retrieve the selected option: WebLinkAction.prototype.actionPerformed = function(callback) { this.dialog.show(); var dialogElement = this.dialog.getElement(); this.dialog.onSelect(function(key, e) { if (key === 'ok') { // If the user pressed the 'ok' button from th...
- Wed Mar 07, 2018 6:12 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Missing button "Edit git repository" Web Author 19.1 plus Bitbucket plugin question
- Replies: 4
- Views: 1678
Re: Missing button "Edit git repository" Web Author 19.1 plus Bitbucket plugin question
his Git connection appears to have become stuck on his cloned repository We have identified a bug which allows a user to input invalid repository URLs such as "C://file/location". This bug will be fixed in the next version of Web Author. He does not have the Edit git repository button that I do... ...
- Mon Feb 26, 2018 6:38 pm
- Forum: Common Problems
- Topic: Webapp 18 set content
- Replies: 8
- Views: 3204
Re: Webapp 18 set content
Hello, In 19.1 you can reload the content of a document by invoking the ReloadContentOperation[1] operation. You can invoke this operation from a javascript plugin like this: editor.getActionsManager().invokeOperation( 'ro.sync.ecss.extensions.commons.operations.ReloadContentOperation', {}, function...
- Tue Jan 30, 2018 1:12 pm
- Forum: SDK-API, Frameworks - Document Types
- Topic: Use of Jquery in framework.js
- Replies: 2
- Views: 1891
Re: Use of Jquery in framework.js
Hello, I need to create a dialog-box with resize-able html table If you want to resize the columns and rows of the table the implementation is up to you. If you want to resize the entire table, you can make the table's height and width be 100% and make the dialog in which the table resides re-sizabl...
- Thu Aug 24, 2017 4:04 pm
- Forum: Other Issues
- Topic: Creating a Table of Contents in Side Drawer
- Replies: 2
- Views: 1724
Re: Creating a Table of Contents in Side Drawer
Hello, You can add an on-click listener to the links you create for the TOC. This listener will scroll the document to the element with the given id and set the selection right at the beginning of the element. Here's how to implement the on-click listener: // Get the html element with the required i...
- Thu Aug 24, 2017 3:31 pm
- Forum: Other Issues
- Topic: Deleting An Attribute Value In A Combobox
- Replies: 1
- Views: 1203
Re: Deleting An Attribute Value In A Combobox
Hello, You can use add an oxy_button when the attribute you want to remove is present. This button will remove the attribute. Here's an example: replacementNameplateRequired[nameplateType]{ /* Adding the button only when the nameplateType attribute is present */ content: oxy_label(text, "Replacment ...
- Fri Feb 24, 2017 3:20 pm
- Forum: Common Problems
- Topic: HeadlessException in webapp
- Replies: 8
- Views: 3208
Re: HeadlessException in webapp
Hello,
The only way to solve this problem would be for your request url path to have a .svg extension.
I registered an issue for this bug and will update this forum post when the fix is available.
Best,
Gabriel
The only way to solve this problem would be for your request url path to have a .svg extension.
I registered an issue for this bug and will update this forum post when the fix is available.
Best,
Gabriel
- Tue Feb 14, 2017 4:23 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Oxygen XML Web Author with Git using Bitbucket
- Replies: 12
- Views: 10009
Re: Oxygen XML Web Author with Git using Bitbucket
Hi, Try typing https://... instead of http://... for the repo URI. If that does not work I need more information to fix the error. Please enable additional debug logging by appending: log4j.category.com.oxygenxml.examples.git=debug to the log-config file. To locate the log-config file follow the fir...
- Thu Jan 12, 2017 2:52 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Oxygen XML Web Author with Git using Bitbucket
- Replies: 12
- Views: 10009
Re: Oxygen XML Web Author with Git using Bitbucket
You should paste the repository URI, the URI you would use to clone a repository using git:
Instead of the path to the specific file you want to open use MY_REPO.
Best,
Gabriel
Code: Select all
git clone MY_REPO
Best,
Gabriel
- Wed Jan 11, 2017 11:41 am
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Oxygen XML Web Author with Git using Bitbucket
- Replies: 12
- Views: 10009
Re: Oxygen XML Web Author with Git using Bitbucket
One other thing I still am not sure of: what am I being logged in to when I enter my username and password? To clarify. You aren't being logged into anything actually. After you type in the username and password we store them, encrypted, for the current editing session. When a commit/read into/from...
- Tue Jan 10, 2017 10:53 am
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Oxygen XML Web Author with Git using Bitbucket
- Replies: 12
- Views: 10009
Re: Oxygen XML Web Author with Git using Bitbucket
Hi, Sorry about that, it looks like there's a bug preventing the logout button from showing up. I fixed the bug and updated the Git plugin. You can download the latest version from here [1] (webapp-github-plugin-18.1-plugin.jar) and replace the one you have using the admin page [2] (Delete the old o...
- Mon Jan 09, 2017 6:23 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Oxygen XML Web Author with Git using Bitbucket
- Replies: 12
- Views: 10009
Re: Oxygen XML Web Author with Git using Bitbucket
Hi, Yes, you can use Web Author to edit files located on a Bitbucket server. Web Author comes with a git plugin which allows one to open files from any git repository. To edit a file stored in a git repository: - click the Open/New Git buttons located on the Web Author Dashboard [1] - type in your B...
- Fri Jan 06, 2017 3:13 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Moving from Oxygen XML Author to Web Author
- Replies: 3
- Views: 1511
Re: Moving from Oxygen XML Author to Web Author
Hello, keyrefs are not resolved from within Web Author You have to select the ditamap to be used for resolving keyrefs [1] for the opened topic. Does Web Author have the perspective of the entire Oxygen project or just the file that is currently opened? Web Author does not have a project view at the...
- Mon Nov 14, 2016 3:39 pm
- Forum: Common Problems
- Topic: Mathml visualization in webapp 18.1
- Replies: 9
- Views: 3327
Re: Mathml visualization in webapp 18.1
Hello, Still no luck, it works for me. Here are the steps I took to reproduce the issue: - Generated a sample project using the oxygen-sdk archetype [1][2] - Built the oxygen-sample-webapp module [3] - Modified the dita framework to include your custom catalog - Put the generated war into tomcat and...
- Fri Nov 11, 2016 6:21 pm
- Forum: Common Problems
- Topic: Webapp 18 set content
- Replies: 8
- Views: 3204
Re: Webapp 18 set content
I understand.
It's not possible to do that at the moment but I will add your vote to the issue for implementing this.
Best,
Gabriel
It's not possible to do that at the moment but I will add your vote to the issue for implementing this.
Best,
Gabriel