[oXygen-user] CSS validation warnings

2023-01-18 Thread Frank Dissinger

Hi list,


I keep getting the following CSS validation errors for my "custom.css" 
file in oXygen V25:


 * Unknown pseudo-element or pseudo-class “:no-tags”
 * Negative values are not allowed: -0.5em /(padding)/
 * Property “margin-inline-start” doesn't exist : 0

This is annoying because the "Results" window keeps popping up whenever 
I save a dita file.



How can I tell oXygen to ignore these elements/properties/values?

I can't find the required settings under "Options > Preferences > CSS 
Validator".



Frank

--

*Frank Dissinger*

Documentation Manager



*CGS Publishing Technologies International GmbH*

*Email *frank.dissin...@cgs-oris.com | *Web* www.cgs-oris.com 



*Address* Kettelerstr. 24 | D-63512 Hainburg | Germany

*Phone* +49 6182 9626-27 | *Fax* +49 6182 9626-99

*Commercial register* Offenbach, HRB no. 21495

*Managing directors* Bernd Rückert, Christoph Thommessen


https://www.cgs-oris.com/Signatur.png ___
oXygen-user mailing list
oXygen-user@oxygenxml.com
https://www.oxygenxml.com/mailman/listinfo/oxygen-user


Re: [oXygen-user] CSS validation warnings

2023-01-18 Thread Oxygen XML Editor Support (Radu Coravu)

Hi Frank,


There are two distinct aspects to this:


1) Installing your framework in Oxygen and editing a DITA topic in the 
Author mode using your custom framework's CSS. I tested and on my side 
Oxygen reports no error when opening and editing a DITA topic with your 
framework. So I cannot reproduce this problem you reported:



This is annoying because the "Results" window keeps popping up 
whenever I save a dita file.
2) Opening your "custom.css" in Oxygen and validating it. Here indeed 
some errors are reported.



2.1)



Unknown pseudo-element or pseudo-class “:no-tags”
You can avoid this error by prefixing the custom pseudo class with 
"-oxy-", something like ":root:-oxy-no-tags".


Also make sure you prefix the pseudo class value also in the oxy_action.


2.2)



“-2em” negative values are not allowed :
Such errors are reported by the W3C CSS validator, the CSS is considered 
invalid according to the CSS standard. We do not have settings to filter 
out errors reported by the CSS validator.



2.3)



Property “margin-inline-start” doesn't exist : 0
Again this property does not see to be defined in the CSS3 standard and 
is reported as such by the W3C CSS validator. We do not have a way to 
inhibit this.


Oxygen's CSS engine used to render DITA topics in the Author mode does 
not support this "margin-inline-start" property or use it in any way. 
But some browsers seem to support it.



Regards,

Radu

Radu Coravu
Oxygen XML Editor


On 1/18/23 11:30, Frank Dissinger wrote:


Hi list,


I keep getting the following CSS validation errors for my "custom.css" 
file in oXygen V25:


  * Unknown pseudo-element or pseudo-class “:no-tags”
  * Negative values are not allowed: -0.5em /(padding)/
  * Property “margin-inline-start” doesn't exist : 0

This is annoying because the "Results" window keeps popping up 
whenever I save a dita file.



How can I tell oXygen to ignore these elements/properties/values?

I can't find the required settings under "Options > Preferences > CSS 
Validator".



Frank

--

*Frank Dissinger*

Documentation Manager



*CGS Publishing Technologies International GmbH*

*Email *frank.dissin...@cgs-oris.com | *Web* www.cgs-oris.com 



*Address* Kettelerstr. 24 | D-63512 Hainburg | Germany

*Phone* +49 6182 9626-27 | *Fax* +49 6182 9626-99

*Commercial register* Offenbach, HRB no. 21495

*Managing directors* Bernd Rückert, Christoph Thommessen


https://www.cgs-oris.com/Signatur.png 

___
oXygen-user mailing list
oXygen-user@oxygenxml.com
https://www.oxygenxml.com/mailman/listinfo/oxygen-user
___
oXygen-user mailing list
oXygen-user@oxygenxml.com
https://www.oxygenxml.com/mailman/listinfo/oxygen-user


