How to
Posted: Tue Apr 12, 2022 12:08 pm
Hi,
I'm looking for a method to force my DITA extension additional framework as the highest priority (over DITA framework)
In my "dita_extension.framework", I already have highest priority.
Is it possible to prevent the user from changing the priority in "Options -> Preferences -> Document Type Association" page ?
Thx
Vince
I'm looking for a method to force my DITA extension additional framework as the highest priority (over DITA framework)
In my "dita_extension.framework", I already have highest priority.
Is it possible to prevent the user from changing the priority in "Options -> Preferences -> Document Type Association" page ?
Code: Select all
<field name="extensionPatch">
<documentTypeDescriptorPatch>
...
<poPatch>
<field name="fieldPath">
<String>priority</String>
</field>
<field name="value">
<Integer>5</Integer>
</field>
...
</poPatch>
...
<field name="extendedPersistentObjectKey">
<String>DITA</String>
</field>
</documentTypeDescriptorPatch>
</field>
Vince