summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2015-12-14 20:34:13 +0100
committerMichał Górny <mgorny@gentoo.org>2015-12-14 20:34:13 +0100
commitf15eab8fe24dd0b454ab299f7e226f7fe9d87cc3 (patch)
treee7a03c11da739318811c751c4c539dfb055db850 /projects.dtd
parentprojects.dtd: Add explanatory comments (diff)
downloaddtd-f15eab8fe24dd0b454ab299f7e226f7fe9d87cc3.tar.gz
dtd-f15eab8fe24dd0b454ab299f7e226f7fe9d87cc3.tar.bz2
dtd-f15eab8fe24dd0b454ab299f7e226f7fe9d87cc3.zip
projects.dtd: Fix booleans
Diffstat (limited to 'projects.dtd')
-rw-r--r--projects.dtd4
1 files changed, 2 insertions, 2 deletions
diff --git a/projects.dtd b/projects.dtd
index e172f11..7c50606 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 CDATA #FIXED "1">
+ is-lead (0|1) "1">
<!-- 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 CDATA #FIXED "1"
+ inherit-members (0|1) "1"
ref CDATA #REQUIRED>