Search found 491 matches

by mihaela
Wed Jul 13, 2022 2:07 pm
Forum: Common Problems
Topic: Invoke Find/Replace dialog box
Replies: 3
Views: 688

Re: Invoke Find/Replace dialog box

Hello, The Find/Replace action from Web Author can be used only to find and replace content in the current document. You cannot use this dialog to find elements by tag name or by attributes. To implement such an action you can use the API. There are some discussion threads for the same use-case, wit...
by mihaela
Wed Jul 13, 2022 10:02 am
Forum: Other Issues
Topic: Add tabs/panes to the right panel in Oxygen Web Author
Replies: 4
Views: 958

Re: Add tabs/panes to the right panel in Oxygen Web Author

Hi, The following sample plugin creates a custom view that presents the elements that can be inserted at the caret position. It uses the API that I mentioned in my previous post, so you ca use it as an example: https://github.com/oxygenxml/web-author-sample-plugins/tree/master/web-author-elements-vi...
by mihaela
Wed Jul 13, 2022 7:21 am
Forum: Other Issues
Topic: Add tabs/panes to the right panel in Oxygen Web Author
Replies: 4
Views: 958

Re: Add tabs/panes to the right panel in Oxygen Web Author

Hi, The ViewRenderer has an editorChanged(editor) callback, received when the focused editor is changed. You can use sync.api.Editor#getSelectionManager method to obtain the SelectionManager . Then listen on its SELECTION_CHANGED event to update the view according to the current selection . Best Reg...
by mihaela
Mon Jul 11, 2022 2:54 pm
Forum: Feature Request
Topic: highlighting in web author
Replies: 5
Views: 1566

Re: highlighting in web author

Hi, The review highlighting feature is not available yet in We Author. How important is this functionallity for you? There is a PersistentHighlights API available that can be used to create a plugin that adds color highlights in the document. If this is important for you, maybe we can work on a samp...
by mihaela
Mon Jul 11, 2022 2:46 pm
Forum: Common Problems
Topic: Get Full tag
Replies: 5
Views: 672

Re: Get Full tag

Hi,

We are happy that we helped you.
Please let us know if you need further assistance.

Best Regards,
Mihaela
by mihaela
Mon Jul 11, 2022 12:37 pm
Forum: Common Problems
Topic: Pasting comments from PDF with dash or quotes causes Content Fusion to crash
Replies: 9
Views: 3506

Re: Pasting comments from PDF with dash or quotes causes Content Fusion to crash

Hello,

The fix will be available in the next release of Web Author (version 25). In Content Fusion the fix will be available after we integrate the editor version 25.

Best Regards,
Mihaela
by mihaela
Mon Jul 11, 2022 9:07 am
Forum: Common Problems
Topic: Get Full tag
Replies: 5
Views: 672

Re: Get Full tag

Hello, The API that you need to obtain the XML representation of an AuthorNode is: AuthorDocumentController.createDocumentFragment(AuthorNode, boolean) to obtain the AuthorDocumentFragment corresponding to the node AuthorDocumentController.serializeFragmentToXML(AuthorDocumentFragment) to obtain the...
by mihaela
Fri Jul 08, 2022 3:02 pm
Forum: Common Problems
Topic: Get Full tag
Replies: 5
Views: 672

Re: Get Full tag

Hello, Can you please give us more details about the code you are referring to and what you are trying to obtain? Do you use the AuthorDocumentController.findNodesByXPath(String, boolean, boolean, boolean) API? If this is the case, the result is a list of AuthorNodes that contain information about t...
by mihaela
Fri Jul 08, 2022 2:47 pm
Forum: Common Problems
Topic: Full Xpath location
Replies: 1
Views: 407

Re: Full Xpath location

Hello,

To get the XPath expression of the node identified by a given offset you can use the ro.sync.ecss.extensions.api.AuthorDocumentController.getXPathExpression(int) API.

Best Regards,
Mihaela
by mihaela
Thu Jul 07, 2022 3:13 pm
Forum: Common Problems
Topic: Find All Element Oxygen editor feature to add in Oxygen Web author
Replies: 1
Views: 525

Re: Find All Element Oxygen editor feature to add in Oxygen Web author

