
| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 14 (100.0%) | 220 (100.0%) | 15.7 |
| robert | 6 (42.9%) | 184 (83.6%) | 30.6 |
| k-fish | 6 (42.9%) | 18 (8.2%) | 3.0 |
| bwaidelich | 2 (14.3%) | 18 (8.2%) | 9.0 |
Removed everything in trunk after move to git.
0 lines of code changed in 4 files:
* FLOW3: (Event) Major part of the new Signal-Slot implementation. Signals can now be connected with slot methods and are dispatched by the Signal Dispatcher. Currently configuration is only possible by calling the Dispatcher's connect() method.
* FLOW3: (Log) Fixed the File Backend Test
176 lines of code changed in 2 files:
!!! 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
18 lines of code changed in 2 files:
* 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:
* FLOW3: (Component) Renamed the method Component::Factory->getComponent() to Component::Factory->create(). Resolves #1846
* FLOW3: (Component) Component::Factory->create() will now throw an exception on trying to create a component of scope != prototype
* FLOW3: (Component) The Component::Manager->getComponent() method can still be used as a last resort to retrieve components of any scope. However dependency injection for singletons and the component factory for prototype should always be the first choice!
Refactored all packages of the TYPO3 distribution to match the above changes.
Note: The test "F3::TYPO3CR::NodeTest::setPropertySetsValue" currently fails on my machine with the following message:
Error in setPropertySetsValue with data set #34 Detail
TYPO3CR/Classes/F3_TYPO3CR_Node.php:577
Unable to convert value of type string to Name: Namespace prefix is invalid
4 lines of code changed in 2 files:
* FLOW3: (Event) Implemented simple Event-Dispatcher. Resolves #1514.
* Usage:
$dispatcher->addEventListener(
MyEvent::EVENT_TYPE,
function() { print 'MyEvent dispatched!'; }
);
...
$dispatcher->dispatchEvent(new MyEvent(MyEvent::EVENT_TYPE));
18 lines of code changed in 2 files: