mark_story
|
dfa5273b22
|
Making SessionHelper not use ClassRegistry to access View. SessionHelper still needs to not inherit from CakeSession.
|
2010-08-10 23:18:41 -04:00 |
|
mark_story
|
576eba3ef9
|
Removing ClassRegistry use from FormHelper and its test case.
|
2010-08-10 23:18:41 -04:00 |
|
mark_story
|
90b0ac7258
|
Removing remaining ClassRegistry::getObject() in HtmlHelper.
|
2010-08-10 23:18:41 -04:00 |
|
mark_story
|
7efe1636aa
|
Making HtmlHelper not use ClassRegistry to access the View instance. Updating test cases.
|
2010-08-10 23:18:41 -04:00 |
|
mark_story
|
19f008b1a4
|
Fixing broken tests in HelperCollectionTest
Moving unload into ObjectCollection as its common between 2 child classes, and possibly a 3rd.
|
2010-08-10 23:18:40 -04:00 |
|
mark_story
|
55d71dc4b5
|
Updating Controller test case to use new ComponentCollection.
|
2010-08-10 23:18:40 -04:00 |
|
mark_story
|
ca65faef36
|
Starting to fix SecurityComponent test case. SessionComponent still causing lots of trouble.
|
2010-08-10 23:18:40 -04:00 |
|
mark_story
|
fa8a43f038
|
Updating tests to use new Component api. There are still a pile of tests failing because of SessionComponent.
|
2010-08-10 23:18:40 -04:00 |
|
mark_story
|
7b4916e16a
|
Updating AclComponent to new Component API.
|
2010-08-10 23:18:40 -04:00 |
|
mark_story
|
efc5054b65
|
Updating CookieComponent Test case to new Component api.
|
2010-08-10 23:18:40 -04:00 |
|
mark_story
|
22fbc24560
|
Adding 'collectReturn' option to ObjectCollection::trigger. lets a callback collect the return of each object and return that.
Adding tests.
|
2010-08-10 23:18:40 -04:00 |
|
mark_story
|
54132cba79
|
Adding return checks, and changing mock creation.
|
2010-08-10 23:18:40 -04:00 |
|
mark_story
|
bf75ab5737
|
Starting to update Component into a base class instead of a loader class.
|
2010-08-10 23:18:39 -04:00 |
|
mark_story
|
3666643b84
|
Adding ComponentCollection and a test case.
|
2010-08-10 23:18:39 -04:00 |
|
mark_story
|
337ab19145
|
Updating ObjectCollection::trigger() so it doesn't call __get().
Updating HelperCollection test which was passing by coincidence.
|
2010-08-10 23:18:39 -04:00 |
|
mark_story
|
62019888ba
|
Changing file headers to reflect accurate licences and versions created.
|
2010-08-10 23:18:39 -04:00 |
|
mark_story
|
c78e869be6
|
Removing PHP4 workarounds in BehaviorCollection.
Making BehaviorCollection throw exceptions instead of use cakeError.
|
2010-08-10 23:18:39 -04:00 |
|
mark_story
|
d6362f1857
|
Converting spaces to tabs.
|
2010-08-10 23:18:38 -04:00 |
|
mark_story
|
6a88452072
|
Updating TextHelper to not use create_function(). The create_function calls leaked memory and didn't work with the new helper constructors.
|
2010-08-10 23:18:38 -04:00 |
|
mark_story
|
2d791e1ed0
|
TextHelper test case constructor issues fixed. There are still fails caused by create_function in the helper.
|
2010-08-10 23:18:38 -04:00 |
|
mark_story
|
3379e53be0
|
Updating test case to use correct methods.
Updating test case to run in CLI.
|
2010-08-10 23:18:38 -04:00 |
|
mark_story
|
ba8058500f
|
Adding test for attachedness of Helper helpers.
|
2010-08-10 23:18:38 -04:00 |
|
mark_story
|
4672cee5d3
|
Removing dispatchMethod from JsHelper, its not really that useful, and is good at hiding bugs in mock tests.
Updating test cases.
|
2010-08-10 23:18:38 -04:00 |
|
mark_story
|
0e933e8893
|
Updating most helper test cases to use View in their constructors.
|
2010-08-10 23:18:38 -04:00 |
|
mark_story
|
68ff2e5ce5
|
Adding additional tests for Helper lazy loading.
|
2010-08-10 23:18:38 -04:00 |
|
mark_story
|
fc3379767d
|
Moving methods around. ObjectCollection now normalizes helpers arrays. Plugin helpers now lazy load.
Tests updated.
|
2010-08-10 23:18:38 -04:00 |
|
mark_story
|
98982a6f7a
|
First attempt at lazy loading helpers done. Plugin support not complete.
|
2010-08-10 23:18:38 -04:00 |
|
mark_story
|
ab815a53ba
|
Helper test case is passing again.
|
2010-08-10 23:18:37 -04:00 |
|
mark_story
|
087ccabffe
|
Starting to modify Helper constructors.
|
2010-08-10 23:18:37 -04:00 |
|
mark_story
|
1d983e1cd4
|
Making MissingView and MissingLayout cake errors into exceptions.
|
2010-08-10 23:18:37 -04:00 |
|
mark_story
|
a23207791a
|
Modifying View to accept HelperCollection. Removing methods that are no longer needed.
|
2010-08-10 23:18:37 -04:00 |
|
mark_story
|
c15d228515
|
Initial integration of HelperCollection into View.
|
2010-08-10 23:18:37 -04:00 |
|
mark_story
|
16d5b2655c
|
Adding a way to load helpers in a disabled state. Updating tests and subclasses.
|
2010-08-10 23:18:37 -04:00 |
|
mark_story
|
aa61a251dc
|
Deprecating BehaviorCollection::attach() and BehaviorCollection::detach(). load() and unload() are more generic and make sense in other contexts.
Adding base trigger implementation.
Adding tests for helper triggering.
|
2010-08-10 23:18:37 -04:00 |
|
mark_story
|
9fd881cb00
|
Moving methods down and adding some tests.
|
2010-08-10 23:18:36 -04:00 |
|
mark_story
|
6db3dbc680
|
Starting to create HelperCollection which will be responsible for loading and constructing helpers.
Making an abstract class that will be the base of all object collections.
Adding test cases.
|
2010-08-10 23:18:36 -04:00 |
|
mark_story
|
1371cefc3d
|
Applying patch from 'thatcode' to fix an issue where FormHelper::datetime() would not use 'default' or 'value' keys like other inputs would. This corrects an unintentional inconsistency in the methods. Test cases added. Fixes #988
|
2010-08-09 23:49:18 -04:00 |
|
mark_story
|
29ddffa2d3
|
Fixing regression in DboMysqlBase where describe() was no longer pulling out fieldParameters. A test case has been added to catch any future regressions. Fixes #991
|
2010-08-09 23:25:32 -04:00 |
|
mark_story
|
ccfb1d179a
|
Expanding test and fixing issue where the return of Folder::create() would be incorrect even though the directory was properly created. Fixes #996
|
2010-08-09 22:56:41 -04:00 |
|
mark_story
|
d6e3c318cd
|
Merge branch '1.3' of github.com:cakephp/cakephp into 1.3
|
2010-08-04 23:59:17 -04:00 |
|
mark_story
|
a04fe5f81d
|
Making Router::reverse() strip out additional framework internal parameters that are specific to requestAction. Refs #977
|
2010-08-04 23:35:49 -04:00 |
|
mark_story
|
8119f77659
|
Reformatting long lines.
|
2010-08-04 23:18:33 -04:00 |
|
mark_story
|
43bf1c539a
|
Separating the various requestAction tests into separate test methods.
|
2010-08-04 23:16:26 -04:00 |
|
mark_story
|
22673a5348
|
Adding a test case for CacheHelper correctly generating filenames when $this->here includes all the named and passed args. Refs #977
|
2010-08-04 23:08:43 -04:00 |
|
Juan Basso
|
72bb229a9c
|
Added tests to ticket #959
|
2010-08-04 22:10:44 -03:00 |
|
Dirk Brünsicke
|
712ca6d5b5
|
Fixing bug in String::insert that produces unexpected results with
multiple keys that start with the same substring. Fixes #984
Signed-off-by: mark_story <mark@mark-story.com>
|
2010-08-03 22:38:45 -04:00 |
|
José Lorenzo Rodríguez
|
4a8e44b419
|
Adding test case for CakeResponse::mapType()
|
2010-08-02 19:33:09 -04:30 |
|
José Lorenzo Rodríguez
|
e7c7008781
|
Changing behavior of RequestHandlerComponent::responseType(), it will return the current content type set int the response object
It will not return null as default as it did prior 2.0
|
2010-08-02 19:21:52 -04:30 |
|
José Lorenzo Rodríguez
|
8968204cb5
|
Adding test method for CakeResponse::download()
|
2010-08-02 19:16:19 -04:30 |
|
José Lorenzo Rodríguez
|
5fb320f31d
|
Refactoring RequestHandler methods to use the response object
|
2010-08-02 19:10:01 -04:30 |
|