Profiling attributes in DITA Maps Manager
Posted: Fri Mar 14, 2025 1:45 pm
Hello,
In Author Web version 27.0, I open a DITA Map in the DITA Map Manager.
This DITA Map is associated with a ditaval and a subjectscheme.
Here's a simplified example of the subjectscheme:
Here's a simplified example of the map:
If I ask to display the Profiling attributes in the DITA Maps Manager view, I get:
I'd like to be able to change the current display order to match the order of the @product attributes (VAR-0001 then RAN-0001) and thus obtain:
How can I get this result?
Thank you for your help,
Johann
In Author Web version 27.0, I open a DITA Map in the DITA Map Manager.
This DITA Map is associated with a ditaval and a subjectscheme.
Here's a simplified example of the subjectscheme:
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<subjectScheme>
<topicmeta>
<metadata/>
</topicmeta>
<subjectHead>
<subjectHeadMeta>
<navtitle>Applicabilities</navtitle>
</subjectHeadMeta>
</subjectHead>
<subjectdef keys="PRO-0011">
<topicmeta>
<navtitle>Product1</navtitle>
</topicmeta>
<subjectdef keys="VAR-0001">
<topicmeta>
<navtitle>Variant1</navtitle>
</topicmeta>
<subjectdef keys="RAN-0001">
<topicmeta>
<navtitle>101 to 150</navtitle>
</topicmeta>
</subjectdef>
</subjectdef>
<subjectdef keys="VAR-0002">
<topicmeta>
<navtitle>Variant2</navtitle>
</topicmeta>
<subjectdef keys="RAN-0002">
<topicmeta>
<navtitle>1001 to 1017</navtitle>
</topicmeta>
</subjectdef>
</subjectdef>
<enumerationdef id="PRO-00Enum">
<attributedef name="product"/>
<subjectdef keyref="PRO-0011"/>
</enumerationdef>
</subjectdef>
</subjectScheme>
Code: Select all
<map id="MAP_simpledoc-applicabilities">
<title>MAP Simpledoc applicabilities</title>
<topicmeta/>
<topicref href="TOPIC_simpledoc-applicabilities-chapter-title_rev1.dita">
<topicref href="TOPIC_simpledoc-applicabilities-rail-task_rev1.dita"/>
<topicref href="TOPIC_simpledoc-applicabilities-rail-task-included_rev1.dita" product="VAR-0001 RAN-0001"/>
<topicref href="TOPIC_simpledoc-applicabilities-rail-task-excluded_rev1.dita" product="RAN-0002"/>
</topicref>
</map>
Code: Select all
---
---
--- Product1 [101 to 150 Variant1]
--- Product1 [1001 to 1017]
I'd like to be able to change the current display order to match the order of the @product attributes (VAR-0001 then RAN-0001) and thus obtain:
Code: Select all
---
---
--- Product1 [Variant1 101 to 150]
--- Product1 [1001 to 1017]
Thank you for your help,
Johann