Directory Tests/Configuration/Source/

Directory Created:
2008-05-17 17:04
Directory Deleted:
2010-08-24 10:42
Total Files:
0
Deleted Files:
6
Lines of Code:
0

[root]/Tests/Configuration/Source

Lines of Code

Tests/Configuration/Source/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 34 (100.0%) 350 (100.0%) 10.2
robert 9 (26.5%) 193 (55.1%) 21.4
k-fish 21 (61.8%) 108 (30.9%) 5.1
networkteam_hlubek 2 (5.9%) 45 (12.9%) 22.5
bwaidelich 2 (5.9%) 4 (1.1%) 2.0

Most Recent Commits

k-fish 2010-08-24 10:42 Rev.: 5057

Removed everything in trunk after move to git.

0 lines of code changed in 6 files:

  • Tests/Configuration/Source: F3_FLOW3_Configuration_Source_PHPTest.php (del), F3_FLOW3_Configuration_Source_YAMLTest.php (del), PHPSourceTest.php (del), PHPTest.php (del), YAMLSourceTest.php (del), YAMLTest.php (del)
robert 2009-08-31 14:56 Rev.: 3107

[+FEATURE] FLOW3 (AOP): Parse errors in AOP proxy code (introduced by a potential bug) will now be treated properly by throwing a meaningful exception.
[-FEATURE] FLOW3 (Configuration): Removed support for PHP-based configuration files. This caused a lot of overhead and in practice we want everyone to use YAML files anyway.
[+FEATURE] FLOW3 (Configuration): Implemented support for cached ("compiled") configuration. When the new FLOW3.yaml option "configuration: comileConfigurationFiles" is turned on, all configuration will be compiled into a PHP file which from then on is read instead of parsing the YAML files everytime. Please see the updated documentation for more information. Resolves #4460
[~TASK] FLOW3 (Configuration): Completely refactored the Configuration Manager and a few related classes. Its methods now each fullfil a clear purpose and work more effective. The method names now also better describe what each method is doing. Resolves #2711
[-TASK] FLOW3 (Configuration): Removed the WritableSourceInterface - this is now a standard feature of a configuration source.
[+TASK] FLOW3 (Core): Refactored and cleaned up the FLOW3 Bootstrap. Constants are now defined by a static method and all configuration related functionality has been moved to the Configuration sub package. Also replaced the evil die() calls by more handsome exit() calls. Relates to #2117
[+TASK] FLOW3 (Object): Moved some object initialization code from the Bootstrap to the Object Manager and further cleaned up the Object Manager's code. Wrote additional tests - now this class has 100% test coverage. Relates to #2117
[+API] FLOW3 (MVC): Added a few @api annotations to properties of the AbstractController and ActionController.
[-API] FLOW3 (Utility): Removed the getSAPIType() method from the Environment class. Just use the constant FLOW3_SAPITYPE instead. Resolves #3567 and relates to #2117.

1 lines of code changed in 1 file:

  • Tests/Configuration/Source: YAMLSourceTest.php (+1 -1)
k-fish 2009-07-16 15:02 Rev.: 2813

[+TASK] FLOW3: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] Fluid: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] Kickstart: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] PHP6: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] PHPUnit: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] Testing: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] Welcome: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] YAML: Removed file level docblocks and @package/@subpackage annotations.

0 lines of code changed in 2 files:

  • Tests/Configuration/Source: PHPSourceTest.php (-8), YAMLSourceTest.php (-8)
bwaidelich 2009-06-15 19:43 Rev.: 2616

* [FIX] FLOW3 (Tests): Replaced PHP_EOL by chr(10) in YAMLSourceTests to avoid failures on Windows
* [TASK] FLOW3 (Tests): Renamed class names PHPTest -> PHPSourceTest, YAMLTest -> YAMLSourceTest

4 lines of code changed in 2 files:

  • Tests/Configuration/Source: PHPSourceTest.php (+1 -1), YAMLSourceTest.php (+3 -3)
networkteam_hlubek 2009-06-10 09:21 Rev.: 2596

[!!!] FLOW3: Packages.yaml configuration renamed to Package.yaml, configuration in single package is no longer indexed with package key
[FEAT] FLOW3 (Configuration): Package state configuration will be handled by a special writable configuration source, resolves #3639
[FEAT] FLOW3 (Package): Active packages will be read from the package states configuration and activation / deactivation updates the configuration, resolves #3639
[FIX] FLOW3 (Configuration): Fixed YAMLSource saving with comment headers

5 lines of code changed in 1 file:

  • Tests/Configuration/Source: YAMLSourceTest.php (+5 -3)
networkteam_hlubek 2009-06-08 23:33 Rev.: 2584

* [+API]?FLOW3 (Configuration): Added new interface for a writable configuration source
* [+FEAT]?FLOW3 (Configuration): YAML configuration source can be written back and the YAMLSource implements the WritableSource interface

40 lines of code changed in 1 file:

  • Tests/Configuration/Source: YAMLSourceTest.php (+40)
robert 2009-05-20 12:36 Rev.: 2282

* FLOW3: Renamed a few classes / moved them in the namespaces hierarchy to make naming more consistent. Resolves #2515
* FLOW3: (MVC) Removed the AbstractWidget

124 lines of code changed in 2 files:

  • Tests/Configuration/Source: PHPSourceTest.php (new 62), YAMLSourceTest.php (new 62)
robert 2009-01-28 13:04 Rev.: 1811

