Fix 43670, 44501 - Fix how HDGF deals with trailing data in the list of chunk headers
[poi.git] / src / documentation / content / xdocs / dtd / faq-v11.dtd
blobabaa04386597104ba59a6a65c343c376b4e3bcc5
1 <!-- ===================================================================
3 Apache FAQ DTD (Version 1.1)
5 PURPOSE:
6 This DTD was developed to create a simple yet powerful document
7 type for software FAQ's for use with the Apache projects.
8 It is an XML-compliant DTD and it's maintained by the Apache XML
9 project.
11 TYPICAL INVOCATION:
13 <!DOCTYPE document PUBLIC
14 "-//APACHE//DTD FAQ Vx.y//EN"
15 "faq-vxy.dtd">
17 where
19 x := major version
20 y := minor version
22 NOTES:
23 FAQs represent a powerful knowledge base and a very good way of solving
24 common user problems reducing messages on mail lists and reducing the effort
25 required for software installation and usage. Thid DTD want to be a common
26 format for FAQ interchange to allow FAQ-O-Matic-type workgroup services to
27 be published in other formats as well as enhancing data interchange.
29 AUTHORS:
30 Stefano Mazzocchi <stefano@apache.org>
32 FIXME:
34 CHANGE HISTORY:
35 19991129 Initial version. (SM)
36 20011212 Used public identifiers for external entities (SM)
38 COPYRIGHT:
39 Copyright (c) @year@ The Apache Software Foundation.
41 Permission to copy in any form is granted provided this notice is
42 included in all copies. Permission to redistribute is granted
43 provided this file is distributed untouched in all its parts and
44 included files.
46 ==================================================================== -->
48 <!-- =============================================================== -->
49 <!-- Include the Documentation DTD -->
50 <!-- =============================================================== -->
52 <!ENTITY % document PUBLIC
53 "-//APACHE//DTD Documentation V1.1//EN"
54 "document-v11.dtd">
55 %document;
57 <!-- =============================================================== -->
58 <!-- Document Type Definition -->
59 <!-- =============================================================== -->
61 <!ELEMENT faqs (authors?, faq)+>
62 <!ATTLIST faqs %common.att;
63 %title.att;>
65 <!ELEMENT faq (question, answer)>
66 <!ATTLIST faq %common.att;>
68 <!ELEMENT question (%content.mix;)*>
69 <!ATTLIST question %common.att;>
71 <!ELEMENT answer (%blocks;)*>
72 <!ATTLIST answer author IDREF #IMPLIED>
74 <!-- =============================================================== -->
75 <!-- End of DTD -->
76 <!-- =============================================================== -->