Directory Classes/MVC/Web/

Directory Deleted:
2010-08-24 10:42
Total Files:
0
Deleted Files:
10
Lines of Code:
0

[root]/Classes/MVC/Web
                Folder removed from repo Routing (0 files, 0 lines)
                    Folder removed from repo Aspect (0 files, 0 lines)

Lines of Code

Classes/MVC/Web/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 117 (100.0%) 823 (100.0%) 7.0
robert 45 (38.5%) 464 (56.4%) 10.3
k-fish 68 (58.1%) 287 (34.9%) 4.2
bwaidelich 3 (2.6%) 46 (5.6%) 15.3
sebastian 1 (0.9%) 26 (3.2%) 26.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 10 files:

  • Classes/MVC/Web: F3_FLOW3_MVC_Web_Request.php (del), F3_FLOW3_MVC_Web_RequestBuilder.php (del), F3_FLOW3_MVC_Web_RequestHandler.php (del), F3_FLOW3_MVC_Web_Response.php (del), F3_FLOW3_MVC_Web_Router.php (del), F3_FLOW3_MVC_Web_RouterInterface.php (del), Request.php (del), RequestBuilder.php (del), RequestHandler.php (del), Response.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 4 files:

  • Classes/MVC/Web: Request.php (-1), RequestBuilder.php (-1), RequestHandler.php (-1), Response.php (-1)
robert 2010-05-18 23:54 Rev.: 4321

[+BUGFIX] FLOW3 (Configuration): The ConfigurationManager now checks if the option "uriPattern" has been set. Fixes #7820
[~TASK] FLOW3 (Error): The var_dump debugger now displays more information about objects implementing ArrayAccess
[+BUGFIX] FLOW3 (MVC): The Router now uses strong comparison for checking the match results of routes. Fixes #7831
[~TASK][!!!] Fluid (View): The TemplateView now expects all template files to be UpperCamelCase as this is the general convention for filenames in FLOW3. Make sure to update the case of your template filenames! Resolves #7243

0 lines of code changed in 1 file:

  • Classes/MVC/Web: Request.php (-6)
robert 2010-03-17 19:05 Rev.: 3988

[+BUGFIX] FLOW3 (MVC): Fixed the recently introduced setControllerObjectName method in the MVC Request class - it wrongly accepted object names with a leading backslash.

3 lines of code changed in 1 file:

  • Classes/MVC/Web: RequestHandler.php (+3 -3)
robert 2010-03-01 12:38 Rev.: 3889

[+FEATURE] FLOW3 (MVC): The Web Request Handler now sends an additional Content-Type header if the format found in the request is RSS or Atom. Resolves #6646

12 lines of code changed in 1 file:

  • Classes/MVC/Web: RequestHandler.php (+12)
robert 2010-02-26 15:34 Rev.: 3867

[~API] FLOW3 (Utility): Renamed detectBaseUri() to getBaseUri().
[~TASK] FLOW3 (MVC): Recomitted my previous change in getRequestPath and reworked the path rendering in the Request object (now is called "route path"). Relates to #6596
[~BUGFIX] FLOW3 (Security): The WebRedirect entry point now takes the Base URI into account. That means you'll have to specify a _relative_ URI in your settings for defining a web entry point (i.e. no leading slash!).

12 lines of code changed in 2 files:

  • Classes/MVC/Web: Request.php (+12 -58), RequestBuilder.php (-1)
k-fish 2010-02-26 00:05 Rev.: 3866

[+API] FLOW3 (Utility): Added detectBaseUri() to Environment. Given an URI instance it tries to detect the corresponding base URI.
[+API] FLOW3 (Utility): Added getScriptRequestPath() to Environment, returns the path to the actual script request relative to the document root.
[~API] FLOW3 (Utility): Renamed getScriptRequestPathAndName() to getScriptRequestPathAndFilename() in Environment.
[~TASK] FLOW3 (MVC): Reverted recent change by Robert related to request path handling, relates to #6596
[~TASK] FLOW3 (Utility): Some more changes to getRequestUri() in Environment, relates to #6596, relates to #3029, relates to #3375.
[~TASK] FLOW3 (Resource): Make use of new getScriptRequestPath() method in FileSystemPublishingTarget.

