Author: fabien
Date: 2010-03-23 19:11:03 +0100 (Tue, 23 Mar 2010)
New Revision: 28731

Modified:
   
doc/branches/1.4/more-with-symfony/en/14-Playing-with-Symfony-Config-Cache.markdown
   
doc/branches/1.4/more-with-symfony/es/14-Playing-with-Symfony-Config-Cache.markdown
   
doc/branches/1.4/more-with-symfony/fr/14-Playing-with-Symfony-Config-Cache.markdown
   
doc/branches/1.4/more-with-symfony/it/14-Playing-with-Symfony-Config-Cache.markdown
   
doc/branches/1.4/more-with-symfony/ja/14-Playing-with-Symfony-Config-Cache.markdown
   
doc/branches/1.4/more-with-symfony/pt/14-Playing-with-Symfony-Config-Cache.markdown
Log:
[doc] fixed typo (closes #8416)

Modified: 
doc/branches/1.4/more-with-symfony/en/14-Playing-with-Symfony-Config-Cache.markdown
===================================================================
--- 
doc/branches/1.4/more-with-symfony/en/14-Playing-with-Symfony-Config-Cache.markdown
 2010-03-23 18:09:56 UTC (rev 28730)
+++ 
doc/branches/1.4/more-with-symfony/en/14-Playing-with-Symfony-Config-Cache.markdown
 2010-03-23 18:11:03 UTC (rev 28731)
@@ -419,8 +419,8 @@
 `::applyInheritance()` method that encapsulates this logic:
 
     [php]
-    // lib/config/sfFormYamlEnhancementsConfigHander.class.php
-    class sfFormYamlEnhancementsConfigHander extends sfYamlConfigHandler
+    // lib/config/sfFormYamlEnhancementsConfigHandler.class.php
+    class sfFormYamlEnhancementsConfigHandler extends sfYamlConfigHandler
     {
       public function execute($configFiles)
       {
@@ -483,7 +483,7 @@
       {
         $this->configCache = $configCache;
         $this->configCache->registerConfigHandler('config/forms.yml',
-          'sfFormYamlEnhancementsConfigHander');
+          'sfFormYamlEnhancementsConfigHandler');
       }
 
       // ...
@@ -587,7 +587,7 @@
 custom config handler in a new "worker" class.
 
     [php]
-    class sfFormYamlEnhancementsConfigHander extends sfYamlConfigHandler
+    class sfFormYamlEnhancementsConfigHandler extends sfYamlConfigHandler
     {
       // ...
 
@@ -646,7 +646,7 @@
 to the cache directory.
 
     [php]
-    class sfFormYamlEnhancementsConfigHander extends sfYamlConfigHandler
+    class sfFormYamlEnhancementsConfigHandler extends sfYamlConfigHandler
     {
       public function execute($configFiles)
       {
@@ -812,7 +812,7 @@
         sfFormYamlEnhancementsPluginConfiguration.class.php
       lib/
         config/
-          sfFormYamlEnhancementsConfigHander.class.php
+          sfFormYamlEnhancementsConfigHandler.class.php
         form/
           sfFormYamlEnhancer.class.php
       test/
@@ -919,7 +919,7 @@
       {
         if (!class_exists('sfFormYamlEnhancementsWorker', false))
         {
-          $configHandler = new sfFormYamlEnhancementsConfigHander();
+          $configHandler = new sfFormYamlEnhancementsConfigHandler();
           $code = 
$configHandler->execute(array(dirname(__FILE__).'/../../fixtures/forms.yml'));
 
           $file = tempnam(sys_get_temp_dir(), 'sfFormYamlEnhancementsWorker');

Modified: 
doc/branches/1.4/more-with-symfony/es/14-Playing-with-Symfony-Config-Cache.markdown
===================================================================
--- 
doc/branches/1.4/more-with-symfony/es/14-Playing-with-Symfony-Config-Cache.markdown
 2010-03-23 18:09:56 UTC (rev 28730)
+++ 
doc/branches/1.4/more-with-symfony/es/14-Playing-with-Symfony-Config-Cache.markdown
 2010-03-23 18:11:03 UTC (rev 28731)
@@ -440,8 +440,8 @@
 método llamado `::applyInheritance()` para encapsular toda esta lógica:
 
     [php]
-    // lib/config/sfFormYamlEnhancementsConfigHander.class.php
-    class sfFormYamlEnhancementsConfigHander extends sfYamlConfigHandler
+    // lib/config/sfFormYamlEnhancementsConfigHandler.class.php
+    class sfFormYamlEnhancementsConfigHandler extends sfYamlConfigHandler
     {
       public function execute($configFiles)
       {
@@ -505,7 +505,7 @@
       {
         $this->configCache = $configCache;
         $this->configCache->registerConfigHandler('config/forms.yml',
-          'sfFormYamlEnhancementsConfigHander');
+          'sfFormYamlEnhancementsConfigHandler');
       }
 
       // ...
@@ -612,7 +612,7 @@
 propio de configuración.
 
     [php]
-    class sfFormYamlEnhancementsConfigHander extends sfYamlConfigHandler
+    class sfFormYamlEnhancementsConfigHandler extends sfYamlConfigHandler
     {
       // ...
 
@@ -673,7 +673,7 @@
 se guarda en el directorio de la cache.
 
     [php]
-    class sfFormYamlEnhancementsConfigHander extends sfYamlConfigHandler
+    class sfFormYamlEnhancementsConfigHandler extends sfYamlConfigHandler
     {
       public function execute($configFiles)
       {
@@ -842,7 +842,7 @@
         sfFormYamlEnhancementsPluginConfiguration.class.php
       lib/
         config/
-          sfFormYamlEnhancementsConfigHander.class.php
+          sfFormYamlEnhancementsConfigHandler.class.php
         form/
           sfFormYamlEnhancer.class.php
       test/
@@ -950,7 +950,7 @@
       {
         if (!class_exists('sfFormYamlEnhancementsWorker', false))
         {
-          $configHandler = new sfFormYamlEnhancementsConfigHander();
+          $configHandler = new sfFormYamlEnhancementsConfigHandler();
           $code = 
$configHandler->execute(array(dirname(__FILE__).'/../../fixtures/forms.yml'));
 
           $file = tempnam(sys_get_temp_dir(), 'sfFormYamlEnhancementsWorker');

Modified: 
doc/branches/1.4/more-with-symfony/fr/14-Playing-with-Symfony-Config-Cache.markdown
===================================================================
--- 
doc/branches/1.4/more-with-symfony/fr/14-Playing-with-Symfony-Config-Cache.markdown
 2010-03-23 18:09:56 UTC (rev 28730)
+++ 
doc/branches/1.4/more-with-symfony/fr/14-Playing-with-Symfony-Config-Cache.markdown
 2010-03-23 18:11:03 UTC (rev 28731)
@@ -340,8 +340,8 @@
 La méthode statique `getConfiguration()` du gestionnaire aura besoin d'une 
méthode personnalisée afin de regrouper les configurations des classes dont 
elle hérite. Par conséquent, il convient d'écrire une méthode 
`applyInheritance()` qui appliquera cette logique.
 
     [php]
-    // lib/config/sfFormYamlEnhancementsConfigHander.class.php
-    class sfFormYamlEnhancementsConfigHander extends sfYamlConfigHandler
+    // lib/config/sfFormYamlEnhancementsConfigHandler.class.php
+    class sfFormYamlEnhancementsConfigHandler extends sfYamlConfigHandler
     {
       public function execute($configFiles)
       {
@@ -395,7 +395,7 @@
       public function __construct(sfConfigCache $configCache)
       {
         $this->configCache = $configCache;
-        $this->configCache->registerConfigHandler('config/forms.yml', 
'sfFormYamlEnhancementsConfigHander');
+        $this->configCache->registerConfigHandler('config/forms.yml', 
'sfFormYamlEnhancementsConfigHandler');
       }
 
       // ...
@@ -485,7 +485,7 @@
 Pour ce faire, une version personnalisée doit être écrite pour chaque méthode 
de chaque classe. Ces méthodes seront générées par le gestionnaire de 
configuration personnalisé dans une nouvelle classe métier.
 
     [php]
-    class sfFormYamlEnhancementsConfigHander extends sfYamlConfigHandler
+    class sfFormYamlEnhancementsConfigHandler extends sfYamlConfigHandler
     {
       // ...
 
@@ -539,7 +539,7 @@
 Le code généré est ensuite placé dans une définition de classe sauvegardée 
dans le répertoire de cache.
 
     [php]
-    class sfFormYamlEnhancementsConfigHander extends sfYamlConfigHandler
+    class sfFormYamlEnhancementsConfigHandler extends sfYamlConfigHandler
     {
       public function execute($configFiles)
       {
@@ -689,7 +689,7 @@
         sfFormYamlEnhancementsPluginConfiguration.class.php
       lib/
         config/
-          sfFormYamlEnhancementsConfigHander.class.php
+          sfFormYamlEnhancementsConfigHandler.class.php
         form/
           sfFormYamlEnhancer.class.php
       test/
@@ -781,7 +781,7 @@
       {
         if (!class_exists('sfFormYamlEnhancementsWorker', false))
         {
-          $configHandler = new sfFormYamlEnhancementsConfigHander();
+          $configHandler = new sfFormYamlEnhancementsConfigHandler();
           $code = 
$configHandler->execute(array(dirname(__FILE__).'/../../fixtures/forms.yml'));
 
           $file = tempnam(sys_get_temp_dir(), 'sfFormYamlEnhancementsWorker');

Modified: 
doc/branches/1.4/more-with-symfony/it/14-Playing-with-Symfony-Config-Cache.markdown
===================================================================
--- 
doc/branches/1.4/more-with-symfony/it/14-Playing-with-Symfony-Config-Cache.markdown
 2010-03-23 18:09:56 UTC (rev 28730)
+++ 
doc/branches/1.4/more-with-symfony/it/14-Playing-with-Symfony-Config-Cache.markdown
 2010-03-23 18:11:03 UTC (rev 28731)
@@ -431,8 +431,8 @@
 incapsuli questa logica:
 
     [php]
-    // lib/config/sfFormYamlEnhancementsConfigHander.class.php
-    class sfFormYamlEnhancementsConfigHander extends sfYamlConfigHandler
+    // lib/config/sfFormYamlEnhancementsConfigHandler.class.php
+    class sfFormYamlEnhancementsConfigHandler extends sfYamlConfigHandler
     {
       public function execute($configFiles)
       {
@@ -496,7 +496,7 @@
       {
         $this->configCache = $configCache;
         $this->configCache->registerConfigHandler('config/forms.yml',
-          'sfFormYamlEnhancementsConfigHander');
+          'sfFormYamlEnhancementsConfigHandler');
       }
 
       // ...
@@ -602,7 +602,7 @@
 personalizzato, in una nuova classe "worker".
 
     [php]
-    class sfFormYamlEnhancementsConfigHander extends sfYamlConfigHandler
+    class sfFormYamlEnhancementsConfigHandler extends sfYamlConfigHandler
     {
       // ...
 
@@ -661,7 +661,7 @@
 che viene quindi salvata nella cartella della cache.
 
     [php]
-    class sfFormYamlEnhancementsConfigHander extends sfYamlConfigHandler
+    class sfFormYamlEnhancementsConfigHandler extends sfYamlConfigHandler
     {
       public function execute($configFiles)
       {
@@ -829,7 +829,7 @@
         sfFormYamlEnhancementsPluginConfiguration.class.php
       lib/
         config/
-          sfFormYamlEnhancementsConfigHander.class.php
+          sfFormYamlEnhancementsConfigHandler.class.php
         form/
           sfFormYamlEnhancer.class.php
       test/
@@ -936,7 +936,7 @@
       {
         if (!class_exists('sfFormYamlEnhancementsWorker', false))
         {
-          $configHandler = new sfFormYamlEnhancementsConfigHander();
+          $configHandler = new sfFormYamlEnhancementsConfigHandler();
           $code = 
$configHandler->execute(array(dirname(__FILE__).'/../../fixtures/forms.yml'));
 
           $file = tempnam(sys_get_temp_dir(), 'sfFormYamlEnhancementsWorker');

Modified: 
doc/branches/1.4/more-with-symfony/ja/14-Playing-with-Symfony-Config-Cache.markdown
===================================================================
(Binary files differ)

Modified: 
doc/branches/1.4/more-with-symfony/pt/14-Playing-with-Symfony-Config-Cache.markdown
===================================================================
--- 
doc/branches/1.4/more-with-symfony/pt/14-Playing-with-Symfony-Config-Cache.markdown
 2010-03-23 18:09:56 UTC (rev 28730)
+++ 
doc/branches/1.4/more-with-symfony/pt/14-Playing-with-Symfony-Config-Cache.markdown
 2010-03-23 18:11:03 UTC (rev 28731)
@@ -419,8 +419,8 @@
 `::applyInheritance()` que encapsula esta lógica:
 
     [php]
-    // lib/config/sfFormYamlEnhancementsConfigHander.class.php
-    class sfFormYamlEnhancementsConfigHander extends sfYamlConfigHandler
+    // lib/config/sfFormYamlEnhancementsConfigHandler.class.php
+    class sfFormYamlEnhancementsConfigHandler extends sfYamlConfigHandler
     {
       public function execute($configFiles)
       {
@@ -483,7 +483,7 @@
       {
         $this->configCache = $configCache;
         $this->configCache->registerConfigHandler('config/forms.yml',
-          'sfFormYamlEnhancementsConfigHander');
+          'sfFormYamlEnhancementsConfigHandler');
       }
 
       // ...
@@ -587,7 +587,7 @@
 manipulador personalizado de configuração em uma nova classe "trabalhadora".
 
     [php]
-    class sfFormYamlEnhancementsConfigHander extends sfYamlConfigHandler
+    class sfFormYamlEnhancementsConfigHandler extends sfYamlConfigHandler
     {
       // ...
 
@@ -646,7 +646,7 @@
 no diretório de cache.
 
     [php]
-    class sfFormYamlEnhancementsConfigHander extends sfYamlConfigHandler
+    class sfFormYamlEnhancementsConfigHandler extends sfYamlConfigHandler
     {
       public function execute($configFiles)
       {
@@ -812,7 +812,7 @@
         sfFormYamlEnhancementsPluginConfiguration.class.php
       lib/
         config/
-          sfFormYamlEnhancementsConfigHander.class.php
+          sfFormYamlEnhancementsConfigHandler.class.php
         form/
           sfFormYamlEnhancer.class.php
       test/
@@ -919,7 +919,7 @@
       {
         if (!class_exists('sfFormYamlEnhancementsWorker', false))
         {
-          $configHandler = new sfFormYamlEnhancementsConfigHander();
+          $configHandler = new sfFormYamlEnhancementsConfigHandler();
           $code = 
$configHandler->execute(array(dirname(__FILE__).'/../../fixtures/forms.yml'));
 
           $file = tempnam(sys_get_temp_dir(), 'sfFormYamlEnhancementsWorker');

-- 
You received this message because you are subscribed to the Google Groups 
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/symfony-svn?hl=en.

Reply via email to