Search found 9 matches

by damarislc
Mon May 15, 2023 7:08 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Where is the package ro.sync.ecss.extensions.dita in Oxygen 25.1?
Replies: 5
Views: 871

Re: Where is the package ro.sync.ecss.extensions.dita in Oxygen 25.1?

Hi Radu, It exists until the version 24, here you can find the artifact information https://mvnrepository.com/artifact/com.oxygenxml/oxygen-dita-extensions I need the corresponding dependency for the version 25+ to add it on my project so I can use the class DITAEditImageMapCore on my code. Or do yo...
by damarislc
Sat May 13, 2023 1:49 am
Forum: SDK-API, Frameworks - Document Types
Topic: Where is the package ro.sync.ecss.extensions.dita in Oxygen 25.1?
Replies: 5
Views: 871

Where is the package ro.sync.ecss.extensions.dita in Oxygen 25.1?

Hi, We are migrating our custom framework from Oxygen 20.1 to Oxygen 25.1, we have implemented our own Image Map Editor. I found that the jar oxygen-dita-extensions doesn't longer exist in the version 25.1, we need the class DITAEditImageMapCore which is inside the package ro.sync.ecss.extensions.di...
by damarislc
Mon Jun 10, 2019 9:52 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Problem with nested chunking
Replies: 3
Views: 2167

Re: Problem with nested chunking

Hi I'm having a similar issue. Here is the main ditamap: <!DOCTYPE map PUBLIC "-//OASIS//DTD DITA Map//EN" "map.dtd"> <map> <title>Chunking test map</title> <topicref href="generic_topic_1.dita"/> <topicref href="topic_with_map_child.dita" chunk="to-conte...
by damarislc
Thu Nov 08, 2018 11:27 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Insert cascade dependencies
Replies: 2
Views: 1971

Re: Insert cascade dependencies

Awesome, the first solution worked perfectly.

Thanks!
by damarislc
Wed Nov 07, 2018 7:34 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Insert cascade dependencies
Replies: 2
Views: 1971

Insert cascade dependencies

Hi, I'm trying to insert various element levels, for example, if I enter the element <glossentry> it automatically should be fill like this: <glossentry> <glossterm></glossterm> <glossdef> <p></p> </glossdef> </glossentry> I'm using SchemaManagerFilter for doing this, I can insert the <glossterm> an...
by damarislc
Thu Sep 13, 2018 6:27 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Modify dialog warning message
Replies: 5
Views: 2918

Re: Modify dialog warning message

Hi, They will try to insert a task as follows: 1. In a task topic context: https://github.com/damarislc/public-resources/blob/master/task%20context.png?raw=true 2. They will type or search for the task element: https://github.com/damarislc/public-resources/blob/master/task%20insertion.png?raw=true I...
by damarislc
Wed Sep 12, 2018 6:12 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Modify dialog warning message
Replies: 5
Views: 2918

Re: Modify dialog warning message

No, actually, this code is to avoid that user can insert a task as a child of a topic task, and should show the message "A task topic cannot have an embedded <task> element"
by damarislc
Wed Sep 12, 2018 12:35 am
Forum: SDK-API, Frameworks - Document Types
Topic: Modify dialog warning message
Replies: 5
Views: 2918

Modify dialog warning message

Hello, I'm modifying the filteredElements to delete a task child element when trying to insert into a task topic context (as well for a reference and a concept) as follow: public List<CIElement> filterElements(final List<CIElement> elements, final WhatElementsCanGoHereContext context) { List<CIEleme...