2 lines of code changed in 1 file:

  • Classes/MVC/Web: Request.php (+2 -20)
robert 2010-02-25 19:30 Rev.: 3865

[+BUGFIX] FLOW3 (Core): Found out that the getRequestPath() method returned a wrong path in the FCGI case. Probably now finally fixes #6596

1 lines of code changed in 1 file:

  • Classes/MVC/Web: Request.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.

12 lines of code changed in 2 files:

  • Classes/MVC/Web: RequestBuilder.php (+6 -6), RequestHandler.php (+6 -6)
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

12 lines of code changed in 3 files:

  • Classes/MVC/Web: Request.php (+2 -2), RequestBuilder.php (+7 -7), RequestHandler.php (+3 -3)
robert 2009-12-07 19:09 Rev.: 3536

[~TASK] FLOW3 (AOP): Removed the "Resource" sub package from the blacklisted sub packages because it now contains a class (Resource) which needs to be persistable.
[-FEATURE][!!!] FLOW3 (MVC): For now removed the request hash feature (HMAC) because it mocks a level of security for incoming data which it doesn't provide. The current mechanism effectively puts control over content security into Fluid templates and it doesn't belong there. Although there might be a need for a request hash, the content security must be implemented by other means. Relates to #4960 and relates to #5659.
[+FEATURE] FLOW3 (MVC): Implemented support for file uploads. Uploading files is cooperation between the Web Request Builder, the Property Mapper and the Resource sub package. The solution included in this commit provides handling of incoming files (including nested arguments) and transparent conversion into Resource objects. Resources (files) are only stored once, no matter how often they are uploaded or what original filename they carried. Still missing: view helper, documentation and automatic purging of unused resource files. Addresses #342.
[~API][!!!] FLOW3 (Property): Renamed the property mapper class to "PropertyMapper" (was just "Mapper" before). Relates to #5658
[+FEATURE] FLOW3 (Property): The Property Mapper now supports a mechanism called Object Converters. These convertes enable the mapper to convert strings, arrays or numbers to certain objects, for example a unix time stamp to a DateTime object. Resolves #5660.
[+FEATURE] FLOW3 (Reflection): Implemented the methods "isPropertySettable" and "isPropertyGettable" for the ObjectAccess class.
[~TASK] FLOW3 (Resource): Renamed the StreamWrapper class to StreamWrapperAdapter
[+FEATURE] FLOW3 (Resource): Implemented a ResourceObjectConverter which is capable of converting arrays or strings to Resource objects.
[+FEATURE] FLOW3 (Utility): Implemented a setValueByPath() method for the Array utilities class.
[+FEATURE] FLOW3 (Utility): Added support for the _FILES super global to the Environment class. The array of information about uploaded files can be obtained in a much cleaner way than PHP provides it by the new getUploadedFiles() method.

11 lines of code changed in 1 file:

  • Classes/MVC/Web: RequestBuilder.php (+11 -1)
k-fish 2009-11-30 18:56 Rev.: 3529

[~TASK] FLOW3 (Environment): Renamed getRawGETArguments() and getRawPOSTArguments() to getRawGetArguments() and getRawPostArguments().

1 lines of code changed in 1 file:

  • Classes/MVC/Web: RequestBuilder.php (+1 -1)
k-fish 2009-11-05 14:41 Rev.: 3449