Re: [oXygen-user] CSS validation warnings

2023-01-18 Thread Kristen James Eberlein
Frank, are you using an Oxygen framework for your custom CSS?

Best,
Kris

Kristen James Eberlein
Chair, OASIS DITA Technical Committee
Owner, Eberlein Consulting LLC
k...@eberleinconsulting.com
Skype: kriseberlein; voice: +1 (919) 622-1501

From: oXygen-user  On Behalf Of Frank 
Dissinger
Sent: Wednesday, January 18, 2023 4:31 AM
To: Oxygen User Mailing List 
Subject: [oXygen-user] CSS validation warnings


Hi list,



I keep getting the following CSS validation errors for my "custom.css" file in 
oXygen V25:

  *   Unknown pseudo-element or pseudo-class “:no-tags”
  *   Negative values are not allowed: -0.5em (padding)
  *   Property “margin-inline-start” doesn't exist : 0

This is annoying because the "Results" window keeps popping up whenever I save 
a dita file.



How can I tell oXygen to ignore these elements/properties/values?

I can't find the required settings under "Options > Preferences > CSS 
Validator".



Frank
--

Frank Dissinger

Documentation Manager



CGS Publishing Technologies International GmbH

Email frank.dissin...@cgs-oris.com | Web 
www.cgs-oris.com

Address Kettelerstr. 24 | D-63512 Hainburg | Germany

Phone +49 6182 9626-27 | Fax +49 6182 9626-99

Commercial register Offenbach, HRB no. 21495

Managing directors Bernd Rückert, Christoph Thommessen


[https://www.cgs-oris.com/Signatur.png]
___
oXygen-user mailing list
oXygen-user@oxygenxml.com
https://www.oxygenxml.com/mailman/listinfo/oxygen-user


[oXygen-user] CSS validation warnings

2023-01-18 Thread Frank Dissinger

Hi Kris and Radu,


I refer to (2): Opening "custom.css" in oXygen.

/Also make sure you prefix the pseudo class value also in the 
oxy_action. /--> How do I do this?


Negative values do have an effect in oXygen's Author mode and they are 
essential for me. Hm...???


I'll investigate to see if "margin-inline-start" is really required or 
can be replaced. I saw that it is used in one of oXygen's CSS files and 
wanted to reverse a formatting effect produced with this style.


Do I use an oXygen framework for my custom.css? Probably... How can I 
verify this?



Regards,

Frank





Hi Frank,


There are two distinct aspects to this:


1) Installing your framework in Oxygen and editing a DITA topic in the 
Author mode using your custom framework's CSS. I tested and on my side 
Oxygen reports no error when opening and editing a DITA topic with 
your framework. So I cannot reproduce this problem you reported:



This is annoying because the "Results" window keeps popping up 
whenever I save a dita file.
2) *Opening your "custom.css" in Oxygen and validating it*. Here 
indeed some errors are reported.



2.1)



Unknown pseudo-element or pseudo-class “:no-tags”
You can avoid this error by prefixing the custom pseudo class with 
"-oxy-", something like ":root:-oxy-no-tags".


*Also make sure you prefix the pseudo class value also in the oxy_action.*


2.2)



*“-2em” negative values are not allowed *:
Such errors are reported by the W3C CSS validator, the CSS is 
considered invalid according to the CSS standard. We do not have 
settings to filter out errors reported by the CSS validator.



2.3)



Property “*margin-inline-start*” doesn't exist : 0
Again this property does not see to be defined in the CSS3 standard 
and is reported as such by the W3C CSS validator. We do not have a way 
to inhibit this.


Oxygen's CSS engine used to render DITA topics in the Author mode does 
not support this "margin-inline-start" property or use it in any way. 
But some browsers seem to support it.



Regards,

Radu

Radu Coravu
Oxygen XML Editor



Am 18.01.2023 um 11:46 schrieb Kristen James Eberlein:


*Frank, are you using an Oxygen framework for your custom CSS?*

