corrected examples

git-svn-id: file:///home/ksmith/gitmigration/svn/xmpp/trunk@3288 4b5297f7-1745-476d-ba37-a9c6900126ab
This commit is contained in:
Peter Saint-Andre 2009-06-29 19:28:49 +00:00
parent a9f20ff98c
commit 45b1d8b8ca
1 changed files with 24 additions and 24 deletions

View File

@ -58,41 +58,41 @@
</ul> </ul>
<p>As shown in the following examples, a node is not encapsulated in the JabberID but instead is communicated in protocol to indicate that the interaction is directed to or from a specific facet of a domain, a localpart, or a resource.</p> <p>As shown in the following examples, a node is not encapsulated in the JabberID but instead is communicated in protocol to indicate that the interaction is directed to or from a specific facet of a domain, a localpart, or a resource.</p>
<example caption="Nodes in Service Discovery: a disco#info request directed to a specific node"><![CDATA[ <example caption="Nodes in Service Discovery: a disco#info request directed to a specific node"><![CDATA[
&lt;iq type='get' <iq type='get'
from='romeo@montague.net/orchard' from='romeo@montague.net/orchard'
to='mim.shakespeare.lit' to='mim.shakespeare.lit'
id='info3'&gt; id='info3'>
&lt;query xmlns='http://jabber.org/protocol/disco#info' <query xmlns='http://jabber.org/protocol/disco#info'
node='http://jabber.org/protocol/commands'/&gt; node='http://jabber.org/protocol/commands'/>
&lt;/iq&gt; </iq>
]]></example> ]]></example>
<example caption="Nodes in Publish-Subscribe: a publish request directed to a specific node"><![CDATA[ <example caption="Nodes in Publish-Subscribe: a publish request directed to a specific node"><![CDATA[
&lt;iq type='set' <iq type='set'
from='hamlet@denmark.lit/blogbot' from='hamlet@denmark.lit/blogbot'
to='pubsub.shakespeare.lit' to='pubsub.shakespeare.lit'
id='pub1'&gt; id='pub1'>
&lt;pubsub xmlns='http://jabber.org/protocol/pubsub'&gt; <pubsub xmlns='http://jabber.org/protocol/pubsub'>
&lt;publish node='princely_musings'&gt; <publish node='princely_musings'>
&lt;item&gt; <item>
&lt;entry xmlns='http://www.w3.org/2005/Atom'&gt; <entry xmlns='http://www.w3.org/2005/Atom'>
&lt;title&gt;Soliloquy&lt;/title&gt; <title>Soliloquy</title>
&lt;summary&gt; <summary>
To be, or not to be: that is the question: To be, or not to be: that is the question:
Whether 'tis nobler in the mind to suffer Whether 'tis nobler in the mind to suffer
The slings and arrows of outrageous fortune, The slings and arrows of outrageous fortune,
Or to take arms against a sea of troubles, Or to take arms against a sea of troubles,
And by opposing end them? And by opposing end them?
&lt;/summary&gt; </summary>
&lt;link rel='alternate' type='text/html' <link rel='alternate' type='text/html'
href='http://denmark.lit/2003/12/13/atom03'/&gt; href='http://denmark.lit/2003/12/13/atom03'/>
&lt;id&gt;tag:denmark.lit,2003:entry-32397&lt;/id&gt; <id>tag:denmark.lit,2003:entry-32397</id>
&lt;published&gt;2003-12-13T18:30:02Z&lt;/published&gt; <published>2003-12-13T18:30:02Z</published>
&lt;updated&gt;2003-12-13T18:30:02Z&lt;/updated&gt; <updated>2003-12-13T18:30:02Z</updated>
&lt;/entry&gt; </entry>
&lt;/item&gt; </item>
&lt;/publish&gt; </publish>
&lt;/pubsub&gt; </pubsub>
&lt;/iq&gt; </iq>
]]></example> ]]></example>
</section1> </section1>
<section1 topic='Use in XMPP URIs' anchor='uri'> <section1 topic='Use in XMPP URIs' anchor='uri'>