Parcourir la source

[MANUAL] English:

- several manual fixes

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@22748 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas il y a 15 ans
Parent
commit
c1e82016fe

+ 3 - 3
documentation/manual/en/module_specs/Zend_Layout-Options.xml

@@ -102,8 +102,8 @@
         <title>helperClass and pluginClass must be passed to startMvc()</title>
         <title>helperClass and pluginClass must be passed to startMvc()</title>
 
 
         <para>
         <para>
-            In order for the <code>helperClass</code> and
-            <code>pluginClass</code> settings to have effect, they must be
+            In order for the <property>helperClass</property> and
+            <property>pluginClass</property> settings to have effect, they must be
             passed in as options to <methodname>startMvc()</methodname>; if set later, they
             passed in as options to <methodname>startMvc()</methodname>; if set later, they
             have no affect.
             have no affect.
         </para>
         </para>
@@ -197,7 +197,7 @@ $layout->setConfig($options);
 
 
             <para>
             <para>
                 Note, however, that certain options, such as
                 Note, however, that certain options, such as
-                <code>pluginClass</code> and <code>helperClass</code>, will have
+                <property>pluginClass</property> and <property>helperClass</property>, will have
                 no affect when passed using this method; they need to be passed
                 no affect when passed using this method; they need to be passed
                 to the constructor or <methodname>startMvc()</methodname> method.
                 to the constructor or <methodname>startMvc()</methodname> method.
             </para>
             </para>

+ 2 - 1
documentation/manual/en/module_specs/Zend_Mail-Encoding.xml

@@ -17,7 +17,8 @@
         Header Encoding, especially the encoding of the subject, is a tricky topic.
         Header Encoding, especially the encoding of the subject, is a tricky topic.
         <classname>Zend_Mime</classname> currently implements its own algorithm to encode quoted
         <classname>Zend_Mime</classname> currently implements its own algorithm to encode quoted
         printable headers according to RFC-2045. This due to the problems of
         printable headers according to RFC-2045. This due to the problems of
-        <code>iconv_mime_encode</code> and <code>mb_encode_mimeheader</code> with regards to certain
+        <methodname>iconv_mime_encode()</methodname> and
+        <methodname>mb_encode_mimeheader()</methodname> with regards to certain
         charsets. This algorithm only breaks the header at spaces, which might lead to headers that
         charsets. This algorithm only breaks the header at spaces, which might lead to headers that
         far exceed the suggested length of 76 chars. For this cases it is suggested to switch to
         far exceed the suggested length of 76 chars. For this cases it is suggested to switch to
         BASE64 header encoding same as the following example describes:
         BASE64 header encoding same as the following example describes:

+ 2 - 2
documentation/manual/en/module_specs/Zend_Measure-Creation.xml

@@ -6,9 +6,9 @@
     <para>
     <para>
         When creating a measurement object, <classname>Zend_Measure_*</classname> methods expect the
         When creating a measurement object, <classname>Zend_Measure_*</classname> methods expect the
         input/original measurement data value as the first parameter. This can be a
         input/original measurement data value as the first parameter. This can be a
-        <link linkend="zend.measure.creation.number"><code>numeric argument</code></link>, a
+        <link linkend="zend.measure.creation.number">numeric argument</link>, a
         <link linkend="zend.measure.creation.string"><type>String</type></link> without units, or a
         <link linkend="zend.measure.creation.string"><type>String</type></link> without units, or a
-        <link linkend="zend.measure.creation.localized"><code>localized string</code> with unit(s)
+        <link linkend="zend.measure.creation.localized">localized string with unit(s)
             specified.</link> The second parameter defines the type of the measurement. Both
             specified.</link> The second parameter defines the type of the measurement. Both
         parameters are mandatory. The language may optionally be specified as the third parameter.
         parameters are mandatory. The language may optionally be specified as the third parameter.
     </para>
     </para>

+ 5 - 4
documentation/manual/en/module_specs/Zend_Measure-Introduction.xml

@@ -37,16 +37,17 @@ echo $unit->convertTo(Zend_Measure_Length::YARD);
         <classname>Zend_Measure_&lt;TYPE&gt;::NAME_OF_UNIT</classname>, where &lt;TYPE&gt;
         <classname>Zend_Measure_&lt;TYPE&gt;::NAME_OF_UNIT</classname>, where &lt;TYPE&gt;
         corresponds to a well-known physical or numerical property. . Every unit of measurement
         corresponds to a well-known physical or numerical property. . Every unit of measurement
         consists of a conversion factor and a display unit. A detailed list can be found in the
         consists of a conversion factor and a display unit. A detailed list can be found in the
-        chapter <link linkend="zend.measure.types"><code>Types of measurements</code></link>.
+        chapter <link linkend="zend.measure.types">Types of measurements</link>.
     </para>
     </para>
 
 
     <example id="zend.measure.introduction.example-2">
     <example id="zend.measure.introduction.example-2">
         <title>The meter measurement</title>
         <title>The meter measurement</title>
 
 
         <para>
         <para>
-            The <code>meter</code> is used for measuring lengths, so its type constant can be found
-            in the <code>Length</code> class. To refer to this unit of measurement, the notation
-            <constant>Length::METER</constant> must be used. The display unit is <code>m</code>.
+            The <emphasis>meter</emphasis> is used for measuring lengths, so its type constant can
+            be found in the <classname>Length</classname> class. To refer to this unit of
+            measurement, the notation <constant>Length::METER</constant> must be used. The display
+            unit is <emphasis>m</emphasis>.
         </para>
         </para>
 
 
         <programlisting language="php"><![CDATA[
         <programlisting language="php"><![CDATA[

+ 1 - 1
documentation/manual/en/module_specs/Zend_Memory-MemoryObjects.xml

@@ -65,7 +65,7 @@ $memObject = $memoryManager->createLocked($data);
         <title>Memory container 'value' property</title>
         <title>Memory container 'value' property</title>
 
 
         <para>
         <para>
-            Use the memory container (movable or locked) '<code>value</code>'
+            Use the memory container (movable or locked) '<property>value</property>'
             property to operate with memory object data:
             property to operate with memory object data:
         </para>
         </para>
 
 

+ 2 - 2
documentation/manual/en/module_specs/Zend_Memory-Overview.xml

@@ -103,13 +103,13 @@ $loadedFiles[$index3]->value[$charIndex] = '_';
             <title>Memory container</title>
             <title>Memory container</title>
 
 
             <para>
             <para>
-                The memory container has a virtual or actual <code>value</code>
+                The memory container has a virtual or actual <property>value</property>
                 attribute of string type. This attribute contains the data value
                 attribute of string type. This attribute contains the data value
                 specified at memory object creation time.
                 specified at memory object creation time.
             </para>
             </para>
 
 
             <para>
             <para>
-                You can operate with this <code>value</code> attribute as
+                You can operate with this <property>value</property> attribute as
                 an object property:
                 an object property:
             </para>
             </para>