mark_story
|
509a9e14e2
|
Fixing condition missing a model name in the TreeBehavior. Fixes #961
|
2010-07-31 14:29:00 -04:00 |
|
mark_story
|
2b1efafe65
|
Applying optimization from 'michaelc' to reduce number of strtolower() calls in AclBehavior. Fixes #972
|
2010-07-29 22:04:22 -04:00 |
|
mark_story
|
d81d33ffe6
|
Adding some additional documentation for Model::find(). Fixes #952
|
2010-07-27 21:25:31 -04:00 |
|
Scott Reeves
|
b717abe1aa
|
Fixing typo in Constructor description.
Signed-off-by: mark_story <mark@mark-story.com>
|
2010-07-19 23:15:00 -04:00 |
|
mark_story
|
4c27c24a72
|
Fixing issue in DboSource where COUNT() was hardcoded, omitting any other aggregate functions. Replaced with a regexp that accepts only letters. Test case added. Fixes #878
|
2010-07-15 23:17:38 -04:00 |
|
mark_story
|
65efd675c1
|
Fixing fatal error caused by associated models using a datasource that is not a subclass of dbo_source. Test added. Fixes #873
|
2010-07-11 13:06:33 -04:00 |
|
mark_story
|
4cd43553b4
|
Fixing issues where multiple reset bindModel() calls would cause incorrect associations to be restored.
Also fixing issues where multiple calls to unbindModel() would cause incorrect associations to be restored.
Tests added.
Fixes #889
|
2010-07-03 18:05:14 -04:00 |
|
mark_story
|
17a7a96ba2
|
Fixing issue where non-reset associations would get reset by resetAssociations if __backAssociations existed. Test cases from 'real34' added. Fixes #868
|
2010-07-01 12:39:50 -04:00 |
|
mark_story
|
e023350af5
|
Updating API docs related to DboSource::$cacheMethods. Fixes #870
|
2010-06-30 08:52:39 -04:00 |
|
Juan Basso
|
2a4489cdf2
|
Naming conventions to datasources with plugins. Fixes #819
|
2010-06-20 23:53:54 -03:00 |
|
mark_story
|
df3432aa86
|
Updating doc blocks in ModelBehavior. Refs #810
|
2010-06-11 09:55:39 -04:00 |
|
mark_story
|
e5df32e9d9
|
Adding omitted documentation information.
|
2010-06-10 14:23:49 -04:00 |
|
mark_story
|
ec5ad93a68
|
Updating doc blocks for ModelBehavior so they better reflect the actual behaviour of the methods.
Removing unused variable assignment.
Fixes #810
|
2010-06-10 13:54:04 -04:00 |
|
mark_story
|
ad8b70cec2
|
Removing continue statement that did nothing.
Adding a rollback for when validation fails and atomic has been set.
Tests added. Fixes #797
|
2010-06-09 13:48:54 -04:00 |
|
mark_story
|
bd6e16be26
|
Fixing issue where join tables would be filed under 'missing' and found. Test added. Fixes #789
|
2010-06-03 23:20:37 -04:00 |
|
mark_story
|
7ed67e5959
|
Fixing virtualFields used in order clauses where virtualField was supplied with model alias. Tests added. Refs #768
|
2010-05-30 20:30:58 -04:00 |
|
mark_story
|
dea33f6452
|
Fixing pass by reference errors in php5.3. Fixes #451
|
2010-05-29 13:19:12 -04:00 |
|
renan.saddam
|
c96d074722
|
Merge branch '1.3' of github.com:cakephp/cakephp into 1.3
|
2010-05-29 12:23:04 -03:00 |
|
renan.saddam
|
8f5112b8d7
|
Changing break; to continue; so it will process the next tables on the array, tests added.
|
2010-05-29 12:22:16 -03:00 |
|
predominant
|
8decc683ac
|
Numerous 'shoer description' documentation entries updated to contain useful comments.
|
2010-05-30 01:20:28 +10:00 |
|
predominant
|
f63f15812e
|
Merge remote branch 'origin/1.3' into 1.3
|
2010-05-30 01:13:40 +10:00 |
|
predominant
|
f06f0dae8b
|
Numerous "Enter description here" block comments updated to have meaningful descriptions.
|
2010-05-30 01:10:48 +10:00 |
|
Martin Radosta
|
64adfacd3e
|
Making DboSource::order() accept an expression object. Fixes issues with
sql parsing over quoting special SQL syntax. Tests added. Fixes #747
Signed-off-by: mark_story <mark@mark-story.com>
|
2010-05-25 23:07:29 -04:00 |
|
Juan Basso
|
2d44929598
|
Optimization on dbo datasource to not repeat ids in find. Fixes #601
Signed-off-by: mark_story <mark@mark-story.com>
|
2010-05-23 17:22:55 -04:00 |
|
mark_story
|
29f2223c6d
|
Removing hardcoded '__' for virtualField separators. Making it an instance property instead. This allows the customization of the separator if needed. Tests added for DboMysql. Refs #655, #730
|
2010-05-22 00:58:54 -04:00 |
|
Mark Story
|
79839c07d2
|
Fixing issues where ModelBehavior::detach() would not detach behaviors when a plugin.name was provided. This change makes detach() work like attach(). Tests added. Fixes #711
|
2010-05-11 23:08:14 -04:00 |
|
Mark Story
|
6add43a4bc
|
Fixing issue where id = null could cause SQL errors when saving more than one record with a null id. Fixes #675
|
2010-05-11 22:40:56 -04:00 |
|
predominant
|
1ec220dac2
|
Removing closing PHP tags.
|
2010-05-11 08:07:49 +10:00 |
|
Mark Story
|
1a7dce3af6
|
Updating DboMysql to fix an issue where virtualFields that were simple
aliases to fields on other tables would end up in the wrong place.
Tests added. Fixes #655
|
2010-05-07 23:26:13 -04:00 |
|
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
|
af6435ece8
|
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-25 00:22:57 -07:00 |
|
ADmad
|
46df1be384
|
Model::deleteAll() now returns false if the 'find' to fetch records ids returns false (in case of sql error). Closes #272
|
2010-04-25 02:34:18 +05:30 |
|
Mark Story
|
029d2581af
|
Fixing autoFields causing invalid SQL when cross database joins are being done. Tests added. Fixes #476
|
2010-04-19 22:39:07 -04:00 |
|
predominant
|
23a22c73b7
|
Remove "not being used" comment from Model docblock. Fixes #590
|
2010-04-16 21:45:44 +10:00 |
|
José Lorenzo Rodríguez
|
9d2819970d
|
Fixing schema generation for postgres. Now character varying without lenght is translated to "text", to avoid sql errors. Closes #564
|
2010-04-13 01:08:31 -04:30 |
|
ADmad
|
baaae6cdb7
|
Minor optimization in TreeBehavior::getparentnode() to avoid fetching unneeded associated records. Closes #572
|
2010-04-12 22:57:31 +05:30 |
|
sdoney
|
9f601ea334
|
Adding/Updating @link tags pointing to cookbook sections
Signed-off-by: Mark Story <mark@mark-story.com>
|
2010-04-08 22:46:05 -04:00 |
|
José Lorenzo Rodríguez
|
7668894888
|
Fixing error introduced by previous commit
|
2010-04-07 09:51:29 -04:30 |
|
Mark Story
|
518cab91e5
|
Fixing discrepancy between how belongsTo and hasOne assocations are treated in relation to their fields being added into the queryData. hasOne and belongsTo associations now behave the same. Fixes #379
|
2010-04-05 21:50:28 -04:00 |
|
José Lorenzo Rodríguez
|
45ccba5d94
|
Improving virtual fields fetching when the field wildcard selector * in present on the fields array, closes #524
|
2010-04-04 13:24:39 -04:30 |
|
Mark Story
|
44b216cec3
|
Removing Model::$transaction as it did nothing. The property was added but never completed. Leaving the model property looking like it does something when in fact it does absolutely nothing. Refs #531
|
2010-04-02 13:53:53 -04:00 |
|
Nick Baker
|
3627f3b384
|
Patching dbo_mysql listDetailedSources. This fixes the broken test in dbo_mysql and solves ticket: 483-cakeshell-show-table-status-errors
Signed-off-by: Mark Story <mark@mark-story.com>
|
2010-04-02 13:21:22 -04:00 |
|
José Lorenzo Rodríguez
|
75900883e6
|
Making DboPostgres::value() return NULL when given an empty array, as DboMysql does
|
2010-03-30 00:01:33 -04:30 |
|
José Lorenzo Rodríguez
|
ebde29f63c
|
Fixing error in las commit
|
2010-03-29 23:58:07 -04:30 |
|
José Lorenzo Rodríguez
|
bbf96567eb
|
Using value() in default value generation with CakeSchema and DboPostgres
|
2010-03-29 23:50:40 -04:30 |
|
Mark Story
|
068631ebe2
|
Fixing AclNode::node() so that node expressions that could match deeper elements are contained to their parent elements. Test added.
|
2010-03-28 16:59:24 -04:00 |
|
ADmad
|
d365fafe4d
|
Changed default value for option 'validate' to 'first' in Model::saveAll(). Also fixed issue where the return array contained more keys then number of records in data array itself with options 'validate =>'first' and 'atomic'=>false
|
2010-03-28 05:29:42 +05:30 |
|
Mark Story
|
0c29fd0094
|
Merge remote branch 'origin/1.2' into 1.3
Conflicts:
cake/libs/cake_session.php
cake/libs/controller/components/session.php
cake/libs/model/model.php
cake/libs/router.php
|
2010-03-27 11:48:49 -04:00 |
|
José Lorenzo Rodríguez
|
41734503a6
|
Merge branch '1.3' of git@github.com:cakephp/cakephp1x into 1.3
* '1.3' of git@github.com:cakephp/cakephp1x:
Supporting Model.* syntax on postgres.
Changing variable $title to $title_for_layout. Closes #511
Conflicts:
cake/tests/cases/libs/model/datasources/dbo/dbo_postgres.test.php
|
2010-03-25 16:08:58 -04:30 |
|
José Lorenzo Rodríguez
|
1f1324f500
|
Qouting fields inside postgres functions when prepended a DISTINCT, closes #512
|
2010-03-25 16:05:45 -04:30 |
|