Directory Classes/AOP/Pointcut/

Directory Created:
2009-05-20 12:36
Directory Deleted:
2010-08-24 10:42
Total Files:
0
Deleted Files:
11
Lines of Code:
0

[root]/Classes/AOP/Pointcut

Lines of Code

Classes/AOP/Pointcut/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 106 (100.0%) 2131 (100.0%) 20.1
robert 38 (35.8%) 1484 (69.6%) 39.0
andi 15 (14.2%) 629 (29.5%) 41.9
k-fish 53 (50.0%) 18 (0.8%) 0.3

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 11 files:

  • Classes/AOP/Pointcut: Pointcut.php (del), PointcutClassNameFilter.php (del), PointcutClassTaggedWithFilter.php (del), PointcutClassTypeFilter.php (del), PointcutExpressionParser.php (del), PointcutFilter.php (del), PointcutFilterComposite.php (del), PointcutFilterInterface.php (del), PointcutMethodNameFilter.php (del), PointcutMethodTaggedWithFilter.php (del), PointcutSettingFilter.php (del)
k-fish 2010-08-13 16:21 Rev.: 4969

[-TASK] FLOW3: Removed @version keyword from files, resolves #8835.

0 lines of code changed in 11 files:

  • Classes/AOP/Pointcut: Pointcut.php (-1), PointcutClassNameFilter.php (-1), PointcutClassTaggedWithFilter.php (-1), PointcutClassTypeFilter.php (-1), PointcutExpressionParser.php (-1), PointcutFilter.php (-1), PointcutFilterComposite.php (-1), PointcutFilterInterface.php (-1), PointcutMethodNameFilter.php (-1), PointcutMethodTaggedWithFilter.php (-1), PointcutSettingFilter.php (-1)
andi 2010-06-23 13:31 Rev.: 4613

* [+TASK] FLOW3 (Object): Added session scope related methods to the object manager and interface.
* [+FEATURE] FLOW3 (AOP): Added a matches operator as a new possibility for runtime evaluations.
* [+FEATURE] FLOW3 (AOP): Global objects available in runtime evaluations can now be configured in the settings. Resolves #6598.
* [+FEATURE] FLOW3 (Security): Implemented query rewriting according to the security policy. Relates to #5659, Resolves #6604.

41 lines of code changed in 2 files:

  • Classes/AOP/Pointcut: PointcutExpressionParser.php (+16 -12), PointcutFilterComposite.php (+25 -4)
robert 2010-04-28 14:05 Rev.: 4230

[+FEATURE] FLOW3 (Configuration): The ConfigurationManager now supports context directories in the FLOW3 package's Configuration directory. This allows us to deliver the FLOW3 distribution (and other distributions) with a virtually empty global Configuration directory. Resolves #7479
[~TASK] FLOW3 Base Distribution: Removed the global context configurations.

2 lines of code changed in 1 file:

  • Classes/AOP/Pointcut: PointcutSettingFilter.php (+2)
k-fish 2010-03-15 15:52 Rev.: 3941

[+BUGFIX] FLOW3 (Object): When building the static object container injected string values are quoted now, fixes #6847.

2 lines of code changed in 1 file:

  • Classes/AOP/Pointcut: PointcutFilter.php (+2 -2)
andi 2010-03-01 23:13 Rev.: 3895

[~TASK] FLOW3 (Security): Removed the security context holder session with its interface. The whole functionality is now available directly through the security context itself. Resolves #5851

1 lines of code changed in 1 file:

  • Classes/AOP/Pointcut: PointcutFilterComposite.php (+1 -1)
andi 2010-03-01 21:11 Rev.: 3894

[~BUGFIX] FLOW3 (Security): Evaluating runtime constraints in the policy service failed, because of a missing ; and a missing argument for the evaluation closure.
[~TASK] FLOW3 (AOP): The "current object" is now directly retrieved from the joinpoint and is not manually passed to the evaluation closure.

3 lines of code changed in 1 file:

  • Classes/AOP/Pointcut: PointcutFilterComposite.php (+3 -2)
k-fish 2010-02-23 23:08 Rev.: 3847

