Changeset 2981
- Timestamp:
- 10/07/08 10:59:59 (3 months ago)
- Location:
- branches/felix-testing-implementation
- Files:
-
- 5 modified
-
. (modified) (1 prop)
-
CHANGELOG (modified) (2 diffs)
-
src/config/AgaviConfigCache.class.php (modified) (1 diff)
-
src/config/AgaviConfigParser.class.php (modified) (1 diff)
-
src/config/defaults/autoload.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/felix-testing-implementation
- Property svnmerge-integrated changed from /branches/1.0:1-2892,2894-2968 /branches/dominik-validation-argument-sources:1-2979 to /branches/1.0:1-2892,2894-2980 /branches/dominik-validation-argument-sources:1-2979
-
branches/felix-testing-implementation/CHANGELOG
r2969 r2981 5 5 ------------------------------- 6 6 7 FIX: Configuration files with old-style handlers are never validated (#870) (David) 7 8 FIX: Per-module config_handlers.xml will cause "unsupported operand types" fatal error with debug mode off (#867) (David) 8 9 FIX: AgaviXmlConfigDomElement::hasChild() does not pass on $namespaceUri argument (#865) (David) … … 83 84 ADD: Allow specifying of doctrine template implementations (#864) (David, TANAKA Koichi) 84 85 86 FIX: Default autoload.xml is missing AgaviMysqliDatabase entry (#868) (David) 85 87 FIX: SOAP and XMLRPC test scripts in sample app are broken (#866) (David) 86 88 FIX: Certain validator names will cause a fatal error (#863) (David) -
branches/felix-testing-implementation/src/config/AgaviConfigCache.class.php
r2969 r2981 116 116 } else { 117 117 $validationFile = null; 118 if(isset($handlerInfo['validations'][AgaviXmlConfigParser:: VALIDATION_TYPE_XMLSCHEMA][0])) {119 $validationFile = $handlerInfo['validations'][AgaviXmlConfigParser:: VALIDATION_TYPE_XMLSCHEMA][0];118 if(isset($handlerInfo['validations'][AgaviXmlConfigParser::STAGE_SINGLE][AgaviXmlConfigParser::STEP_TRANSFORMATIONS_AFTER][AgaviXmlConfigParser::VALIDATION_TYPE_XMLSCHEMA][0])) { 119 $validationFile = $handlerInfo['validations'][AgaviXmlConfigParser::STAGE_SINGLE][AgaviXmlConfigParser::STEP_TRANSFORMATIONS_AFTER][AgaviXmlConfigParser::VALIDATION_TYPE_XMLSCHEMA][0]; 120 120 } 121 121 $handler->initialize($validationFile, null, $handlerInfo['parameters']); -
branches/felix-testing-implementation/src/config/AgaviConfigParser.class.php
r2648 r2981 59 59 ); 60 60 if($validationFile !== null) { 61 $validation[AgaviXmlConfigParser::STEP_TRANSFORMATIONS_AFTER][AgaviXmlConfigParser::VALIDATION_TYPE_XMLSCHEMA][] = array($validationFile);61 $validation[AgaviXmlConfigParser::STEP_TRANSFORMATIONS_AFTER][AgaviXmlConfigParser::VALIDATION_TYPE_XMLSCHEMA][] = $validationFile; 62 62 } 63 63 $doc = $parser->execute(array(), $validation); -
branches/felix-testing-implementation/src/config/defaults/autoload.xml
r2925 r2981 73 73 <autoload name="AgaviDoctrineDatabase">%core.agavi_dir%/database/AgaviDoctrineDatabase.class.php</autoload> 74 74 <autoload name="AgaviMysqlDatabase">%core.agavi_dir%/database/AgaviMysqlDatabase.class.php</autoload> 75 <autoload name="AgaviMysqliDatabase">%core.agavi_dir%/database/AgaviMysqliDatabase.class.php</autoload> 75 76 <autoload name="AgaviPdoDatabase">%core.agavi_dir%/database/AgaviPdoDatabase.class.php</autoload> 76 77 <autoload name="AgaviPostgresqlDatabase">%core.agavi_dir%/database/AgaviPostgresqlDatabase.class.php</autoload>

