aboutsummaryrefslogtreecommitdiffstats
path: root/dtds
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2006-10-19 17:37:15 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2006-10-19 17:37:15 +0000
commit7958903f7c3a490f82bb2e33088728f9b622ce9c (patch)
treec94993eb2022feec16b366d814df01cf827d9d51 /dtds
parent7217c6ba503f732a791d68177ba31a7deed0334a (diff)
Add DTD for RFC 4662 (Event Notification Extension for Resource Lists) XML schema.
svn path=/trunk/; revision=19611
Diffstat (limited to 'dtds')
-rw-r--r--dtds/rlmi.dtd31
1 files changed, 31 insertions, 0 deletions
diff --git a/dtds/rlmi.dtd b/dtds/rlmi.dtd
new file mode 100644
index 0000000000..557f74bcd4
--- /dev/null
+++ b/dtds/rlmi.dtd
@@ -0,0 +1,31 @@
+<? wireshark:protocol
+ proto_name="list"
+ description="Event Notification for Resource Lists (RFC 4662)"
+ hierarchy="yes" ?>
+
+<!--
+$Id: reginfo.dtd 18970 2006-08-21 11:52:20Z martinm $
+-->
+
+<!ELEMENT list (name | resource)* >
+<!ATTLIST list xmlns CDATA #IMPLIED
+ uri CDATA #REQUIRED
+ version CDATA #REQUIRED
+ fullstate CDATA #REQUIRED
+ cid CDATA #REQUIRED>
+
+<!ELEMENT resource (name | instance)*>
+<!ATTLIST resource uri CDATA #REQUIRED>
+
+<!-- N.B. name appears at 2 different levels in this schema! -->
+<!ELEMENT name (#PCDATA)>
+<!ATTLIST name lang CDATA #REQUIRED>
+
+<!ELEMENT instance (#PCDATA)>
+<!ATTLIST instance id CDATA #IMPLIED
+ STATE CDATA #IMPLIED
+ reason CDATA #IMPLIED
+ cid CDATA #IMPLIED>
+
+
+