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 / specification-v10.dtd < prev    next >
Encoding:
Text File  |  2004-07-12  |  2.8 KB  |  90 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 Specification DTD (Version 1.0)
  19.  
  20. PURPOSE:
  21.   This DTD was developed to create a simple yet powerful document 
  22.   type for software specifications 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 Specification Vx.yz//EN"
  30.        "http://xml.apache.org/DTD/specification-vxyz.dtd">
  31.  
  32.   where 
  33.   
  34.     x := major version
  35.     y := minor version
  36.     z := status identifier (optional)
  37.       
  38. NOTES:  
  39.  
  40. FIXME:
  41.  
  42. CHANGE HISTORY:
  43.   19991129 Initial version. (SM)
  44.     
  45. ==================================================================== -->
  46.  
  47. <!-- =============================================================== -->
  48. <!-- Extend the Documentation DTD -->
  49. <!-- =============================================================== -->
  50.  
  51. <!-- extend the local.xxx entities -->
  52. <!ENTITY % local.lists "|bl">
  53.  
  54. <!-- FIXME (SM): this is hardcoding. Find a better way of doing this
  55.      possibly using public identifiers -->
  56. <!ENTITY % document-dtd SYSTEM "document-v10.dtd">
  57. %document-dtd;
  58.  
  59. <!-- =============================================================== -->
  60. <!-- Document Type Definition -->
  61. <!-- =============================================================== -->
  62.  
  63. <!ELEMENT specification (header?, body, appendices?, footer?)>
  64. <!ATTLIST specification %common.att;>
  65.  
  66.     <!ELEMENT appendices (%sections;)+>
  67.     <!ATTLIST appendices %common.att;>
  68.  
  69. <!-- =============================================================== -->
  70. <!-- Bibliography List -->
  71. <!-- =============================================================== -->
  72.  
  73.     <!-- Bibliography list -->
  74.     <!ELEMENT bl (bi)+>
  75.     <!ATTLIST bl %common.att;>
  76.  
  77.         <!-- Book item -->
  78.         <!ELEMENT bi EMPTY>
  79.         <!ATTLIST bi %common.att;
  80.                      %name.att;
  81.                      %title.att;
  82.                      %xlink-simple.att;
  83.                      %xlink-user-new.att;
  84.                      authors CDATA #REQUIRED
  85.                      date    CDATA #IMPLIED>
  86.  
  87. <!-- =============================================================== -->
  88. <!-- End of DTD -->
  89. <!-- =============================================================== -->
  90.