Directory Classes/Resource/Streams/

Directory Created:
2009-12-21 17:21
Directory Deleted:
2010-08-24 10:42
Total Files:
0
Deleted Files:
4
Lines of Code:
0

[root]/Classes/Resource/Streams

Lines of Code

Classes/Resource/Streams/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 18 (100.0%) 1984 (100.0%) 110.2
robert 10 (55.6%) 1965 (99.0%) 196.5
k-fish 8 (44.4%) 19 (1.0%) 2.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 4 files:

  • Classes/Resource/Streams: PackageResourceStreamWrapper.php (del), ResourceStreamWrapper.php (del), StreamWrapperAdapter.php (del), StreamWrapperInterface.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 3 files:

  • Classes/Resource/Streams: ResourceStreamWrapper.php (-1), StreamWrapperAdapter.php (-1), StreamWrapperInterface.php (-1)
k-fish 2010-06-11 11:29 Rev.: 4491

[+BUGFIX] FLOW3 (Resource): The ResourceStreamWrapper now handles non-existent paths correctly in makeDirectory() and open(), fixes #8156.

19 lines of code changed in 1 file:

  • Classes/Resource/Streams: ResourceStreamWrapper.php (+19 -9)
robert 2010-06-07 14:17 Rev.: 4447

[~BUGFIX] FLOW3 (Locale): The NumbersReader was using the shut-up operator (@) which results in exceptions if the warning level is E_NOTICE. Fixed this by some proper if condition.
[~BUGFIX] FLOW3 (Resource): Fixed the failing ResourceStreamWrapper test.

4 lines of code changed in 1 file:

  • Classes/Resource/Streams: ResourceStreamWrapper.php (+4 -2)
robert 2010-06-07 13:54 Rev.: 4446

[+FEATURE] FLOW3 (Resource): The resource:// stream wrapper now also supports persistent resource - just specify the resource hash to access one. Resolves #8082
[+FEATURE] FLOW3 (Resource): The Resource Manager now provides an API method for getting more information about recently imported or uploaded resources. Resolves #8088
[+FEATURE] FLOW3 (Resource): Resource objects can now be converted to a string. Its __toString() method returns the resource's sha1 hash.
[+TASK] FLOW3 (Documentation): Updated the Resource Management section in the FLOW3 manual.
[~TASK] FLOW3 (Error): The debugger now doesn't filter Resource classes anymore.

51 lines of code changed in 1 file:

  • Classes/Resource/Streams: ResourceStreamWrapper.php (+51 -55)
robert 2010-06-04 16:16 Rev.: 4443

[~TASK][!!!] FLOW3 (Resource): Renamed the resource stream wrapper's scheme from "package://" to "resource://". You need to globally search & replace "package://" your code for this to work. Resolves #8063

516 lines of code changed in 1 file:

  • Classes/Resource/Streams: ResourceStreamWrapper.php (new 516)
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.

16 lines of code changed in 2 files:

  • Classes/Resource/Streams: PackageResourceStreamWrapper.php (+9 -9), StreamWrapperAdapter.php (+7 -7)
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

9 lines of code changed in 2 files:

  • Classes/Resource/Streams: PackageResourceStreamWrapper.php (+6 -6), StreamWrapperAdapter.php (+3 -3)
robert 2009-12-21 17:21 Rev.: 3548

[+FEATURE][+API] Fluid (ViewHelper): The Resource view helper now supports Resource objects: Like before you can provide a path and package key pointing to a static package resource or you pass it a resource object. Relates to #5822
[~TASK][~API] Fluid (ViewHelper): The ActionViewhelper now produces only absolute URIs. The argument "absolute" is now obsolete.
[~TASK] Fluid (ViewHelper): Defined additional reserved keywords "on", "off", "yes" and "no" in the TemplateVariableContainer.
[~TASK] FLOW3 (Resource): Renamed a few classes in FLOW3/Resource/: "Manager" -> "ResourceManager", "Publisher" -> "ResourcePublisher". Relates to #5658
[~TASK] FLOW3 (Cache): Defined a new "magic" tag for the cache frontends: TAG_PACKAGE can now be used wherever cache entries should be flushed if any package is activated or deactivated. Relates to #5774
[~TASK] FLOW3: Replaced occurrences of "[fF]ileName" with "[fF]ilename".
[~TASK] FLOW3 (Package): isPackageAvailable() and isPackageActive() no longer throw exceptions if the given parameter is not a valid string. However they still return FALSE of course in those cases.
[+FEATURE][+API] FLOW3 (Reflection): Added a new method isMethodTaggedWith() to the Reflection Service.
[+FEATURE][+API] FLOW3 (Resource): Completely reworked the resource management module. It now supports persistent resources, file uploads and provides a more flexible publishing mechanism. Resolves #5822

[+FEATURE] FLOW3 (Resource): Implemented an Object Converter for resources which can handle file uploads.
[~TASK] FLOW3 (Utility): Renamed Files::mimeTypeFromFilename() and Files::mediaTypeFromFilename() to Files::getMimeTypeFromFilename() and Files::getMediaTypeFromFilename() respectively.
[~CONFIGURATION][~API] FLOW3 (Resource): Changed the names of settings for the Resource module. Please refer to the updated Settings.yaml for the new options.
[~TASK] FLOW3 (Documentation): Documented the new Resource module.
[~TASK] ExtJS: Updated the view helpers to match the new Resource framework. Relates to #5822
[~TASK] FLOW3: Implemented additional rewrite rules in the .htaccess file to support the new static resources publish mechanism.

1369 lines of code changed in 3 files:

  • Classes/Resource/Streams: PackageResourceStreamWrapper.php (new 512), StreamWrapperAdapter.php (new 476), StreamWrapperInterface.php (new 381)
Generated by StatSVN 0.5.0