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 / changes-v10.dtd < prev    next >
Encoding:
Text File  |  2004-07-12  |  3.3 KB  |  96 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 Changes DTD (Version 1.0)
  19.  
  20. PURPOSE:
  21.   This DTD was developed to create a simple yet powerful document
  22.   type for software development changes 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 Changes Vx.yz//EN"
  30.        "http://xml.apache.org/DTD/changes-vxyz.dtd">
  31.  
  32.   where
  33.  
  34.     x := major version
  35.     y := minor version
  36.     z := status identifier (optional)
  37.  
  38. NOTES:
  39.   It is important, expecially in open developped software projects, to keep
  40.   track of software changes both to give users indications of bugs that might
  41.   have been resolved, as well, and not less important, to provide credits
  42.   for the support given to the project. It is considered vital to provide
  43.   adequate payback using recognition and credits to let users and developers
  44.   feel part of the community, thus increasing development power.
  45.  
  46. FIXME:
  47.  
  48. CHANGE HISTORY:
  49.   19991129 Initial version. (SM)
  50.   20000316 Added bugfixing attribute. (SM)
  51.  
  52. ==================================================================== -->
  53.  
  54. <!-- =============================================================== -->
  55. <!-- Extend the Documentation DTD -->
  56. <!-- =============================================================== -->
  57.  
  58. <!-- FIXME (SM): this is hardcoding. Find a better way of doing this
  59.      possibly using public identifiers -->
  60. <!ENTITY % document-dtd SYSTEM "document-v10.dtd">
  61. %document-dtd;
  62.  
  63. <!-- =============================================================== -->
  64. <!-- Common entities -->
  65. <!-- =============================================================== -->
  66.  
  67. <!ENTITY % types "add|remove|update|fix">
  68.  
  69. <!-- =============================================================== -->
  70. <!-- Document Type Definition -->
  71. <!-- =============================================================== -->
  72.  
  73. <!ELEMENT changes (devs, release*)>
  74. <!ATTLIST changes %common.att;
  75.                   %title.att;>
  76.  
  77.     <!ELEMENT devs (person+)>
  78.     <!ATTLIST devs %common.att;>
  79.  
  80.     <!ELEMENT release (action+)>
  81.     <!ATTLIST release %common.att;
  82.                       version  CDATA  #REQUIRED
  83.                       date     CDATA  #REQUIRED>
  84.  
  85.         <!ELEMENT action (%content.mix;)*>
  86.         <!ATTLIST action %common.att;
  87.                          dev  IDREF  #REQUIRED
  88.                          type (%types;)  #IMPLIED
  89.                          due-to CDATA #IMPLIED
  90.                          due-to-email CDATA #IMPLIED
  91.                          fixes-bug CDATA #IMPLIED>
  92.  
  93. <!-- =============================================================== -->
  94. <!-- End of DTD -->
  95. <!-- =============================================================== -->
  96.