mark_story
|
328db0c36b
|
Fixed a number of tests, there are still a few issues with prefix routes.
Moved removing defaults that are also keys to the compile step. This
removes quite a few repetitive loops.
|
2010-12-18 14:18:21 -05:00 |
|
mark_story
|
8d404332a2
|
Fixing issue where named params equal to null/false would be part of the generated url.
|
2010-12-18 13:40:07 -05:00 |
|
mark_story
|
6ef8203d54
|
Adding another case that makes false/null to not cause match failure.
|
2010-12-18 13:32:05 -05:00 |
|
mark_story
|
456a14cf37
|
Refactored CakeRoute::match() to not use Set::diff(). This was the slowest part of reverse routing and this change should make things faster.
Added additional tests for the 0 edge case.
|
2010-12-18 12:34:48 -05:00 |
|
mark_story
|
c5bab54125
|
Starting to try and re-factor named params to perform better and be more
explicit with how they are used.
|
2010-12-18 00:15:09 -05:00 |
|
mark_story
|
de7b324444
|
Fixing more strict warnings.
Removing & on component callbacks.
Updating incorrect method signatures.
|
2010-12-18 00:03:03 -05:00 |
|
mark_story
|
6206fefcee
|
Starting to switch to a _mergeParent. This will allow un skipping of many tests, and make mergeVars more flexible.
|
2010-12-15 23:44:43 -05:00 |
|
mark_story
|
a054695dca
|
Fixing failing tests.
|
2010-12-15 22:08:24 -05:00 |
|
Jeremy Harris
|
9e74283b90
|
Merge branch '2.0-1353' into 2.0
|
2010-12-14 20:42:03 -08:00 |
|
Jeremy Harris
|
904cb8a4a6
|
Merge branch '2.0' of github.com:cakephp/cakephp into 2.0
|
2010-12-14 20:30:58 -08:00 |
|
mark_story
|
7b4ffa2ee9
|
Fixing incorrect exception type.
|
2010-12-14 23:24:37 -05:00 |
|
Juan Basso
|
754c9b2c3d
|
Updated to HttpSocket, HttpResponse and CakeSocket use SocketException.
|
2010-12-15 02:01:00 -02:00 |
|
Jeremy Harris
|
b9143dc7d4
|
Added ControllerTestCase class for testing controllers. Fixes #1244
|
2010-12-14 19:58:27 -08:00 |
|
Juan Basso
|
c0e2f63f7d
|
Merge with 2.0-http.
|
2010-12-15 01:58:21 -02:00 |
|
Juan Basso
|
ad5e7248c5
|
Fixed documentation.
|
2010-12-15 01:54:48 -02:00 |
|
mark_story
|
478d158133
|
Removing a var_dump because I'm a muppet.
|
2010-12-14 22:52:31 -05:00 |
|
Juan Basso
|
99407282e5
|
Updated the config of auth in digest method.
|
2010-12-15 01:51:00 -02:00 |
|
mark_story
|
84414eeb07
|
Removing CakeSession::watch() and CakeSession::ignore(). You should use logging, or an interactive debugger instead.
|
2010-12-14 22:35:43 -05:00 |
|
Jeremy Harris
|
9fa1bec0cb
|
Move Controller::paginate() into PaginatorComponent
|
2010-12-14 18:21:39 -08:00 |
|
Juan Basso
|
296aef2c11
|
Removed the import. It is called in request.
|
2010-12-14 11:13:44 -02:00 |
|
Juan Basso
|
2cbece6784
|
Removed the lineBreak attribute, this is fixed in RFC.
|
2010-12-14 11:11:36 -02:00 |
|
Juan Basso
|
cf7aae7911
|
Removed parseHeader from HttpSocket (it was not used). Moved the tests of parseHeader to HttpResponse.
|
2010-12-14 11:05:37 -02:00 |
|
mark_story
|
bd951791f4
|
Removing forced start of sessions now that they are lazily started.
|
2010-12-13 23:59:57 -05:00 |
|
mark_story
|
8eebdffcbb
|
Updating session to lazy start after the first time an operation has been performed. This should make controllers that only use sessions on some actions perform better.
|
2010-12-13 23:59:57 -05:00 |
|
mark_story
|
9e1c85e627
|
Removing auto-start from CakeSession. Lazy starting will be more performant in most cases.
|
2010-12-13 23:59:57 -05:00 |
|
Juan Basso
|
37303d9c37
|
HttpResponse::getHeader() is more flexible to accept a custom header list.
|
2010-12-14 02:52:40 -02:00 |
|
Juan Basso
|
2f64afe44e
|
Allowing the user change the response class.
|
2010-12-14 02:46:31 -02:00 |
|
Juan Basso
|
176da15417
|
Moved the response methods from HttpSocket to HttpResponse.
|
2010-12-14 02:22:30 -02:00 |
|
Juan Basso
|
60a9d34027
|
Updated the HttpSocket to use the new HttpResponse.
|
2010-12-14 01:07:25 -02:00 |
|
Juan Basso
|
f45027ecd8
|
Adjusting HttpResponse responses in array to be more compatible.
|
2010-12-14 01:06:57 -02:00 |
|
Juan Basso
|
dfb76d67da
|
Created the HttpResponse to get HttpSocket responses.
|
2010-12-14 00:16:45 -02:00 |
|
mark_story
|
2fe60142f5
|
Fixing more strict warnings.
|
2010-12-12 21:09:56 -05:00 |
|
mark_story
|
0ac8d04241
|
Fixing more strict warnings.
|
2010-12-12 21:02:42 -05:00 |
|
mark_story
|
f84871ae47
|
Fixing strict errors that were causing shell tests to fail.
Fixing test case for bake test that has been getting skipped.
|
2010-12-12 20:55:33 -05:00 |
|
Juan Basso
|
c20b5d7053
|
Renamed setAuthConfig to configAuth, and setProxyConfig to configProxy.
|
2010-12-12 23:48:04 -02:00 |
|
mark_story
|
017385d61c
|
Fixing most of the strict errors in the helper test suite.
|
2010-12-12 20:21:14 -05:00 |
|
mark_story
|
f3445cd941
|
Making ModelBehavior::beforeFind() return true by default. Since
returning null causes the find to abort, behaviors should return true if
they are not going to return a query array.
|
2010-12-12 18:04:52 -05:00 |
|
mark_story
|
bf22af6b7f
|
Fixing more strict errors and usage errors in BehaviorCollection test.
Making modParams only work if the result is an array. This is for compatibility with previous behaviour.
|
2010-12-12 17:42:40 -05:00 |
|
mark_story
|
3c69d9b138
|
Making ModelBehavior beforeX callbacks default to returning true. Returning null or false from a Behavior::before method will abort the operation. It felt illogical to have null continue, but false stop.
|
2010-12-12 17:40:13 -05:00 |
|
mark_story
|
48879f8264
|
Fixing strict errors in translate and acl behaviors.
Removing conditional definition of I18nModel. There is no reason for it to exist anymore.
Removing duplicate class definition.
|
2010-12-12 17:38:49 -05:00 |
|
mark_story
|
cc81f6d062
|
Fixing strict errors in Set class.
|
2010-12-12 17:37:31 -05:00 |
|
mark_story
|
df21d19c4c
|
Making a bunch of properties public so containable can hack around. Need to refactor and fix visibility issues.
Fixing failing tests in containable.
|
2010-12-12 15:48:36 -05:00 |
|
mark_story
|
10c358742b
|
Making modParams ignore null results.
Test added.
|
2010-12-12 15:33:24 -05:00 |
|
mark_story
|
a05baaa76e
|
Removing BehaviorCollection::trigger() so it uses the parent method.
Updating model to use the new behaviorcollection trigger method signature.
|
2010-12-12 15:03:23 -05:00 |
|
mark_story
|
81e009b816
|
Fixing additional strict warnings.
|
2010-12-12 15:02:38 -05:00 |
|
mark_story
|
33b8a35b75
|
Fixing strict warnings in TreeBehavior and a few other classes.
|
2010-12-12 14:56:48 -05:00 |
|
mark_story
|
b135e38072
|
Adding documentation.
|
2010-12-12 14:12:55 -05:00 |
|
mark_story
|
96968f7194
|
Moving the modParams option into ObjectCollection, so it can replace the specific trigger method in BehaviorCollection.
Changed how break behaves, so it is works better with modParams and collectReturn options.
Tests updated and expanded.
|
2010-12-12 14:10:22 -05:00 |
|
mark_story
|
d14d148948
|
Making scaffold form view names consistent with those used in bake.
Renaming test_app files.
Fixes #501
|
2010-12-12 13:18:28 -05:00 |
|
mark_story
|
11df32148f
|
Updating scaffold templates to use post forms for delete buttons. Updating test case.
|
2010-12-12 13:13:00 -05:00 |
|