]> git.argeo.org Git - gpl/argeo-suite.git/blob - org.argeo.app.core/src/org/argeo/app/core/schemas/xml-events-attribs-1.xsd
Add cn to person entity
[gpl/argeo-suite.git] / org.argeo.app.core / src / org / argeo / app / core / schemas / xml-events-attribs-1.xsd
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xs:schema
3 targetNamespace="http://www.w3.org/2001/xml-events"
4 xmlns:ev="http://www.w3.org/2001/xml-events"
5 xmlns:xs="http://www.w3.org/2001/XMLSchema"
6 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7 xsi:schemaLocation="http://www.w3.org/2001/XMLSchema
8 http://www.w3.org/2001/XMLSchema.xsd"
9 elementFormDefault="unqualified"
10 blockDefault="#all"
11 finalDefault="#all"
12 attributeFormDefault="unqualified">
13
14 <xs:annotation>
15 <xs:documentation>
16 This is the XML Schema for XML Events global attributes
17
18 URI: http://www.w3.org/MarkUp/SCHEMA/xml-events-attribs-1.xsd
19 $Id: xml-events-attribs-1.xsd,v 1.7 2004/11/22 17:09:15 ahby Exp $
20 </xs:documentation>
21 <xs:documentation source="xml-events-copyright-1.xsd"/>
22 </xs:annotation>
23
24 <xs:annotation>
25 <xs:documentation>
26 XML Event Attributes
27
28 These "global" event attributes are defined in "Attaching
29 Attributes Directly to the Observer Element" of the XML
30 Events specification.
31 </xs:documentation>
32 </xs:annotation>
33
34 <xs:attribute name="event" type="xs:NMTOKEN"/>
35 <xs:attribute name="observer" type="xs:IDREF"/>
36 <xs:attribute name="target" type="xs:IDREF"/>
37 <xs:attribute name="handler" type="xs:anyURI"/>
38 <xs:attribute name="phase" default="default">
39 <xs:simpleType>
40 <xs:restriction base="xs:NMTOKEN">
41 <xs:enumeration value="capture"/>
42 <xs:enumeration value="default"/>
43 </xs:restriction>
44 </xs:simpleType>
45 </xs:attribute>
46 <xs:attribute name="propagate" default="continue">
47 <xs:simpleType>
48 <xs:restriction base="xs:NMTOKEN">
49 <xs:enumeration value="stop"/>
50 <xs:enumeration value="continue"/>
51 </xs:restriction>
52 </xs:simpleType>
53 </xs:attribute>
54 <xs:attribute name="defaultAction" default="perform">
55 <xs:simpleType>
56 <xs:restriction base="xs:NMTOKEN">
57 <xs:enumeration value="cancel"/>
58 <xs:enumeration value="perform"/>
59 </xs:restriction>
60 </xs:simpleType>
61 </xs:attribute>
62
63 <xs:attributeGroup name="XmlEvents.attlist">
64 <xs:attribute ref="ev:event"/>
65 <xs:attribute ref="ev:observer"/>
66 <xs:attribute ref="ev:target"/>
67 <xs:attribute ref="ev:handler"/>
68 <xs:attribute ref="ev:phase"/>
69 <xs:attribute ref="ev:propagate"/>
70 <xs:attribute ref="ev:defaultAction"/>
71 </xs:attributeGroup>
72
73 </xs:schema>