Search found 142 matches

by Isabelle
Tue Apr 10, 2018 12:18 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Auto Completion error
Replies: 5
Views: 3348

Re: Auto Completion error

Hello Radu,

I will try and let you know if the issue persists.

Regards,
Isabelle Ousset
by Isabelle
Wed Apr 04, 2018 8:09 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Auto Completion error
Replies: 5
Views: 3348

Auto Completion error

Hello, We use oxygen-18.1.0.0.jar, and we have a problem when we use auto-completion or the panel "Element" to add specific xml tag. We have this in our xsd file : <xs:complexType name="PourType"> <xs:sequence> <xs:element name="ldp" type="xs:string"/> <xs:ele...
by Isabelle
Thu Jan 18, 2018 6:49 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Add new languages in oxygen-xercesImpl jar
Replies: 2
Views: 2325

Re: Add new languages in oxygen-xercesImpl jar

Hello Radu,

We have fixed the encoding of the file and escaped characters and it works fine now.
Thank you for your help.

Regards,
Isabelle
by Isabelle
Wed Jan 17, 2018 6:46 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Add new languages in oxygen-xercesImpl jar
Replies: 2
Views: 2325

Add new languages in oxygen-xercesImpl jar

Hello, We use oxygen-18.1.0.0.jar, and we need to add the Portuguese, Spanish and Chinese language to our application. That is why we updated the jar oxygen-xercesImpl in order to have the xml errors messages in this new languages. Spanish and Portuguese works fine but not Chinese. The Chinese chara...
by Isabelle
Fri Jan 12, 2018 5:47 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Add new language in Oxygen framework for localization
Replies: 3
Views: 3052

Re: Add new language in Oxygen framework for localization

Radu, Yes, I was referring to the "translation.xml" file in my custom framework folder. And yes I set the default locale to the corresponding language in my Java code before initializing the AuthorComponentFactory. I have tested to add the 3 languages in the file "languageList.propert...
by Isabelle
Fri Jan 12, 2018 2:16 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Add new language in Oxygen framework for localization
Replies: 3
Views: 3052

Add new language in Oxygen framework for localization

Hello, We use oxygen-18.1.0.0.jar, and we need to add the Portuguese, Spanish and Chinese language to our "translation.xml" file. I have read this page http://www.oxygenxml.com/doc/versions/18.1/ug-editor/#topics/localizing_frameworks.html and I have updated the "translation.xml"...
by Isabelle
Wed Jan 10, 2018 6:09 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Override the name of CSS title for localisation in framework
Replies: 8
Views: 4334

Re: Override the name of CSS title for localisation in framework

Hi Radu,

Thanks for the information and for your help.

Regards,
Isabelle
by Isabelle
Wed Jan 10, 2018 5:38 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Override the name of CSS title for localisation in framework
Replies: 8
Views: 4334

Re: Override the name of CSS title for localisation in framework

Hi Radu, Thanks for your help, this is the solution I looked for. Regarding your last question, I find "popupMenu.invoker.db.0.title" this way. In debug mode I inspect the popupMenu element with debugger tool. I find "invoker" field. And when I inspect this field I find an arrayL...
by Isabelle
Wed Jan 10, 2018 5:17 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Override the name of CSS title for localisation in framework
Replies: 8
Views: 4334

Re: Override the name of CSS title for localisation in framework

Hi Radu, It doesn't change my situation. Even if I use JComponent, or JMenu or JPopupMenu , the name is null. The string I put as title in the framework : <cssFile> <field name="href"> <String>${framework}/redacteur.less</String> </field> <field name="title"> <String>css.file.red...
by Isabelle
Wed Jan 10, 2018 3:58 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Override the name of CSS title for localisation in framework
Replies: 8
Views: 4334

Re: Override the name of CSS title for localisation in framework

