Show
Ignore:
Timestamp:
09/30/08 08:39:17 (3 months ago)
Author:
felix
Message:

Merged revisions 2947,2953-2954,2957 via svnmerge from
http://svn.agavi.org/branches/1.0

........

r2947 | david | 2008-09-26 07:42:28 +0200 (Fri, 26 Sep 2008) | 1 line


merge [2944:2946/branches/0.11]

........

r2953 | david | 2008-09-28 00:28:48 +0200 (Sun, 28 Sep 2008) | 1 line


made _common.xsl more modular, with callable templates for migrating elements to new namespcaes and separate templates for each envelope element

........

r2954 | david | 2008-09-28 00:33:31 +0200 (Sun, 28 Sep 2008) | 1 line


fixed copy/paste mistake in [2953]

........

r2957 | david | 2008-09-28 22:39:19 +0200 (Sun, 28 Sep 2008) | 1 line


fixed copy/paste errors in comments

........

Location:
branches/felix-testing-implementation
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/felix-testing-implementation

    • Property svnmerge-integrated changed from /branches/1.0:1-2892,2894-2944 /branches/dominik-validation-argument-sources:1-2901 to /branches/1.0:1-2892,2894-2964 /branches/dominik-validation-argument-sources:1-2901
  • branches/felix-testing-implementation/src/database/AgaviDoctrineDatabase.class.php

    r2785 r2965  
    2222 * @author     Ross Lawley <ross.lawley@gmail.com> 
    2323 * @author     David Zülke <dz@bitxtender.com> 
     24 * @author     TANAKA Koichi <tanaka@ensites.com> 
    2425 * @copyright  Authors 
    2526 * @copyright  The Agavi Project 
     
    7475   * @author     David Zülke <dz@bitxtender.com> 
    7576   * @author     Ross Lawley <ross.lawley@gmail.com> 
     77   * @author     TANAKA Koichi <tanaka@ensites.com> 
    7678   * @since      0.11.0 
    7779   */ 
     
    138140      } 
    139141       
     142      foreach((array)$this->getParameter('impls', array()) as $templateName => $className) { 
     143        $this->connection->setImpl($templateName, $className); 
     144      } 
     145       
     146      foreach((array)$this->getParameter('manager_impls', array()) as $templateName => $className) { 
     147        $this->doctrineManager->setImpl($templateName, $className); 
     148      } 
     149       
    140150      Doctrine::loadModels($this->getParameter('load_models'));  
    141151