Browse Source

[MANUAL] English:

- erased endline spaces

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

+ 7 - 7
documentation/manual/en/module_specs/Zend_Cache-Cache_Manager.xml

@@ -2,7 +2,7 @@
 <!-- Reviewed: no -->
 <!-- Reviewed: no -->
 <sect1 id="zend.cache.cache.manager">
 <sect1 id="zend.cache.cache.manager">
     <title>The Cache Manager</title>
     <title>The Cache Manager</title>
-    
+
     <para>
     <para>
         It's the nature of applications to require a multitude of caches of any
         It's the nature of applications to require a multitude of caches of any
         type often dependent on the controller, library or domain model being
         type often dependent on the controller, library or domain model being
@@ -15,7 +15,7 @@
         <classname>Zend_Controller_Action_Helper_Cache</classname> to allow simple
         <classname>Zend_Controller_Action_Helper_Cache</classname> to allow simple
         cache access and instantiation from controllers and other helpers.
         cache access and instantiation from controllers and other helpers.
     </para>
     </para>
-    
+
     <para>
     <para>
         The basic operation of this component is as follows. The Cache Manager allows
         The basic operation of this component is as follows. The Cache Manager allows
         users to setup "option templates", basically options for a set of named
         users to setup "option templates", basically options for a set of named
@@ -24,7 +24,7 @@
         a named cache (associated with an existing option template) using the method
         a named cache (associated with an existing option template) using the method
         <methodname>Zend_Cache_Manager::getCache()</methodname>.
         <methodname>Zend_Cache_Manager::getCache()</methodname>.
     </para>
     </para>
-    
+
     <programlisting language="php"><![CDATA[
     <programlisting language="php"><![CDATA[
 $manager = new Zend_Cache_Manager;
 $manager = new Zend_Cache_Manager;
 
 
@@ -56,7 +56,7 @@ $databaseCache = $manager->getCache('database');
         The Cache Manager also allows simple setting of pre-instantiated caches
         The Cache Manager also allows simple setting of pre-instantiated caches
         using the method <methodname>Zend_Cache_Manager::setCache()</methodname>.
         using the method <methodname>Zend_Cache_Manager::setCache()</methodname>.
     </para>
     </para>
-    
+
     <programlisting language="php"><![CDATA[
     <programlisting language="php"><![CDATA[
 $frontendOptions = array(
 $frontendOptions = array(
    'lifetime' => 7200,
    'lifetime' => 7200,
@@ -87,7 +87,7 @@ $databaseCache = $manager->getCache('database');
         on request, you can check for the existance of a name cache configuration
         on request, you can check for the existance of a name cache configuration
         or instance using the method <methodname>Zend_Cache_Manager::hasCache()</methodname>.
         or instance using the method <methodname>Zend_Cache_Manager::hasCache()</methodname>.
     </para>
     </para>
-    
+
     <programlisting language="php"><![CDATA[
     <programlisting language="php"><![CDATA[
 $manager = new Zend_Cache_Manager;
 $manager = new Zend_Cache_Manager;
 
 
@@ -126,7 +126,7 @@ if ($manager->hasCache('database')) {
         previously set cache templates on the fly before they are instantiated
         previously set cache templates on the fly before they are instantiated
         using the method <methodname>Zend_Cache_Manager::setTemplateOptions()</methodname>.
         using the method <methodname>Zend_Cache_Manager::setTemplateOptions()</methodname>.
     </para>
     </para>
-    
+
     <programlisting language="php"><![CDATA[
     <programlisting language="php"><![CDATA[
 $manager = new Zend_Cache_Manager;
 $manager = new Zend_Cache_Manager;
 
 
@@ -183,7 +183,7 @@ $databaseCache = $manager->getCache('database');
         Helper. Both of these are described in their relevant areas of the
         Helper. Both of these are described in their relevant areas of the
         Reference Guide.
         Reference Guide.
     </para>
     </para>
-    
+
     <para>
     <para>
         Out of the box, <classname>Zend_Cache_Manager</classname> already includes
         Out of the box, <classname>Zend_Cache_Manager</classname> already includes
         four pre-defined cache templates called "skeleton", "default", "page" and
         four pre-defined cache templates called "skeleton", "default", "page" and