blob: ab7781d820f240f03242f64e6b4580403d2b51bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
<? wireshark:protocol
proto_name="xcap-error"
description="XCAP Error XML doc (RFC 4825)"
hierarchy="yes" ?>
<!--
$Id$
-->
<!ELEMENT xcap-error (schema-validation-error?,
not-xml-frag?,
no-parent?,
cannot-insert?,
not-xml-att-value?,
uniqueness-failure?,
not-well-formed?,
constraint-failure?,
cannot-delete?,
not-utf-8?)* >
<!ATTLIST xcap-error xmlns CDATA #IMPLIED >
<!ELEMENT schema-validation-error (#PCDATA)>
<!ATTLIST schema-validation-error phrase CDATA #IMPLIED>
<!ELEMENT not-xml-frag (#PCDATA)>
<!ATTLIST not-xml-frag phrase CDATA #IMPLIED>
<!ELEMENT ancestor (#PCDATA)>
<!ELEMENT no-parent (ancestor)>
<!ATTLIST no-parent phrase CDATA #IMPLIED>
<!ELEMENT cannot-insert (#PCDATA)>
<!ATTLIST cannot-insert phrase CDATA #IMPLIED>
<!ELEMENT alt-value (#PCDATA)>
<!ELEMENT exists (alt-value)>
<!ATTLIST exists field CDATA #IMPLIED>
<!ELEMENT uniqueness-failure (exists)*>
<!ATTLIST uniqueness-failure phrase CDATA #IMPLIED>
<!ELEMENT not-xml-att-value (#PCDATA)>
<!ATTLIST not-xml-att-value phrase CDATA #IMPLIED>
<!ELEMENT not-well-formed (#PCDATA)>
<!ATTLIST not-well-formed phrase CDATA #IMPLIED>
<!ELEMENT constraint-failure (#PCDATA)>
<!ATTLIST constraint-failure phrase CDATA #IMPLIED>
<!ELEMENT cannot-delete (#PCDATA)>
<!ATTLIST cannot-delete phrase CDATA #IMPLIED>
<!ELEMENT not-utf-8 (#PCDATA)>
<!ATTLIST not-utf-8 phrase CDATA #IMPLIED>
|