Pārlūkot izejas kodu

[MANUAL] English:

- erased endline spaces

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@19990 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas 16 gadi atpakaļ
vecāks
revīzija
ed707d5303

+ 17 - 17
documentation/manual/en/module_specs/Zend_Feed_Pubsubhubbub.xml

@@ -41,7 +41,7 @@
             also seen its usage increase significantly though it lacks a formal specification and
             also seen its usage increase significantly though it lacks a formal specification and
             currently does not support Atom 1.0 feeds.
             currently does not support Atom 1.0 feeds.
         </para>
         </para>
-        
+
         <para>
         <para>
             Perhaps surprisingly given its relative early age, Pubsubhubbub is already in use including
             Perhaps surprisingly given its relative early age, Pubsubhubbub is already in use including
             in Google Reader, Feedburner, and there are plugins available for Wordpress blogs.
             in Google Reader, Feedburner, and there are plugins available for Wordpress blogs.
@@ -91,10 +91,10 @@
             use cases, and APIs are covered in subsequent sections.
             use cases, and APIs are covered in subsequent sections.
         </para>
         </para>
     </sect2>
     </sect2>
-    
+
     <sect2 id="zend.feed.pubsubhubbub.zend.feed.pubsubhubbub.publisher">
     <sect2 id="zend.feed.pubsubhubbub.zend.feed.pubsubhubbub.publisher">
         <title>Zend_Feed_Pubsubhubbub_Publisher</title>
         <title>Zend_Feed_Pubsubhubbub_Publisher</title>
-        
+
         <para>
         <para>
             In Pubsubhubbub, the Publisher is the party who publishes a live feed and frequently updates
             In Pubsubhubbub, the Publisher is the party who publishes a live feed and frequently updates
             it with new content. This may be a blog, an aggregator, or even a web service with a public
             it with new content. This may be a blog, an aggregator, or even a web service with a public