Hello, You can use the JavaScript API [1] [2] to create an action that presents a dialog to the user [3]. Then, you can invoke a custom operation [4] [5] that finds the nodes, using XPATH for example [6]. Then you can show another dialog to present the results (or you can add a custom view [6] for t...
by mihaela
Wed Jul 06, 2022 1:05 pm
Forum: Other Issues
Topic: Add tabs/panes to the right panel in Oxygen Web Author
Replies: 4
Views: 958

Re: Add tabs/panes to the right panel in Oxygen Web Author

Hello, Yes, you can create a plugin that uses the JavaScript API to add a custom view in Web Author. Here is a tutorial about customizing side views: https://www.oxygenxml.com/maven/com/oxygenxml/oxygen-webapp/24.1.0.0/jsdoc/tutorial-customview.html This is the link to the JavaScript API documentati...
by mihaela
Mon Jul 04, 2022 4:48 pm
Forum: Common Problems
Topic: surroundFragmentOperation with schemaaware flag set to true is not working as expected.
Replies: 1
Views: 852

Re: surroundFragmentOperation with schemaaware flag set to true is not working as expected.

Hi, The schemaAware argument of the SurroundWithFragmentOperation applies only when there is no selection in the document (in this case the fragment is inserted at caret position). If there is a selection in the document, the schemaAware argument is not taken into account: https://www.oxygenxml.com/...
by mihaela
Wed Jun 29, 2022 4:32 pm
Forum: Common Problems
Topic: Unable to create 2nd tool bar in web author
Replies: 1
Views: 697

Re: Unable to create 2nd tool bar in web author

Hello, There is no possibility to render the toolbars in Web Author in two different rows. What you can do is to organize your actions so that they could be more accessible, depending on the context. For example: - you can group actions with similar scopes into drop-downs on the toolbar - some conte...
by mihaela
Wed Jun 29, 2022 3:43 pm
Forum: Feature Request
Topic: Hide or collapse certain tags by name in via framework or plugin
Replies: 5
Views: 1014

Re: Hide or collapse certain tags by name in via framework or plugin

Hello,

Yes, the -oxy-display-tags CSS property works also in Oxygen Web Author.

Best Regards,
Mihaela
by mihaela
Tue Jun 21, 2022 6:32 pm
Forum: Feature Request
Topic: User list available for comment mentions
Replies: 2
Views: 1171

Re: User list available for comment mentions

Hello,

For the moment there is not possible to provide a list of available users for mentions but I have added a feature request for this in our internal issues tracker. We wil update this thread when it will be available.

Best Regards,
Mihaela
by mihaela
Thu May 26, 2022 5:39 pm
Forum: Common Problems
Topic: How to delete tasks that are merged?
Replies: 3
Views: 1675

Re: How to delete tasks that are merged?

Hello, We just released Oxygen Content Fusion Connector 5.0 [1] and it contains the fix for the delete task problem you reported. Here are the major features of this new version: https://www.oxygenxml.com/content_fusion/whats_new.html#5.0Editing_Content_Fusion_Files_in_Oxygen_XML_Editor_Author [1] h...
by mihaela
Thu May 19, 2022 5:35 pm
Forum: Common Problems
Topic: Retrieve DITA features in custom framework
Replies: 6
Views: 1816

Re: Retrieve DITA features in custom framework

Hello, We have to better analyze what changes must be made to make this possible. If you want, you can send us more details about the XML vocabulary you use (you can send us the framework, if it is possible, on our support email address: support@oxygenxml.com). This can help us to determine if and w...
by mihaela
Tue May 17, 2022 9:30 am
Forum: Common Problems
Topic: Retrieve DITA features in custom framework
Replies: 6
Views: 1816

Re: Retrieve DITA features in custom framework

Hello, There is a post with a similar request (for Oxygen XML Editor, but the core code for this support is common) here: https://www.oxygenxml.com/forum/xhtml/topic21306.html Unfortunately there is no possibility for the moment to implement the imagemap support on a custom XML vocabulary. We alread...
by mihaela
Mon May 16, 2022 3:36 pm
Forum: Common Problems
Topic: Warning about validation when loading framework files
Replies: 5
Views: 1110

Re: Warning about validation when loading framework files

Hello,

We are glad that the problem is solved.
Please let us know if you encounter any other problem.

Best Regards,
Mihaela
by mihaela
Thu May 12, 2022 4:49 pm
Forum: Common Problems
Topic: Warning about validation when loading framework files
Replies: 5
Views: 1110

Re: Warning about validation when loading framework files

Hello, Thank you for your response. We checked again and the warning appears because the following validation unit schema does not specify a "uri" field: <field name="validationSchema"> <validationUnitSchema> <field name="dtdSchemaPublicID"> <String>-//MYPUBLICID</Strin...
by mihaela
Wed May 11, 2022 4:49 pm
Forum: Common Problems
Topic: Warning about validation when loading framework files
Replies: 5
Views: 1110

Re: Warning about validation when loading framework files

Hello, This warning is related to the "uri" field from the validationUnitSchema and it is presented when the uri cannot be resolved. Can you please check if the provided location points to an existing schema (${framework}/schemas/schematron/href-attribute-rules.sch)? <field name="uri&...
by mihaela
Thu May 05, 2022 4:19 pm
Forum: Common Problems
Topic: Removing Templates in Web Author and Fusion
Replies: 3
Views: 945

Re: Removing Templates in Web Author and Fusion

Hello, Here are some details about how you can use framework extension script files: https://www.oxygenxml.com/doc/versions/23.1/ug-editor/topics/framework-customization-script-usecases.html You can directly upload exf based frameworks in Web Author and Content Fusion: https://www.oxygenxml.com/doc/...
by mihaela
Thu May 05, 2022 8:54 am
Forum: Common Problems
Topic: Differences when converting *.framework to *.exf files
Replies: 7
Views: 1636

Re: Differences when converting *.framework to *.exf files

Hello,

Sure, we will update this thread when the fix will be available.
If you also want to be notified by email, please send a request to support@oxygenxml.com .

Best Regards,
Mihaela
by mihaela
Wed May 04, 2022 12:57 pm
Forum: Common Problems
Topic: How to delete tasks that are merged?
Replies: 3
Views: 1675

Re: How to delete tasks that are merged?

Hello, Regarding the delete from Tasks Manager View that fails, we now managed to reproduce a similar problem and we will add a fix in the next version of the add-on. We will update this thread when it will be available. Until then, please try to disconnect [1] and connect again to Content Fusion fr...
by mihaela
Wed May 04, 2022 9:11 am
Forum: Common Problems
Topic: How to delete tasks that are merged?
Replies: 3
Views: 1675

Re: How to delete tasks that are merged?

Hello, The "More" menu appears in the task details page [1] only for the task owner. If you are a reviewer of the task [2] you do not have access to delete a task. What is your current role on this task? It appears in the "Owned by me" or "Assigned to me" tasks list, in...
by mihaela
Mon May 02, 2022 5:37 pm
Forum: Common Problems
Topic: Removing Templates in Web Author and Fusion
Replies: 3
Views: 945

Re: Removing Templates in Web Author and Fusion

Hello, Unfortunately there is no possibility for the moment to remove the default templates without creating some extension frameworks. We will add a feature request in our issues tracker to make this possible and we will update this thread when a solution will be available. Until then, a faster sol...
by mihaela
Wed Apr 20, 2022 11:57 am
Forum: Common Problems
Topic: Pasting comments from PDF with dash or quotes causes Content Fusion to crash
Replies: 9
Views: 3506

Re: Pasting comments from PDF with dash or quotes causes Content Fusion to crash

Hi, From what I see you have to click on the Notifications icon from the left of the user name (see the right top corener of the page) and then click on the "Settings" link from the header of the list that appears. This must open the "Edit notification options" were you can selec...
by mihaela
Thu Apr 07, 2022 1:54 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Override / remove standard actions from content completion menu
Replies: 2
Views: 1033

Re: Override / remove standard actions from content completion menu

Hello, Unfortunately it is not possible for the moment to use the framework configuration file to replace or remove the Split element or New element actions from the content completion. We added an issue in our internal issue tracker to implement this feature. We will update this thread when this wi...
by mihaela
Thu Mar 31, 2022 12:15 pm
Forum: Common Problems
Topic: Create a new HTML resource and insert a reference to it
Replies: 4
Views: 1808

Re: Create a new HTML resource and insert a reference to it

Hello, The dialog displayed when the "Create a new DITA resource and insert a reference to it" action is invoked is not API but you can create your own dialog. You can use the "Template Chooser" component that is provided in template-chooser.html resource. For example, you can se...
by mihaela
Wed Mar 30, 2022 11:49 am
Forum: Common Problems
Topic: Pasting comments from PDF with dash or quotes causes Content Fusion to crash
Replies: 9
Views: 3506

Re: Pasting comments from PDF with dash or quotes causes Content Fusion to crash

Hi, Thank you for confirmed that this happens only for files with ascii encoding. We have already added an issue for this in our internal issue tracker and we will update this thread when the fix will be available. Can you please tell us if you are forced to use the ascii encoding in the future or y...