1 <!-- ===================================================================
3 Apache FAQ DTD (Version 1.1)
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
13 <!DOCTYPE document PUBLIC
14 "-//APACHE//DTD FAQ Vx.y//EN"
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.
30 Stefano Mazzocchi <stefano@apache.org>
35 19991129 Initial version. (SM)
36 20011212 Used public identifiers for external entities (SM)
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
46 ==================================================================== -->
48 <!-- =============================================================== -->
49 <!-- Include the Documentation DTD -->
50 <!-- =============================================================== -->
52 <!ENTITY % document PUBLIC
53 "-//APACHE//DTD Documentation V1.1//EN"
57 <!-- =============================================================== -->
58 <!-- Document Type Definition -->
59 <!-- =============================================================== -->
61 <!ELEMENT faqs (authors?, faq)+
>
62 <!ATTLIST faqs %common.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 <!-- =============================================================== -->
76 <!-- =============================================================== -->