Best,

Kris

Kristen James Eberlein
Chair, OASIS DITA Technical Committee
Owner, Eberlein Consulting LLC
k...@eberleinconsulting.com

Skype: kriseberlein; voice: +1 (919) 622-1501

*From:* oXygen-user  *On Behalf Of 
*Frank Dissinger

*Sent:* Wednesday, January 18, 2023 4:31 AM
*To:* Oxygen User Mailing List 
*Subject:* [oXygen-user] CSS validation warnings

Hi list,

I keep getting the following CSS validation errors for my "custom.css" 
file in oXygen V25:


  * Unknown pseudo-element or pseudo-class “:no-tags”
  * Negative values are not allowed: -0.5em /(padding)/
  * Property “margin-inline-start” doesn't exist : 0

This is annoying because the "Results" window keeps popping up 
whenever I save a dita file.


How can I tell oXygen to ignore these elements/properties/values?

I can't find the required settings under "Options > Preferences > CSS 
Validator".


Frank


--

*Frank Dissinger*

Documentation Manager



*CGS Publishing Technologies International GmbH*

*Email *frank.dissin...@cgs-oris.com | *Web* www.cgs-oris.com 



*Address* Kettelerstr. 24 | D-63512 Hainburg | Germany

*Phone* +49 6182 9626-27 | *Fax* +49 6182 9626-99

*Commercial register* Offenbach, HRB no. 21495

*Managing directors* Bernd Rückert, Christoph Thommessen


https://www.cgs-oris.com/Signatur.png ___
oXygen-user mailing list
oXygen-user@oxygenxml.com
https://www.oxygenxml.com/mailman/listinfo/oxygen-user


Re: [oXygen-user] CSS validation warnings

2023-01-18 Thread Oxygen XML Editor Support (Radu Coravu)

Hi Frank,


Please see some remarks below:


/Also make sure you prefix the pseudo class value also in the 
oxy_action. /--> How do I do this?



Like this:


:root:before {
    display:block;
    content: oxy_button(action, oxy_action(
  name, 'Tags on/off ...',
  description, 'Toggle Full Tags',
  operation, 
'ro.sync.ecss.extensions.commons.operations.TogglePseudoClassOperation',

  arg-elementLocation, '.',
  arg-name, '-oxy-no-tags'
    ));
    position: fixed;
    top: 4px;
    left: 160mm;
}

:root:-oxy-no-tags, :root:-oxy-no-tags * {
    -oxy-display-tags:none;
}


Negative values do have an effect in oXygen's Author mode and they are 
essential for me. Hm...???



As I said there are two distinct aspects:

- CSS Validation using the W3C CSS validator. Negative margins are 
reported as errors by it.


- The CSS engine Oxygen uses to render the XML in the Author page, 
engine which supports negative margins.



I'll investigate to see if "margin-inline-start" is really required or 
can be replaced. I saw that it is used in one of oXygen's CSS files 
and wanted to reverse a formatting effect produced with this style.


We use this property in a single place because the DITA CSS are also 
used by our Web Author (in-browser editor). So the Oxygen desktop does 
not use this property in any way from what I looked but our Oxygen Web 
Author product which runs in a web browser uses this property as it uses 
common CSSs with the desktop application.


Regards,

Radu

Radu Coravu
Oxygen XML Editor

On 1/18/23 12:56, Frank Dissinger wrote:


Hi Kris and Radu,


I refer to (2): Opening "custom.css" in oXygen.

/Also make sure you prefix the pseudo class value also in the 
oxy_action. /--> How do I do this?


Negative values do have an effect in oXygen's Author mode and they are 
essential for me. Hm...???


I'll investigate to see if "margin-inline-start" is really required or 
can be replaced. I saw that it is used in one of oXygen's CSS files 
and wanted to reverse a formatting effect produced with this style.


Do I use an oXygen framework for my custom.css? Probably... How can I 
verify this?



Regards,

Frank





Hi Frank,


There are two distinct aspects to this:


