You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by st...@apache.org on 2002/04/18 18:01:14 UTC

cvs commit: xml-forrest/src/resources/schema/dtd faq-v11.dtd

stevenn     02/04/18 09:01:14

  Modified:    src/resources/schema/dtd faq-v11.dtd
  Log:
  added a part element, to add sections to a faq document
  
  Revision  Changes    Path
  1.2       +25 -21    xml-forrest/src/resources/schema/dtd/faq-v11.dtd
  
  Index: faq-v11.dtd
  ===================================================================
  RCS file: /home/cvs/xml-forrest/src/resources/schema/dtd/faq-v11.dtd,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- faq-v11.dtd	1 Mar 2002 07:28:25 -0000	1.1
  +++ faq-v11.dtd	18 Apr 2002 16:01:14 -0000	1.2
  @@ -1,11 +1,11 @@
   <!-- ===================================================================
  -     
  +
        Apache FAQ DTD (Version 1.1)
   
   PURPOSE:
  -  This DTD was developed to create a simple yet powerful document 
  -  type for software FAQ's for use with the Apache projects.  
  -  It is an XML-compliant DTD and it's maintained by the Apache XML 
  +  This DTD was developed to create a simple yet powerful document
  +  type for software FAQ's for use with the Apache projects.
  +  It is an XML-compliant DTD and it's maintained by the Apache XML
     project.
   
   TYPICAL INVOCATION:
  @@ -14,35 +14,36 @@
          "-//APACHE//DTD FAQ Vx.y//EN"
          "faq-vxy.dtd">
   
  -  where 
  -  
  +  where
  +
       x := major version
       y := minor version
  -      
  -NOTES:  
  +
  +NOTES:
     FAQs represent a powerful knowledge base and a very good way of solving
     common user problems reducing messages on mail lists and reducing the effort
     required for software installation and usage. Thid DTD want to be a common
  -  format for FAQ interchange to allow FAQ-O-Matic-type workgroup services to 
  +  format for FAQ interchange to allow FAQ-O-Matic-type workgroup services to
     be published in other formats as well as enhancing data interchange.
  -  
  +
   AUTHORS:
     Stefano Mazzocchi <st...@apache.org>
  -  
  +
   FIXME:
   
   CHANGE HISTORY:
     19991129 Initial version. (SM)
     20011212 Used public identifiers for external entities (SM)
  -    
  +  20020418 Added an (optional) 'part' element to create sections in a faq (SNS)
  +
   COPYRIGHT:
     Copyright (c) @year@ The Apache Software Foundation.
  -  
  -  Permission to copy in any form is granted provided this notice is 
  -  included in all copies. Permission to redistribute is granted 
  -  provided this file is distributed untouched in all its parts and 
  +
  +  Permission to copy in any form is granted provided this notice is
  +  included in all copies. Permission to redistribute is granted
  +  provided this file is distributed untouched in all its parts and
     included files.
  -  
  +
   ==================================================================== -->
   
   <!-- =============================================================== -->
  @@ -58,16 +59,19 @@
   <!-- Document Type Definition -->
   <!-- =============================================================== -->
   
  -<!ELEMENT faqs (authors?, faq)+>
  -<!ATTLIST faqs %common.att; 
  +<!ELEMENT faqs (authors?, (faq|part)+)>
  +<!ATTLIST faqs %common.att;
                  %title.att;>
   
  +    <!ELEMENT part ((faq | part)+) >
  +    <!ATTLIST part %title.att; %common.att;>
  +
       <!ELEMENT faq (question, answer)>
       <!ATTLIST faq %common.att;>
  -    
  +
           <!ELEMENT question (%content.mix;)*>
           <!ATTLIST question %common.att;>
  -            
  +
           <!ELEMENT answer (%blocks;)*>
           <!ATTLIST answer author IDREF #IMPLIED>