فهرست منبع

[MANUAL] English:

- manual fixes

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

+ 4 - 4
documentation/manual/en/module_specs/Zend_Filter-RealPath.xml

@@ -5,15 +5,15 @@
 
     <para>
         This filter will resolve given links and pathnames and returns canonicalized absolute
-        pathnames. References to <filename>'/./'</filename>, <filename>'/../'</filename> and extra
-        <filename>'/'</filename> characters in the input path will be stripped. The resulting path
-        will not have any symbolic link, <filename>'/./'</filename> or <filename>'/../'</filename>
+        pathnames. References to '<filename>/./</filename>', '<filename>/../</filename>' and extra
+        '<filename>/</filename>' characters in the input path will be stripped. The resulting path
+        will not have any symbolic link, '<filename>/./</filename>' or '<filename>/../</filename>'
         character.
     </para>
 
     <para>
         <classname>Zend_Filter_RealPath</classname> will return <constant>FALSE</constant> on
-        failure, e.g. if the file does not exist. On BSD systems
+        failure, e.g. if the file does not exist. On <acronym>BSD</acronym> systems
         <classname>Zend_Filter_RealPath</classname> doesn't fail if only the last path component
         doesn't exist, while other systems will return <constant>FALSE</constant>.
     </para>

+ 4 - 4
documentation/manual/en/module_specs/Zend_Filter-Set.xml

@@ -113,10 +113,10 @@
         <title>StripTags</title>
 
         <para>
-            This filter returns the input string, with all HTML and <acronym>PHP</acronym> tags
-            stripped from it, except those that have been explicitly allowed. In addition to the
-            ability to specify which tags are allowed, developers can specify which attributes are
-            allowed across all allowed tags and for specific tags only.
+            This filter returns the input string, with all <acronym>HTML</acronym> and
+            <acronym>PHP</acronym> tags stripped from it, except those that have been explicitly
+            allowed. In addition to the ability to specify which tags are allowed, developers can
+            specify which attributes are allowed across all allowed tags and for specific tags only.
         </para>
     </sect2>
 </sect1>

+ 5 - 5
documentation/manual/en/module_specs/Zend_Filter-WritingFilters.xml

@@ -18,8 +18,9 @@
 
     <para>
         The following example demonstrates how to write a custom filter:
+    </para>
 
-        <programlisting language="php"><![CDATA[
+    <programlisting language="php"><![CDATA[
 class MyFilter implements Zend_Filter_Interface
 {
     public function filter($value)
@@ -30,17 +31,16 @@ class MyFilter implements Zend_Filter_Interface
     }
 }
 ]]></programlisting>
-    </para>
 
     <para>
         To add an instance of the filter defined above to a filter chain:
+    </para>
 
-        <programlisting language="php"><![CDATA[
+    <programlisting language="php"><![CDATA[
 $filterChain = new Zend_Filter();
 $filterChain->addFilter(new MyFilter());
 ]]></programlisting>
-    </para>
 </sect1>
 <!--
 vim:se ts=4 sw=4 et:
--->
+-->