diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-12-14 20:50:03 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-12-14 20:50:13 +0100 |
commit | 1b8407c0634ace367eb2f796b8ae325b8a96d958 (patch) | |
tree | f89ea9c96a360d06e4d8afde1d4ec8c4daa8573f | |
parent | projects.dtd: Fix booleans (diff) | |
download | dtd-1b8407c0634ace367eb2f796b8ae325b8a96d958.tar.gz dtd-1b8407c0634ace367eb2f796b8ae325b8a96d958.tar.bz2 dtd-1b8407c0634ace367eb2f796b8ae325b8a96d958.zip |
projects.dtd: Fix the defaults for booleans
-rw-r--r-- | projects.dtd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/projects.dtd b/projects.dtd index 7c50606..6ce0544 100644 --- a/projects.dtd +++ b/projects.dtd @@ -13,7 +13,7 @@ <!ELEMENT member (email,name,role)> <!-- is-lead="1" indicates that the member is the project's lead --> <!ATTLIST member - is-lead (0|1) "1"> + is-lead (0|1) "0"> <!-- Project member role --> <!ELEMENT role (#PCDATA)> <!-- Subproject of a project --> @@ -22,5 +22,5 @@ from the subproject --> <!-- ref="" references the subproject by the contact e-mail address --> <!ATTLIST subproject - inherit-members (0|1) "1" + inherit-members (0|1) "0" ref CDATA #REQUIRED> |