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

[DOCUMENTATION] English: fix compilation errors

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

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

@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- Reviewed: no -->
-<sect2 id="zend.application.available-resources.log">
+<sect2 id="zend.application.available-resources.mail">
     <title>Zend_Application_Resource_Mail</title>
 
     <para>

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

@@ -8,7 +8,7 @@
         available by default in <classname>Zend_Application</classname>.
     </para>
 
-    <xi:include href="Zend_Application-AvailableResources-CacheManager.xml" />
+    <xi:include href="Zend_Application-AvailableResources-Cache.xml" />
     <xi:include href="Zend_Application-AvailableResources-Db.xml" />
     <xi:include href="Zend_Application-AvailableResources-Frontcontroller.xml" />
     <xi:include href="Zend_Application-AvailableResources-Layout.xml" />

+ 3 - 3
documentation/manual/en/module_specs/Zend_Feed_Pubsubhubbub.xml

@@ -254,7 +254,7 @@ if (!$publisher->isSuccess()) {
                 demonstrated below:
             </para>
 
-            <programlisting lang="php"><![CDATA[
+            <programlisting language="php"><![CDATA[
     $storage = new Zend_Feed_Pubsubhubbub_Model_Subscription;
 
     $subscriber = new Zend_Feed_Pubsubhubbub_Subscriber;
@@ -493,7 +493,7 @@ if (!$publisher->isSuccess()) {
                 class. Using it is quite simple since most of its work is performed internally.
             </para>
 
-            <programlisting lang="php"><![CDATA[
+            <programlisting language="php"><![CDATA[
     $storage = new Zend_Feed_Pubsubhubbub_Model_Subscription;
     $callback = new Zend_Feed_Pubsubhubbub_Subscriber_Callback;
     $callback->setStorage($storage);
@@ -573,7 +573,7 @@ if (!$publisher->isSuccess()) {
             with the parameter being the key value available from the Router. The example below
             demonstrates this using a Zend Framework controller.</para>
 
-            <programlisting lang="php"><![CDATA[
+            <programlisting language="php"><![CDATA[
 class CallbackController extends Zend_Controller_Action
 {
 

+ 2 - 2
documentation/manual/en/module_specs/Zend_Validate-NotEmpty.xml

@@ -14,7 +14,7 @@
 
         <para>
             By default, this validator works differently than you would expect when you've worked
-            with <acronym>PHP</acronym>'s <functionname>empty()</functionname> function. In
+            with <acronym>PHP</acronym>'s <methodname>empty()</methodname> function. In
             particular, this validator will evaluate both the integer <emphasis>0</emphasis> and
             string '<emphasis>0</emphasis>' as empty.
         </para>
@@ -41,7 +41,7 @@ $result = $valid->isValid($value);
 
         <para>
             Some projects have differing opinions of what is considered an "empty" value: a string
-            with only whitespace might be considered empty, or <integer>0</integer> may be
+            with only whitespace might be considered empty, or <emphasis>0</emphasis> may be
             considered non-empty (particularly for boolean sequences). To accomodate differing
             needs, <classname>Zend_Validate_NotEmpty</classname> allows you to configure which types
             should be validated as empty and which not.