summaryrefslogtreecommitdiff
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
parent7217c6ba503f732a791d68177ba31a7deed0334a (diff)
downloadwireshark-7958903f7c3a490f82bb2e33088728f9b622ce9c.tar.gz
Add DTD for RFC 4662 (Event Notification Extension for Resource Lists) XML schema.
svn path=/trunk/; revision=19611
-rw-r--r--Makefile.am1
-rw-r--r--dtds/rlmi.dtd31
-rw-r--r--packaging/nsis/wireshark.nsi1
3 files changed, 33 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index 27d759a23d..7e7bfc26ad 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -108,6 +108,7 @@ dtds_DATA = \
dtds/pocsettings.dtd \
dtds/presence.dtd \
dtds/reginfo.dtd \
+ dtds/rlmi.dtd \
dtds/rss.dtd \
dtds/smil.dtd \
dtds/xcap-caps.dtd \
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>
+
+
+
diff --git a/packaging/nsis/wireshark.nsi b/packaging/nsis/wireshark.nsi
index 9ad7d9d54a..afe0b2b361 100644
--- a/packaging/nsis/wireshark.nsi
+++ b/packaging/nsis/wireshark.nsi
@@ -454,6 +454,7 @@ File "..\..\dtds\itunes.dtd"
File "..\..\dtds\pocsettings.dtd"
File "..\..\dtds\presence.dtd"
File "..\..\dtds\reginfo.dtd"
+File "..\..\dtds\rlmi.dtd"
File "..\..\dtds\rss.dtd"
File "..\..\dtds\smil.dtd"
File "..\..\dtds\xcap-caps.dtd"