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
/
actionpack
/
lib
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Update script.aculo.us in Rails trunk to V1.5.2
Thomas Fuchs
2006-02-14
2
-14
/
+95
*
Refactor the Javascript proxy into a hierarchy for element/collection [DHH]
David Heinemeier Hansson
2006-02-14
1
-11
/
+31
*
Use real assigns instead of a method call [DHH]
David Heinemeier Hansson
2006-02-12
1
-6
/
+12
*
replace_element was renamed replace [DHH]
David Heinemeier Hansson
2006-02-12
1
-1
/
+1
*
Wups, committed too much
David Heinemeier Hansson
2006-02-12
1
-14
/
+16
*
Also support replace and replace_html and some refactoring in JavaScriptEleme...
David Heinemeier Hansson
2006-02-12
2
-31
/
+50
*
Added element and collection proxies to RJS [DHH]
David Heinemeier Hansson
2006-02-12
1
-0
/
+39
*
The session should be saved even if the filter chain is stopped
David Heinemeier Hansson
2006-02-12
1
-1
/
+5
*
Fixed that flash wasnt being cleared after components refactoring yesterday
David Heinemeier Hansson
2006-02-12
1
-1
/
+1
*
Flash shouldnt depend on components either [DHH]
David Heinemeier Hansson
2006-02-12
2
-14
/
+40
*
Stopped the massive bleeding of concerns into ActionController::Base. Base no...
David Heinemeier Hansson
2006-02-12
8
-105
/
+183
*
Add JavaScriptGenerator#replace_element for replacing an element's "outer HTM...
Sam Stephenson
2006-02-12
2
-24
/
+53
*
Add caution and restyle components
David Heinemeier Hansson
2006-02-12
3
-50
/
+60
*
The components module should also contain the options that pertain to it, so ...
David Heinemeier Hansson
2006-02-12
2
-70
/
+77
*
Fix form_for brokenness due to a shortage of parenthesis
Nicholas Seckar
2006-02-12
1
-1
/
+1
*
Expose object and object_name from the FormBuilder [DHH]
David Heinemeier Hansson
2006-02-12
1
-2
/
+4
*
Clean up style around form_for and friends a bit
David Heinemeier Hansson
2006-02-12
2
-8
/
+7
*
Remove over-engineered form_for code for a leaner implementation.
Nicholas Seckar
2006-02-11
2
-27
/
+16
*
Major components cleanup and speedup. Closes #3527.
Jeremy Kemper
2006-02-09
8
-122
/
+154
*
* Fix pagination problems when using include
Michael Koziarski
2006-02-09
1
-7
/
+6
*
Add :html option for specifying form tag options in form_for
Sam Stephenson
2006-02-08
1
-2
/
+2
*
Replace dubious controller parent class in filter docs. Closes #3655, #3722.
Marcel Molina
2006-02-08
2
-5
/
+7
*
Don't interpret the :value option on text_area as an html attribute. Set the ...
Marcel Molina
2006-02-08
1
-1
/
+1
*
Fix remote_form_for creates a non-ajax form. Closes #3741.
Nicholas Seckar
2006-02-06
2
-4
/
+8
*
Update versions to match latest from stable
David Heinemeier Hansson
2006-02-05
1
-1
/
+1
*
Don't let arbitrary classes match as controllers
Nicholas Seckar
2006-02-04
1
-1
/
+2
*
Fix Routing tests. Fix routing where failing to match a controller would prev...
Nicholas Seckar
2006-02-04
1
-4
/
+3
*
fixed small bug in routing which caused the traverse_to_controller mechanism ...
Tobias Lütke
2006-02-04
1
-1
/
+1
*
Add :builder => option to form_for and friends. Closes 3268.
Nicholas Seckar
2006-02-04
2
-23
/
+50
*
Just go with Subclasses instead of OnlySubclasses
David Heinemeier Hansson
2006-02-04
1
-1
/
+1
*
Just go with Subclasses instead of OnlySubclasses
David Heinemeier Hansson
2006-02-04
1
-1
/
+1
*
Remove unneeded logging
Nicholas Seckar
2006-02-04
1
-4
/
+1
*
Fix controller resolution to avoid accidentally inheriting a controller from ...
Nicholas Seckar
2006-02-04
1
-2
/
+6
*
Set sweeper's @controller to nil after a request so that the controller may b...
Nicholas Seckar
2006-02-04
1
-0
/
+2
*
Remove LoadingModule
Nicholas Seckar
2006-02-03
1
-7
/
+19
*
Add Reloadable::OnlySubclasses which handles the common case where a base cla...
Nicholas Seckar
2006-02-02
2
-12
/
+5
*
Further improvements to reloading code
Nicholas Seckar
2006-02-02
2
-7
/
+2
*
Subclasses of ActionController::Caching::Sweeper should be Reloadable
Sam Stephenson
2006-02-01
1
-2
/
+3
*
If included_modules doesnt take a parameter, we shouldnt either
David Heinemeier Hansson
2006-02-01
2
-2
/
+2
*
Fix Syntax problems which were preventing webrick from starting
Michael Koziarski
2006-02-01
2
-2
/
+2
*
Document the :xhr option for verifications. Closes #3666.
Marcel Molina
2006-02-01
1
-0
/
+2
*
ActiveRecordStore::Session shouldnt be reloadable
David Heinemeier Hansson
2006-02-01
1
-0
/
+5
*
Dont mark Sweepers as reloadables
David Heinemeier Hansson
2006-02-01
1
-0
/
+5
*
Added :only and :except controls to skip_before/after_filter just like for wh...
David Heinemeier Hansson
2006-01-31
1
-4
/
+20
*
Ensure assigns are copied to the template when using render :update. Closes ...
Nicholas Seckar
2006-01-30
1
-0
/
+3
*
Added reusable reloading support through the inclusion of the Relodable modul...
David Heinemeier Hansson
2006-01-29
3
-4
/
+19
*
Add the ability to call JavaScriptGenerator methods from helpers called in up...
Sam Stephenson
2006-01-23
3
-33
/
+47
*
Add render(:update) to ActionView::Base
Sam Stephenson
2006-01-23
1
-1
/
+3
*
Fix render(:update) to not render layouts
Sam Stephenson
2006-01-23
1
-0
/
+1
*
Backing out of [3470] until visual_effect, et al can work
Sam Stephenson
2006-01-23
2
-47
/
+16
[prev]
[next]