Просмотр исходного кода

[DOCUMENTATION] English:

- manual fixes

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@17436 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas 16 лет назад
Родитель
Сommit
a9e4e6b4f3

+ 3 - 3
documentation/manual/en/module_specs/Zend_Application-AvailableResources-Navigation.xml

@@ -6,8 +6,8 @@
     <para>
         <classname>Zend_Application_Resource_Navigation</classname> can be used to configure
         a <classname>Zend_Navigation</classname> instance. Configuration options are per <link
-            linkend="zend.navigation.pages.common.options">the <classname>Zend_Navigation</classname>
-            options</link>.
+            linkend="zend.navigation.pages.common.options">the
+            <classname>Zend_Navigation</classname> options</link>.
     </para>
 
     <para>
@@ -23,7 +23,7 @@
             Below is a sample <acronym>INI</acronym> snippet showing how to
             configure the navigation resource.
         </para>
-    
+
         <programlisting language="ini"><![CDATA[
 resources.navigation.pages.page1.label = "Label of the first page"
 resources.navigation.pages.page1.route = "Route that belongs to the first page"

+ 1 - 1
documentation/manual/en/module_specs/Zend_Application-AvailableResources.xml

@@ -11,7 +11,7 @@
     <xi:include href="Zend_Application-AvailableResources-Db.xml" />
     <xi:include href="Zend_Application-AvailableResources-Frontcontroller.xml" />
     <xi:include href="Zend_Application-AvailableResources-Modules.xml" />
-    <xi:include href="Zend_Application-AvailableResources-Navigation.xml" />    
+    <xi:include href="Zend_Application-AvailableResources-Navigation.xml" />
     <xi:include href="Zend_Application-AvailableResources-Session.xml" />
     <xi:include href="Zend_Application-AvailableResources-View.xml" />
 </sect1>

+ 2 - 1
documentation/manual/en/module_specs/Zend_Application-Examples.xml

@@ -107,7 +107,8 @@ class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
     </itemizedlist>
 
     <para>
-        Resource plugins implement <classname>Zend_Application_Resource_ResourceAbstract</classname>,
+        Resource plugins implement
+        <classname>Zend_Application_Resource_ResourceAbstract</classname>,
         which defines simply that they allow injection of the caller and
         options, and that they have an <methodname>init()</methodname> method. As an
         example, a custom "View" bootstrap resource might look like the