!!! Globally renamed all class files to the new shorter version. Resolves #2524
FLOW3: (Resource) Adapted the class loader and other related parts of FLOW3 to the new class filename convention
FLOW3: Moved the FLOW3 bootstrap into the F3\FLOW3 namepace

0 lines of code changed in 2 files:

  • Tests/Configuration/Source: PHPTest.php (new), YAMLTest.php (new)
k-fish 2009-01-15 16:06 Rev.: 1749

FLOW3:
* fixed license name in @license annotation, fixes #2454

2 lines of code changed in 2 files:

  • Tests/Configuration/Source: F3_FLOW3_Configuration_Source_PHPTest.php (+1 -1), F3_FLOW3_Configuration_Source_YAMLTest.php (+1 -1)
k-fish 2009-01-09 16:39 Rev.: 1723

FLOW3, Lucene, PHP6, PHPCR, Smarty, Testing, TYPO3, TYPO3CR, TypoScript:
* fixed broken @version $Id$ annotations that got hosed during new namespace refactoring. Sorry!

4 lines of code changed in 2 files:

  • Tests/Configuration/Source: F3_FLOW3_Configuration_Source_PHPTest.php (+2 -2), F3_FLOW3_Configuration_Source_YAMLTest.php (+2 -2)
k-fish 2009-01-07 11:37 Rev.: 1707

FLOW3:
* changed license to LGPL v3 or later

28 lines of code changed in 2 files:

  • Tests/Configuration/Source: F3_FLOW3_Configuration_Source_PHPTest.php (+14 -7), F3_FLOW3_Configuration_Source_YAMLTest.php (+14 -7)
k-fish 2008-12-18 12:05 Rev.: 1657

FLOW3:
* refactored a bunch of unit tests so they no longer need a real FLOW3 to run, refs #2123

2 lines of code changed in 2 files:

  • Tests/Configuration/Source: F3_FLOW3_Configuration_Source_PHPTest.php (+1 -1), F3_FLOW3_Configuration_Source_YAMLTest.php (+1 -1)
k-fish 2008-12-10 15:39 Rev.: 1599

!!! 5.3.0alpha3 namespaces refactoring:
* changed namespace delimiter from :: to \
* all class references in namespaced code prepended by \

PHPUnit:
* adapted mock object handling to the new namespaces syntax

FLOW3:
* PropertyReflection now uses setAccessible() instead of array cast to access protected properties

PHPCR:
* added a missing interface already used for type hints

12 lines of code changed in 2 files:

  • Tests/Configuration/Source: F3_FLOW3_Configuration_Source_PHPTest.php (+6 -6), F3_FLOW3_Configuration_Source_YAMLTest.php (+6 -6)
robert 2008-11-11 12:16 Rev.: 1481

* FLOW3: (Component) Renamed "component" to "object" - everywhere. That means we now have an Object Manager instead of a Component Manager, an Object Factory etc. Resolves #2119

Globally adjusted all code for the above change.

4 lines of code changed in 2 files:

  • Tests/Configuration/Source: F3_FLOW3_Configuration_Source_PHPTest.php (+2 -2), F3_FLOW3_Configuration_Source_YAMLTest.php (+2 -2)
robert 2008-11-07 16:02 Rev.: 1448

COMMIT PART 1

* FLOW3: Implemented a YAML configuration source, resolves #1852
* Globally refactored code and converted configuration files to use the new YAML configuration format

Note: FLOW3 is now getting even slower because the whole YAML parsing results are not cached yet.
You can still use .php based configuration but it is recommended to switch over to YAML ASAP.

Documentation and speed improvements follow

64 lines of code changed in 2 files:

  • Tests/Configuration/Source: F3_FLOW3_Configuration_Source_PHPTest.php (+9 -7), F3_FLOW3_Configuration_Source_YAMLTest.php (new 55)
k-fish 2008-09-12 16:07 Rev.: 1210

!!! Major change, will break existing code.

Part 3 - Packages

FLOW3, most other packages:
* added namespaces to the code of FLOW3 and all packages in the current TYPO3v5 distribution.

PHPUnit:
* some changes to make PHPUnit (more) namespace-compatible.

Some notes:
* Documentation updates will follow
* you might need to change your class names when adapting namespaces to avoid using "Class", "Empty", "Default", ...
* expect FLOW3CGL and/or PHPCodeSniffer to be broken (I'll have a look)
* some parts might still be broken, especially in edge-cases where the global namespace needs to explicitly used

7 lines of code changed in 1 file:

  • Tests/Configuration/Source: F3_FLOW3_Configuration_Source_PHPTest.php (+7 -6)
k-fish 2008-08-06 15:16 Rev.: 1085

FLOW3, PHP6:
* bumped PHP version requirement to 5.3.0alpha1
* replaced dirname(__FILE__) with __DIR__
* removed definitions of FILE_BINARY, FILE_TEXT in F3_PHP6_Functions.php
* replaced phpversion() with PHP_VERSION

1 lines of code changed in 1 file:

  • Tests/Configuration/Source: F3_FLOW3_Configuration_Source_PHPTest.php (+1 -1)
k-fish 2008-05-17 17:04 Rev.: 845

Making FLOW3 run green(er) in FLOW3CGL, part 2. Down to 40 errors and 0 warnings from hundreds each...

52 lines of code changed in 1 file:

  • Tests/Configuration/Source: F3_FLOW3_Configuration_Source_PHPTest.php (new 52)
Generated by StatSVN 0.5.0