git-svn-id: file:///home/ksmith/gitmigration/svn/xmpp/trunk@1358 4b5297f7-1745-476d-ba37-a9c6900126ab
This commit is contained in:
Peter Saint-Andre 2007-11-08 03:02:20 +00:00
parent 14020b583c
commit 05740b7358
1 changed files with 5 additions and 5 deletions

View File

@ -99,7 +99,7 @@
<section2 topic="Basic Flow" anchor='protocol-basic'>
<p>A typical negotiation flow is shown in the following example of two entities negotiating the time and place for a meeting.</p>
<example caption="Initiating entity sends offer"><![CDATA[
<iq type='get'
<iq type='set'
from='romeo@montague.net/orchard'
to='juliet@capulet.com/balcony'
id='neg1'>
@ -156,7 +156,7 @@
...
</x>
</feature>
<error code='503' type='cancel'>
<error type='cancel'>
<service-unavailable xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>
@ -175,7 +175,7 @@
...
</x>
</feature>
<error code='501' type='cancel'>
<error type='cancel'>
<feature-not-implemented xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
<text xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'>times-to-meet</text>
</error>
@ -195,7 +195,7 @@
...
</x>
</feature>
<error code='406' type='modify'>
<error type='modify'>
<not-acceptable xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
<text xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'>places-to-meet</text>
</error>
@ -246,7 +246,7 @@
<field var='muc-password'/>
</x>
</feature>
<error code='501' type='cancel'>
<error type='cancel'>
<feature-not-implemented xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
</error>
</iq>]]></example>