Skip to content
Snippets Groups Projects
Commit 97a4b8ad authored by Goik Martin's avatar Goik Martin
Browse files

Marks doodle exercise

parent f80fbd00
No related branches found
No related tags found
No related merge requests found
......@@ -3,23 +3,31 @@
<!ELEMENT poll (date*, person*)>
<!ELEMENT date EMPTY>
<!ATTLIST date id ID #REQUIRED
day CDATA #REQUIRED
time CDATA #REQUIRED>
day NMTOKEN #REQUIRED
time NMTOKEN #REQUIRED>
<!ELEMENT person (#PCDATA)>
<!ATTLIST person participate IDREFS #IMPLIED>
]>
<poll>
<date id="propose1" day="01/03/2013" time="13:30"/>
<date id="propose2" day="01/04/2013" time="13:30"/>
<date id="propose3" day="01/08/2013" time="13:30"/>
<date id="propose4" day="01/09/2013" time="13:30"/>
<date id="propose1" day="01.03.2013" time="13:30"/>
<date id="propose2" day="01.04.2013" time="13:30"/>
<date id="propose3" day="01.08.2013" time="13:30"/>
<date id="propose4" day="01.09.2013" time="13:30"/>
<person
participate="propose1 propose2 propose3"
<person participate="propose1 propose2 propose3"
>Joachim Charzinski</person>
<person
participate="propose3"
<person participate="propose3"
>Oliver Kretzschmar</person>
<!-- ... further data omitted -->
</poll>
\ No newline at end of file
</poll>
<!--
1 date+
2 attribs day and time
2 day and time as NMTOKEN
2 person+
3 person referencing date ID/IDREF
Sum:
-->
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment