Sfoglia il codice sorgente

[DOCUMENTATION] English:

- deleted multiple whitespaces

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@16444 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas 16 anni fa
parent
commit
3d50e47cb8

+ 1 - 1
documentation/manual/en/module_specs/Zend_Test-PHPUnit-Bootstrapping.xml

@@ -80,7 +80,7 @@ class UserControllerTest extends Zend_Test_PHPUnit_ControllerTestCase
 
 
     <para>
     <para>
         During normal operation, the <code>setUp()</code> method will bootstrap
         During normal operation, the <code>setUp()</code> method will bootstrap
-        the application. This process first  will include cleaning up the
+        the application. This process first will include cleaning up the
         environment to a clean request state, resetting any plugins and
         environment to a clean request state, resetting any plugins and
         helpers, resetting the front controller instance, and creating new
         helpers, resetting the front controller instance, and creating new
         request and response objects. Once this is done, it will then either
         request and response objects. Once this is done, it will then either

+ 1 - 1
documentation/manual/en/module_specs/Zend_Tool_Framework-WritingProviders.xml

@@ -53,7 +53,7 @@ Hello from my provider!
 
 
         <para>
         <para>
             The above "Hello World" example is great for simple commands, but
             The above "Hello World" example is great for simple commands, but
-            what about something more advanced?  As your scripting and tooling
+            what about something more advanced? As your scripting and tooling
             needs grow, you might find that you need the ability to accept
             needs grow, you might find that you need the ability to accept
             variables. Much like function signatures have parameters, your
             variables. Much like function signatures have parameters, your
             tooling requests can also accept parameters.
             tooling requests can also accept parameters.

+ 1 - 1
documentation/manual/en/module_specs/Zend_Validate-Db.xml

@@ -64,7 +64,7 @@ if ($validator->isValid($username)) {
 
 
         <para>
         <para>
             <classname>Zend_Validate_Db_RecordExists</classname> and
             <classname>Zend_Validate_Db_RecordExists</classname> and
-            <classname>Zend_Validate_Db_NoRecordExists</classname>  also provide a means
+            <classname>Zend_Validate_Db_NoRecordExists</classname> also provide a means
             to test the database, excluding a part of the table, either by
             to test the database, excluding a part of the table, either by
             providing a where clause as a string, or an array with the keys
             providing a where clause as a string, or an array with the keys
             "field" and "value".
             "field" and "value".

+ 1 - 1
documentation/manual/en/module_specs/Zend_View-Controllers.xml

@@ -34,7 +34,7 @@ $view->c = "Sea";
 
 
         <para>
         <para>
             The assign() method lets you assign from an array or object "in
             The assign() method lets you assign from an array or object "in
-            bulk."  The following examples have the same effect as the above
+            bulk". The following examples have the same effect as the above
             one-by-one property assignments.
             one-by-one property assignments.
         </para>
         </para>
 
 

+ 6 - 3
documentation/manual/en/module_specs/Zend_View-Helpers-Navigation.xml

@@ -1444,15 +1444,18 @@ Output:
                 Calling <code>renderSubMenu($container, $ulClass, $indent)</code>
                 Calling <code>renderSubMenu($container, $ulClass, $indent)</code>
                 is equivalent to calling <code>renderMenu($container, $options)</code>
                 is equivalent to calling <code>renderMenu($container, $options)</code>
                 with the following options:
                 with the following options:
-<code>array(
+            </para>
+
+            <programlisting language="php"><![CDATA[
+array(
     'ulClass'          => $ulClass,
     'ulClass'          => $ulClass,
     'indent'           => $indent,
     'indent'           => $indent,
     'minDepth'         => null,
     'minDepth'         => null,
     'maxDepth'         => null,
     'maxDepth'         => null,
     'onlyActiveBranch' => true,
     'onlyActiveBranch' => true,
     'renderParents'    => false
     'renderParents'    => false
-)</code>
-            </para>
+);
+]]></programlisting>
 
 
             <programlisting language="php"><![CDATA[
             <programlisting language="php"><![CDATA[
 <?php
 <?php

+ 2 - 2
documentation/manual/en/module_specs/Zend_View-Introduction.xml

@@ -72,12 +72,12 @@ echo $view->render('booklist.php');
 
 
         <para>
         <para>
             Now we need the associated view script, "booklist.php".
             Now we need the associated view script, "booklist.php".
-            This is a PHP script like any other, with one exception:  it
+            This is a PHP script like any other, with one exception: it
             executes inside the scope of the <classname>Zend_View</classname> instance, which
             executes inside the scope of the <classname>Zend_View</classname> instance, which
             means that references to $this point to the <classname>Zend_View</classname>
             means that references to $this point to the <classname>Zend_View</classname>
             instance properties and methods. (Variables assigned to the
             instance properties and methods. (Variables assigned to the
             instance by the controller are public properties of the
             instance by the controller are public properties of the
-            <classname>Zend_View</classname> instance.)  Thus, a very basic view script could
+            <classname>Zend_View</classname> instance). Thus, a very basic view script could
             look like this:
             look like this:
         </para>
         </para>