index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activerecord
/
lib
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Fixed that has_and_belongs_to_many would generate bad sql when naming convent...
David Heinemeier Hansson
2004-12-14
1
-4
/
+4
*
Added a better exception for when a type column is used in a table without th...
David Heinemeier Hansson
2004-12-14
2
-3
/
+20
*
Extended no inclusion of messages if theyre nil to base
David Heinemeier Hansson
2004-12-13
1
-1
/
+3
*
Fixed bug with reloading associations
David Heinemeier Hansson
2004-12-13
1
-1
/
+1
*
Moved methods into the main body as only wiring is needed in append_features
David Heinemeier Hansson
2004-12-13
1
-9
/
+7
*
Fixed that every successive call on the sqlite adapter prepended RAILS_ROOT a...
David Heinemeier Hansson
2004-12-12
1
-1
/
+1
*
Added the possibility of marking fields as being in error without adding a me...
David Heinemeier Hansson
2004-12-12
1
-2
/
+2
*
Added methods for resetting the cached information on classes that you want t...
David Heinemeier Hansson
2004-12-12
1
-5
/
+10
*
No longer necessary to guard against reincludes with the new reset of inherit...
David Heinemeier Hansson
2004-12-12
2
-2
/
+2
*
Moved require_association to associations.rb and added methods for resetting ...
David Heinemeier Hansson
2004-12-12
3
-31
/
+28
*
Options for the new validation methods are now given as a hash
David Heinemeier Hansson
2004-12-10
2
-11
/
+27
*
Added Base.validate_uniqueness thatv alidates whether the value of the specif...
David Heinemeier Hansson
2004-12-10
3
-6
/
+30
*
Added Base.validate_presence as an alternative to implementing validate and d...
David Heinemeier Hansson
2004-12-10
1
-12
/
+53
*
Tidied up Fixtures for better readability and some error checking [bitsweat]
David Heinemeier Hansson
2004-12-09
1
-36
/
+49
*
Fixed TIMESTAMP columns broken due to TIME handling patch
David Heinemeier Hansson
2004-12-09
1
-11
/
+15
*
Fixed Base.errors to be indifferent as to whether strings or symbols are used.
David Heinemeier Hansson
2004-12-09
1
-15
/
+20
*
Added Base.validate_confirmation that encapsulates the pattern of wanting to ...
David Heinemeier Hansson
2004-12-09
1
-0
/
+23
*
Changed the Proc for a string to avoid repetition problems
David Heinemeier Hansson
2004-12-09
1
-5
/
+3
*
Added Base.validate_confirmation that encapsulates the pattern of wanting to ...
David Heinemeier Hansson
2004-12-09
1
-0
/
+31
*
Added validation macros to make the stackable just like the lifecycle callbacks
David Heinemeier Hansson
2004-12-09
1
-1
/
+46
*
A fix that actually works...
David Heinemeier Hansson
2004-12-08
1
-1
/
+1
*
Callbacks added to the inheritable que should only be called once -- even as ...
David Heinemeier Hansson
2004-12-08
1
-1
/
+1
*
scope_condition defaults to 1 on list mixin
David Heinemeier Hansson
2004-12-08
1
-3
/
+3
*
Cleaned up the class_eval stuff in the new mixins a bit
David Heinemeier Hansson
2004-12-08
2
-9
/
+8
*
Forgot to include Mixins::Touch by default
David Heinemeier Hansson
2004-12-08
1
-0
/
+1
*
Added ActiveRecord::Mixins::Touch that will record creation and update times ...
David Heinemeier Hansson
2004-12-08
1
-0
/
+35
*
Added ActiveRecord::Mixins::List that can decorates an existing class with me...
David Heinemeier Hansson
2004-12-08
1
-1
/
+4
*
Renamed from ListMixin and mixins/list_mixin.rb to Mixins::List and mixin/lis...
David Heinemeier Hansson
2004-12-08
3
-154
/
+157
*
Unofficially added ListMixin
David Heinemeier Hansson
2004-12-08
1
-0
/
+154
*
Added named bind-style variable interpolation #281 [Michael Koziarski]
David Heinemeier Hansson
2004-12-08
1
-6
/
+35
*
Added the option for sanitizing find_by_sql and the offset parts in regular f...
David Heinemeier Hansson
2004-12-07
1
-4
/
+9
*
Fixed value quoting in all generated SQL statements, so that integers are not...
David Heinemeier Hansson
2004-12-07
8
-49
/
+65
*
Fixed has_and_belongs_to_many guessing of foreign key so that keys are genera...
David Heinemeier Hansson
2004-12-07
1
-1
/
+1
*
Added counter_sql option for has_many associations [bitsweat]
David Heinemeier Hansson
2004-12-07
2
-7
/
+15
*
Fixed that methods wrapped in callbacks still return their original result #2...
David Heinemeier Hansson
2004-12-07
1
-25
/
+30
*
Fixed the Inflector to handle the movie/movies pair correctly #261 [Scott Baron]
David Heinemeier Hansson
2004-12-07
1
-0
/
+1
*
Documentation bugs
David Heinemeier Hansson
2004-12-07
1
-2
/
+2
*
Added bind-style variable interpolation for the condition arrays that uses th...
David Heinemeier Hansson
2004-12-07
1
-11
/
+15
*
Added CSV format for fixtures #272 [what-a-day]
David Heinemeier Hansson
2004-12-07
1
-36
/
+143
*
Fixed fixtures using primary key fields called something else than "id" #270 ...
David Heinemeier Hansson
2004-12-06
1
-1
/
+1
*
Added extra words of caution for guarding against SQL-injection attacks
David Heinemeier Hansson
2004-12-06
1
-3
/
+7
*
Dont include the primary key in updates -- its unneeded and SQL Server chokes...
David Heinemeier Hansson
2004-12-01
1
-3
/
+3
*
Added proper handling of time fields that are turned into Time objects with t...
David Heinemeier Hansson
2004-12-01
1
-1
/
+13
*
Added reverse order of deleting fixtures, so referential keys can be maintain...
David Heinemeier Hansson
2004-12-01
1
-15
/
+16
*
Fixed infinite loop when environment is missing in database.yml
David Heinemeier Hansson
2004-12-01
1
-2
/
+6
*
Added relative path search for sqlite dbfiles in database.yml (if RAILS_ROOT ...
David Heinemeier Hansson
2004-12-01
1
-2
/
+3
*
Moved the global require_* out of the classes so they actually work without s...
David Heinemeier Hansson
2004-11-30
1
-3
/
+5
*
Abolished ActionController::Base.require_or_load in favor of require_dependen...
David Heinemeier Hansson
2004-11-30
2
-4
/
+12
*
Silence errors occurring when reloading classes
David Heinemeier Hansson
2004-11-30
5
-5
/
+12
*
symbolize_strings_in_hash shouldnt change receiver -- this should fix the bug...
David Heinemeier Hansson
2004-11-26
1
-6
/
+4
[prev]
[next]