1) Installing your framework in Oxygen and editing a DITA topic in 
the Author mode using your custom framework's CSS. I tested and on my 
side Oxygen reports no error when opening and editing a DITA topic 
with your framework. So I cannot reproduce this problem you reported:



This is annoying because the "Results" window keeps popping up 
whenever I save a dita file.
2) *Opening your "custom.css" in Oxygen and validating it*. Here 
indeed some errors are reported.



2.1)



Unknown pseudo-element or pseudo-class “:no-tags”
You can avoid this error by prefixing the custom pseudo class with 
"-oxy-", something like ":root:-oxy-no-tags".


*Also make sure you prefix the pseudo class value also in the 
oxy_action.*



2.2)



*“-2em” negative values are not allowed *:
Such errors are reported by the W3C CSS validator, the CSS is 
considered invalid according to the CSS standard. We do not have 
settings to filter out errors reported by the CSS validator.



2.3)



Property “*margin-inline-start*” doesn't exist : 0
Again this property does not see to be defined in the CSS3 standard 
and is reported as such by the W3C CSS validator. We do not have a 
way to inhibit this.


Oxygen's CSS engine used to render DITA topics in the Author mode 
does not support this "margin-inline-start" property or use it in any 
way. But some browsers seem to support it.



Regards,

Radu

Radu Coravu
Oxygen XML Editor



Am 18.01.2023 um 11:46 schrieb Kristen James Eberlein:


*Frank, are you using an Oxygen framework for your custom CSS?*

Best,

Kris

Kristen James Eberlein
Chair, OASIS DITA Technical Committee
Owner, Eberlein Consulting LLC
k...@eberleinconsulting.com

Skype: kriseberlein; voice: +1 (919) 622-1501

*From:* oXygen-user  *On Behalf Of 
*Frank Dissinger

*Sent:* Wednesday, January 18, 2023 4:31 AM
*To:* Oxygen User Mailing List 
*Subject:* [oXygen-user] CSS validation warnings

Hi list,

I keep getting the following CSS validation errors for my 
"custom.css" file in oXygen V25:


  * Unknown pseudo-element or pseudo-class “:no-tags”
  * Negative values are not allowed: -0.5em /(padding)/
  * Property “margin-inline-start” doesn't exist : 0

This is annoying because the "Results" window keeps popping up 
whenever I save a dita file.


How can I tell oXygen to ignore these elements/properties/values?

I can't find the required settings under "Options > Preferences > CSS 
Validator".


Frank


--

*Frank Dissinger*

Documentation Manager



*CGS Publishing Technologies International GmbH*

*Email

[oXygen-user] DITA Reusable Components list (Keys tab) does not update

2023-01-18 Thread Frank Dissinger

Hi list,


I am used to edit ditamaps with key definitions using Notepad++. Having 
done so, I do not know how to update the list of keys in the DITA 
Reusable Components window. I can reindex the information on the 
Components tab, but there is no reindexing function for the Keys tab and 
pressing F5 does not have any effect.


What can I do other than editing the key definitions in oXygen?


Regards,

Frank

--

*Frank Dissinger*

Documentation Manager



*CGS Publishing Technologies International GmbH*

*Email *frank.dissin...@cgs-oris.com | *Web* www.cgs-oris.com 



*Address* Kettelerstr. 24 | D-63512 Hainburg | Germany

*Phone* +49 6182 9626-27 | *Fax* +49 6182 9626-99

*Commercial register* Offenbach, HRB no. 21495

*Managing directors* Bernd Rückert, Christoph Thommessen


https://www.cgs-oris.com/Signatur.png ___
oXygen-user mailing list
oXygen-user@oxygenxml.com
https://www.oxygenxml.com/mailman/listinfo/oxygen-user


Re: [oXygen-user] DITA Reusable Components list (Keys tab) does not update

2023-01-18 Thread Franz-Josef Knelangen
Hi Frank,

can’t imagine editing ditamaps with Notepad++ when I can simply “open map in 
Editor” in Oxygen (with all bells and whistles). If I change a key there and 
save the file, the DITA Reusable Components view is updated automatically.

