home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-cocoon-addon-1.4.9-installer.exe / faq-v10.dtd < prev    next >
Encoding:
Text File  |  2004-07-12  |  2.7 KB  |  82 lines

  1. <!--
  2.   Copyright 1999-2004 The Apache Software Foundation
  3.  
  4.   Licensed under the Apache License, Version 2.0 (the "License");
  5.   you may not use this file except in compliance with the License.
  6.   You may obtain a copy of the License at
  7.  
  8.       http://www.apache.org/licenses/LICENSE-2.0
  9.  
  10.   Unless required by applicable law or agreed to in writing, software
  11.   distributed under the License is distributed on an "AS IS" BASIS,
  12.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.   See the License for the specific language governing permissions and
  14.   limitations under the License.
  15. -->
  16. <!-- ===================================================================
  17.      
  18.      Apache FAQ DTD (Version 1.0)
  19.  
  20. PURPOSE:
  21.   This DTD was developed to create a simple yet powerful document 
  22.   type for software FAQ's for use with the Apache projects.  
  23.   It is an XML-compliant DTD and it's maintained by the Apache XML 
  24.   project.
  25.  
  26. TYPICAL INVOCATION:
  27.  
  28.   <!DOCTYPE document PUBLIC
  29.        "-//APACHE//DTD FAQ Vx.yz//EN"
  30.        "http://xml.apache.org/DTD/faq-vxyz.dtd">
  31.  
  32.   where 
  33.   
  34.     x := major version
  35.     y := minor version
  36.     z := status identifier (optional)
  37.       
  38. NOTES:  
  39.   FAQs represent a powerful knowledge base and a very good way of solving
  40.   common user problems reducing messages on mail lists and reducing the effort
  41.   required for software installation and usage. Thid DTD want to be a common
  42.   format for FAQ interchange to allow FAQ-O-Matic-type workgroup services to 
  43.   be published in other formats as well as enhancing data interchange.
  44.   
  45. FIXME:
  46.  
  47. CHANGE HISTORY:
  48.   19991129 Initial version. (SM)
  49.     
  50. ==================================================================== -->
  51.  
  52. <!-- =============================================================== -->
  53. <!-- Extend the Documentation DTD -->
  54. <!-- =============================================================== -->
  55.  
  56. <!-- FIXME (SM): this is hardcoding. Find a better way of doing this
  57.      possibly using public identifiers -->
  58. <!ENTITY % document-dtd SYSTEM "document-v10.dtd">
  59. %document-dtd;
  60.  
  61.  
  62. <!-- =============================================================== -->
  63. <!-- Document Type Definition -->
  64. <!-- =============================================================== -->
  65.  
  66. <!ELEMENT faqs (authors?, faq)+>
  67. <!ATTLIST faqs %common.att; 
  68.                %title.att;>
  69.  
  70.     <!ELEMENT faq (question, answer)>
  71.     <!ATTLIST faq %common.att;>
  72.     
  73.         <!ELEMENT question (%content.mix;)*>
  74.         <!ATTLIST question %common.att;>
  75.             
  76.         <!ELEMENT answer (%blocks;)*>
  77.         <!ATTLIST answer author IDREF #IMPLIED>
  78.  
  79. <!-- =============================================================== -->
  80. <!-- End of DTD -->
  81. <!-- =============================================================== -->
  82.