[~TASK] FLOW3: Some cleanup to code documentation.

1 lines of code changed in 1 file:

  • Classes/AOP/Pointcut: PointcutFilterComposite.php (+1 -1)
robert 2010-02-22 16:17 Rev.: 3837

[+FEATURE] FLOW3 (Object): Implemented a static object container which is automatically built. It's essentially a hardcoded version of the autowired and configured object dependencies - just a lot faster. Many tests are still missing, but the version in this commit should be mostly functional. Addresses #3740 and resolves #2123.
[!!!][~API] FLOW3 (Object): Heavily refactored the Object Manager and its tests. The most important change is the removal of the Object Factory whose create() method is now located in the Object Manager. Furthermore, the getObject() method has been renamed to get() and a few minor important API functions within the Object Manager have been modified. This commit also contains a script which allows for semi automatically migrating existing code to the new API (see ./flow3 migrate objectmanagerusage). Resolves #6562
[~TASK] FLOW3 (Configuration): The Configuration Manager and its YAML source now doesn't depend on the YAML package anymore but refers to a YAML parser class within the FLOW3 package. Resolves #6564.

2 lines of code changed in 2 files:

  • Classes/AOP/Pointcut: PointcutExpressionParser.php (+1 -1), PointcutFilterComposite.php (+1 -1)
robert 2010-02-20 11:47 Rev.: 3832

[+Bugfix] FLOW3 (AOP): Parentheses are now correctly parsed in the regular expression defining a method name in a pointcut expression. Resolves #6529

18 lines of code changed in 2 files:

  • Classes/AOP/Pointcut: PointcutExpressionParser.php (+17 -29), PointcutMethodNameFilter.php (+1)
andi 2010-02-10 18:59 Rev.: 3823

* [+FEATURE] FLOW3 (AOP): If an advice is executed can now depend on runtime evaluations, which can be configured in the pointcut expression. Relates to #5659.
* [~BUGFIX] FLOW3 (AOP): Properties of the AOP proxy class are now prefixed by FLOW3_AOP_Proxy_. This fixes #6188.
* [~TASK] FLOW3 (AOP): Removed an unused function from the Framework class.

584 lines of code changed in 11 files:

  • Classes/AOP/Pointcut: Pointcut.php (+31), PointcutClassNameFilter.php (+20), PointcutClassTaggedWithFilter.php (+20), PointcutClassTypeFilter.php (+20), PointcutExpressionParser.php (+114 -3), PointcutFilter.php (+25), PointcutFilterComposite.php (+261 -4), PointcutFilterInterface.php (+14), PointcutMethodNameFilter.php (+39 -2), PointcutMethodTaggedWithFilter.php (+20), PointcutSettingFilter.php (+20)
robert 2010-01-15 15:38 Rev.: 3643

[~TASK] FLOW3 (Documentation): Updated the Coding Guidelines: removed inconsistent exceptions from the general class naming rules. Also added the rule that names of aspect classes must end with "Aspect". Relates to #5658
[~TASK] Global: Renamed many classes and interfaces in order to be consistent with FLOW3's naming rules. A migration script to update third-party applications will follow soon. Resolves #5658

45 lines of code changed in 9 files:

  • Classes/AOP/Pointcut: Pointcut.php (+2 -2), PointcutClassNameFilter.php (+3 -3), PointcutClassTaggedWithFilter.php (+3 -3), PointcutClassTypeFilter.php (+3 -3), PointcutExpressionParser.php (+21 -21), PointcutFilter.php (+1 -1), PointcutMethodNameFilter.php (+4 -4), PointcutMethodTaggedWithFilter.php (+3 -3), PointcutSettingFilter.php (+5 -5)
robert 2009-11-30 17:48 Rev.: 3526

[-API] FLOW3 (Configuration): Removed the Configuration Manager's getSettings() method! If you relied on this method please use getConfiguration() instead, but be aware that this is not an official API method. The recommended way to retrieve settings are injectSettings() methods (see manual for more information). Relates to #5577
[~TASK] FLOW3 (Configuration): Cleaned up and refactored the Configuration Manager's loadConfiguration() method. Resolves #5577
[BUGFIX] FLOW3 (Configuration): Fixed build of the caches configuration array. Resolves #5576.