Try it, and you never go back to Notepad++ 😊.

Greetings,
Franz-Josef


Franz-Josef Knelangen
Leiter Dokumentation


Direct:
Main:
Mobile:


+49 7634 5612-0
+49 7634 5612-0
-


Facebook | 
Xing | 
LinkedIn | 
YouTube


[cid:image002_01fef2d4-1f7d-4ea5-9727-748ef31e8852.png]


AKG Software Consulting GmbH
Uhlandstr. 12
D-79423 Heitersheim
www.akgsoftware.de


Geschäftsführer: Dipl.-Ing. Artur K. Günther, Dipl.-Ing. Arno Brüggemann, 
Dipl.-Ing. (FH) Bernhard Feser, Dipl.-Ing. Jens Günther
Sitz der Gesellschaft: Heitersheim, HRB 310383 (Amtsgericht Freiburg i. Br.)




Von: oXygen-user  Im Auftrag von Frank 
Dissinger
Gesendet: Mittwoch, 18. Januar 2023 13:29
An: Oxygen User Mailing List 
Betreff: [oXygen-user] DITA Reusable Components list (Keys tab) does not update



Externe E-Mail: Vorsicht beim Öffnen von Anhängen und Klicken auf Links!


Hi list,



I am used to edit ditamaps with key definitions using Notepad++. Having done 
so, I do not know how to update the list of keys in the DITA Reusable 
Components window. I can reindex the information on the Components tab, but 
there is no reindexing function for the Keys tab and pressing F5 does not have 
any effect.

What can I do other than editing the key definitions in oXygen?



Regards,

Frank
--

Frank Dissinger

Documentation Manager



CGS Publishing Technologies International GmbH

Email frank.dissin...@cgs-oris.com | Web 
www.cgs-oris.com

Address Kettelerstr. 24 | D-63512 Hainburg | Germany

Phone +49 6182 9626-27 | Fax +49 6182 9626-99

Commercial register Offenbach, HRB no. 21495

Managing directors Bernd Rückert, Christoph Thommessen


