Mark Story
|
27ae7f1f44
|
Making session storage classes not static, there was no real reason they were static before, and removing the static methods allows them to have constructors. This will allow moving database specific features from CakeSession to DatabaseSession.
|
2010-09-06 00:43:58 -04:00 |
|
predominant
|
c1209a1a7a
|
Added RequestObject output in place of Controller:$output whicch no longer exists.
|
2010-08-28 15:15:23 +10:00 |
|
predominant
|
93b80042f8
|
Fix failing scaffold tests.
|
2010-08-28 15:01:43 +10:00 |
|
mark_story
|
d8b2bcdf06
|
Making view + helpers groups pass.
|
2010-08-28 00:40:12 -04:00 |
|
mark_story
|
dcb7a167b4
|
Fixing controller test cases.
|
2010-08-28 00:29:50 -04:00 |
|
mark_story
|
9485f0a993
|
Merge branch 'request-response' into 2.0
Conflicts:
cake/tests/cases/libs/controller/controller.test.php
|
2010-08-28 00:24:07 -04:00 |
|
mark_story
|
e4545dbe5e
|
Fixing failing tests in Dispatcher.test.
|
2010-08-28 00:19:09 -04:00 |
|
mark_story
|
2cdb10812d
|
Merge branch '2.0-exceptions' into 2.0
Conflicts:
cake/dispatcher.php
cake/libs/controller/scaffold.php
cake/tests/cases/dispatcher.test.php
|
2010-08-28 00:14:34 -04:00 |
|
José Lorenzo Rodríguez
|
f63b093d24
|
Merge branch '2.0-request' into 2.0
Still tons of tests failing
Conflicts:
cake/dispatcher.php
cake/libs/controller/components/auth.php
cake/libs/controller/components/request_handler.php
cake/libs/controller/components/security.php
cake/libs/controller/controller.php
cake/libs/router.php
cake/libs/view/helper.php
cake/libs/view/helpers/html.php
cake/libs/view/view.php
cake/tests/cases/dispatcher.test.php
cake/tests/cases/libs/controller/components/auth.test.php
cake/tests/cases/libs/controller/components/request_handler.test.php
cake/tests/cases/libs/controller/components/security.test.php
cake/tests/cases/libs/controller/controller.test.php
cake/tests/cases/libs/router.test.php
cake/tests/cases/libs/view/helper.test.php
cake/tests/cases/libs/view/helpers/cache.test.php
cake/tests/cases/libs/view/helpers/form.test.php
cake/tests/cases/libs/view/helpers/html.test.php
cake/tests/cases/libs/view/helpers/js.test.php
cake/tests/cases/libs/view/helpers/paginator.test.php
|
2010-08-27 23:31:41 -04:30 |
|
mark_story
|
f0d938c1cb
|
Fixing failing tests in scaffold.
|
2010-08-27 23:59:29 -04:00 |
|
mark_story
|
e600f86abd
|
Updating Dispatcher test to test for exceptions instead of cake error returns.
Removing a test that is no longer valid.
|
2010-08-27 23:40:22 -04:00 |
|
mark_story
|
1e6064ceae
|
Removing the last exclusion from the AllHelper group.
|
2010-08-26 23:31:25 -04:00 |
|
mark_story
|
1a52442057
|
Removing class_exists() check as the class is now lazy loaded.
|
2010-08-26 23:26:18 -04:00 |
|
mark_story
|
6c87a026b6
|
Updating base class.
|
2010-08-26 23:24:32 -04:00 |
|
mark_story
|
4cc2229641
|
Updating CacheHelper to use correct View API.
Updating View to make CacheHelper tests pass.
|
2010-08-26 23:24:09 -04:00 |
|
mark_story
|
19e301c867
|
Updating test view to use correct helper syntax.
|
2010-08-26 23:19:20 -04:00 |
|
mark_story
|
7221f9c3b9
|
Moving response construction into Controller, this will let controller classes more easily modify the response subclass they want to use.
Test case updated.
|
2010-08-22 12:31:55 -04:00 |
|
mark_story
|
44f1687f5b
|
Adding another test.
|
2010-08-22 00:54:55 -04:00 |
|
mark_story
|
ec22db597f
|
Adding methods to get host, domain and subdomains for a request.
Tests added.
|
2010-08-22 00:44:05 -04:00 |
|
mark_story
|
0ec0962932
|
Adding CakeRequest::method() to find the name of the HTTP method name used for the request. Test case added.
|
2010-08-22 00:15:13 -04:00 |
|
mark_story
|
750fe3aa05
|
Removing text() and password() as the new __call method handles them.
Updating test cases and adding a test for allowing a magic method to override the type.
|
2010-08-17 00:13:22 -04:00 |
|
mark_story
|
e79df23491
|
Adding a magic __call method to handle html5 inputs and simplify input generation logic.
|
2010-08-17 00:06:23 -04:00 |
|
mark_story
|
e2fee17173
|
Adding an ob_end_flush() to clean up an unclosed buffer.
|
2010-08-16 23:34:43 -04:00 |
|
mark_story
|
4622ec44c2
|
Updating the skel and app test.php's to not make a global variable for the dispatcher. This dramatically improves the performance of the web test runner.
|
2010-08-16 23:33:07 -04:00 |
|
mark_story
|
f46241a6e7
|
Merge branch '2.0' into 2.0-helpers
|
2010-08-16 23:02:44 -04:00 |
|
mark_story
|
705e90bef7
|
Merge branch '1.3' into 2.0-merge
Conflicts:
cake/libs/cache/memcache.php
cake/libs/cake_session.php
cake/libs/model/behaviors/acl.php
cake/tests/cases/dispatcher.test.php
cake/tests/cases/libs/cake_test_fixture.test.php
cake/tests/cases/libs/model/behaviors/acl.test.php
cake/tests/cases/libs/model/datasources/dbo/dbo_postgres.test.php
|
2010-08-15 23:09:02 -04:00 |
|
mark_story
|
686b9c2c8b
|
Fixing issues in alterSchema in DboMysql and DboPostgres, where fields would be appended to each table being altered.
Also fixed an issue in DboPostgres where the generated alter statements would contain too many ;.
Test cases added. Fixes #1023
|
2010-08-15 22:17:02 -04:00 |
|
mark_story
|
1b41a987fa
|
Adding test cases and fixing inflection issues with bases. Tests added. Fixes #1012
|
2010-08-12 20:26:11 -04:00 |
|
mark_story
|
36e585bb23
|
Starting to update a test that was previously marked incomplete.
|
2010-08-11 23:08:46 -04:00 |
|
mark_story
|
238c734f70
|
Moving a test case that should be implemented in controller, as that is where the code that needs to be tested is located.
|
2010-08-11 22:47:54 -04:00 |
|
mark_story
|
62d646d168
|
Removing tests that have been implemented elsewhere.
|
2010-08-10 23:56:39 -04:00 |
|
mark_story
|
4463ff7476
|
Moving all components suite.
|
2010-08-10 23:34:20 -04:00 |
|
mark_story
|
2494156e9a
|
Removing reference operators that caused tests to fail.
Adding an alias as several tests relied on a User object being in the registry to autodetect fields.
|
2010-08-10 23:18:43 -04:00 |
|
mark_story
|
3d5d6f6ebc
|
Removing two helpers from the exclusions as they don't cause issues anymore.
|
2010-08-10 23:18:43 -04:00 |
|
mark_story
|
fdfe8060c6
|
Adding collection tests to test suites.
|
2010-08-10 23:18:42 -04:00 |
|
mark_story
|
6d9cee57ba
|
Fixing failing tests from merge with 1.3
|
2010-08-10 23:18:42 -04:00 |
|
mark_story
|
59c692dbae
|
Fixing incorrect/failing test in Security component.
|
2010-08-10 23:18:42 -04:00 |
|
mark_story
|
f5bebc9306
|
Adding an Acl property to AuthComponent and updating tests to use new API's
|
2010-08-10 23:18:42 -04:00 |
|
mark_story
|
db1acb461a
|
Making SessionComponent extend Component. Updating test case.
|
2010-08-10 23:18:42 -04:00 |
|
mark_story
|
cd48ee4a49
|
Removing comment about a feature that no longer exists.
|
2010-08-10 23:18:42 -04:00 |
|
mark_story
|
d01708b1ef
|
Adding temporary $View property to controller until I figure out a better way to provide access for it. Test case updated to reflect View not being in the registry anymore.
|
2010-08-10 23:18:42 -04:00 |
|
mark_story
|
ab0f21f939
|
Fixing tests failing in ThemeView test as they were not expecting exceptions that should be expected.
|
2010-08-10 23:18:41 -04:00 |
|
mark_story
|
65c235023d
|
Removing ability to register View and ThemeView into ClassRegistry.
|
2010-08-10 23:18:41 -04:00 |
|
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
|
e0acd2131f
|
Fixing ShellDispatcher tests and making ShellDispatcher/Shell use TaskCollection to loadTasks.
|
2010-08-10 23:18:41 -04:00 |
|
mark_story
|
cb3c7feb5c
|
Adding test file to test loading.
|
2010-08-10 23:18:41 -04:00 |
|
mark_story
|
9804ed0cb3
|
Adding tests for loading plugin files.
|
2010-08-10 23:18:41 -04:00 |
|