[~API] FLOW3 (Log): setLogFileURL() was renamed to setLogFileUrl() in FileBackend.
[~API] FLOW3 (MVC): redirectToURI() was renamed to redirectToUri() in AbstractController.
[~API] FLOW3 (MVC): setRequestURI(), getRequestURI(), setBaseURI() and getBaseURI() were renamed to *Uri() in Request.
[~API] FLOW3 (Property): DataType\URI was renamed to DataType\Uri.
[~API] FLOW3 (Utility): getRequestURI() was renamed to getRequestUri() in Environment.
[~TASK] Fluid (Service): Refactored XML generators a little.
[~TASK] DocumentationBrowser: Moved towards more consistent class, function and variable naming: changed uppercase acronyms to studlyCaps or StudlyCaps as needed.
[~TASK] FLOW3: Moved towards more consistent class, function and variable naming: changed uppercase acronyms to studlyCaps or StudlyCaps as needed.
[~TASK] Fluid: Moved towards more consistent class, function and variable naming: changed uppercase acronyms to studlyCaps or StudlyCaps as needed.
[~TASK] Kickstart: Moved towards more consistent class, function and variable naming: changed uppercase acronyms to studlyCaps or StudlyCaps as needed.
[~TASK] Testing: Moved towards more consistent class, function and variable naming: changed uppercase acronyms to studlyCaps or StudlyCaps as needed.
[~TASK] Welcome: Moved towards more consistent class, function and variable naming: changed uppercase acronyms to studlyCaps or StudlyCaps as needed.

28 lines of code changed in 2 files:

  • Classes/MVC/Web: Request.php (+26 -26), RequestBuilder.php (+2 -2)
k-fish 2009-10-22 18:22 Rev.: 3345

[~TASK] FLOW3: Added @api annotations on class level and adjusted CGL to explain class-level @api handling.

2 lines of code changed in 2 files:

  • Classes/MVC/Web: Request.php (+1 -1), Response.php (+1)
k-fish 2009-10-13 13:24 Rev.: 3317

[~TASK] FLOW3 (MVC): Renamed exception InvalidOrNoRequestHash to InvalidOrMissingRequestHash, some tiny documentation tweaks.

1 lines of code changed in 1 file:

  • Classes/MVC/Web: Request.php (+1 -1)
sebastian 2009-10-09 13:59 Rev.: 3309

[!!!][+FEATURE] FLOW3 (Security): Added a HMAC generator and checker to prevent unauthorized access on objects where no edit fields were generated for. It is mandatory in case objects are modified on the server side. See the issue for a more in-depth explanation. This feature does NOT break backwards-compatibility as long as you use only Fluid for form-generation. In case of custom fields, it WILL break backwards compatibility, and you might need the @dontverifyrequesthash annotation. Resolves #4960.
[+FEATURE] Fluid (ViewHelpers): Added a request hash to all form fields. It is mandatory in case objects are modified on the server side. Relates to #4960.

26 lines of code changed in 1 file:

  • Classes/MVC/Web: Request.php (+26)
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:

  • Classes/MVC/Web: RequestBuilder.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 4 files:

  • Classes/MVC/Web: Request.php (-8), RequestBuilder.php (-8), RequestHandler.php (-8), Response.php (-8)
k-fish 2009-07-15 12:28 Rev.: 2794

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

13 lines of code changed in 4 files:

  • Classes/MVC/Web: Request.php (+7 -2), RequestBuilder.php (-6), RequestHandler.php (-4), Response.php (+6)
k-fish 2009-05-25 12:10 Rev.: 2363

FLOW3:
* some whitespace paranoia^Wcleanup
* removed a use statement
* (re-)introduced some inject methods - in FLOW3 itself we do not use @inject

1 lines of code changed in 1 file:

  • Classes/MVC/Web: RequestBuilder.php (+1)
bwaidelich 2009-05-23 17:51 Rev.: 2344

FLOW3:
* Removed FLOW3\Utility\GenericCollection from repository, it's currently not needed. Resolves #3400
* Moved method setArgumentsFromRawRequestData() from Router to RequestBuilder. Resolves #3368
* Renamed URIHelper to URIBuilder. Removed Classes HelperInterface, AbstractHelper and InvalidViewHelper Exception. Adapted AbstractView & ViewInterface. Resolves #3303
* Added section parameter to URIFor() method of the URIBuilder
* Refactored Base controllers - controllerContext is no instance variable anymore and will be created when passed to view in initializeView(). Resolves #3404
* ControllerContext is of scope prototype now. Added setter/getter for URIBuilder. Some cosmetic changes.
* Added getRequestPath() to Request.
* ControllerKeys (@controller, @action, @package, @subpackage and @format) can now be set by request arguments. Resolves #2853

42 lines of code changed in 2 files:

  • Classes/MVC/Web: Request.php (+10), RequestBuilder.php (+32)
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.

