XML schema documentation ignores xml:lang

Oxygen general issues.
Hubert Hopf
Posts: 4
Joined: Fri Nov 09, 2018 12:25 pm

XML schema documentation ignores xml:lang

Post by Hubert Hopf »

I try to generate documentation of our xsd files as a technical documentation for developers.
We have a lot of enumerations, which are documented in xsd like this:

Code: Select all

		
<xs:simpleType name="enumSheathingType">
<xs:annotation>
<xs:documentation xml:lang="en">
This enum contains sheathing type groups which are normally defined in the WUP interface. In some applications,
material indexes can be assigned to such types, and depending on the type, the application can use
different information (i.e. ignore thickness on foil or glue layers)
</xs:documentation>
<xs:documentation xml:lang="de">
Dieser Enum enthält Beplankungsgruppen, welche normalerweise in der WUP-Schnittstelle vordefiniert sind.
In einigen Programmen können Materialindizes zu diesen Typen zugeordnet werden. Abhängig von diesen Typen kann das
Programm dann unterschiedliche Informationen verwenden (z.B. Ignorieren der Dicke bei Leim- oder Folienlagen).
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="UndefinedSheathingType">
<xs:annotation>
<xs:documentation xml:lang="en">
Sheathing type is not yet identified or can not be assigned.
</xs:documentation>
<xs:documentation xml:lang="de">
Beplankungstyp wurde noch nicht identifiziert oder kann nicht zugeordnet werden.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Sheet">
<xs:annotation>
<xs:documentation xml:lang="en">
Sheets: Normal sheeting layer which can have processings and thickness.
</xs:documentation>
<xs:documentation xml:lang="de">
Platten: Normale Plattenlage, welche Bearbeitungen und eine Dicke haben kann.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Cladding">
<xs:annotation>
<xs:documentation xml:lang="en">
Cladding: Normal cladding layer which can have processings and thickness.
Keywords SLI/SLA in older versions, PLI/PLA with material index in newer versions.
</xs:documentation>
<xs:documentation xml:lang="de">
Schalung: Normale Schalungslage, welche Bearbeitungen und eine Dicke haben kann.
Schlüsselwörter SLI/SLA in älteren Versionen, PLI/PLA mit Materialindex in neueren Versionen.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
...
</xs:restriction>
</xs:simpleType>
When I generate documentation in language "en", the text is in english as expected. But when I generate in german ("de"), only the first annotation is in german, the text for each enumeration is still in english, because english is the first language of the annotations in the single enum. If I change the order of "de" and "en" text, always the first text appears.

Here is a screenshot of the resulting documentation:
Image

Is this a bug or do I something wrong?
adrian
Posts: 2855
Joined: Tue May 17, 2005 4:01 pm

Re: XML schema documentation ignores xml:lang

Post by adrian »

Hello,

I can confirm this is a bug. It seems xml:lang is ignored for facets and the first xs:documentation is picked instead.
I've logged this on our issue tracking tool to be resolved in a future release. For future reference it is issue EXM-42497.

Regards,
Adrian
Adrian Buza
<oXygen/> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com
Hubert Hopf
Posts: 4
Joined: Fri Nov 09, 2018 12:25 pm

Re: XML schema documentation ignores xml:lang

Post by Hubert Hopf »

Thank's for your help.
I guess, I can wait until a bugfix or find a workaround until it is fixed.

regards
sorin_carbunaru
Posts: 402
Joined: Mon May 09, 2016 9:37 am

Re: XML schema documentation ignores xml:lang

Post by sorin_carbunaru »

Hello,

Just wanted to let you know that oXygen 21 is out, and the problem you reported has been fixed.

Best wishes,
Sorin Carbunaru
oXygen XML
Hubert Hopf
Posts: 4
Joined: Fri Nov 09, 2018 12:25 pm

Re: XML schema documentation ignores xml:lang

Post by Hubert Hopf »

Thank you, I will download and try it soon.

best regards
Hubert Hopf
Posts: 4
Joined: Fri Nov 09, 2018 12:25 pm

Re: XML schema documentation ignores xml:lang

Post by Hubert Hopf »

Hello,

I have downloaded and tested the new version.
It works better but not perfect. If I switch to german when I generate the documentation, the text in the annotations and facets is now in german. But in the diagram the same text appears still in english. If you could fix this as well, that would be great. It is not urgent for me, because on most of our documentations, I guess I could switch off the diagrams, because the same information is available in the table.

Thank you
sorin_carbunaru
Posts: 402
Joined: Mon May 09, 2016 9:37 am

Re: XML schema documentation ignores xml:lang

Post by sorin_carbunaru »

Hello,

Thank you for pointing this to us! I added your feedback to our issue management system, and we will come back when a fix will be available.

All the best wishes,
Sorin Carbunaru
Post Reply