Hi Radu, Thanks for your answer. I tried to build the css toolbar using the "createCSSAlternativesToolbar()" method like this : JToolBar cssAlternativesToolBar = currentPage.createCSSAlternativesToolbar(); for (int i = 0; i < cssAlternativesToolBar.getComponentCount(); i++) { final JCompon...
by Isabelle
Wed Jan 10, 2018 2:27 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Override the name of CSS title for localisation in framework
Replies: 8
Views: 4334

Override the name of CSS title for localisation in framework

Hello, We use oxygen-18.1.0.0.jar, and we need to override the name of CSS title for localisation. I success to manage localisation for other actions and toolbars in the framework thanks to "translation.xml" file. But I don't find how to do for cssFile title. Can you explain me how to do t...
by Isabelle
Mon Apr 03, 2017 10:47 am
Forum: SDK-API, Frameworks - Document Types
Topic: Override the "accept" action in Manage Reviews panel
Replies: 4
Views: 3481

Re: Override the "accept" action in Manage Reviews panel

Hello,

Thank you Alex.
I didn't realize it was an "hover" method type.
I will try this.

Regards,
Isabelle
by Isabelle
Fri Mar 31, 2017 7:06 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Catch "onchange" event of a document
Replies: 1
Views: 2058

Catch "onchange" event of a document

Hello, We use oxygen-18.1.0.0.jar, and we need to know when a document is changed (add/delete/update text or element, ...) in order to update our customize toolbar. I try to override the method "editingOccured()" from the "InplaceEditingListener" interface but when I modify the d...
by Isabelle
Fri Mar 31, 2017 6:56 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Override the "accept" action in Manage Reviews panel
Replies: 4
Views: 3481

Re: Override the "accept" action in Manage Reviews panel

Hello Alex, Thanks for your answer but I don't understand how it could solve my issue. The 2 methods you provide only allow to customize the contextual menu actions and the hover actions. But I need to customize the "accept" action in the Review Panel. http://imageshack.com/a/img923/3026/1...
by Isabelle
Wed Mar 29, 2017 7:31 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Override the "accept" action in Manage Reviews panel
Replies: 4
Views: 3481

Override the "accept" action in Manage Reviews panel

Hello, We use oxygen-18.1.0.0.jar, and we need to execute a specific action each time users accept a review in our application. In fact, this action will update a "table of modification" in the document. I success to override "Edit/Accept_Change" in the Review toolbar but we also...
by Isabelle
Fri Mar 24, 2017 6:26 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Action's name for edit comment
Replies: 1
Views: 1971

Action's name for edit comment

Hello, We use oxygen-18.1.0.0.jar, and we need to manage Review actions in our application. Before we use "Edit/Edit_Comment" to manage the edit comment action but it is not available anymore in the list provided by ((WSTextEditorPage) wsEditorAccess.getCurrentPage()).getActionsProvider()....
by Isabelle
Thu Jan 26, 2017 1:49 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Unique ID from copy / paste
Replies: 17
Views: 8663

Re: Unique ID from copy / paste

Radu, You were right, we already had an implementation of AuthorExtensionStateListener in the framework. It was for a StylesFilter. So I delete this implementation and I have override the method "createAuthorStylesFilter()" in our extensions bundle implementation. But this method is never ...
by Isabelle
Thu Jan 26, 2017 12:37 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Unique ID from copy / paste
Replies: 17
Views: 8663

Re: Unique ID from copy / paste

Hi Radu, With Johann, we have implemented your solution but it seems that the framework doesn't call the method "createAuthorExtensionStateListener()" automatically and when we make a "paste" the method "getClipboardFragmentProcessor()" returns null. Can you explain us ...
by Isabelle
Tue Jan 24, 2017 5:31 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Problem with DefaultUniqueAttributesRecognizer instantiation
Replies: 6
Views: 3147

Re: Problem with DefaultUniqueAttributesRecognizer instantiation

Yes, we use Author Component SDK 18.0.0.3 to create our own application based on Oxygen.
I chose the 2° solution and it seems to work again.

Thanks Radu.
Regards,
Isabelle
by Isabelle
Tue Jan 24, 2017 4:46 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Problem with DefaultUniqueAttributesRecognizer instantiation
Replies: 6
Views: 3147

Re: Problem with DefaultUniqueAttributesRecognizer instantiation

Hi Radu, We don't have any custom DITA framework. We take the entire content of the folder C:\Program Files\Oxygen XML Editor 18\frameworks\dita. In our application we use oxygen-18.0.0.3.jar. We did not find where to download from your website the version of dita compatible for oxygen 18.0.0.3 so w...
by Isabelle
Tue Jan 24, 2017 4:10 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Problem with DefaultUniqueAttributesRecognizer instantiation
Replies: 6
Views: 3147

Re: Problem with DefaultUniqueAttributesRecognizer instantiation

Hello Adrian, Thank you for your answer. We used to work with an old version of dita and now we changed for the dita found in Oxygen XML Editor 18 (in the "frameworks/dita" folder). It solves the problem with DefaultUniqueAttributesRecognizer instantiation but now we have a new one. When w...
by Isabelle
Fri Jan 20, 2017 1:25 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Problem with DefaultUniqueAttributesRecognizer instantiation
Replies: 6
Views: 3147

Problem with DefaultUniqueAttributesRecognizer instantiation

Hello, In order to manage unique ID on copy/paste event, we have extended the class "ExtensionsBundle" and override the method "getClipboardFragmentProcessor()" that way : public ClipboardFragmentProcessor getClipboardFragmentProcessor() { return new DefaultUniqueAttributesRecogn...