11 lines of code changed in 3 files:

  • Classes/MVC/Web: Request.php (+2), RequestBuilder.php (+5), RequestHandler.php (+4)
robert 2009-05-04 14:25 Rev.: 2189

* FLOW3: (MVC) Introduced a RequestInterface and a ResponseInterface and made sure those are used everywhere where the Request class was used before.
* FLOW3: (Documentation) Continued writing documentation for the MVC framework.

0 lines of code changed in 1 file:

  • Classes/MVC/Web: RequestHandler.php (-5)
k-fish 2009-03-03 14:46 Rev.: 1966

FLOW3:
* Package\Meta\XMLWriter now uses startDocument() instead of writeRaw()
* replaced chr(10) with PHP_EOL (where applicable!)
* replaced curly braces with square brackets for character access on strings (this is no longer the better choice...)
* replaced == with typesafe comparator === where it was used

TYPO3CR:
* replaced chr(10) with PHP_EOL (where applicable!)
* replaced curly braces with square brackets for character access on strings (this is no longer the better choice...)

1 lines of code changed in 1 file:

  • Classes/MVC/Web: Response.php (+1 -1)
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

62 lines of code changed in 4 files:

  • Classes/MVC/Web: Request.php (new 41), RequestBuilder.php (new), RequestHandler.php (new 19), Response.php (new 2)
robert 2009-01-26 19:27 Rev.: 1795

* FLOW3: (MVC) Renamed the setSettings() method of the AbstractController to injectSettings() in order to use the new settings injection feature
* FLOW3: (MVC) Moved the Controller Interface to the Controller namespace. Addresses #2515
* FLOW3: (Utility) Removed the REQUEST_METHOD_* constants in the Environment class
* FLOW3: (Utility) Renamed the getPOSTArguments and getGETArguments methods to getRawPOSTArguments and getRawGETArguments respectively
* FLOW3: (Utility) Introduced a new method getRawServerEnvironment to the Environment API

5 lines of code changed in 2 files:

  • Classes/MVC/Web: F3_FLOW3_MVC_Web_Request.php (+4 -12), F3_FLOW3_MVC_Web_RequestHandler.php (+1 -10)
robert 2009-01-26 13:25 Rev.: 1791

* FLOW3: (MVC) Removed the Request Processor Chain and its manager
* FLOW3: (MVC) Wrote a test case for the yet untested Web Request Handler

7 lines of code changed in 2 files:

  • Classes/MVC/Web: F3_FLOW3_MVC_Web_RequestBuilder.php (+4 -3), F3_FLOW3_MVC_Web_RequestHandler.php (+3 -7)
k-fish 2009-01-15 16:06 Rev.: 1749

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

4 lines of code changed in 4 files:

  • Classes/MVC/Web: F3_FLOW3_MVC_Web_Request.php (+1 -1), F3_FLOW3_MVC_Web_RequestBuilder.php (+1 -1), F3_FLOW3_MVC_Web_RequestHandler.php (+1 -1), F3_FLOW3_MVC_Web_Response.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!

8 lines of code changed in 4 files:

  • Classes/MVC/Web: F3_FLOW3_MVC_Web_Request.php (+2 -2), F3_FLOW3_MVC_Web_RequestBuilder.php (+2 -2), F3_FLOW3_MVC_Web_RequestHandler.php (+2 -2), F3_FLOW3_MVC_Web_Response.php (+2 -2)
k-fish 2009-01-07 11:37 Rev.: 1707

FLOW3:
* changed license to LGPL v3 or later

56 lines of code changed in 4 files:

  • Classes/MVC/Web: F3_FLOW3_MVC_Web_Request.php (+14 -7), F3_FLOW3_MVC_Web_RequestBuilder.php (+14 -7), F3_FLOW3_MVC_Web_RequestHandler.php (+14 -7), F3_FLOW3_MVC_Web_Response.php (+14 -7)
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

82 lines of code changed in 4 files:

  • Classes/MVC/Web: F3_FLOW3_MVC_Web_Request.php (+30 -30), F3_FLOW3_MVC_Web_RequestBuilder.php (+18 -18), F3_FLOW3_MVC_Web_RequestHandler.php (+26 -26), F3_FLOW3_MVC_Web_Response.php (+8 -8)
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.

