Forráskód Böngészése

[DOCUMENTATION] English:

-  manual fixes

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@15974 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas 16 éve
szülő
commit
e3d0e1f4e1

+ 2 - 2
documentation/manual/en/module_specs/Zend_Cache-Theory.xml

@@ -11,8 +11,8 @@
         function (eg. <methodname>Zend_Cache_Core::get()</methodname>) is always designed to return
         false for a cache miss if that makes sense for the nature of a frontend. That enables
         end-users to wrap parts of the code they would like to cache (and skip) in
-        <emphasis>if(){ ... }</emphasis> statements where the condition is a
-        <classname>Zend_Cache</classname> method itself. On the end if these blocks you must save
+        <emphasis><methodname>if()</methodname>{ ... }</emphasis> statements where the condition is
+        a <classname>Zend_Cache</classname> method itself. On the end if these blocks you must save
         what you've generated, however (eg. <methodname>Zend_Cache_Core::save()</methodname>).
     </para>
     <note><para>

+ 10 - 9
documentation/manual/en/module_specs/Zend_Captcha-Operation.xml

@@ -4,7 +4,7 @@
     <title>Captcha Operation</title>
 
     <para>
-        All CAPTCHA adapter implement
+        All <acronym>CAPTCHA</acronym> adapter implement
         <classname>Zend_Captcha_Adapter</classname>, which looks like the following:
     </para>
 
@@ -32,14 +32,15 @@ interface Zend_Captcha_Adapter extends Zend_Validate_Interface
 
     <para>
         The name setter and getter are used to specify and retrieve the
-        CAPTCHA identifier. <methodname>getDecorator()</methodname> can be used to specify a
-        <classname>Zend_Form</classname> decorator either by name or returning an actual decorator
-        object. The most interesting methods are <methodname>generate()</methodname>
-        and <methodname>render()</methodname>. <methodname>generate()</methodname> is used to
-        create the CAPTCHA token. This process typically will store the token in the
-        session so that you may compare against it in subsequent requests.
-        <methodname>render()</methodname> is used to render the information that represents
-        the CAPTCHA- be it an image, a figlet, a logic problem, or some other CAPTCHA.
+        <acronym>CAPTCHA</acronym> identifier. <methodname>getDecorator()</methodname> can be used
+        to specify a <classname>Zend_Form</classname> decorator either by name or returning an
+        actual decorator object. The most interesting methods are
+        <methodname>generate()</methodname> and <methodname>render()</methodname>.
+        <methodname>generate()</methodname> is used to create the <acronym>CAPTCHA</acronym>
+        token. This process typically will store the token in the session so that you may compare
+        against it in subsequent requests. <methodname>render()</methodname> is used to render the
+        information that represents the <acronym>CAPTCHA</acronym>, be it an image, a figlet, a
+        logic problem, or some other <acronym>CAPTCHA</acronym>.
     </para>
 
     <para>