mirror of
https://github.com/moparisthebest/xeps
synced 2024-11-24 02:02:16 -05:00
0.2
This commit is contained in:
parent
7804258d28
commit
16bfbbc246
42
xep-0306.xml
42
xep-0306.xml
@ -21,6 +21,12 @@
|
|||||||
<supersededby/>
|
<supersededby/>
|
||||||
<shortname>N/A</shortname>
|
<shortname>N/A</shortname>
|
||||||
&stpeter;
|
&stpeter;
|
||||||
|
<revision>
|
||||||
|
<version>0.2</version>
|
||||||
|
<date>2011-12-14</date>
|
||||||
|
<initials>psa</initials>
|
||||||
|
<remark><p>Modified format to make it more backward compatible; incremented protocol namespace.</p></remark>
|
||||||
|
</revision>
|
||||||
<revision>
|
<revision>
|
||||||
<version>0.1</version>
|
<version>0.1</version>
|
||||||
<date>2011-08-26</date>
|
<date>2011-08-26</date>
|
||||||
@ -40,20 +46,19 @@
|
|||||||
</section1>
|
</section1>
|
||||||
|
|
||||||
<section1 topic='Format' anchor='format'>
|
<section1 topic='Format' anchor='format'>
|
||||||
<p>XML elements describing status conditions defined by this specification SHALL be qualified by the 'urn:xmpp:muc:conditions:0' namespace.</p>
|
<p>XML elements describing status conditions defined by this specification SHALL be qualified by the 'urn:xmpp:muc:conditions:1' namespace.</p>
|
||||||
<p>The structure is as follows:</p>
|
<p>The structure is as follows:</p>
|
||||||
<code><![CDATA[
|
<code><![CDATA[
|
||||||
<conditions xmlns='urn:xmpp:muc:conditions:0'>
|
<status xmlns='http://jabber.org/protocol/muc#user'>
|
||||||
<DEFINED-CONDITION>
|
<DEFINED-CONDITION>
|
||||||
[<text xml:lang='langcode'>OPTIONAL descriptive text</text>]
|
[<text xml:lang='langcode'>OPTIONAL descriptive text</text>]
|
||||||
[OPTIONAL application-specific condition element]
|
[OPTIONAL application-specific condition element]
|
||||||
</DEFINED-CONDITION>
|
</DEFINED-CONDITION>
|
||||||
[<DEFINED-CONDITION/>]
|
[<DEFINED-CONDITION/>]
|
||||||
[OPTIONAL application-specific condition element or elements]
|
[OPTIONAL application-specific condition element or elements]
|
||||||
</conditions>
|
</status>
|
||||||
]]></code>
|
]]></code>
|
||||||
<p>That is, the <conditions/> element MAY contain one or more condition elements defined in this document (each of which MAY contain a human-readable <text/> element and MAY contain an application-specific condition element) and MAY contain one or more application-specific condition elements.</p>
|
<p>That is, any <status/> element qualified by the existing http://jabber.org/protocol/muc#user' namespace (from XEP-0045) MAY contain one or more condition elements defined in this document (each of which MAY contain a human-readable <text/> element and MAY contain an application-specific condition element) and MAY contain one or more application-specific condition elements.</p>
|
||||||
<p>The <conditions/> element is intended to be a direct child of the &X; element qualified by the 'http://jabber.org/protocol/muc#user' as used for status notifications in multi-user chat.</p>
|
|
||||||
<p>An example follows.</p>
|
<p>An example follows.</p>
|
||||||
<example caption="Service Sends New Occupant's Presence to New Occupant"><![CDATA[
|
<example caption="Service Sends New Occupant's Presence to New Occupant"><![CDATA[
|
||||||
<presence
|
<presence
|
||||||
@ -63,11 +68,11 @@
|
|||||||
<x xmlns='http://jabber.org/protocol/muc#user'>
|
<x xmlns='http://jabber.org/protocol/muc#user'>
|
||||||
<item affiliation='member' role='participant'/>
|
<item affiliation='member' role='participant'/>
|
||||||
<status code='100'/>
|
<status code='100'/>
|
||||||
|
<realjid-public xmlns='urn:xmpp:muc:conditions:1'/>
|
||||||
|
</status>
|
||||||
<status code='110'/>
|
<status code='110'/>
|
||||||
<conditions xmlns='urn:xmpp:muc:conditions:0'>
|
<self-presence xmlns='urn:xmpp:muc:conditions:1'/>
|
||||||
<realjid-public/>
|
</status>
|
||||||
<self-presence/>
|
|
||||||
</conditions>
|
|
||||||
</x>
|
</x>
|
||||||
</presence>
|
</presence>
|
||||||
]]></example>
|
]]></example>
|
||||||
@ -171,7 +176,7 @@
|
|||||||
<section2 topic='Protocol Namespaces' anchor='registrar-ns'>
|
<section2 topic='Protocol Namespaces' anchor='registrar-ns'>
|
||||||
<p>This specification defines the following XML namespace:</p>
|
<p>This specification defines the following XML namespace:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>urn:xmpp:muc:conditions:0</li>
|
<li>urn:xmpp:muc:conditions:1</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>Upon advancement of this specification from a status of Experimental to a status of Draft, the ®ISTRAR; shall add the foregoing namespace to the registry located at &NAMESPACES;, as described in Section 4 of &xep0053;.</p>
|
<p>Upon advancement of this specification from a status of Experimental to a status of Draft, the ®ISTRAR; shall add the foregoing namespace to the registry located at &NAMESPACES;, as described in Section 4 of &xep0053;.</p>
|
||||||
</section2>
|
</section2>
|
||||||
@ -189,14 +194,10 @@
|
|||||||
|
|
||||||
<xs:schema
|
<xs:schema
|
||||||
xmlns:xs='http://www.w3.org/2001/XMLSchema'
|
xmlns:xs='http://www.w3.org/2001/XMLSchema'
|
||||||
targetNamespace='urn:xmpp:muc:conditions:0'
|
targetNamespace='urn:xmpp:muc:conditions:1'
|
||||||
xmlns='urn:xmpp:muc:conditions:0'
|
xmlns='urn:xmpp:muc:conditions:1'
|
||||||
elementFormDefault='qualified'>
|
elementFormDefault='qualified'>
|
||||||
|
|
||||||
<xs:element name='conditions'>
|
|
||||||
<xs:complexType>
|
|
||||||
<xs:sequence>
|
|
||||||
<xs:choice minOccurs='0' maxOccurs='unbounded'>
|
|
||||||
<xs:element name='affiliation-changed' type='MucStatusType'/>
|
<xs:element name='affiliation-changed' type='MucStatusType'/>
|
||||||
<xs:element name='banned' type='MucStatusType'/>
|
<xs:element name='banned' type='MucStatusType'/>
|
||||||
<xs:element name='configuration-changed' type='MucStatusType'/>
|
<xs:element name='configuration-changed' type='MucStatusType'/>
|
||||||
@ -216,11 +217,6 @@
|
|||||||
<xs:element name='semi-anonymous' type='MucStatusType'/>
|
<xs:element name='semi-anonymous' type='MucStatusType'/>
|
||||||
<xs:element name='unavailable-not-shown' type='MucStatusType'/>
|
<xs:element name='unavailable-not-shown' type='MucStatusType'/>
|
||||||
<xs:element name='unavailable-shown' type='MucStatusType'/>
|
<xs:element name='unavailable-shown' type='MucStatusType'/>
|
||||||
</xs:choice>
|
|
||||||
<xs:any namespace='##other' minOccurs='0' maxOccurs='unbounded' processContents='lax'/>
|
|
||||||
</xs:sequence>
|
|
||||||
</xs:complexType>
|
|
||||||
</xs:element>
|
|
||||||
|
|
||||||
<xs:complexType name='MucStatusType'>
|
<xs:complexType name='MucStatusType'>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
@ -243,4 +239,8 @@
|
|||||||
]]></code>
|
]]></code>
|
||||||
</section1>
|
</section1>
|
||||||
|
|
||||||
|
<section1 topic='Acknowledgements' anchor='ack'>
|
||||||
|
<p>Thanks to Dave Cridland and Ralph Meijer for their feedback.</p>
|
||||||
|
</section1>
|
||||||
|
|
||||||
</xep>
|
</xep>
|
||||||
|
Loading…
Reference in New Issue
Block a user