13 lines of code changed in 2 files:

  • Classes/MVC/Web: F3_FLOW3_MVC_Web_RequestBuilder.php (+6 -6), F3_FLOW3_MVC_Web_RequestHandler.php (+7 -7)
k-fish 2008-11-04 14:02 Rev.: 1425

FLOW3:
* removed some unused code from component factory
* fixed component factory usage in CLI request handling

6 lines of code changed in 1 file:

  • Classes/MVC/Web: F3_FLOW3_MVC_Web_RequestHandler.php (+6 -5)
robert 2008-11-03 19:23 Rev.: 1422

* 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

11 lines of code changed in 3 files:

  • Classes/MVC/Web: F3_FLOW3_MVC_Web_RequestBuilder.php (+1 -1), F3_FLOW3_MVC_Web_RequestHandler.php (+9 -2), F3_FLOW3_MVC_Web_Response.php (+1)
robert 2008-09-16 08:54 Rev.: 1223

Globally (manually) replaced all occurrences of "key_exists()" with either isset() or array_key_exists().

2 lines of code changed in 1 file:

  • Classes/MVC/Web: F3_FLOW3_MVC_Web_Response.php (+2 -2)
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

77 lines of code changed in 4 files:

  • Classes/MVC/Web: F3_FLOW3_MVC_Web_Request.php (+30 -29), F3_FLOW3_MVC_Web_RequestBuilder.php (+19 -18), F3_FLOW3_MVC_Web_RequestHandler.php (+24 -23), F3_FLOW3_MVC_Web_Response.php (+4 -3)
robert 2008-09-10 15:30 Rev.: 1197

* FLOW3: (MVC) If the name of a valid controller component could not be resolved, the Request will now throw a "No Such Controller" exception. Earlier, the default controller was chosen which made debugging quite hard in some situations.
* FLOW3: (MVC) Removed the Presentation Controller which had no functionality (yet) anyway and wasn't used either.
* FLOW3: (MVC) Added a new method "initializeArguments" to the Request Handling Controller. Please define your arguments in this method now instead of using the initializeController() or initializeAction() method.
* FLOW3: (MVC) Added the initial implementation of a REST controller which automatically chooses the right action method based on the HTTP request.
* FLOW3: (Property) Corrected at least some misbehaviour / bug in the Property Mapper (mapping results were not used properly). However, the whole Property Editor mechanism seems still to be unstable.
* TYPO3: (Service) Further experiments with the REST services. A site service can for example be accessed via http://yourhost/typo3/service/v1/sites.json

12 lines of code changed in 2 files:

  • Classes/MVC/Web: F3_FLOW3_MVC_Web_Request.php (+1 -1), F3_FLOW3_MVC_Web_Response.php (+11 -1)
robert 2008-09-04 16:44 Rev.: 1182

* FLOW3: (MVC) More features for the Web Response object - it is now possible to set custom headers
* FLOW3: (MVC) Improvement of the forward() method in the RequestHandlingController: After calling forward(), the control is returned to the dispatcher and lines in the controller following after the forward() method are not executed anymore.
* FLOW3: (MVC) Implemented the redirect() method for the RequestHandlingController

27 lines of code changed in 1 file:

  • Classes/MVC/Web: F3_FLOW3_MVC_Web_Response.php (+27 -1)
robert 2008-09-04 12:57 Rev.: 1181

* FLOW3: (MVC) Started implementing more features for the Web Response: It now supports custom HTTP status headers
* TYPO3: Commit of the latest backend experiments

128 lines of code changed in 1 file:

  • Classes/MVC/Web: F3_FLOW3_MVC_Web_Response.php (+128)
k-fish 2008-08-22 11:13 Rev.: 1145

FLOW3: autowired setter injectors are now required by default, fixes #1209.

0 lines of code changed in 2 files:

  • Classes/MVC/Web: F3_FLOW3_MVC_Web_Request.php (-1), F3_FLOW3_MVC_Web_RequestBuilder.php (-3)

(9 more)

Generated by StatSVN 0.5.0