Browse Source

[DOCUMENTATION] English:

- manual fixes (linelength)

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@15681 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas 16 years ago
parent
commit
92af61f6f9

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

@@ -13,9 +13,9 @@
     </para>
 
     <para>
-        Captchas can take a variety of forms, including asking logic questions,
-        presenting skewed fonts, and presenting multiple images and asking how they
-        relate. <classname>Zend_Captcha</classname> aims to provide a variety of back ends that may be
+        Captchas can take a variety of forms, including asking logic questions, presenting skewed
+        fonts, and presenting multiple images and asking how they relate.
+        <classname>Zend_Captcha</classname> aims to provide a variety of back ends that may be
         utilized either standalone or in conjunction with <classname>Zend_Form</classname>.
     </para>
 </sect1>

+ 15 - 11
documentation/manual/en/module_specs/Zend_Currency-Introduction.xml

@@ -5,10 +5,10 @@
     <title>Introduction to Zend_Currency</title>
 
     <para>
-        <classname>Zend_Currency</classname> is part of the strong support for i18n in Zend Framework. It handles all issues
-        related to currency, money representation and formatting. It also provides additional
-        methods which provide localized information on currencies, such as which currency is used
-        in which region.
+        <classname>Zend_Currency</classname> is part of the strong support for i18n in Zend
+        Framework. It handles all issues related to currency, money representation and formatting.
+        It also provides additional methods which provide localized information on currencies, such
+        as which currency is used in which region.
     </para>
 
     <sect2 id="zend.currency.introduction.list">
@@ -16,7 +16,8 @@
         <title>Why use Zend_Currency?</title>
 
         <para>
-            <classname>Zend_Currency</classname> offers the following functions for handling currency manipulations.
+            <classname>Zend_Currency</classname> offers the following functions for handling
+            currency manipulations.
         </para>
 
         <itemizedlist mark='opencircle'>
@@ -25,7 +26,8 @@
                     <emphasis>Complete Locale support</emphasis>
                 </para>
                 <para>
-                    <classname>Zend_Currency</classname> works with all available locales and therefore knows about over 100 different localized currencies. This includes
+                    <classname>Zend_Currency</classname> works with all available locales and
+                    therefore knows about over 100 different localized currencies. This includes
                     currency names, abbreviations, money signs and more.
                 </para>
             </listitem>
@@ -34,9 +36,10 @@
                     <emphasis>Reusable Currency Definitions</emphasis>
                 </para>
                 <para>
-                    <classname>Zend_Currency</classname> does not include the value of the currency. This is the reason why
-                    its functionality is not included in <classname>Zend_Locale_Format</classname>. <classname>Zend_Currency</classname> has the
-                    advantage that already defined currency representations can be reused.
+                    <classname>Zend_Currency</classname> does not include the value of the
+                    currency. This is the reason why its functionality is not included in
+                    <classname>Zend_Locale_Format</classname>. <classname>Zend_Currency</classname>
+                    has the advantage that already defined currency representations can be reused.
                 </para>
             </listitem>
             <listitem>
@@ -52,8 +55,9 @@
                     <emphasis>Additional Methods</emphasis>
                 </para>
                 <para>
-                    <classname>Zend_Currency</classname> includes additional methods that offer information about
-                    which regions a currency is used in or which currency is used in a specified region.
+                    <classname>Zend_Currency</classname> includes additional methods that offer
+                    information about which regions a currency is used in or which currency is used
+                    in a specified region.
                 </para>
             </listitem>
         </itemizedlist>

+ 4 - 2
documentation/manual/en/module_specs/Zend_Exception.xml

@@ -5,13 +5,15 @@
     <title>Using Exceptions</title>
 
     <para>
-        <classname>Zend_Exception</classname> is simply the base class for all exceptions thrown within Zend Framework.
+        <classname>Zend_Exception</classname> is simply the base class for all exceptions thrown
+        within Zend Framework.
     </para>
 
     <example id="zend.exception.using.example">
         <title>Catching an Exception</title>
         <para>
-            The following code listing demonstrates how to catch an exception thrown in a Zend Framework class:
+            The following code listing demonstrates how to catch an exception thrown in a Zend
+            Framework class:
         </para>
         <programlisting language="php"><![CDATA[
 try {

+ 17 - 14
documentation/manual/en/module_specs/Zend_Feed-Introduction.xml

@@ -3,31 +3,34 @@
 <sect1 id="zend.feed.introduction">
     <title>Introduction</title>
     <para>
-        <classname>Zend_Feed</classname> provides functionality for consuming RSS and Atom feeds. It provides a
-        natural syntax for accessing elements of feeds, feed attributes, and entry attributes.
-        <classname>Zend_Feed</classname> also has extensive support for modifying feed and entry structure with the
-        same natural syntax, and turning the result back into XML. In the future, this modification support
-        could provide support for the Atom Publishing Protocol.
+        <classname>Zend_Feed</classname> provides functionality for consuming RSS and Atom feeds.
+        It provides a natural syntax for accessing elements of feeds, feed attributes, and entry
+        attributes. <classname>Zend_Feed</classname> also has extensive support for modifying feed
+        and entry structure with the same natural syntax, and turning the result back into XML. In
+        the future, this modification support could provide support for the Atom Publishing
+        Protocol.
     </para>
 
     <para>
-        Programmatically, <classname>Zend_Feed</classname> consists of a base <classname>Zend_Feed</classname> class, abstract
-        <classname>Zend_Feed_Abstract</classname> and <classname>Zend_Feed_Entry_Abstract</classname> base classes for
-        representing Feeds and Entries, specific implementations of feeds and entries for RSS and Atom, and
-        a behind-the-scenes helper for making the natural syntax magic work.
+        Programmatically, <classname>Zend_Feed</classname> consists of a base
+        <classname>Zend_Feed</classname> class, abstract <classname>Zend_Feed_Abstract</classname>
+        and <classname>Zend_Feed_Entry_Abstract</classname> base classes for representing Feeds and
+        Entries, specific implementations of feeds and entries for RSS and Atom, and a
+        behind-the-scenes helper for making the natural syntax magic work.
     </para>
 
     <para>
-        In the example below, we demonstrate a simple use case of retrieving an RSS feed and saving relevant
-        portions of the feed data to a simple PHP array, which could then be used for printing the data, storing
-        to a database, etc.
+        In the example below, we demonstrate a simple use case of retrieving an RSS feed and
+        saving relevant portions of the feed data to a simple PHP array, which could then be used
+        for printing the data, storing to a database, etc.
     </para>
 
     <note>
         <title>Be aware</title>
         <para>
-            Many RSS feeds have different channel and item properties available. The RSS specification provides for
-            many optional properties, so be aware of this when writing code to work with RSS data.
+            Many RSS feeds have different channel and item properties available. The RSS
+            specification provides for many optional properties, so be aware of this when writing
+            code to work with RSS data.
         </para>
     </note>