Преглед изворни кода

[DOCUMENTATION] English: fix compilation errors

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@22970 44c647ce-9c0f-0410-b52a-842ac1e357ba
mikaelkael пре 15 година
родитељ
комит
9158f805a0

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

@@ -38,7 +38,7 @@
         <listitem>
             <para>
                 <emphasis><property>options</property></emphasis> : the options are different for 
-                each adapter. See the section <xref linked="zend.translate.additional.options" /> for 
+                each adapter. See the section <xref linkend="zend.translate.additional.options" /> for 
                 more details.
             </para>
         </listitem>

+ 2 - 2
documentation/manual/en/module_specs/Zend_Application-AvailableResources-View.xml

@@ -36,7 +36,7 @@ resources.view.basePath = APPLICATION_PATH "/views/"
 
          <para>
              If you want to obtain more information about values, see <link 
-             linkend="zend.view.helpers.html#zend.view.helpers.initial.doctype">Doctype Helper 
+             linkend="zend.view.helpers.initial.doctype">Doctype Helper 
              </link>.
          </para>
  
@@ -58,7 +58,7 @@ resources.view.doctype = "HTML5"
 
          <para>
              If you want to obtain more information about values, see <link 
-             linkend="zend.view.helpers.html#zend.view.helpers.initial.headmeta">HeadMeta Helper
+             linkend="zend.view.helpers.initial.headmeta">HeadMeta Helper
              </link>.
          </para>
 

+ 1 - 1
documentation/manual/en/module_specs/Zend_Log-Factory.xml

@@ -302,7 +302,7 @@ $logger = Zend_Log::factory(array(
                             <entry><constant>NULL</constant></entry>
 
                             <entry>
-                                See the section <xref linked="zend.layout.options" />
+                                See the section <xref linkend="zend.layout.options" />
                             </entry>
                         </row>
                     

+ 3 - 1
documentation/manual/en/module_specs/Zend_Version.xml

@@ -32,10 +32,12 @@ $cmp = Zend_Version::compareVersion('2.0.0');
     <para>
         The static method <methodname>Zend_Version::getLatest()</methodname> provides the version 
         number of the last stable release available for download on the site 
-        <ulink linked="http://framework.zend.com/download/latest">Zend Framework</ulink>.
+        <ulink url="http://framework.zend.com/download/latest">Zend Framework</ulink>.
     </para>
 
     <example id="zend.version.latest.example">
+        <title>Example of the getLatest() Method</title>
+
         <programlisting language="php"><![CDATA[
 // returns 1.11.0 (or a later version)
 echo Zend_Version::getLatest();