mark_story
|
07a7e18dc7
|
Removing ClassRegistry access in RssHelper.
|
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
|
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
|
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
|
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
|
087ccabffe
|
Starting to modify Helper constructors.
|
2010-08-10 23:18:37 -04:00 |
|
mark_story
|
f8ecb10407
|
Adding stub callbacks so errors aren't generated.
|
2010-08-10 23:18:37 -04:00 |
|
predominant
|
913d54caa0
|
Remove __start from SessionHelper
|
2010-07-27 22:25:37 -04:00 |
|
predominant
|
c8c677ae9e
|
Change SessionHelper to extend AppHelper instead of CakeSession.
|
2010-07-27 22:25:05 -04:00 |
|
mark_story
|
d38857095a
|
Merge branch '1.3' into 2.0
Conflicts:
cake/libs/model/model.php
cake/libs/validation.php
cake/libs/view/helpers/ajax.php
cake/tests/cases/libs/controller/components/session.test.php
|
2010-07-24 22:34:42 -04:00 |
|
Scott Reeves
|
f44911f6dc
|
Fixing typo in parameter description.
Signed-off-by: mark_story <mark@mark-story.com>
|
2010-07-19 23:15:20 -04:00 |
|
mark_story
|
21f359bff9
|
Removing additional call to camelize(). Fixes #913
|
2010-07-14 22:07:41 -04:00 |
|
Scott Reeves
|
15435e9d6f
|
FormHelper::create should use domId to determine the default ID of the form tag.
Signed-off-by: mark_story <mark@mark-story.com>
|
2010-07-14 21:59:16 -04:00 |
|
Thomas Ploch
|
fb9faf10f7
|
Added missing option arrays to abstract function definitions in JsBaseEngineHelper. Fixed test cases accordingly. Fixes #704 .
|
2010-07-13 20:04:11 -04:00 |
|
mark_story
|
6d8724097e
|
Changing check in AjaxHelper::link() so lazy users don't get type errors. Fixes #902
|
2010-07-11 13:47:40 -04:00 |
|
Juan Basso
|
9fe5f360eb
|
Adding a default value to options param in JsEngine effect to avoid error in some php versions.
|
2010-07-10 18:15:09 -03:00 |
|
mark_story
|
2020675078
|
Merge branch '1.3' into 2.0
Conflicts:
cake/dispatcher.php
cake/tests/cases/libs/controller/components/request_handler.test.php
|
2010-06-30 22:47:27 -04:00 |
|
mark_story
|
ea322b8f78
|
Fixing issue where getCrumbList() was overwriting attributes.
|
2010-06-28 23:45:36 -04:00 |
|
mark_story
|
1c47702cb9
|
Updating formatting to match coding standards.
|
2010-06-28 22:53:33 -04:00 |
|
Leszek Stachowski
|
68a9c9c5ab
|
Added HtmlHelper::getCrumbList() to generate semantically correct
(x)html breadcrumb navigation path and a test to it. Fixes #856
Signed-off-by: mark_story <mark@mark-story.com>
|
2010-06-28 22:36:28 -04:00 |
|
mark_story
|
cd8dff362d
|
Merge branch '2.0-phpunit' into 2.0
Conflicts:
cake/libs/controller/components/email.php
cake/tests/cases/libs/cake_test_fixture.test.php
cake/tests/cases/libs/controller/components/email.test.php
|
2010-06-28 22:31:35 -04:00 |
|
mark_story
|
b9383f13dc
|
Adding some additional documentation for FormHelper::inputs().
|
2010-06-27 00:39:31 -04:00 |
|
mark_story
|
929bb5769e
|
Merge branch '1.3' into 2.0
Conflicts:
app/webroot/index.php
cake/console/templates/skel/webroot/index.php
cake/libs/cake_session.php
cake/libs/controller/components/email.php
cake/libs/controller/scaffold.php
cake/libs/model/datasources/dbo/dbo_oracle.php
cake/libs/model/model_behavior.php
cake/libs/view/pages/home.ctp
cake/tests/cases/libs/controller/components/acl.test.php
cake/tests/cases/libs/file.test.php
|
2010-06-26 12:29:20 -04:00 |
|
mark_story
|
5945edd983
|
Removing strtolower call that was breaking autolinks for URL shorteners. Tests added. Fixes #838
|
2010-06-21 21:17:37 -04:00 |
|
Thomas Ploch
|
2d20215e53
|
Converted JsBaseEngineHelper to an abstract class. Fixes #703 .
Signed-off-by: mark_story <mark@mark-story.com>
|
2010-06-20 22:21:21 -04:00 |
|
mark_story
|
50144d6b5b
|
Making FormHelper clear fields on create() as well as end() this ensures that GET forms don't leak fields. Fixes #571
|
2010-06-12 22:50:09 -04:00 |
|
mark_story
|
e41e89cd2a
|
Making magic select not override magic hidden. Tests added.
Fixes #782
|
2010-06-04 00:20:14 -04:00 |
|
mark_story
|
fc79dc6232
|
Merge branch '2.0' into 2.0-phpunit
Conflicts:
cake/tests/cases/console/libs/tasks/controller.test.php
cake/tests/cases/libs/code_coverage_manager.test.php
cake/tests/cases/libs/view/helpers/js.test.php
cake/tests/lib/code_coverage_manager.php
|
2010-05-30 22:13:09 -04:00 |
|
predominant
|
8decc683ac
|
Numerous 'shoer description' documentation entries updated to contain useful comments.
|
2010-05-30 01:20:28 +10:00 |
|
predominant
|
f06f0dae8b
|
Numerous "Enter description here" block comments updated to have meaningful descriptions.
|
2010-05-30 01:10:48 +10:00 |
|
mark_story
|
82250efc3e
|
Updating doc blocks for FormHelper::input() refs #735
|
2010-05-20 22:58:20 -04:00 |
|
predominant
|
6a18b2bc1d
|
Merge remote branch 'origin/1.3' into 2.0
Conflicts:
cake/basics.php
cake/console/libs/shell.php
cake/console/libs/tasks/controller.php
cake/libs/controller/components/request_handler.php
cake/libs/model/model.php
cake/libs/model/model_behavior.php
cake/libs/overloadable.php
cake/libs/overloadable_php4.php
cake/libs/overloadable_php5.php
cake/libs/sanitize.php
cake/libs/validation.php
cake/libs/view/helpers/ajax.php
cake/libs/view/helpers/javascript.php
cake/libs/view/pages/home.ctp
cake/tests/cases/console/libs/tasks/controller.test.php
cake/tests/cases/libs/overloadable.test.php
cake/tests/cases/libs/validation.test.php
cake/tests/cases/libs/view/helpers/ajax.test.php
cake/tests/cases/libs/view/helpers/javascript.test.php
cake/tests/test_app/libs/cache/test_app_cache.php
cake/tests/test_app/plugins/test_plugin/libs/cache/test_plugin_cache.php
cake/tests/test_app/plugins/test_plugin/models/test_plugin_auth_user.php
cake/tests/test_app/plugins/test_plugin/models/test_plugin_post.php
|
2010-05-20 12:22:04 +10:00 |
|
mark_story
|
3a60aa07de
|
Fixing issues where setting jQueryObject did not affect request() and its connected methods.
Tests added.
Fixes #728
|
2010-05-17 18:25:50 -04:00 |
|
mark_story
|
4915645fb1
|
Applying patch from 'Daren Thomas' fixes issues where sorting on virtualFields did not work properly when using aliased sort link keys. Tests added. Fixes #680
|
2010-05-16 23:42:14 -04:00 |
|
Mark Story
|
353c600cd7
|
Removing unreachable code. Fixes #614
|
2010-05-13 23:38:26 -04:00 |
|
José Lorenzo Rodríguez
|
8c3df122eb
|
Merge commit 'lorenzo/2.0-phpunit' into 2.0-phpunit
Conflicts:
cake/tests/lib/reporter/cake_html_reporter.php
cake/tests/lib/test_manager.php
|
2010-05-12 23:58:56 -04:30 |
|
ADmad
|
3539660cd0
|
Space is now properly added inbetween when 'asc'/'desc' class is appended to user defined css class in PaginatorHelper::sort. Fixes #710
|
2010-05-12 00:42:02 +05:30 |
|
predominant
|
8f880731c6
|
Removing closing PHP tags.
|
2010-05-11 08:27:28 +10:00 |
|
predominant
|
1ec220dac2
|
Removing closing PHP tags.
|
2010-05-11 08:07:49 +10:00 |
|
José Lorenzo Rodríguez
|
765de657e6
|
Fixing PaginatorHelperTest to be compatible with PHPUnit
|
2010-05-09 18:49:04 -04:30 |
|
Mark Story
|
0930b5c63c
|
Adding more documentation for JsHelper::submit(). Closes #681
|
2010-05-07 21:26:44 -04:00 |
|
Mark Story
|
1c3415759a
|
Fixing 'Only variables should be assigned by reference' errors in php4 in form helper. Fixes #643
|
2010-05-06 22:11:31 -04:00 |
|
Mark Story
|
c48f6d6536
|
Fixing safe parameter from leaking into request() calls in JsHelper::submit() and JsHelper::link(). Fixes #656
|
2010-05-02 21:17:10 -04:00 |
|
Mark Story
|
adf604a966
|
Merge branch '1.3' into 2.0
Conflicts:
cake/console/templates/default/actions/controller_actions.ctp
cake/console/templates/default/views/form.ctp
cake/console/templates/default/views/index.ctp
cake/console/templates/default/views/view.ctp
cake/libs/controller/controller.php
cake/libs/controller/scaffold.php
cake/libs/view/pages/home.ctp
cake/tests/cases/dispatcher.test.php
cake/tests/cases/libs/model/cake_schema.test.php
|
2010-05-02 17:53:42 -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 |
|
Mark Story
|
33bfe0e5e2
|
Making Helper extend Object, this fixes issues where Helpers would not have dispatchMethod or requestAction available.
Correcting JsHelper::call__ into JsHelper::__call
Updating test cases to remove reference operators
|
2010-04-23 21:21:31 -04:00 |
|