aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
Commit message (Collapse)AuthorAgeFilesLines
* authenticity_token option for form_tag [#2988 state:resolved]Jakub Kuźma2011-01-091-0/+2
|
* HTML5 button_tag helperRizwan Reza2011-01-091-0/+5
| | | | | | | | This tag is similar in nature to submit_tag, but allows more control. It also doesn't submit if submit type isn't used, allowing JavaScript to control the flow where required. For more information: http://www.whatwg.org/specs/web-apps/current-work/multipage/the-button-element.html#the-button-element
* Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2010-12-291-3/+1
|\
| * Fix typo in ActionPack changelog.Cheah Chu Yeow2010-12-291-1/+1
| |
| * Remove link to outdated Github tag comparison in ActionPack changelog.Cheah Chu Yeow2010-12-291-2/+0
| |
* | Final tidy up on templates inheritance.José Valim2010-12-271-2/+4
|/
* Changelog and guide entries for config.action_view.cache_template_loadingPiotr Sarnacki2010-12-161-0/+2
|
* Merge remote branch 'joshk/redirect_routing'José Valim2010-12-031-0/+2
|\ | | | | | | | | | | | | | | Conflicts: actionpack/CHANGELOG actionpack/lib/action_controller/metal/mime_responds.rb Signed-off-by: José Valim <jose.valim@gmail.com>
| * Added documentation explaining the new additional supported syntaxes for the ↵Josh Kalderimis2010-11-301-0/+2
| | | | | | | | routing redirect method, a small changelog note, and two extra tests for path interpolation when using the hash option syntax.
* | Update CHANGELOG.José Valim2010-11-271-0/+2
|/
* Added config.action_controller.include_all_helpers to CHANGELOG.Piotr Sarnacki2010-11-181-0/+2
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* syncs CHANGELOGs for 3.0.2 in 3-0-stable with the ones in masterXavier Noria2010-11-091-2/+4
|
* registers number_to_currency's :negative_format in the CHANGELOGXavier Noria2010-11-091-0/+2
|
* adds the new :data idiom in tag helpers to the CHANGELOGXavier Noria2010-10-191-0/+7
|
* Merge CHANGELOGs from 3-0-stableSantiago Pastorino2010-10-181-0/+4
|
* Update CHANGELOG.José Valim2010-10-101-0/+8
|
* Rely on Rack::Session stores API for more compatibility across the Ruby world.José Valim2010-10-031-3/+3
|
* file_field makes the enclosing form multipartSantiago Pastorino2010-09-181-0/+2
|
* Update changelogCarlhuda2010-09-131-0/+3
|
* revises implementation and documentation of csrf_meta_tags, and aliases ↵Xavier Noria2010-09-111-1/+1
| | | | csrf_meta_tag to it for backwards compatibilty
* Update CHANGELOGs for 3.0 release and upcoming 3.1Jeremy Kemper2010-08-291-19/+6
|
* Clean up CHANGELOGsJeremy Kemper2010-08-281-0/+2
|
* password_field renders with nil value by defaultSantiago Pastorino2010-08-281-0/+2
| | | | | | | | This makes the use of passwords secure by default if you want to render the value of the password_field you have to do for instance f.password_field(:password, :value => @user.password) # => <input type=password id=user_password name=user[password] value=#{@user.password} />
* Update CHANGELOG.José Valim2010-08-261-2/+11
|
* Update CHANGELOG for ActionPack.José Valim2010-08-231-0/+5
|
* Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵Santiago Pastorino2010-08-141-2/+2
| | | | 's/[ \t]*$//' -i {} \;)
* Spaces, people, spaces!David Heinemeier Hansson2010-07-261-0/+1
|
* Prep for RCDavid Heinemeier Hansson2010-07-261-1/+1
|
* Add missing entries and tidy up CHANGELOG.José Valim2010-07-191-0/+2
|
* s/escape_once/html_escape/, since html safety is the contract that now says ↵Xavier Noria2010-06-301-0/+2
| | | | whether something has to be escaped
* url_for no longer escapes HTML, the :escape option is also goneXavier Noria2010-06-301-0/+2
| | | | Rationale: url_for is just a path/URL generator, it is the responsability of the caller to escape conveniently HTML needs it, JavaScript needs different escaping, a text mail needs no escaping at all, etc.
* _snowman CHANGELOG (dobry pies)wycats2010-06-291-0/+3
|
* Update CHANGELOGs.José Valim2010-06-281-1/+2
|
* Update CHANGELOG.José Valim2010-06-231-0/+6
|
* Deprecate :name_prefix in the new router DSL.José Valim2010-06-221-0/+2
|
* Credit for the heavy lifting!Jeremy Kemper2010-06-171-1/+1
|
* Add shallow routing option to new router [#3765 status:committed]Andrew White2010-06-171-0/+10
| | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Add support for multi-subdomain session by setting cookie host in session ↵Rizwan Reza2010-06-111-1/+4
| | | | | | cookie so you can share session between www.example.com, example.com and user.example.com. [#4818 state:resolved] This reverts commit 330a89072a493aafef1e07c3558964477f85adf0.
* Revert "Add support for multi-subdomain session by setting cookie host in ↵José Valim2010-06-101-4/+1
| | | | | | | | session cookie so you can share session between www.example.com, example.com and user.example.com. [#4818 state:resolved]" It does not work for domains like co.uk and com.br. This reverts commit c4d6245e875bbb276c122a5a401422d341dac4df.
* Add support for multi-subdomain session by setting cookie host in session ↵Guillermo Álvarez2010-06-101-0/+5
| | | | | | cookie so you can share session between www.example.com, example.com and user.example.com. [#4818 state:resolved] Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Removed textilize, textilize_without_paragraph and markdown helpersSantiago Pastorino2010-06-091-0/+2
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Revert "Add shallow routes to the new router" for now. Needs more work.David Heinemeier Hansson2010-06-081-10/+0
| | | | This reverts commit 67a60ee314f53abcde78f8ecd2a1f7c9ef8264e1.
* Get ready for beta 4David Heinemeier Hansson2010-06-081-1/+1
|
* Add shallow routes to the new router [Closes #3765]Diego Carrion2010-06-071-0/+10
|
* Update CHANGELOGwycats2010-05-301-0/+2
|
* Cut the fat and make session stores rely on request.cookie_jar and change ↵José Valim2010-05-181-0/+2
| | | | set_session semantics to return the cookie value instead of a boolean.
* Merge remote branch 'technoweenie/http_token_authentication'Jeremy Kemper2010-04-301-0/+2
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Fix form builder and form helpers inconsistencies [#4432 state:resolved]Neeraj Singh2010-04-291-0/+2
| | | | | | | | * datetime_select and select_datetime should be consistent as much as possible * date_select and select_date should be consistent as much as possible * time_select and select_time should be consistent as much as possible Signed-off-by: José Valim <jose.valim@gmail.com>
* Move several configuration values from Hash to ActiveSupport::XmlMini, which ↵José Valim2010-04-291-0/+2
| | | | | | both Hash and Array depends on. Also, refactored ActiveModel serializers to just use ActiveSupport::XmlMini.to_tag. As consequence, if a serialized attribute is an array or a hash, it's not encoded as yaml, but as a hash or array.
* Rename fieldWithErrors style to field_with_errors. Remove unused alert style.Jeremy Kemper2010-04-241-0/+2
|