Mark Story
|
257665eb5b
|
Updating doc blocks for bindModel and unbindModel, explaining that associations are only reset when find() is called. Refs #652
|
2010-05-01 17:37:23 -04:00 |
|
Mark Story
|
0eb4849803
|
Renaming a method.
|
2010-05-01 11:08:58 -04:00 |
|
Mark Story
|
2b08ad6012
|
Updating fatal tests in Dispatcher tests. Updating Router to use a method instead of a raw array_merge.
|
2010-05-01 11:07:32 -04:00 |
|
Mark Story
|
0a7ba707b6
|
Adding tests for CakeRequest::addParams()
|
2010-05-01 11:06:51 -04:00 |
|
Mark Story
|
40bca71985
|
Adding tests and features for CakeRequest to parse querystring args from the url parameter in the constructor. Added tests.
|
2010-05-01 11:04:41 -04:00 |
|
Mark Story
|
fbd70bf23c
|
Making Dispatcher::parseParams require a CakeRequest object instead of as string url. Updating tests in the Dispatcher, and fixing an issue where POST params would be wiped out by Router.
|
2010-05-01 10:48:30 -04:00 |
|
Mark Story
|
ffd05ffc3e
|
Removing methods from Dispatcher that have been moved to CakeRequest.
Removing test cases for features that don't exist anymore.
Updating Router and Dispatcher to use the request object.
|
2010-05-01 01:43:06 -04:00 |
|
Mark Story
|
558aea0221
|
Moving tests and helper methods from Dispatcher into CakeRequest
|
2010-05-01 01:06:09 -04:00 |
|
Mark Story
|
1b5c0cca4d
|
Removing duplicated code and moving methods to protected.
|
2010-05-01 00:32:43 -04:00 |
|
Mark Story
|
4deacf0b06
|
Existing tests are now all passing.
|
2010-05-01 00:18:17 -04:00 |
|
Mark Story
|
c7f4334bff
|
Moving test code around and starting to refactor things in tests.
|
2010-04-30 23:37:16 -04:00 |
|
José Lorenzo Rodríguez
|
ad51115e12
|
Fixing bug where required class would be added to form fields when using single rule syntax in $validate even if allowEmpty is set to true
Closes #654
|
2010-04-30 16:42:59 -04:30 |
|
José Lorenzo Rodríguez
|
9b040a5ed3
|
Fixing code formating
|
2010-04-30 16:07:59 -04:30 |
|
ADmad
|
0471ea046f
|
Adding test case for 'required' class adding to wrapping div based on model validations. Refs #654
|
2010-05-01 01:19:52 +05:30 |
|
Mark Story
|
85b86164e3
|
Starting to move additional methods from Dispatcher into CakeRequest. Tests have been moved, and updated.
|
2010-04-30 00:13:24 -04:00 |
|
Mark Story
|
51db3c80ef
|
Moving query string params around. Updating test cases.
|
2010-04-29 23:20:31 -04:00 |
|
Mark Story
|
0bbd7fae2c
|
Adding more tests to CakeRequest::addDetector() for callback type.
|
2010-04-29 23:11:15 -04:00 |
|
Mark Story
|
6dcc680c1a
|
implementing CakeRequest::addDetector() and adding test cases.
|
2010-04-29 23:08:01 -04:00 |
|
Mark Story
|
4fbed678cf
|
Fixing bad method call again.
|
2010-04-29 22:34:01 -04:00 |
|
Mark Story
|
734e4fa87a
|
Removing the conditional check around including custom session configuration files. This fixes issues where requestAction could cause loss of session settings, and improves the end developers ability to customize the session. Custom session files should ensure that classes/functions are conditionally declared. Fixes #374, #541
|
2010-04-29 21:40:12 -04:00 |
|
ADmad
|
afd67e534b
|
Fixing parse error created in commit [6d092552e5 ]. Closes #647
|
2010-04-30 03:52:39 +05:30 |
|
Mark Story
|
0daf6e4dba
|
Adding skeleton for addDetector.
|
2010-04-29 00:33:41 -04:00 |
|
Mark Story
|
a6ee9e352d
|
Expanding doc blocks for methods.
Adding ArrayAccess implementation and test cases.
|
2010-04-29 00:22:33 -04:00 |
|
Mark Story
|
476a76b7a4
|
Adding __get() and test cases.
|
2010-04-29 00:22:33 -04:00 |
|
Mark Story
|
c11095bc54
|
Adding __call() for undefined method handling. Tests added.
|
2010-04-29 00:22:33 -04:00 |
|
Mark Story
|
3a0ad6f1a8
|
Starting CakeRequest::is() and adding tests for various core is() types.
|
2010-04-29 00:22:32 -04:00 |
|
Mark Story
|
aab4a9413a
|
Adding CakeRequest::referer() and test cases.
|
2010-04-29 00:22:32 -04:00 |
|
Mark Story
|
64aafd36bb
|
Expanding coverage for CakeRequest. Expanding doc blocks in CakeRequest.
|
2010-04-29 00:22:32 -04:00 |
|
Mark Story
|
93f4c66035
|
Adding tests for CakeRequest's ability to munge through the FILES array. Fixing issue where files would be in the wrong place.
|
2010-04-29 00:22:32 -04:00 |
|
Mark Story
|
8f207a5f69
|
Moving getClientIp into CakeRequest. Moving relevant tests as well.
|
2010-04-29 00:22:32 -04:00 |
|
Mark Story
|
15a4607061
|
Fixing some issues with parameter handling. Adding test cases.
|
2010-04-29 00:22:32 -04:00 |
|
Mark Story
|
f17eebecf2
|
Adding CakeRequest and its test case. Moving features from Dispatcher into CakeRequest.
|
2010-04-29 00:22:32 -04:00 |
|
Mark Story
|
7ea8640b76
|
Fixing issue where table name was not using fully qualified table names, causing issues with models using table prefixes. Tests added. Fixes #623
|
2010-04-29 00:22:30 -04:00 |
|
predominant
|
2420bce168
|
Updated vesion numbers to 1.3.0
|
2010-04-29 00:21:27 -04:00 |
|
ADmad
|
4efb07b15a
|
Model::deleteAll() now returns false if the 'find' to fetch records ids returns false (in case of sql error). Closes #272
|
2010-04-29 00:20:35 -04:00 |
|
Mark Story
|
a691edbcff
|
Adding tests for passed arguments with dots when parseExtensions() has been called. Refs #620
|
2010-04-29 00:20:35 -04:00 |
|
Mark Story
|
e725ae10fa
|
Adding tests for dispatcher to show periods not being removed. Refs #620
|
2010-04-29 00:20:35 -04:00 |
|
Mark Story
|
0800483407
|
Adding tests that show that Router is not chopping off periods from passed arguments. Refs #620
|
2010-04-29 00:20:35 -04:00 |
|
Mark Story
|
70b3225ff0
|
Fixing group path checking in test manager.
Conflicts:
cake/tests/lib/test_manager.php
|
2010-04-29 00:20:35 -04:00 |
|
Mark Story
|
57648c5492
|
Fixing parameters from leaking into the script tag when calling JsHelper::submit(). Added test cases and refactored JsHelper::link(). Fixes #613
|
2010-04-29 00:20:35 -04:00 |
|
Mark Story
|
e4ea82dfc9
|
Adding htmlentities() to all parameters passed into the HtmlReporter.
|
2010-04-29 00:20:35 -04:00 |
|
Mark Story
|
a08c09ab17
|
Fixing security vulnerabilities in the test suite runner.
|
2010-04-29 00:20:35 -04:00 |
|
Mark Story
|
33a38118b6
|
Making tests more accurate to normal use, removing extra params and adding some tests for sortKey. Refs #614
|
2010-04-29 00:20:35 -04:00 |
|
Mark Story
|
6d092552e5
|
Updating bake templates and Scaffold to use less sprintf() and more complete sentences in i18n strings. This should make translations easier to do in a gender correct way. Fixes #210
|
2010-04-28 23:56:07 -04:00 |
|
José Lorenzo Rodríguez
|
a6f60c1abb
|
Implementing cache lockig in FileEngine using SplFileObject
|
2010-04-29 00:44:17 +10:00 |
|
José Lorenzo Rodríguez
|
5dce79e424
|
First steps into removing internal usage of File and Folder class in favor of SPL equivalents
|
2010-04-29 00:44:04 +10:00 |
|
José Lorenzo Rodríguez
|
d3b257fffb
|
Implementing cache lockig in FileEngine using SplFileObject
|
2010-04-28 22:53:00 +10:00 |
|
José Lorenzo Rodríguez
|
977f897a85
|
First steps into removing internal usage of File and Folder class in favor of SPL equivalents
|
2010-04-28 22:52:25 +10:00 |
|
Mark Story
|
afa0e6b8f9
|
Adding cake.icon.png to the skel dir. Fixes the wrong asset being included when new projects are generated. Fixes. #637
|
2010-04-27 23:19:55 -04:00 |
|
Mark Story
|
328c58635b
|
Fixing inflection of words ending in analysis. Fixes #619
|
2010-04-27 23:03:37 -04:00 |
|