aboutsummaryrefslogtreecommitdiffstats
path: root/dtds
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-05-16 19:04:53 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-05-16 19:04:53 +0000
commit166a9a53afac5675ad450abb6f093dee99892c64 (patch)
treee9f47862efa7bf68a343e0230a62a230fcb53303 /dtds
parent0c8fd453ab0dc002649d6276fc7cc1aca9e283fa (diff)
From Martin Mathieson:
- adds application/xpidf+xml as a media type known to be xml - appends /xml to the protocol column (as SDP does). It would be nice to append the top-level element, or the name taken from a matching DTD, but this will do for now (at least its a short name). - corrects the help text for the preference. I can see that it is registered as a heuristic for "http", "sip" and "media" I've also included a slightly updated version of reginfo.dtd (RFC 3680) for the dtds folder. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18173 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'dtds')
-rw-r--r--dtds/reginfo.dtd41
1 files changed, 41 insertions, 0 deletions
diff --git a/dtds/reginfo.dtd b/dtds/reginfo.dtd
new file mode 100644
index 0000000000..d419948db1
--- /dev/null
+++ b/dtds/reginfo.dtd
@@ -0,0 +1,41 @@
+<? ethereal:protocol
+ proto_name="reginfo"
+ description="Reginfo XML doc (RFC 3680)"
+ hierarchy="yes" ?>
+
+<!--
+$Id$
+-->
+
+<!ELEMENT reginfo (registration)* >
+<!ATTLIST reginfo xmlns CDATA #REQUIRED
+ version CDATA #REQUIRED
+ state CDATA #REQUIRED>
+
+<!ELEMENT registration (contact)*>
+<!ATTLIST registration aor CDATA #REQUIRED
+ id CDATA #REQUIRED
+ state CDATA #REQUIRED>
+
+<!ELEMENT contact (uri | display-name? | unknown-param?)* >
+<!ATTLIST contact id CDATA #REQUIRED
+ state CDATA #REQUIRED
+ event CDATA #REQUIRED
+ expires CDATA #IMPLIED
+ retry-after CDATA #IMPLIED
+ duration-registered CDATA #IMPLIED
+ q CDATA #IMPLIED
+ cseq CDATA #IMPLIED
+ callid CDATA #IMPLIED>
+
+<!ELEMENT uri (#PCDATA)>
+
+<!ELEMENT display-name (#PCDATA)>
+<!ATTLIST display-name lang CDATA #IMPLIED>
+
+<!ELEMENT unknown-param (#PCDATA)>
+<!ATTLIST unknown-param name CDATA #REQUIRED>
+
+
+
+