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/06/12 04:41:24 UTC

cvs commit: xml-forrest/src/resources/schema/dtd changes-v11.mod common-elems-v10.mod todo-v11.mod xgump-draft.dtd

crossley    2002/06/11 19:41:23

  Modified:    src/resources/schema/dtd changes-v11.mod
                        common-elems-v10.mod todo-v11.mod xgump-draft.dtd
  Log:
  Fix yet more dos2unix problems.
  
  Revision  Changes    Path
  1.2       +67 -67    xml-forrest/src/resources/schema/dtd/changes-v11.mod
  
  Index: changes-v11.mod
  ===================================================================
  RCS file: /home/cvs/xml-forrest/src/resources/schema/dtd/changes-v11.mod,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- changes-v11.mod	11 Jun 2002 11:28:18 -0000	1.1
  +++ changes-v11.mod	12 Jun 2002 02:41:23 -0000	1.2
  @@ -1,67 +1,67 @@
  -<!-- ===================================================================
  -
  -     Apache Changes Module (Version 1.1)
  -
  -PURPOSE:
  -  This DTD was developed to create a simple yet powerful document
  -  type for software development changes for use with the Apache projects.
  -  It is an XML-compliant DTD and it's maintained by the Apache XML
  -  project.
  -
  -TYPICAL INVOCATION:
  -
  -  <!ENTITY % changes PUBLIC
  -      "-//APACHE//ENTITIES Changes Vxy//EN"
  -      "changes-vxy.mod">
  -  %changes;
  -
  -  where
  -
  -    x := major version
  -    y := minor version
  -
  -NOTES:
  -  It is important, expecially in open developped software projects, to keep
  -  track of software changes both to give users indications of bugs that might
  -  have been resolved, as well, and not less important, to provide credits
  -  for the support given to the project. It is considered vital to provide
  -  adequate payback using recognition and credits to let users and developers
  -  feel part of the community, thus increasing development power.
  -
  -AUTHORS:
  -  Stefano Mazzocchi <st...@apache.org>
  -
  -FIXME:
  -
  -CHANGE HISTORY:
  -[Version 1.0]
  -  19991129 Initial version. (SM)
  -  20000316 Added bugfixing attribute. (SM)
  -[Version 1.1]
  -  20011212 Used public identifiers for external entities (SM)
  -
  -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
  -  included files.
  -
  -==================================================================== -->
  -
  -<!-- =============================================================== -->
  -<!-- Document Type Definition -->
  -<!-- =============================================================== -->
  -
  -<!ELEMENT changes (title?, devs?, release+)>
  -<!ATTLIST changes %common.att;>
  -
  -    <!ELEMENT release (action+)>
  -    <!ATTLIST release %common.att;
  -                      version  CDATA  #REQUIRED
  -                      date     CDATA  #REQUIRED>
  -
  -<!-- =============================================================== -->
  -<!-- End of DTD -->
  -<!-- =============================================================== -->
  +<!-- ===================================================================
  +
  +     Apache Changes Module (Version 1.1)
  +
  +PURPOSE:
  +  This DTD was developed to create a simple yet powerful document
  +  type for software development changes for use with the Apache projects.
  +  It is an XML-compliant DTD and it's maintained by the Apache XML
  +  project.
  +
  +TYPICAL INVOCATION:
  +
  +  <!ENTITY % changes PUBLIC
  +      "-//APACHE//ENTITIES Changes Vxy//EN"
  +      "changes-vxy.mod">
  +  %changes;
  +
  +  where
  +
  +    x := major version
  +    y := minor version
  +
  +NOTES:
  +  It is important, expecially in open developped software projects, to keep
  +  track of software changes both to give users indications of bugs that might
  +  have been resolved, as well, and not less important, to provide credits
  +  for the support given to the project. It is considered vital to provide
  +  adequate payback using recognition and credits to let users and developers
  +  feel part of the community, thus increasing development power.
  +
  +AUTHORS:
  +  Stefano Mazzocchi <st...@apache.org>
  +
  +FIXME:
  +
  +CHANGE HISTORY:
  +[Version 1.0]
  +  19991129 Initial version. (SM)
  +  20000316 Added bugfixing attribute. (SM)
  +[Version 1.1]
  +  20011212 Used public identifiers for external entities (SM)
  +
  +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
  +  included files.
  +
  +==================================================================== -->
  +
  +<!-- =============================================================== -->
  +<!-- Document Type Definition -->
  +<!-- =============================================================== -->
  +
  +<!ELEMENT changes (title?, devs?, release+)>
  +<!ATTLIST changes %common.att;>
  +
  +    <!ELEMENT release (action+)>
  +    <!ATTLIST release %common.att;
  +                      version  CDATA  #REQUIRED
  +                      date     CDATA  #REQUIRED>
  +
  +<!-- =============================================================== -->
  +<!-- End of DTD -->
  +<!-- =============================================================== -->
  
  
  
  1.2       +64 -64    xml-forrest/src/resources/schema/dtd/common-elems-v10.mod
  
  Index: common-elems-v10.mod
  ===================================================================
  RCS file: /home/cvs/xml-forrest/src/resources/schema/dtd/common-elems-v10.mod,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- common-elems-v10.mod	11 Jun 2002 11:28:18 -0000	1.1
  +++ common-elems-v10.mod	12 Jun 2002 02:41:23 -0000	1.2
  @@ -1,64 +1,64 @@
  -<!-- ===================================================================
  -
  -     Apache Common Elements (Version 1.0)
  -
  -PURPOSE:
  -  Common elements across DTDs
  -
  -TYPICAL INVOCATION:
  -
  -  <!ENTITY % common PUBLIC
  -      "-//APACHE//ENTITIES Common elements V1.0//EN"
  -      "common-elems-v10.mod">
  -  %common;
  -
  -  where
  -
  -    x := major version
  -    y := minor version
  -
  -AUTHORS:
  -  Steven Noels <st...@apache.org>
  -
  -FIXME:
  -
  -CHANGE HISTORY:
  -[Version 1.0]
  -  20020611 Initial version. (SN)
  -
  -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
  -  included files.
  -
  -==================================================================== -->
  -
  -<!-- =============================================================== -->
  -<!-- Common entities -->
  -<!-- =============================================================== -->
  -
  -<!ENTITY % types "add|remove|update|fix">
  -<!ENTITY % contexts "build|docs|code|admin|design">
  -
  -<!-- =============================================================== -->
  -<!-- Common elements -->
  -<!-- =============================================================== -->
  -
  -<!ELEMENT devs (person+)>
  -<!ATTLIST devs %common.att;>
  -
  -<!ELEMENT action (%content.mix;)*>
  -<!ATTLIST action %common.att;
  -          dev  IDREF  #REQUIRED
  -          type (%types;)  #IMPLIED
  -          context (%contexts;) #IMPLIED
  -          due-to CDATA #IMPLIED
  -          due-to-email CDATA #IMPLIED
  -          fixes-bug CDATA #IMPLIED>
  -
  -<!-- =============================================================== -->
  -<!-- End of DTD -->
  -<!-- =============================================================== -->
  +<!-- ===================================================================
  +
  +     Apache Common Elements (Version 1.0)
  +
  +PURPOSE:
  +  Common elements across DTDs
  +
  +TYPICAL INVOCATION:
  +
  +  <!ENTITY % common PUBLIC
  +      "-//APACHE//ENTITIES Common elements V1.0//EN"
  +      "common-elems-v10.mod">
  +  %common;
  +
  +  where
  +
  +    x := major version
  +    y := minor version
  +
  +AUTHORS:
  +  Steven Noels <st...@apache.org>
  +
  +FIXME:
  +
  +CHANGE HISTORY:
  +[Version 1.0]
  +  20020611 Initial version. (SN)
  +
  +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
  +  included files.
  +
  +==================================================================== -->
  +
  +<!-- =============================================================== -->
  +<!-- Common entities -->
  +<!-- =============================================================== -->
  +
  +<!ENTITY % types "add|remove|update|fix">
  +<!ENTITY % contexts "build|docs|code|admin|design">
  +
  +<!-- =============================================================== -->
  +<!-- Common elements -->
  +<!-- =============================================================== -->
  +
  +<!ELEMENT devs (person+)>
  +<!ATTLIST devs %common.att;>
  +
  +<!ELEMENT action (%content.mix;)*>
  +<!ATTLIST action %common.att;
  +          dev  IDREF  #REQUIRED
  +          type (%types;)  #IMPLIED
  +          context (%contexts;) #IMPLIED
  +          due-to CDATA #IMPLIED
  +          due-to-email CDATA #IMPLIED
  +          fixes-bug CDATA #IMPLIED>
  +
  +<!-- =============================================================== -->
  +<!-- End of DTD -->
  +<!-- =============================================================== -->
  
  
  
  1.2       +72 -72    xml-forrest/src/resources/schema/dtd/todo-v11.mod
  
  Index: todo-v11.mod
  ===================================================================
  RCS file: /home/cvs/xml-forrest/src/resources/schema/dtd/todo-v11.mod,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- todo-v11.mod	11 Jun 2002 11:28:18 -0000	1.1
  +++ todo-v11.mod	12 Jun 2002 02:41:23 -0000	1.2
  @@ -1,72 +1,72 @@
  -<!-- ===================================================================
  -
  -     Apache Todos module (Version 1.0)
  -
  -PURPOSE:
  -  This DTD was developed to create a simple yet powerful document
  -  type for software development todo lists for use with the Apache projects.
  -  It is an XML-compliant DTD and it's maintained by the Apache XML
  -  project.
  -
  -TYPICAL INVOCATION:
  -
  -  <!ENTITY % todo PUBLIC
  -      "-//APACHE//ENTITIES Todo Vxy//EN"
  -      "todo-vxy.mod">
  -  %todo;
  -
  -  where
  -
  -    x := major version
  -    y := minor version
  -
  -NOTES:
  -  It is important, expecially in open developped software projects, to keep
  -  track of software changes that need to be done, planned features, development
  -  assignment, etc. in order to allow better work parallelization and create
  -  an entry point for people that want to help. This DTD wants to provide
  -  a solid foundation to provide such information and to allow it to be
  -  published as well as distributed in a common format.
  -
  -AUTHORS:
  -  Stefano Mazzocchi <st...@apache.org>
  -
  -FIXME:
  -  - do we need anymore working contexts? (SM)
  -
  -CHANGE HISTORY:
  -[Version 1.0]
  -  19991129 Initial version. (SM)
  -  19991225 Added actions element for better structure (SM)
  -[Version 1.1]
  -  20011212 Used public identifiers for external entities (SM)
  -
  -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
  -  included files.
  -
  -==================================================================== -->
  -<!-- =============================================================== -->
  -<!-- Common entities -->
  -<!-- =============================================================== -->
  -<!ENTITY % priorities "showstopper|high|medium|low|wish|dream">
  -<!-- =============================================================== -->
  -<!-- Document Type Definition -->
  -<!-- =============================================================== -->
  -<!ELEMENT todo (title?, devs?, actions+)>
  -<!ATTLIST todo
  -  %common.att; 
  ->
  -
  -<!ELEMENT actions (action+)>
  -<!ATTLIST actions
  -  %common.att; 
  -  priority (%priorities;) #IMPLIED
  ->
  -<!-- =============================================================== -->
  -<!-- End of DTD -->
  -<!-- =============================================================== -->
  +<!-- ===================================================================
  +
  +     Apache Todos module (Version 1.0)
  +
  +PURPOSE:
  +  This DTD was developed to create a simple yet powerful document
  +  type for software development todo lists for use with the Apache projects.
  +  It is an XML-compliant DTD and it's maintained by the Apache XML
  +  project.
  +
  +TYPICAL INVOCATION:
  +
  +  <!ENTITY % todo PUBLIC
  +      "-//APACHE//ENTITIES Todo Vxy//EN"
  +      "todo-vxy.mod">
  +  %todo;
  +
  +  where
  +
  +    x := major version
  +    y := minor version
  +
  +NOTES:
  +  It is important, expecially in open developped software projects, to keep
  +  track of software changes that need to be done, planned features, development
  +  assignment, etc. in order to allow better work parallelization and create
  +  an entry point for people that want to help. This DTD wants to provide
  +  a solid foundation to provide such information and to allow it to be
  +  published as well as distributed in a common format.
  +
  +AUTHORS:
  +  Stefano Mazzocchi <st...@apache.org>
  +
  +FIXME:
  +  - do we need anymore working contexts? (SM)
  +
  +CHANGE HISTORY:
  +[Version 1.0]
  +  19991129 Initial version. (SM)
  +  19991225 Added actions element for better structure (SM)
  +[Version 1.1]
  +  20011212 Used public identifiers for external entities (SM)
  +
  +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
  +  included files.
  +
  +==================================================================== -->
  +<!-- =============================================================== -->
  +<!-- Common entities -->
  +<!-- =============================================================== -->
  +<!ENTITY % priorities "showstopper|high|medium|low|wish|dream">
  +<!-- =============================================================== -->
  +<!-- Document Type Definition -->
  +<!-- =============================================================== -->
  +<!ELEMENT todo (title?, devs?, actions+)>
  +<!ATTLIST todo
  +  %common.att; 
  +>
  +
  +<!ELEMENT actions (action+)>
  +<!ATTLIST actions
  +  %common.att; 
  +  priority (%priorities;) #IMPLIED
  +>
  +<!-- =============================================================== -->
  +<!-- End of DTD -->
  +<!-- =============================================================== -->
  
  
  
  1.2       +161 -161  xml-forrest/src/resources/schema/dtd/xgump-draft.dtd
  
  Index: xgump-draft.dtd
  ===================================================================
  RCS file: /home/cvs/xml-forrest/src/resources/schema/dtd/xgump-draft.dtd,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- xgump-draft.dtd	11 Jun 2002 11:28:18 -0000	1.1
  +++ xgump-draft.dtd	12 Jun 2002 02:41:23 -0000	1.2
  @@ -1,161 +1,161 @@
  -<!-- ===================================================================
  -
  -     Apache XGump DTD (Version 1.0)
  -
  -PURPOSE:
  -  Gump descriptor DTD
  -
  -TYPICAL INVOCATION:
  -
  -  <!DOCTYPE module PUBLIC
  -       "-//APACHE//DTD Gump Descriptor V1.0//EN"
  -       "xgump-draft.dtd">
  -
  -  where
  -
  -    x := major version
  -    y := minor version
  -
  -AUTHORS:
  -  Steven Noels <st...@apache.org>
  -
  -FIXME:
  -
  -CHANGE HISTORY:
  -[Version 1.0]
  -  20020611 Initial version. (SN)
  -
  -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
  -  included files.
  -
  -==================================================================== -->
  -
  -<!-- =============================================================== -->
  -<!-- Include the Documentation DTD -->
  -<!-- =============================================================== -->
  -
  -<!ENTITY % document PUBLIC
  -    "-//APACHE//ENTITIES Documentation V1.1//EN"
  -    "document-v11.mod">
  -%document;
  -
  -<!-- =============================================================== -->
  -<!-- Include the Common elements -->
  -<!-- =============================================================== -->
  -
  -<!ENTITY % common PUBLIC
  -    "-//APACHE//ENTITIES Common Elements V1.0//EN"
  -    "common-elems-v10.mod">
  -%common;
  -
  -<!-- =============================================================== -->
  -<!-- Include the Todo module -->
  -<!-- =============================================================== -->
  -
  -<!ENTITY % todo PUBLIC
  -    "-//APACHE//ENTITIES Todo V1.1//EN"
  -    "todo-v11.mod">
  -%todo;
  -
  -<!-- =============================================================== -->
  -<!-- Include the Changes module -->
  -<!-- =============================================================== -->
  -
  -<!ENTITY % changes PUBLIC
  -    "-//APACHE//ENTITIES Changes V1.1//EN"
  -    "changes-v11.mod">
  -%changes;
  -
  -<!-- =============================================================== -->
  -<!-- Document type element -->
  -<!-- =============================================================== -->
  -
  -<!ELEMENT module (url, forrest?, cvs, mailing-lists, description,
  -                  detailed, what, why, who, todo, changes, licence,
  -                  credits, project+)>
  -<!ATTLIST module
  -  name CDATA #REQUIRED>
  -
  -  <!ELEMENT url EMPTY>
  -  <!ATTLIST url
  -    href CDATA #REQUIRED>
  -
  -  <!ELEMENT forrest (skin)>
  -  <!ATTLIST forrest
  -    version CDATA #REQUIRED>
  -
  -    <!ELEMENT skin EMPTY>
  -    <!ATTLIST skin
  -      name CDATA #REQUIRED
  -      style CDATA #REQUIRED>
  -
  -  <!ELEMENT cvs EMPTY>
  -  <!ATTLIST cvs
  -    repository CDATA #REQUIRED>
  -
  -  <!ELEMENT mailing-lists (mailing-list+)>
  -
  -    <!ELEMENT mailing-list EMPTY>
  -    <!ATTLIST mailing-list
  -      user CDATA #REQUIRED
  -      mail CDATA #REQUIRED
  -      subscribe CDATA #REQUIRED
  -      unsubscribe CDATA #REQUIRED>
  -
  -  <!ELEMENT description (%content.mix;)*>
  -
  -  <!ELEMENT detailed (%blocks;)>
  -
  -  <!ELEMENT what (goal+)>
  -
  -    <!ELEMENT goal (%content.mix;)*>
  -
  -  <!ELEMENT why (%content.mix;)*>
  -
  -  <!ELEMENT who (person+)>
  -
  -  <!ELEMENT licence (%content.mix;)*>
  -
  -  <!ELEMENT credits (credit+)>
  -
  -    <!ELEMENT credit (%content.mix;)*>
  -
  -  <!ELEMENT project (url?, description?, version?, package?, ant?,
  -                     depend*, work*, home, jar+, javadoc?)>
  -  <!ATTLIST project name CDATA #REQUIRED>
  -
  -    <!ELEMENT package (#PCDATA)>
  -
  -    <!ELEMENT ant EMPTY>
  -    <!ATTLIST ant
  -      target CDATA #REQUIRED>
  -
  -    <!ELEMENT depend EMPTY>
  -    <!ATTLIST depend
  -      project CDATA #REQUIRED>
  -
  -    <!ELEMENT work EMPTY>
  -    <!ATTLIST work
  -      nested CDATA #REQUIRED>
  -
  -    <!ELEMENT home EMPTY>
  -    <!ATTLIST home
  -      nested CDATA #REQUIRED>
  -
  -    <!ELEMENT jar EMPTY>
  -    <!ATTLIST jar
  -      name CDATA #REQUIRED
  -      id CDATA #IMPLIED>
  -
  -    <!ELEMENT javadoc EMPTY>
  -    <!ATTLIST javadoc
  -      parent CDATA #REQUIRED>
  -
  -<!-- =============================================================== -->
  -<!-- End of DTD -->
  -<!-- =============================================================== -->
  +<!-- ===================================================================
  +
  +     Apache XGump DTD (Version 1.0)
  +
  +PURPOSE:
  +  Gump descriptor DTD
  +
  +TYPICAL INVOCATION:
  +
  +  <!DOCTYPE module PUBLIC
  +       "-//APACHE//DTD Gump Descriptor V1.0//EN"
  +       "xgump-draft.dtd">
  +
  +  where
  +
  +    x := major version
  +    y := minor version
  +
  +AUTHORS:
  +  Steven Noels <st...@apache.org>
  +
  +FIXME:
  +
  +CHANGE HISTORY:
  +[Version 1.0]
  +  20020611 Initial version. (SN)
  +
  +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
  +  included files.
  +
  +==================================================================== -->
  +
  +<!-- =============================================================== -->
  +<!-- Include the Documentation DTD -->
  +<!-- =============================================================== -->
  +
  +<!ENTITY % document PUBLIC
  +    "-//APACHE//ENTITIES Documentation V1.1//EN"
  +    "document-v11.mod">
  +%document;
  +
  +<!-- =============================================================== -->
  +<!-- Include the Common elements -->
  +<!-- =============================================================== -->
  +
  +<!ENTITY % common PUBLIC
  +    "-//APACHE//ENTITIES Common Elements V1.0//EN"
  +    "common-elems-v10.mod">
  +%common;
  +
  +<!-- =============================================================== -->
  +<!-- Include the Todo module -->
  +<!-- =============================================================== -->
  +
  +<!ENTITY % todo PUBLIC
  +    "-//APACHE//ENTITIES Todo V1.1//EN"
  +    "todo-v11.mod">
  +%todo;
  +
  +<!-- =============================================================== -->
  +<!-- Include the Changes module -->
  +<!-- =============================================================== -->
  +
  +<!ENTITY % changes PUBLIC
  +    "-//APACHE//ENTITIES Changes V1.1//EN"
  +    "changes-v11.mod">
  +%changes;
  +
  +<!-- =============================================================== -->
  +<!-- Document type element -->
  +<!-- =============================================================== -->
  +
  +<!ELEMENT module (url, forrest?, cvs, mailing-lists, description,
  +                  detailed, what, why, who, todo, changes, licence,
  +                  credits, project+)>
  +<!ATTLIST module
  +  name CDATA #REQUIRED>
  +
  +  <!ELEMENT url EMPTY>
  +  <!ATTLIST url
  +    href CDATA #REQUIRED>
  +
  +  <!ELEMENT forrest (skin)>
  +  <!ATTLIST forrest
  +    version CDATA #REQUIRED>
  +
  +    <!ELEMENT skin EMPTY>
  +    <!ATTLIST skin
  +      name CDATA #REQUIRED
  +      style CDATA #REQUIRED>
  +
  +  <!ELEMENT cvs EMPTY>
  +  <!ATTLIST cvs
  +    repository CDATA #REQUIRED>
  +
  +  <!ELEMENT mailing-lists (mailing-list+)>
  +
  +    <!ELEMENT mailing-list EMPTY>
  +    <!ATTLIST mailing-list
  +      user CDATA #REQUIRED
  +      mail CDATA #REQUIRED
  +      subscribe CDATA #REQUIRED
  +      unsubscribe CDATA #REQUIRED>
  +
  +  <!ELEMENT description (%content.mix;)*>
  +
  +  <!ELEMENT detailed (%blocks;)>
  +
  +  <!ELEMENT what (goal+)>
  +
  +    <!ELEMENT goal (%content.mix;)*>
  +
  +  <!ELEMENT why (%content.mix;)*>
  +
  +  <!ELEMENT who (person+)>
  +
  +  <!ELEMENT licence (%content.mix;)*>
  +
  +  <!ELEMENT credits (credit+)>
  +
  +    <!ELEMENT credit (%content.mix;)*>
  +
  +  <!ELEMENT project (url?, description?, version?, package?, ant?,
  +                     depend*, work*, home, jar+, javadoc?)>
  +  <!ATTLIST project name CDATA #REQUIRED>
  +
  +    <!ELEMENT package (#PCDATA)>
  +
  +    <!ELEMENT ant EMPTY>
  +    <!ATTLIST ant
  +      target CDATA #REQUIRED>
  +
  +    <!ELEMENT depend EMPTY>
  +    <!ATTLIST depend
  +      project CDATA #REQUIRED>
  +
  +    <!ELEMENT work EMPTY>
  +    <!ATTLIST work
  +      nested CDATA #REQUIRED>
  +
  +    <!ELEMENT home EMPTY>
  +    <!ATTLIST home
  +      nested CDATA #REQUIRED>
  +
  +    <!ELEMENT jar EMPTY>
  +    <!ATTLIST jar
  +      name CDATA #REQUIRED
  +      id CDATA #IMPLIED>
  +
  +    <!ELEMENT javadoc EMPTY>
  +    <!ATTLIST javadoc
  +      parent CDATA #REQUIRED>
  +
  +<!-- =============================================================== -->
  +<!-- End of DTD -->
  +<!-- =============================================================== -->
  
  
  

Re: cvs commit: xml-forrest/src/resources/schema/dtd changes-v11.mod common-elems-v10.mod todo-v11.mod xgump-draft.dtd

Posted by Steven Noels <st...@outerthought.org>.
crossley@apache.org wrote:

> crossley    2002/06/11 19:41:23
> 
>   Modified:    src/resources/schema/dtd changes-v11.mod
>                         common-elems-v10.mod todo-v11.mod xgump-draft.dtd
>   Log:
>   Fix yet more dos2unix problems.

duh :-(

must be paying more attention, I know

</Steven>