OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Re: [docbook-apps] Weird error


On Tuesday 19 October 2004 18:08, Jacques wrote:
>
> This is my file :
>
> <?xml version="1.0" encoding="UTF-8"?>
> <!DOCTYPE book SYSTEM
> "file:/Users/jacques/Applications/eclipse/plugins/com.oxygenxml.editor_5
> .0.0/frameworks/docbook/4.2/dtd/docbookx.dtd">

Declare the xinclude.mod in the internal sub of your doctype declaration as 
with this example:

<!DOCTYPE set PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
                      "http://www.docbook.org/xml/4.3/docbookx.dtd"; [
<!ENTITY % xinclude SYSTEM "xinclude.mod">
%xinclude;
]>

In your case (Oxygen Eclipse)
<!DOCTYPE book SYSTEM
"file:/Users/jacques/Applications/eclipse/plugins/com.oxygenxml.editor_5
.0.0/frameworks/docbook/4.2/dtd/docbookx.dtd" [
<!ENTITY % xinclude SYSTEM 
"file:/Users/jacques/Applications/eclipse/plugins/com.oxygenxml.editor_5
.0.0/frameworks/docbook/4.2/dtd/xinclude.mod">
%xinclude;
]>

Then validate book.xml. If it's valid it should transform.

See also: http://www.sagehill.net/docbookxsl/ModularDoc.html
-- 
Sean Wheller
sean@enbaya.co.za
http://www.enbaya.co.za


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]