Activity
From 2008-07-27 to 2008-08-25
2008-08-25
-
13:42 Feature #1292 (Resolved): Introduce @identifier annotation for objects
- Applied in changeset r1155.
-
11:09 Feature #1292 (Accepted): Introduce @identifier annotation for objects
2008-08-22
-
13:41 Feature #36: Add automatic documentation in AOP proxy classes
- To make this more clear: Documentation exists for AOP proxy code, but for any parameters besides arrays and objects t...
-
13:33 Feature #1199 (Needs Feedback): Add a method findByTag() to F3_FLOW3_Cache_AbstractCache
- And that method would return an array with all found entries? Like the memcached backend findEntriesByTag() method did?
-
13:21 Feature #422 (Needs Feedback): XMLHttpRequest Request
-
12:34 Task #1209 (Resolved): Make @required default and add @optional instead
- Applied in changeset r1145.
-
11:26 Task #1209 (Accepted): Make @required default and add @optional instead
-
12:17 Bug #1315 (Closed): Routing: URLs with/without trailing slash change meaning of relative links
- Both the URLs e.g. /typo3cr/setup and /typo3cr/setup/ call the same controller code.
If a relative link to e.g. "i... -
11:05 Feature #1235: Check if mod_rewrite is enabled
- Here's how to check if the module is loaded:
@array_search('mod_rewrite', apache_get_modules()) !== FALSE@
What t... -
10:46 Bug #1198 (Resolved): Different return values for findEntriesByTag in cache fiel backend and memcached backend
- Applied in changeset r1144.
-
10:24 Bug #1198 (Accepted): Different return values for findEntriesByTag in cache fiel backend and memcached backend
2008-08-18
-
14:50 Feature #1292 (Resolved): Introduce @identifier annotation for objects
- With the @identifier annotation an object could mark it's internal identifier as usable towards persistence. The pers...
2008-08-14
-
15:16 Bug #1257 (Resolved): The dirty monitoring aspect works only for classes actually having a constructor.
- Applied in changeset r1139.
-
15:09 Task #1280 (Resolved): Tag all classes as @internal - except the released API
- Starting with the first release of FLOW3 we need to communicate which APIs are safe for use in third-party packages a...
2008-08-13
-
21:35 Bug #1278 (Resolved): Router matches static route parts even on substrings
- Applied in changeset r1137.
-
16:32 Bug #1278: Router matches static route parts even on substrings
- Maybe this test helps:...
-
16:26 Bug #1278 (Resolved): Router matches static route parts even on substrings
- Consider these two routes:
1) typo3/[@controller]
2) typo3cr/[@controller]
Currently route 1) will match this ... -
18:03 Feature #91: Check how eAccelerator can be supported
- Some update. I just tried todays eAccelerator SVN with PHP 5.3.0alpha1, and did not have success:
With the eAccele...
2008-08-12
-
11:41 Major Feature #368 (Closed): Caching Manager with support for different kinds of caches and stores.
-
11:41 Major Feature #345 (Closed): An initial implementation of the Resource Manager
-
11:41 Major Feature #340 (Closed): The MVC framework provides a default rewriting router and an interface for custom routers
-
11:41 Major Feature #321 (Closed): The MVC Framework supports RESTful URLs
-
11:41 Major Feature #220 (Closed): A basic persistence framework, based on annotations, with the content repository as backend
-
11:41 Major Feature #218 (Closed): Comprehensive reference documentation for the MVC framework
-
11:36 Feature #422: XMLHttpRequest Request
- Why would you want to differentiate those requests from each other? Isn't that the beauty of XHR, that it's just a no...
-
11:24 Task #1268 (Resolved): CLI options must be written as "real" options, being prefixed with a (double) dash
- Currently anything following the first three arguments to a CLI request is considered as options. This should be chan...
-
11:17 Feature #1267 (Resolved): Make CLI requests to controllers in subpackage possible
- While the web router allows for routing of requests to subpackages, CLI requests to controllers in subpackages are cu...
-
09:46 Feature #315: Add "format" support to the Request object
- This was mainly addressed by r1077 (added support for format).
What's still missing is the analysis of the HTTP he... -
09:43 Feature #74 (Resolved): Request Builder doesn't convert POST arguments into Request arguments
- POST arguments are now handled by the Router (F3_FLOW3_MVC_Web_Router->route())
-
09:37 Major Feature #374 (Closed): Speed
-
09:36 Bug #1092 (Resolved): MVC - Arguments Validation on Arrays / MVC Validation
- Applied in changeset r1123.
-
09:35 Bug #1092 (Accepted): MVC - Arguments Validation on Arrays / MVC Validation
- I think that "RecursiveTextArray" is to special to be implemented in the FLOW3 package itself. What about Unrecursive...
2008-08-11
-
21:55 Feature #1251 (Resolved): Add route part handler support
- Applied in changeset r1122.
-
21:55 Task #1253 (Resolved): Enable lower case URLs
- Applied in changeset r1121.
-
20:28 Bug #1264 (Resolved): Routes with default values for "multiple route part" segments are not resolved correctly
- Applied in changeset r1120.
-
20:06 Bug #1264 (Resolved): Routes with default values for "multiple route part" segments are not resolved correctly
- With the new possibility to add multiple route parts in one URL pattern segment (see #1250) a new issue emerged:
The... -
18:05 Feature #1250 (Resolved): Add support for multiple route parts in one URL pattern segment
- Applied in changeset r1118.
-
18:03 Bug #1257 (Accepted): The dirty monitoring aspect works only for classes actually having a constructor.
2008-08-08
-
20:11 Bug #1257 (Resolved): The dirty monitoring aspect works only for classes actually having a constructor.
- When cerating an entity class, the registerNewObject() advice only works if the target class actually has a construct...
-
12:48 Task #1253 (Resolved): Enable lower case URLs
- Currently FLOW3s routing mechanism is case sensitive. As All Packages and Controller start with an upper case letter,...
-
12:42 Feature #1251 (Resolved): Add route part handler support
- Route part handlers are classes which follow a certain interface and can resolve one ore more URL segments as well as...
-
12:36 Feature #1250 (Resolved): Add support for multiple route parts in one URL pattern segment
- Currently only one route part is allowed between two slashes in a route URL pattern:
news/[id]
we need support for ...
2008-08-06
-
11:01 Feature #1235 (Closed): Check if mod_rewrite is enabled
- FLOW3 should check (somehow) if mod_rewrite is enabled. Without the check the user will just get an internal server e...
-
10:01 Bug #1064 (Resolved): Non-existing configuration options should throw an exception
- Applied in changeset r1080.
2008-08-05
-
21:32 Bug #1064 (Accepted): Non-existing configuration options should throw an exception
- The configuration manager only locks the container on the first level - the container does not recursively lock its s...
-
15:48 Feature #1226 (Resolved): Package manager should take additional package paths into account
- Hey,
it would be really nice if the package manager would take additional package directories into account, so the...
2008-08-04
-
21:26 Feature #91: Check how eAccelerator can be supported
- The attached patch checks if the getDocComment method of PHP's ReflectionClass gives any Output. If yes, we can assum...
-
16:14 Task #1133 (Resolved): Create unit tests for F3_FLOW3_MVC_Web_Routing_Router
- Unit test was added by Robert in r1067.
-
16:09 Bug #1134 (Resolved): F3_FLOW3_Utility_EnvironmentTest produces an error on WAMP installations
- Applied in changeset r1073.
-
15:58 Bug #1134 (Accepted): F3_FLOW3_Utility_EnvironmentTest produces an error on WAMP installations
-
16:09 Bug #918 (Resolved): F3_FLOW3_Cache_Backend_FileTest shows 2 errors on WAMP installation
- Applied in changeset r1073.
-
14:43 Major Feature #215 (Resolved): The MVC Framework can handle, dispatch and forward GET, POST and CLI requests
- Applied in changeset r1070.
-
14:43 Feature #88 (Resolved): Add forwarding support to MVC controller
- Applied in changeset r1070.
-
14:35 Feature #23 (Resolved): Implement "context" support
-
14:35 Feature #32 (Resolved): Design and implement a configuration manager
-
14:33 Feature #267 (Resolved): Method basicAction for T3_FLOW3_MVC_Controller_ActionController
- Please use initializeAction() for this purpose.
-
14:31 Major Feature #410 (Resolved): A simple and robust configuration system
-
13:48 Task #1209: Make @required default and add @optional instead
- bla
-
13:48 Task #1209 (Resolved): Make @required default and add @optional instead
- Setter injection methods can currently be annotated with @required. It seems to be that most injected dependencies ar...
2008-08-01
-
15:05 Feature #91: Check how eAccelerator can be supported
- r1064 adresses this topic.
If i find time and no one does it earlier i will contact the eaccelerator developers (f... -
11:58 Bug #1200 (Resolved): F3_FLOW3_Cache_Backend_File does not honor an entries lifetime
- The file backend returns cache entries older than their supposed lifetime
-
11:57 Feature #1199 (Resolved): Add a method findByTag() to F3_FLOW3_Cache_AbstractCache
- Although one can store cache entries with tags, one can only load cache entries by identifier. Thus a method findByTa...
-
11:55 Bug #1198 (Resolved): Different return values for findEntriesByTag in cache fiel backend and memcached backend
- The cache backedns file and memcached return different values for the method findEntriesByTag.
While the cache bac...
Also available in: Atom