Changeset 2969
- Timestamp:
- 10/01/08 09:48:27 (7 weeks ago)
- Location:
- branches/felix-testing-implementation
- Files:
-
- 9 modified
-
. (modified) (1 prop)
-
CHANGELOG (modified) (1 diff)
-
src/config/AgaviConfigCache.class.php (modified) (1 diff)
-
src/config/AgaviReturnArrayConfigHandler.class.php (modified) (1 diff)
-
src/date/AgaviCalendar.class.php (modified) (1 diff)
-
src/date/AgaviGregorianCalendar.class.php (modified) (11 diffs)
-
src/date/AgaviTimeZoneDataParser.class.php (modified) (1 diff)
-
src/validator/AgaviValidationManager.class.php (modified) (1 diff)
-
tests2/AgaviTestCase.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/felix-testing-implementation
- Property svnmerge-integrated changed from /branches/1.0:1-2892,2894-2964 /branches/dominik-validation-argument-sources:1-2901 to /branches/1.0:1-2892,2894-2968 /branches/dominik-validation-argument-sources:1-2901
-
branches/felix-testing-implementation/CHANGELOG
r2965 r2969 5 5 ------------------------------- 6 6 7 FIX: Per-module config_handlers.xml will cause "unsupported operand types" fatal error with debug mode off (#867) (David) 7 8 FIX: AgaviXmlConfigDomElement::hasChild() does not pass on $namespaceUri argument (#865) (David) 8 9 -
branches/felix-testing-implementation/src/config/AgaviConfigCache.class.php
r2887 r2969 349 349 350 350 /** 351 * add the config handlers from the given config file 351 * Add the config handlers from the given config file. 352 * Existing handlers will not be overwritten. 352 353 * 353 * existing handlers will not be overwritten 354 * 355 * @param string the path to the config_handlers.xml 354 * @param string The path to a config_handlers.xml file. 356 355 * 357 356 * @author Felix Gilcher <felix.gilcher@bitextender.com> 358 357 * @since 1.0.0 359 *360 358 */ 361 359 public static function loadConfigHandlersFile($cfg) 362 360 { 363 self::$handlers += include AgaviConfigCache::checkConfig($cfg);361 self::$handlers = (array)self::$handlers + include(AgaviConfigCache::checkConfig($cfg)); 364 362 } 365 363 -
branches/felix-testing-implementation/src/config/AgaviReturnArrayConfigHandler.class.php
r2296 r2969 29 29 * @version $Id$ 30 30 */ 31 32 31 class AgaviReturnArrayConfigHandler extends AgaviConfigHandler 33 32 { -
branches/felix-testing-implementation/src/date/AgaviCalendar.class.php
r2348 r2969 37 37 * @since 0.11.0 38 38 */ 39 40 39 protected $translationManager; 41 40 -
branches/felix-testing-implementation/src/date/AgaviGregorianCalendar.class.php
r2289 r2969 495 495 * @since 0.11.0 496 496 */ 497 498 497 protected function handleGetMonthLength($extendedYear, $month) 499 498 { … … 527 526 * @since 0.11.0 528 527 */ 529 530 528 protected function monthLength($month) 531 529 { … … 546 544 * @since 0.11.0 547 545 */ 548 549 546 protected function monthLength1($month, $year) 550 547 { … … 562 559 * @since 0.11.0 563 560 */ 564 565 561 protected function yearLength1($year) 566 562 { … … 577 573 * @since 0.11.0 578 574 */ 579 580 575 protected function yearLength() 581 576 { … … 593 588 * @since 0.11.0 594 589 */ 595 596 590 protected function pinDayOfMonth() 597 591 { … … 612 606 * @since 0.11.0 613 607 */ 614 615 608 protected function getEpochDay() 616 609 { … … 630 623 * @since 0.11.0 631 624 */ 632 633 625 protected function handleGetLimit($field, $limitType) 634 626 { … … 643 635 * @since 0.11.0 644 636 */ 645 646 637 protected function handleGetExtendedYear() 647 638 { … … 682 673 * @since 0.11.0 683 674 */ 684 685 675 protected function handleGetExtendedYearFromWeekFields($yearWoy, $woy) 686 676 { … … 700 690 * @since 0.11.0 701 691 */ 702 703 692 protected function handleComputeFields($julianDay) 704 693 { -
branches/felix-testing-implementation/src/date/AgaviTimeZoneDataParser.class.php
r2259 r2969 29 29 * @version $Id$ 30 30 */ 31 32 31 class AgaviTimeZoneDataParser 33 32 { -
branches/felix-testing-implementation/src/validator/AgaviValidationManager.class.php
r2902 r2969 29 29 * @version $Id$ 30 30 */ 31 32 31 class AgaviValidationManager extends AgaviParameterHolder implements AgaviIValidatorContainer 33 32 { -
branches/felix-testing-implementation/tests2/AgaviTestCase.class.php
r2259 r2969 26 26 * @version $Id$ 27 27 */ 28 29 28 class AgaviTestCase extends PHPUnit_Framework_TestCase 30 29 {

