Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Added documentation explaining the new additional supported syntaxes for the ↵ | Josh Kalderimis | 2010-11-30 | 1 | -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é Valim | 2010-11-27 | 1 | -0/+2 | |
|/ | ||||||
* | Added config.action_controller.include_all_helpers to CHANGELOG. | Piotr Sarnacki | 2010-11-18 | 1 | -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 master | Xavier Noria | 2010-11-09 | 1 | -2/+4 | |
| | ||||||
* | registers number_to_currency's :negative_format in the CHANGELOG | Xavier Noria | 2010-11-09 | 1 | -0/+2 | |
| | ||||||
* | adds the new :data idiom in tag helpers to the CHANGELOG | Xavier Noria | 2010-10-19 | 1 | -0/+7 | |
| | ||||||
* | Merge CHANGELOGs from 3-0-stable | Santiago Pastorino | 2010-10-18 | 1 | -0/+4 | |
| | ||||||
* | Update CHANGELOG. | José Valim | 2010-10-10 | 1 | -0/+8 | |
| | ||||||
* | Rely on Rack::Session stores API for more compatibility across the Ruby world. | José Valim | 2010-10-03 | 1 | -3/+3 | |
| | ||||||
* | file_field makes the enclosing form multipart | Santiago Pastorino | 2010-09-18 | 1 | -0/+2 | |
| | ||||||
* | Update changelog | Carlhuda | 2010-09-13 | 1 | -0/+3 | |
| | ||||||
* | revises implementation and documentation of csrf_meta_tags, and aliases ↵ | Xavier Noria | 2010-09-11 | 1 | -1/+1 | |
| | | | | csrf_meta_tag to it for backwards compatibilty | |||||
* | Update CHANGELOGs for 3.0 release and upcoming 3.1 | Jeremy Kemper | 2010-08-29 | 1 | -19/+6 | |
| | ||||||
* | Clean up CHANGELOGs | Jeremy Kemper | 2010-08-28 | 1 | -0/+2 | |
| | ||||||
* | password_field renders with nil value by default | Santiago Pastorino | 2010-08-28 | 1 | -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é Valim | 2010-08-26 | 1 | -2/+11 | |
| | ||||||
* | Update CHANGELOG for ActionPack. | José Valim | 2010-08-23 | 1 | -0/+5 | |
| | ||||||
* | Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵ | Santiago Pastorino | 2010-08-14 | 1 | -2/+2 | |
| | | | | 's/[ \t]*$//' -i {} \;) | |||||
* | Spaces, people, spaces! | David Heinemeier Hansson | 2010-07-26 | 1 | -0/+1 | |
| | ||||||
* | Prep for RC | David Heinemeier Hansson | 2010-07-26 | 1 | -1/+1 | |
| | ||||||
* | Add missing entries and tidy up CHANGELOG. | José Valim | 2010-07-19 | 1 | -0/+2 | |
| | ||||||
* | s/escape_once/html_escape/, since html safety is the contract that now says ↵ | Xavier Noria | 2010-06-30 | 1 | -0/+2 | |
| | | | | whether something has to be escaped | |||||
* | url_for no longer escapes HTML, the :escape option is also gone | Xavier Noria | 2010-06-30 | 1 | -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) | wycats | 2010-06-29 | 1 | -0/+3 | |
| | ||||||
* | Update CHANGELOGs. | José Valim | 2010-06-28 | 1 | -1/+2 | |
| | ||||||
* | Update CHANGELOG. | José Valim | 2010-06-23 | 1 | -0/+6 | |
| | ||||||
* | Deprecate :name_prefix in the new router DSL. | José Valim | 2010-06-22 | 1 | -0/+2 | |
| | ||||||
* | Credit for the heavy lifting! | Jeremy Kemper | 2010-06-17 | 1 | -1/+1 | |
| | ||||||
* | Add shallow routing option to new router [#3765 status:committed] | Andrew White | 2010-06-17 | 1 | -0/+10 | |
| | | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com> | |||||
* | Add support for multi-subdomain session by setting cookie host in session ↵ | Rizwan Reza | 2010-06-11 | 1 | -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é Valim | 2010-06-10 | 1 | -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 Álvarez | 2010-06-10 | 1 | -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 helpers | Santiago Pastorino | 2010-06-09 | 1 | -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 Hansson | 2010-06-08 | 1 | -10/+0 | |
| | | | | This reverts commit 67a60ee314f53abcde78f8ecd2a1f7c9ef8264e1. | |||||
* | Get ready for beta 4 | David Heinemeier Hansson | 2010-06-08 | 1 | -1/+1 | |
| | ||||||
* | Add shallow routes to the new router [Closes #3765] | Diego Carrion | 2010-06-07 | 1 | -0/+10 | |
| | ||||||
* | Update CHANGELOG | wycats | 2010-05-30 | 1 | -0/+2 | |
| | ||||||
* | Cut the fat and make session stores rely on request.cookie_jar and change ↵ | José Valim | 2010-05-18 | 1 | -0/+2 | |
| | | | | set_session semantics to return the cookie value instead of a boolean. | |||||
* | Merge remote branch 'technoweenie/http_token_authentication' | Jeremy Kemper | 2010-04-30 | 1 | -0/+2 | |
| | | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
* | Fix form builder and form helpers inconsistencies [#4432 state:resolved] | Neeraj Singh | 2010-04-29 | 1 | -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é Valim | 2010-04-29 | 1 | -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 Kemper | 2010-04-24 | 1 | -0/+2 | |
| | ||||||
* | added shorthand support for routes like /projects/status(.:format) | Diego Carrion | 2010-04-17 | 1 | -0/+2 | |
| | | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
* | Changed translate helper so that it doesn’t mark every translation as safe ↵ | Craig Davey | 2010-04-13 | 1 | -0/+5 | |
| | | | | | | HTML. Only keys with a "_html" suffix and keys named "html" are considered to be safe HTML. All other translations are left untouched. Signed-off-by: David Heinemeier Hansson <david@loudthinking.com> | |||||
* | Update changelogs for release | David Heinemeier Hansson | 2010-04-13 | 1 | -1/+1 | |
| | ||||||
* | form_for :as rubydoc and tidy up a bit the form_for doc | Santiago Pastorino | 2010-04-10 | 1 | -0/+2 | |
| | ||||||
* | Update versions (otherwise you install a gem from source as beta3 but ↵ | José Valim | 2010-04-10 | 1 | -0/+6 | |
| | | | | internally it's beta2) and update CHANGELOG. | |||||
* | Dial back from 'namespace :controller => ...' to 'scope :module => ...' | Jeremy Kemper | 2010-04-09 | 1 | -14/+4 | |
| | ||||||
* | Routes can be selectively namespaced by path or controller module | Jeremy Kemper | 2010-04-09 | 1 | -1/+18 | |
| | ||||||
* | adds an entry for #favicon_link_tag in AP's CHANGELOG | Xavier Noria | 2010-04-09 | 1 | -0/+2 | |
| |