[https://www.cgs-oris.com/Signatur.png]
___
oXygen-user mailing list
oXygen-user@oxygenxml.com
https://www.oxygenxml.com/mailman/listinfo/oxygen-user


[oXygen-user] DITA Reusable Components list (Keys tab) does not update

2023-01-18 Thread Frank Dissinger

Hi Franz-Josef,


Thank you for your reply.


oXygen does not seem to support selecting text vertically (like in 
Notepad++ or MS Word, with ALT key pressed down and mouse button moving 
up or down), which I use frequently.


Notepad++ is my favorite text editor. I use it every day, e.g. for 
searching in files.



Regards,


Frank





Am 18.01.2023 um 14:14 schrieb Franz-Josef Knelangen:


Hi Frank,

can’t imagine editing ditamaps with Notepad++ when I can simply “open 
map in Editor” in Oxygen (with all bells and whistles). If I change a 
key there and save the file, the DITA Reusable Components view is 
updated automatically.


Try it, and you never go back to Notepad++ 😊.

Greetings,

Franz-Josef

*
Franz-Josef Knelangen**
*Leiter Dokumentation

Direct:
Main:
Mobile:



+49 7634 5612-0
+49 7634 5612-0
-

Facebook | Xing 
| LinkedIn 
| YouTube 



AKG Software Consulting GmbH

*AKG Software Consulting GmbH*
Uhlandstr. 12
D-79423 Heitersheim
www.akgsoftware.de 

Geschäftsführer: Dipl.-Ing. Artur K. Günther, Dipl.-Ing. Arno 
Brüggemann, Dipl.-Ing. (FH) Bernhard Feser, Dipl.-Ing. Jens Günther
Sitz der Gesellschaft: Heitersheim, HRB 310383 (Amtsgericht Freiburg 
i. Br.)**





*Von:* oXygen-user  *Im Auftrag von 
*Frank Dissinger

*Gesendet:* Mittwoch, 18. Januar 2023 13:29
*An:* Oxygen User Mailing List 
*Betreff:* [oXygen-user] DITA Reusable Components list (Keys tab) does 
not update


Hi list,

I am used to edit ditamaps with key definitions using Notepad++. 
Having done so, I do not know how to update the list of keys in the 
DITA Reusable Components window. I can reindex the information on the 
Components tab, but there is no reindexing function for the Keys tab 
and pressing F5 does not have any effect.


What can I do other than editing the key definitions in oXygen?

Regards,

Frank


--

*Frank Dissinger*

Documentation Manager



*CGS Publishing Technologies International GmbH*

*Email *frank.dissin...@cgs-oris.com | *Web* www.cgs-oris.com 



*Address* Kettelerstr. 24 | D-63512 Hainburg | Germany

*Phone* +49 6182 9626-27 | *Fax* +49 6182 9626-99

*Commercial register* Offenbach, HRB no. 21495

*Managing directors* Bernd Rückert, Christoph Thommessen


https://www.cgs-oris.com/Signatur.png ___
oXygen-user mailing list
oXygen-user@oxygenxml.com
https://www.oxygenxml.com/mailman/listinfo/oxygen-user


[oXygen-user] DITA Reusable Components list (Keys tab) does not update

2023-01-18 Thread Frank Dissinger
Oops, sorry... oXygen does support "rectangular selection". I first 
tried and it didn't work...  But then tried again and it does...😉




Am 18.01.2023 um 14:42 schrieb Frank Dissinger:


Hi Franz-Josef,


Thank you for your reply.


oXygen does not seem to support selecting text vertically (like in 
Notepad++ or MS Word, with ALT key pressed down and mouse button 
moving up or down), which I use frequently.


Notepad++ is my favorite text editor. I use it every day, e.g. for 
searching in files.



Regards,


Frank





Am 18.01.2023 um 14:14 schrieb Franz-Josef Knelangen:


Hi Frank,

can’t imagine editing ditamaps with Notepad++ when I can simply “open 
map in Editor” in Oxygen (with all bells and whistles). If I change a 
key there and save the file, the DITA Reusable Components view is 
updated automatically.


Try it, and you never go back to Notepad++ 😊.

Greetings,

Franz-Josef

*
Franz-Josef Knelangen**
*Leiter Dokumentation

Direct:
Main:
Mobile:



+49 7634 5612-0
+49 7634 5612-0
-

Facebook | Xing 
| LinkedIn 
| YouTube 



AKG Software Consulting GmbH

*AKG Software Consulting GmbH*
Uhlandstr. 12
D-79423 Heitersheim
www.akgsoftware.de 

Geschäftsführer: Dipl.-Ing. Artur K. Günther, Dipl.-Ing. Arno 
Brüggemann, Dipl.-Ing. (FH) Bernhard Feser, Dipl.-Ing. Jens Günther
Sitz der Gesellschaft: Heitersheim, HRB 310383 (Amtsgericht Freiburg 
i. Br.)**





*Von:* oXygen-user  *Im Auftrag 
von *Frank Dissinger

*Gesendet:* Mittwoch, 18. Januar 2023 13:29
*An:* Oxygen User Mailing List 
*Betreff:* [oXygen-user] DITA Reusable Components list (Keys tab) 
does not update


Hi list,

I am used to edit ditamaps with key definitions using Notepad++. 
Having done so, I do not know how to update the list of keys in the 
DITA Reusable Components window. I can reindex the information on the 
Components tab, but there is no reindexing function for the Keys tab 
and pressing F5 does not have any effect.


What can I do other than editing the key definitions in oXygen?

Regards,

Frank


--

*Frank Dissinger*

Documentation Manager



*CGS Publishing Technologies International GmbH*

*Email *frank.dissin...@cgs-oris.com | *Web* www.cgs-oris.com 



*Address* Kettelerstr. 24 | D-63512 Hainburg | Germany

*Phone* +49 6182 9626-27 | *Fax* +49 6182 9626-99

*Commercial register* Offenbach, HRB no. 21495

*Managing directors* Bernd Rückert, Christoph Thommessen


https://www.cgs-oris.com/Signatur.png ___
oXygen-user mailing list
oXygen-user@oxygenxml.com
https://www.oxygenxml.com/mailman/listinfo/oxygen-user


Re: [oXygen-user] DITA Reusable Components list (Keys tab) does not update

2023-01-18 Thread Oxygen XML Editor Support (Radu Coravu)

Hi Frank,


Right, we support rectangular selection:


https://www.oxygenxml.com/doc/versions/25.0/ug-editor/topics/rectangular-selection.html#rectangular-selection__rectangular_selection_feature


About your attempt to reload the keys in the "DITA Reusable 
Components->Keys" tab, you should try to press F5 in the DITA Maps 
Manager to reload the current map's contents, this should also trigger a 
reload of keys in the side view.



Regards,

Radu


Radu Coravu
Oxygen XML Editor


On 1/18/23 15:56, Frank Dissinger wrote:


Oops, sorry... oXygen does support "rectangular selection". I first 
tried and it didn't work...  But then tried again and it does...😉




Am 18.01.2023 um 14:42 schrieb Frank Dissinger:


Hi Franz-Josef,


Thank you for your reply.


oXygen does not seem to support selecting text vertically (like in 
Notepad++ or MS Word, with ALT key pressed down and mouse button 
moving up or down), which I use frequently.


Notepad++ is my favorite text editor. I use it every day, e.g. for 
searching in files.



Regards,


Frank





Am 18.01.2023 um 14:14 schrieb Franz-Josef Knelangen:


Hi Frank,

can’t imagine editing ditamaps with Notepad++ when I can simply 
“open map in Editor” in Oxygen (with all bells and whistles). If I 
change a key there and save the file, the DITA Reusable Components 
view is updated automatically.


Try it, and you never go back to Notepad++ 😊.

Greetings,

Franz-Josef

*
Franz-Josef Knelangen**
*Leiter Dokumentation

Direct:
Main:
Mobile:



+49 7634 5612-0
+49 7634 5612-0
-

Facebook | Xing 
| LinkedIn 
| YouTube 



AKG Software Consulting GmbH

*AKG Software Consulting GmbH*
Uhlandstr. 12
D-79423 Heitersheim
www.akgsoftware.de 

Geschäftsführer: Dipl.-Ing. Artur K. Günther, Dipl.-Ing. Arno 
Brüggemann, Dipl.-Ing. (FH) Bernhard Feser, Dipl.-Ing. Jens Günther
Sitz der Gesellschaft: Heitersheim, HRB 310383 (Amtsgericht Freiburg 
i. Br.)**





*Von:* oXygen-user  *Im Auftrag 
von *Frank Dissinger

*Gesendet:* Mittwoch, 18. Januar 2023 13:29
*An:* Oxygen User Mailing List 
*Betreff:* [oXygen-user] DITA Reusable Components list (Keys tab) 
does not update


Hi list,

I am used to edit ditamaps with key definitions using Notepad++. 
Having done so, I do not know how to update the list of keys in the 
DITA Reusable Components window. I can reindex the information on 
the Components tab, but there is no reindexing function for the Keys 
tab and pressing F5 does not have any effect.


What can I do other than editing the key definitions in oXygen?

Regards,

Frank


--

*Frank Dissinger*

Documentation Manager



*CGS Publishing Technologies International GmbH*

*Email *frank.dissin...@cgs-oris.com | *Web* www.cgs-oris.com 



*Address* Kettelerstr. 24 | D-63512 Hainburg | Germany

*Phone* +49 6182 9626-27 | *Fax* +49 6182 9626-99

*Commercial register* Offenbach, HRB no. 21495

*Managing directors* Bernd Rückert, Christoph Thommessen


https://www.cgs-oris.com/Signatur.png 

___
oXygen-user mailing list
oXygen-user@oxygenxml.com
https://www.oxygenxml.com/mailman/listinfo/oxygen-user
___
oXygen-user mailing list
oXygen-user@oxygenxml.com
https://www.oxygenxml.com/mailman/listinfo/oxygen-user