blob: 5a40a7f3e6f92d1c82788ec310a80df3b35104ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
During the creation of these documents I found several problems with the
docbook DTD supplied with Mandrake 8.1 This read me documents the work arounds made.
Problem
&XML; parses as XML?
Solution
Edited the file /usr/share/apps/ksgmltools2/customization/entities/general.entities
also known as "-//KDE//ENTITIES DocBook XML General Entity Declarations V1.0//EN"
to read
<!ENTITY XML '<trademark class="registered">XML</trademark>'>
Also did this with all trademark tags that had no class. Class is required for this tag, see
DocBook: The Definitive Guide
By Norman Walsh and Leonard Muellner
O'Reilly & Associates, Inc.
Result
&XML; parses as XML®
Problem
<quote>stuff</quote> parses as ?quote?
Used " instead.
This should be corrected when <quote> parses as "
----------------------
Fred Saalbach 22 Dec 2001
----------------------
|