1 lines of code changed in 1 file:

  • Classes/AOP/Pointcut: PointcutSettingFilter.php (+1 -1)
k-fish 2009-09-16 14:36 Rev.: 3189

[~TASK] FLOW3: Fixed method parameter documentation found by new reflection service checks.
[+FEATURE] FLOW3 (Persistence): added removeAll() to base repository, resolves #3852.

13 lines of code changed in 6 files:

  • Classes/AOP/Pointcut: Pointcut.php (+1 -1), PointcutClassTypeFilter.php (+1 -1), PointcutExpressionParser.php (+6 -5), PointcutFilterComposite.php (+3 -3), PointcutFilterInterface.php (+1 -1), PointcutSettingFilter.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 11 files:

  • Classes/AOP/Pointcut: Pointcut.php (-8), PointcutClassNameFilter.php (-8), PointcutClassTaggedWithFilter.php (-8), PointcutClassTypeFilter.php (-8), PointcutExpressionParser.php (-8), PointcutFilter.php (-8), PointcutFilterComposite.php (-8), PointcutFilterInterface.php (-8), PointcutMethodNameFilter.php (-8), PointcutMethodTaggedWithFilter.php (-8), PointcutSettingFilter.php (-8)
k-fish 2009-07-15 12:28 Rev.: 2794

[TASK] FLOW3: moved from @internal to @api, resolves #3883

0 lines of code changed in 11 files:

  • Classes/AOP/Pointcut: Pointcut.php (-5), PointcutClassNameFilter.php (-3), PointcutClassTaggedWithFilter.php (-3), PointcutClassTypeFilter.php (-3), PointcutExpressionParser.php (-13), PointcutFilter.php (-3), PointcutFilterComposite.php (-2), PointcutFilterInterface.php (-1), PointcutMethodNameFilter.php (-3), PointcutMethodTaggedWithFilter.php (-3), PointcutSettingFilter.php (-5)
robert 2009-07-10 08:48 Rev.: 2763

[~TASK] FLOW3 (Core): Removed the manual inject* calls for the Session Registry and instead created some configuration in the Objects.yaml.
[~TASK] FLOW3: Globally replaced occurrences of RuntimeException with more meaningful exceptions.

1 lines of code changed in 1 file:

  • Classes/AOP/Pointcut: PointcutMethodNameFilter.php (+1 -1)
k-fish 2009-06-02 11:35 Rev.: 2523

Added svn:keywords where missing...

2 lines of code changed in 1 file:

  • Classes/AOP/Pointcut: PointcutSettingFilter.php (+2 -2)
robert 2009-05-20 19:14 Rev.: 2293

* FLOW3: Marked all methods as @internal except those which are considered part of the official API. Resolves #1280
* TYPO3CR: Fixed two tests of the Storage\PDO\Search testcase.

44 lines of code changed in 11 files:

  • Classes/AOP/Pointcut: Pointcut.php (+5), PointcutClassNameFilter.php (+3), PointcutClassTaggedWithFilter.php (+3), PointcutClassTypeFilter.php (+3), PointcutExpressionParser.php (+13), PointcutFilter.php (+3), PointcutFilterComposite.php (+2), PointcutFilterInterface.php (+1), PointcutMethodNameFilter.php (+3), PointcutMethodTaggedWithFilter.php (+3), PointcutSettingFilter.php (+5)
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

1371 lines of code changed in 11 files:

  • Classes/AOP/Pointcut: Pointcut.php (new 156), PointcutClassNameFilter.php (new 96), PointcutClassTaggedWithFilter.php (new 96), PointcutClassTypeFilter.php (new 95), PointcutExpressionParser.php (new 305), PointcutFilter.php (new 108), PointcutFilterComposite.php (new 95), PointcutFilterInterface.php (new 55), PointcutMethodNameFilter.php (new 117), PointcutMethodTaggedWithFilter.php (new 98), PointcutSettingFilter.php (new 150)
Generated by StatSVN 0.5.0