Browse Source

[DOCUMENTATION] English:
- manual fixes

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@16945 44c647ce-9c0f-0410-b52a-842ac1e357ba

mikaelkael 16 years ago
parent
commit
3ab08bc761
1 changed files with 11 additions and 9 deletions
  1. 11 9
      documentation/manual/en/module_specs/Zend_Config_Xml.xml

+ 11 - 9
documentation/manual/en/module_specs/Zend_Config_Xml.xml

@@ -169,25 +169,27 @@ $config = new Zend_Config_Xml($string, 'staging');
 <note>
         <title>Zend_Config XML namespace</title>
         <para>
-            Zend_Config comes with it's own XML namespace, which adds additional
-            functionality to the parsing process. To take advantage of it, you have
-            to define a namespace with the namespace URI
-            <code>http://framework.zend.com/xml/zend-config-xml/1.0/</code> in
+            <classname>Zend_Config</classname> comes with it's own <acronym>XML</acronym>
+            namespace, which adds additional functionality to the parsing process. To take advantage
+            of it, you have to define a namespace with the namespace <acronym>URI</acronym>
+            <filename>http://framework.zend.com/xml/zend-config-xml/1.0/</filename> in
             your config root node.
         </para>
-        
+
         <para>
-            With the namespace enabled, you can now use PHP constants within
-            your configuration files. Additionally, the <code>extends</code>
+            With the namespace enabled, you can now use <acronym>PHP</acronym> constants within
+            your configuration files. Additionally, the <emphasis>extends</emphasis>
             attribute was moved to the new namespace and is deprecated in the
-            NULL namespace. It will be completly removed there in ZF 2.0.
+            <constant>NULL</constant> namespace. It will be completly removed there in
+            Zend Framework 2.0.
         </para>
         <programlisting language="xml"><![CDATA[
 $string = <<<EOT
 <?xml version="1.0"?>
 <config xmlns:zf="http://framework.zend.com/xml/zend-config-xml/1.0/">
     <production>
-        <includePath><zf:const zf:name="APPLICATION_PATH"/>/library</includePath>
+        <includePath>
+            <zf:const zf:name="APPLICATION_PATH"/>/library</includePath>
         <db>
             <adapter value="pdo_mysql"/>
             <params>