Chuck Amadi wrote:
> Hi I am using XMLMind 2.6
>
> I do not have 2.6 patch and I used the following line as suggested.
>
> <include location="docbook/docbook.xxe" system="true"/>
>
> When I use the following snippet I get the following error
>
> Errors found in configuration files
> customize.xxe
> command triggered by "Ctrl+Shift-B" is unknown
>
>
> When I use the following snippet I get the following error
>
> <include location="xxe-std-26:docbook/docbook.xxe" system="true"/>
>
> Errors detected during start-up
> "file:/data/tmp/xxe-std-26/config/customize.xxe" invalid configuration
> file: in file "file:/data/tmp/xxe-std-26/config/customize.xxe" at line
> 16, column 1: "xxe-std-26:docbook/docbook.xxe" invalid value for
> "location" attribute
>
> Thus commented it out for now!
>
Sorry my fault. My answer was not precise enough. I said:
===
If you do not intend to upgrade (to V2.6p1 and up), use the older, now
deprecated, syntax:
---
<include location="docbook/docbook.xxe" system="true"/>
---
===
The correct answer is:
===
If you do not intend to upgrade (to V2.6p1 and up), use the older, now
deprecated, syntax:
---
<include location="docbook/docbook.xxe" system="true"/>
---
and also change:
---
<binding>
<keyPressed code="B" modifiers="ctrl shift" />
<command name="docb.convertWithAttribute"
parameter="emphasis role bold" />
</binding>
---
to:
---
<binding>
<keyPressed code="B" modifiers="ctrl shift" />
<command name="docb.convertToBold" />
</binding>
---
===