@@ -132,11 +132,11 @@
         <programlisting language="php"><![CDATA[
         <programlisting language="php"><![CDATA[
 $publisher = new Zend_Feed_Pubsubhubbub_Publisher;
 $publisher = new Zend_Feed_Pubsubhubbub_Publisher;
 $publisher->addHubUrls(array(
 $publisher->addHubUrls(array(
-    'http://pubsubhubbub.appspot.com/', 
+    'http://pubsubhubbub.appspot.com/',
     'http://hubbub.example.com',
     'http://hubbub.example.com',
 ));
 ));
 $publisher->addUpdatedTopicUrls(array(
 $publisher->addUpdatedTopicUrls(array(
-    'http://www.example.net/rss', 
+    'http://www.example.net/rss',
     'http://www.example.net/atom',
     'http://www.example.net/atom',
 ));
 ));
 $publisher->notifyAll();
 $publisher->notifyAll();
@@ -178,7 +178,7 @@ if (!$publisher->isSuccess()) {
             temporary downtime or Publisher errors/downtime.
             temporary downtime or Publisher errors/downtime.
         </para>
         </para>
     </sect2>
     </sect2>
-    
+
     <sect2 id="zend.feed.pubsubhubbub.zend.feed.pubsubhubbub.subscriber">
     <sect2 id="zend.feed.pubsubhubbub.zend.feed.pubsubhubbub.subscriber">
         <title>Zend_Feed_Pubsubhubbub_Subscriber</title>
         <title>Zend_Feed_Pubsubhubbub_Subscriber</title>
 
 
@@ -276,7 +276,7 @@ if (!$publisher->isSuccess()) {
                 This custom adapter may be as simple in intent as changing the table name to use or as
                 This custom adapter may be as simple in intent as changing the table name to use or as
                 complex as you deem necessary.
                 complex as you deem necessary.
             </para>
             </para>
-            
+
             <para>
             <para>
                 While this Model is offered as a default ready-to-roll solution, you may create your
                 While this Model is offered as a default ready-to-roll solution, you may create your
                 own Model using any other backend or database layer (e.g. Doctrine) so long as the
                 own Model using any other backend or database layer (e.g. Doctrine) so long as the
@@ -323,7 +323,7 @@ if (!$publisher->isSuccess()) {
                                     URI path which is more difficult to implement in a Zend Framework
                                     URI path which is more difficult to implement in a Zend Framework
                                     application.
                                     application.
                                 </para>
                                 </para>
-                                
+
                                 <para>
                                 <para>
                                     Nevertheless, since not all Hubs support query string parameters,
                                     Nevertheless, since not all Hubs support query string parameters,
                                     we still strongly recommend adding the subscription key as a path component
                                     we still strongly recommend adding the subscription key as a path component
@@ -544,10 +544,10 @@ if (!$publisher->isSuccess()) {
                 </para>
                 </para>
             </important>
             </important>
         </sect3>
         </sect3>
-        
+
         <sect3 id="zend.feed.pubsubhubbub.zend.feed.pubsubhubbub.subscriber.setting.up.and.using.a.callback.url.route">
         <sect3 id="zend.feed.pubsubhubbub.zend.feed.pubsubhubbub.subscriber.setting.up.and.using.a.callback.url.route">
             <title>Setting Up And Using A Callback URL Route</title>
             <title>Setting Up And Using A Callback URL Route</title>
-            
+
             <para>
             <para>
                 As noted earlier, the <classname>Zend_Feed_Pubsubhubbub_Subscriber_Callback</classname>
                 As noted earlier, the <classname>Zend_Feed_Pubsubhubbub_Subscriber_Callback</classname>
                 class receives the combined key associated with any subscription from the Hub via one
                 class receives the combined key associated with any subscription from the Hub via one
@@ -558,21 +558,21 @@ if (!$publisher->isSuccess()) {
                 recommended to use the most compatible means of adding this key to the Callback URL
                 recommended to use the most compatible means of adding this key to the Callback URL
                 by appending it to the URL's path.
                 by appending it to the URL's path.
             </para>
             </para>
-            
+
             <para>Thus the URL http://www.example.com/callback?xhub.subscription=key would become
             <para>Thus the URL http://www.example.com/callback?xhub.subscription=key would become
             http://www.example.com/callback/key.</para>
             http://www.example.com/callback/key.</para>
-            
+
             <para>Since the query string method is the default in anticipation of a greater level
             <para>Since the query string method is the default in anticipation of a greater level
             of future support for the full 0.2 specification, this requires some additional work
             of future support for the full 0.2 specification, this requires some additional work
             to implement.</para>
             to implement.</para>
-            
+
             <para>The first step to to make the <classname>Zend_Feed_Pubsubhubbub_Subscriber_Callback</classname>
             <para>The first step to to make the <classname>Zend_Feed_Pubsubhubbub_Subscriber_Callback</classname>
             class aware of the path contained subscription key. It's manually injected therefore
             class aware of the path contained subscription key. It's manually injected therefore
             since it also requires manually defining a route for this purpose. This is achieved simply by
             since it also requires manually defining a route for this purpose. This is achieved simply by
             called the method <methodname>Zend_Feed_Pubsubhubbub_Subscriber_Callback::setSubscriptionKey()</methodname>
             called the method <methodname>Zend_Feed_Pubsubhubbub_Subscriber_Callback::setSubscriptionKey()</methodname>
             with the parameter being the key value available from the Router. The example below
             with the parameter being the key value available from the Router. The example below
             demonstrates this using a Zend Framework controller.</para>
             demonstrates this using a Zend Framework controller.</para>
-            
+
             <programlisting lang="php"><![CDATA[
             <programlisting lang="php"><![CDATA[
 class CallbackController extends Zend_Controller_Action
 class CallbackController extends Zend_Controller_Action
 {
 {
@@ -607,12 +607,12 @@ class CallbackController extends Zend_Controller_Action
 
 
 }
 }
     ]]></programlisting>
     ]]></programlisting>
-    
+
         <para>Actually adding the route which would map the path-appended key
         <para>Actually adding the route which would map the path-appended key
         to a parameter for retrieval from a controller can be accomplished using
         to a parameter for retrieval from a controller can be accomplished using
         a Route configuration such as the INI formatted example below for use
         a Route configuration such as the INI formatted example below for use
         with <classname>Zend_Application</classname> bootstrapping.</para>
         with <classname>Zend_Application</classname> bootstrapping.</para>
-        
+
         <programlisting language="dosini"><![CDATA[
         <programlisting language="dosini"><![CDATA[
 ; Callback Route to enable appending a PuSH Subscription's lookup key
 ; Callback Route to enable appending a PuSH Subscription's lookup key
 resources.router.routes.callback.route = "callback/:subkey"
 resources.router.routes.callback.route = "callback/:subkey"
@@ -620,7 +620,7 @@ resources.router.routes.callback.defaults.module = "default"
 resources.router.routes.callback.defaults.controller = "callback"
 resources.router.routes.callback.defaults.controller = "callback"
 resources.router.routes.callback.defaults.action = "index"
 resources.router.routes.callback.defaults.action = "index"
 ]]></programlisting>
 ]]></programlisting>
-            
+
         </sect3>
         </sect3>
     </sect2>
     </sect2>
 </sect1>
 </sect1>