You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by cr...@apache.org on 2002/05/25 09:24:20 UTC

cvs commit: xml-forrest/src/resources/schema/dtd howto-v10.dtd

crossley    02/05/25 00:24:20

  Modified:    src/resources/schema/dtd howto-v10.dtd
  Log:
  Added "feedback" element" to handle revision notes.
  
  Revision  Changes    Path
  1.2       +9 -5      xml-forrest/src/resources/schema/dtd/howto-v10.dtd
  
  Index: howto-v10.dtd
  ===================================================================
  RCS file: /home/cvs/xml-forrest/src/resources/schema/dtd/howto-v10.dtd,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- howto-v10.dtd	19 May 2002 18:56:42 -0000	1.1
  +++ howto-v10.dtd	25 May 2002 07:24:19 -0000	1.2
  @@ -5,8 +5,7 @@
   PURPOSE:
     This DTD was developed to create a simple yet powerful document
     type for software How-Tos for use with the Apache projects.
  -  It is an XML-compliant DTD and it's maintained by the Apache XML
  -  project.
  +  It is an XML-compliant DTD and is maintained by the Apache XML project.
   
   TYPICAL INVOCATION:
   
  @@ -30,6 +29,7 @@
   
   CHANGE HISTORY:
     20020515 Initial version. (DS)
  +  20020521 Added feedback element. (DS)
   
   COPYRIGHT:
     Copyright (c) @year@ The Apache Software Foundation.
  @@ -65,7 +65,8 @@
   <!-- Document Type Definition -->
   <!-- =============================================================== -->
   
  -<!ELEMENT howto (header, audience?, purpose?, prerequisites?, steps, extension?, faqs?, tips?, references? )>
  +<!ELEMENT howto (header, audience?, purpose?, prerequisites?, steps,
  +    extension?, faqs?, tips?, references?, feedback? )>
   <!ATTLIST howto %common.att;>
   
   
  @@ -75,7 +76,7 @@
       <!ELEMENT purpose (%blocks;)* >
       <!ATTLIST purpose %title.att; %common.att;>
   
  -    <!ELEMENT prerequisites (%blocks;)* >
  +    <!ELEMENT prerequisites (section | %blocks;)* >
       <!ATTLIST prerequisites %title.att; %common.att;>
   
       <!ELEMENT audience (%blocks;)* >
  @@ -90,8 +91,11 @@
       <!ELEMENT tips (section | %blocks;)* >
       <!ATTLIST tips %title.att; %common.att;>
   
  -    <!ELEMENT references (%blocks;)* >
  +    <!ELEMENT references (section | %blocks;)* >
       <!ATTLIST references %title.att; %common.att;>
  +
  +    <!ELEMENT feedback (%blocks;)* >
  +    <!ATTLIST feedback %title.att; %common.att;>
   
       <!ELEMENT last-modified-content-date EMPTY >
       <!ATTLIST last-modified-content-date date CDATA #REQUIRED>