Created
December 3, 2012 09:10
-
-
Save pjmagee/4193777 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!ELEMENT people (lecturers, students)> | |
| <!ELEMENT lecturers (lecturer+)> | |
| <!ELEMENT students (student+)> | |
| <!ELEMENT student (name, study, hobby)> | |
| <!ELEMENT study (course+)> | |
| <!ELEMENT hobby (#PCDATA)> | |
| <!ELEMENT lecturer (name, teaching, research)> | |
| <!ELEMENT teaching (course+)> | |
| <!ELEMENT course (#PCDATA)> | |
| <!ELEMENT research (#PCDATA)> | |
| <!ELEMENT name (#PCDATA)> | |
| <!ATTLIST name | |
| title CDATA "1" | |
| first CDATA #REQUIRED | |
| last CDATA #REQUIRED | |
| > | |
| <!ATTLIST course | |
| code CDATA #REQUIRED | |
| > | |
| <!ATTLIST lecturers xmlns:staff CDATA #FIXED "http://ku/staff/ns"> | |
| <!ATTLIST students xmlns:stud CDATA #FIXED "http://ku/students/ns"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment