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

[MANUAL] English:

- manual fixes

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

+ 4 - 6
documentation/manual/en/module_specs/Zend_Auth_Adapter_Http.xml

@@ -1,11 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- Reviewed: no -->
 <sect1 id="zend.auth.adapter.http">
-
     <title>HTTP Authentication Adapter</title>
 
     <sect2 id="zend.auth.adapter.http.introduction">
-
         <title>Introduction</title>
 
         <para>
@@ -132,8 +130,8 @@
                     <row>
                         <entry><emphasis><property>digest_domains</property></emphasis></entry>
                         <entry>
-                            Yes, when <property>'accept_schemes'</property> contains
-                            <emphasis>'digest'</emphasis>
+                            Yes, when <property>accept_schemes</property> contains
+                            <emphasis>digest</emphasis>
                         </entry>
                         <entry>
                             Space-separated list of <acronym>URI</acronym>s for which the same
@@ -144,8 +142,8 @@
                     <row>
                         <entry><emphasis><property>nonce_timeout</property></emphasis></entry>
                         <entry>
-                            Yes, when <property>'accept_schemes'</property> contains
-                            <emphasis>'digest'</emphasis>
+                            Yes, when <property>accept_schemes</property> contains
+                            <emphasis>digest</emphasis>
                         </entry>
                         <entry>
                             Sets the number of seconds for which the nonce is valid. See notes

+ 5 - 5
documentation/manual/en/module_specs/Zend_Controller-Plugins-PutHandler.xml

@@ -5,10 +5,10 @@
 
     <para>
         <classname>Zend_Controller_Plugin_PutHandler</classname> provides a drop-in
-        plugin for marshalling <acronym>PUT</acronym> request bodies into request parameters, just
-        like <acronym>POST</acronym> request bodies. It will inspect the request and, if
-        <acronym>PUT</acronym>, will use parse_str to parse the raw <acronym>PUT</acronym> body into
-        an array of params which is then set on the request. E.g.,
+        plugin for marshalling <constant>PUT</constant> request bodies into request parameters, just
+        like <constant>POST</constant> request bodies. It will inspect the request and, if
+        <constant>PUT</constant>, will use parse_str to parse the raw <constant>PUT</constant> body
+        into an array of params which is then set on the request. E.g.,
     </para>
 
     <programlisting language="txt"><![CDATA[
@@ -28,7 +28,7 @@ $front->registerPlugin(new Zend_Controller_Plugin_PutHandler());
 ]]></programlisting>
 
     <para>
-        Then you can access the <acronym>PUT</acronym> body params by name from the request inside
+        Then you can access the <constant>PUT</constant> body params by name from the request inside
         your controller:
     </para>
 

+ 7 - 7
documentation/manual/en/module_specs/Zend_Controller-Router-Route-Rest.xml

@@ -28,39 +28,39 @@
             </thead>
             <tbody>
                 <row>
-                    <entry><acronym>GET</acronym></entry>
+                    <entry><constant>GET</constant></entry>
                     <entry><filename>/product/ratings/</filename></entry>
                     <entry><methodname>Product_RatingsController::indexAction()</methodname></entry>
                 </row>
                 <row>
-                    <entry><acronym>GET</acronym></entry>
+                    <entry><constant>GET</constant></entry>
                     <entry><filename>/product/ratings/:id</filename></entry>
                     <entry><methodname>Product_RatingsController::getAction()</methodname></entry>
                 </row>
                 <row>
-                    <entry><acronym>POST</acronym></entry>
+                    <entry><constant>POST</constant></entry>
                     <entry><filename>/product/ratings</filename></entry>
                     <entry><methodname>Product_RatingsController::postAction()</methodname></entry>
                 </row>
                 <row>
-                    <entry><acronym>PUT</acronym></entry>
+                    <entry><constant>PUT</constant></entry>
                     <entry><filename>/product/ratings/:id</filename></entry>
                     <entry><methodname>Product_RatingsController::putAction()</methodname></entry>
                 </row>
                 <row>
-                    <entry><acronym>DELETE</acronym></entry>
+                    <entry><constant>DELETE</constant></entry>
                     <entry><filename>/product/ratings/:id</filename></entry>
                     <entry>
                         <methodname>Product_RatingsController::deleteAction()</methodname>
                     </entry>
                 </row>
                 <row>
-                    <entry><acronym>POST</acronym></entry>
+                    <entry><constant>POST</constant></entry>
                     <entry><command>/product/ratings/:id?_method="PUT"</command></entry>
                     <entry><methodname>Product_RatingsController::putAction()</methodname></entry>
                 </row>
                 <row>
-                    <entry><acronym>POST</acronym></entry>
+                    <entry><constant>POST</constant></entry>
                     <entry><command>/product/ratings/:id?_method="DELETE"</command></entry>
                     <entry>
                         <methodname>Product_RatingsController::deleteAction()</methodname>