aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
Commit message (Expand)AuthorAgeFilesLines
* Optimized tag_options to not sort keys, which is no longer necessary when ass...David Heinemeier Hansson2005-09-206-22/+58
* Fixed that Request#domain caused an exception if the domain header wasn't set...David Heinemeier Hansson2005-09-201-1/+2
* Make the truncate() helper multi-byte safe (assuming $KCODE has been set to s...Jamis Buck2005-09-191-1/+7
* Doc fix #2197David Heinemeier Hansson2005-09-171-0/+1
* Add "#:nodoc:" for ActionController::Routing::PathComponent::Result #2209 [l....David Heinemeier Hansson2005-09-171-1/+1
* Make upload progress not throw JavaScript errors when there is no progress ba...David Heinemeier Hansson2005-09-161-1/+1
* Only attempt to require Active Support if it hasnt been already #1959David Heinemeier Hansson2005-09-151-7/+10
* Cache relative_url_root for all webservers, not just Apache #2193 [skae]David Heinemeier Hansson2005-09-151-1/+1
* Speed up cookie use by decreasing string copying #2194 [skae]David Heinemeier Hansson2005-09-151-7/+7
* Fixed access to "Host" header with requests made by crappy old HTTP/1.0 clien...David Heinemeier Hansson2005-09-141-1/+1
* More auto-link fixes (to include query strings in autolinked text)Jamis Buck2005-09-141-1/+1
* Fix autolinking to not include trailing tags as part of the URLJamis Buck2005-09-131-1/+19
* Added easy assignment of fragment cache store through use of symbols for incl...David Heinemeier Hansson2005-09-135-38/+41
* Moved session options to SessionManagementDavid Heinemeier Hansson2005-09-132-20/+20
* Added ActionController::Base.session_store=, session_store, and session_optio...David Heinemeier Hansson2005-09-131-0/+20
* Dont log creation of view classDavid Heinemeier Hansson2005-09-121-1/+0
* Use session_id instead of deprecated sessidDavid Heinemeier Hansson2005-09-121-1/+0
* Make periodically_call_remote use type="text/javascript" on script tag #2171David Heinemeier Hansson2005-09-121-1/+1
* Added TextHelper#cycle to cycle over an array of values on each hit (useful f...David Heinemeier Hansson2005-09-121-0/+82
* Ensure that request.path never returns nil. Closes #1675Nicholas Seckar2005-09-111-6/+4
* Add ability to specify Route Regexps for controllers. Closes #1917.Nicholas Seckar2005-09-111-1/+8
* Provide Named Route's hash methods as helper methods. Closes #1744.Nicholas Seckar2005-09-111-1/+4
* Use send instead of module_eval #1873 [shugo]David Heinemeier Hansson2005-09-111-1/+1
* Fixed docs #1884David Heinemeier Hansson2005-09-111-1/+1
* Fixed docs #1886David Heinemeier Hansson2005-09-111-1/+3
* Split macros test into their own suiteDavid Heinemeier Hansson2005-09-111-1/+1
* Added :multipart option to ActiveRecordHelper#form to make it possible to add...David Heinemeier Hansson2005-09-111-1/+1
* Added in-place editing support in the spirit of auto complete with ActionCont...David Heinemeier Hansson2005-09-117-123/+232
* Dont encourage custom url options to be called with symbol #2047David Heinemeier Hansson2005-09-111-14/+0
* Added :disabled option to all data selects that'll make the elements inaccess...David Heinemeier Hansson2005-09-111-8/+12
* Fixed that TextHelper#auto_link_urls would include punctuation in the links #...David Heinemeier Hansson2005-09-111-2/+2
* Fixed that number_to_currency(1000, {:precision => 0})) should return "$1,000...David Heinemeier Hansson2005-09-091-0/+1
* Refactored away all the legacy validate_options calls and replaced them with ...David Heinemeier Hansson2005-09-091-9/+2
* Fix docs #2136 [coffee2code]David Heinemeier Hansson2005-09-091-5/+5
* Allow link_to_remote to use any DOM-element as the parent of the form element...David Heinemeier Hansson2005-09-091-0/+7
* Added documentation for overwrite_params #2146 [Michael Shuerig]David Heinemeier Hansson2005-09-091-0/+9
* Fixed that render :partial would fail when :object was a Hash (due to backwar...David Heinemeier Hansson2005-09-093-3/+6
* Fixed JavascriptHelper#auto_complete_for to only include unique items #2153 [...David Heinemeier Hansson2005-09-091-1/+1
* Fixed that onclick would be overridden even when special features werent usedDavid Heinemeier Hansson2005-09-081-0/+2
* Fixed all AssetHelper methods to work with relative paths, such that javascri...David Heinemeier Hansson2005-09-081-1/+1
* An explicit include ClassInheritableAttributes is no longer needed #1948 [Cal...David Heinemeier Hansson2005-09-081-2/+0
* Avoid extending view instance with helper modules each request. Closes #1979Nicholas Seckar2005-09-082-18/+16
* Performance improvements to CGI methods. Closes #1980Nicholas Seckar2005-09-082-9/+13
* Use this.href, not unexisting urlDavid Heinemeier Hansson2005-09-071-1/+1
* Added :post option to UrlHelper#link_to that makes it possible to do POST req...David Heinemeier Hansson2005-09-071-21/+41
* Symbolize the keys of overwritten parameters. Really closes #1909.Nicholas Seckar2005-09-071-1/+1
* Fix overwrite params. Closes #1909Nicholas Seckar2005-09-061-0/+4
* Fix fragment benchmark calls and limit timings to 5 decimalsDavid Heinemeier Hansson2005-09-062-5/+5
* Only do benchmarking if log level matches and log cachingDavid Heinemeier Hansson2005-09-062-20/+31
* Added use_silence parameter to ActiveRecord::Base.benchmark that can be passe...David Heinemeier Hansson2005-09-061-2/+26