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 / todo-v10.dtd < prev    next >
Encoding:
Text File  |  2004-07-12  |  3.3 KB  |  95 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 Todos DTD (Version 1.0)
  19.  
  20. PURPOSE:
  21.   This DTD was developed to create a simple yet powerful document 
  22.   type for software development todo lists 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 Todo Vx.yz//EN"
  30.        "todo-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 that need to be done, planned features, development
  41.   assignment, etc. in order to allow better work parallelization and create
  42.   an entry point for people that want to help. This DTD wants to provide
  43.   a solid foundation to provide such information and to allow it to be
  44.   published as well as distributed in a common format.
  45.  
  46. FIXME:
  47.   - do we need anymore working contexts? (SM)
  48.  
  49. CHANGE HISTORY:
  50.   19991129 Initial version. (SM)
  51.   19991225 Added actions element for better structure (SM)
  52.     
  53. ==================================================================== -->
  54.  
  55. <!-- =============================================================== -->
  56. <!-- Extend the Documentation DTD -->
  57. <!-- =============================================================== -->
  58.  
  59. <!-- FIXME (SM): this is hardcoding. Find a better way of doing this
  60.      possibly using public identifiers -->
  61. <!ENTITY % document-dtd SYSTEM "document-v10.dtd">
  62. %document-dtd;
  63.  
  64. <!-- =============================================================== -->
  65. <!-- Common entities -->
  66. <!-- =============================================================== -->
  67.  
  68. <!ENTITY % priorities "showstopper|high|medium|low|wish|dream">
  69.  
  70. <!ENTITY % contexts "build|docs|code|admin|design">
  71.  
  72. <!-- =============================================================== -->
  73. <!-- Document Type Definition -->
  74. <!-- =============================================================== -->
  75.  
  76. <!ELEMENT todo (devs, actions*)>
  77. <!ATTLIST todo %common.att; 
  78.                %title.att;>
  79.  
  80.     <!ELEMENT devs (person+)>
  81.     <!ATTLIST devs %common.att;>
  82.  
  83.     <!ELEMENT actions (action+)>
  84.     <!ATTLIST actions %common.att;
  85.                      priority     (%priorities;)  #IMPLIED>
  86.  
  87.         <!ELEMENT action (%content.mix;)*>
  88.         <!ATTLIST action %common.att;
  89.                          assigned-to  IDREF           #IMPLIED
  90.                          context      (%contexts;)    #REQUIRED>
  91.     
  92. <!-- =============================================================== -->
  93. <!-- End of DTD -->
  94. <!-- =============================================================== -->
  95.