فهرست منبع

[MANUAL] English:

- manual fixes

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@21130 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas 16 سال پیش
والد
کامیت
86a788578b

+ 14 - 10
documentation/manual/en/module_specs/Zend_Application-CoreFunctionality-Application.xml

@@ -135,17 +135,21 @@
                                             to determine what section of the
                                             configuration to pull.
                                         </para>
+
                                         <para>
-                                            As of 1.10, you may also pass multiple paths containing config
-                                            files to be merged into a single configuration. This assists in
-                                            reducing config duplication across many contexts which share
-                                            common settings (e.g. configs for HTTP, or CLI, each sharing some
-                                            characteristics but with their own conflicting values for others) or
-                                            merely splitting a long configuration across many smaller categorised
-                                            files. The parameter in this case is an array with a single key "configs"
-                                            whose value is an array of the files to merge. Note: this means
-                                            you either pass a literal path, or
-                                            array("configs"=>array("/path1","/path2"[,...])).
+                                            As of 1.10, you may also pass multiple paths containing
+                                            config files to be merged into a single configuration.
+                                            This assists in reducing config duplication across many
+                                            contexts which share common settings (e.g. configs for
+                                            <acronym>HTTP</acronym>, or <acronym>CLI</acronym>, each
+                                            sharing some characteristics but with their own
+                                            conflicting values for others) or merely splitting a
+                                            long configuration across many smaller categorised
+                                            files. The parameter in this case is an array with a
+                                            single key "configs" whose value is an array of the
+                                            files to merge. Note: this means you either pass a
+                                            literal path, or
+                                            <command>array("configs"=>array("/path1","/path2"[,...]))</command>.
                                         </para>
                                     </listitem>
 

+ 4 - 4
documentation/manual/en/module_specs/Zend_Cache-Frontends.xml

@@ -662,11 +662,11 @@ $result = $cache->foobar2('1', '2');
                     when the output buffering it uses is cleaned. In order for this to operate
                     correctly, it must be the final output buffer in the request. To guarantee
                     this, the output buffering used by the Dispatcher needs to be disabled by
-                    calling <classname>Zend_Controller_Front</classname>'s <methodname>setParam()
-                    </methodname> method, for example, $front->setParam('disableOutputBuffering',
-                    true) or adding
+                    calling <classname>Zend_Controller_Front</classname>'s
+                    <methodname>setParam()</methodname> method, for example,
+                    <command>$front->setParam('disableOutputBuffering', true);</command> or adding
                     "resources.frontcontroller.params.disableOutputBuffering = true"
-                    to your bootstrap configuration file (assumed INI) if using
+                    to your bootstrap configuration file (assumed <acronym>INI</acronym>) if using
                     <classname>Zend_Application</classname>.
                 </para>
             </note>

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

@@ -128,20 +128,22 @@ echo $config->database->params->dbname; // prints "dbname"
 
                         <entry>
                             Options array. The following keys are supported:
+
                             <itemizedlist>
                                 <listitem>
                                     <para>
                                         <emphasis><property>allowModifications</property></emphasis>:
-                                        Set to <constant>TRUE</constant> to allow
-                                        subsequent modification of loaded configuration data in-memory.
+                                        Set to <constant>TRUE</constant> to allow subsequent
+                                        modification of loaded configuration data in-memory.
                                         Defaults to <constant>NULL</constant>
                                     </para>
                                 </listitem>
 
                                 <listitem>
                                     <para>
-                                        <emphasis><property>nestSeparator</property></emphasis>: Set to
-                                        the character to be used as the nest separator. Defaults to "."
+                                        <emphasis><property>nestSeparator</property></emphasis>: Set
+                                        to the character to be used as the nest separator. Defaults
+                                        to "."
                                     </para>
                                 </listitem>
                             </itemizedlist>