actionpack 3.0.0.beta2 → 3.0.0.beta3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of actionpack might be problematic. Click here for more details.

Files changed (47) hide show
  1. data/CHANGELOG +37 -0
  2. data/lib/abstract_controller/rendering.rb +9 -11
  3. data/lib/action_controller.rb +0 -1
  4. data/lib/action_controller/base.rb +45 -44
  5. data/lib/action_controller/caching/pages.rb +2 -2
  6. data/lib/action_controller/deprecated/base.rb +21 -5
  7. data/lib/action_controller/metal/compatibility.rb +0 -2
  8. data/lib/action_controller/metal/cookies.rb +1 -1
  9. data/lib/action_controller/metal/helpers.rb +1 -1
  10. data/lib/action_controller/metal/http_authentication.rb +12 -5
  11. data/lib/action_controller/metal/responder.rb +3 -2
  12. data/lib/action_controller/polymorphic_routes.rb +1 -1
  13. data/lib/action_controller/railtie.rb +6 -1
  14. data/lib/action_controller/record_identifier.rb +2 -2
  15. data/lib/action_controller/test_case.rb +2 -0
  16. data/lib/action_dispatch/http/mime_negotiation.rb +2 -2
  17. data/lib/action_dispatch/http/request.rb +39 -21
  18. data/lib/action_dispatch/middleware/cookies.rb +18 -22
  19. data/lib/action_dispatch/middleware/params_parser.rb +8 -9
  20. data/lib/action_dispatch/middleware/session/cookie_store.rb +1 -1
  21. data/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb +1 -1
  22. data/lib/action_dispatch/railtie.rb +1 -0
  23. data/lib/action_dispatch/routing.rb +24 -12
  24. data/lib/action_dispatch/routing/deprecated_mapper.rb +1 -1
  25. data/lib/action_dispatch/routing/mapper.rb +77 -51
  26. data/lib/action_dispatch/routing/route_set.rb +9 -5
  27. data/lib/action_dispatch/routing/url_for.rb +2 -3
  28. data/lib/action_dispatch/testing/integration.rb +24 -11
  29. data/lib/action_dispatch/testing/test_request.rb +2 -0
  30. data/lib/action_pack/version.rb +1 -1
  31. data/lib/action_view/base.rb +8 -2
  32. data/lib/action_view/helpers.rb +3 -6
  33. data/lib/action_view/helpers/active_model_helper.rb +20 -265
  34. data/lib/action_view/helpers/asset_tag_helper.rb +46 -9
  35. data/lib/action_view/helpers/atom_feed_helper.rb +2 -2
  36. data/lib/action_view/helpers/form_helper.rb +161 -120
  37. data/lib/action_view/helpers/form_options_helper.rb +0 -2
  38. data/lib/action_view/helpers/form_tag_helper.rb +76 -13
  39. data/lib/action_view/helpers/url_helper.rb +48 -21
  40. data/lib/action_view/locale/en.yml +0 -8
  41. data/lib/action_view/lookup_context.rb +11 -4
  42. data/lib/action_view/render/layouts.rb +32 -18
  43. data/lib/action_view/render/partials.rb +2 -2
  44. data/lib/action_view/template.rb +10 -1
  45. data/lib/action_view/test_case.rb +6 -1
  46. metadata +7 -8
  47. data/lib/action_controller/metal/verification.rb +0 -130
@@ -18,6 +18,14 @@ module ActionView
18
18
 
19
19
  attr_reader :source, :identifier, :handler, :virtual_path, :formats
20
20
 
21
+ Finalizer = proc do |method_name|
22
+ proc do
23
+ ActionView::CompiledTemplates.module_eval do
24
+ remove_possible_method method_name
25
+ end
26
+ end
27
+ end
28
+
21
29
  def initialize(source, identifier, handler, details)
22
30
  @source = source
23
31
  @identifier = identifier
@@ -69,7 +77,6 @@ module ActionView
69
77
  private
70
78
  def compile(locals, view)
71
79
  method_name = build_method_name(locals)
72
-
73
80
  return method_name if view.respond_to?(method_name)
74
81
 
75
82
  locals_code = locals.keys.map! { |key| "#{key} = local_assigns[:#{key}];" }.join
@@ -98,6 +105,8 @@ module ActionView
98
105
 
99
106
  begin
100
107
  ActionView::CompiledTemplates.module_eval(source, identifier, line)
108
+ ObjectSpace.define_finalizer(self, Finalizer[method_name])
109
+
101
110
  method_name
102
111
  rescue Exception => e # errors from template code
103
112
  if logger = (view && view.logger)
@@ -142,8 +142,13 @@ module ActionView
142
142
  end
143
143
  end
144
144
 
145
+ def _router
146
+ @controller._router if @controller.respond_to?(:_router)
147
+ end
148
+
145
149
  def method_missing(selector, *args)
146
- if @controller._router.named_routes.helpers.include?(selector)
150
+ if @controller.respond_to?(:_router) &&
151
+ @controller._router.named_routes.helpers.include?(selector)
147
152
  @controller.__send__(selector, *args)
148
153
  else
149
154
  super
metadata CHANGED
@@ -6,8 +6,8 @@ version: !ruby/object:Gem::Version
6
6
  - 3
7
7
  - 0
8
8
  - 0
9
- - beta2
10
- version: 3.0.0.beta2
9
+ - beta3
10
+ version: 3.0.0.beta3
11
11
  platform: ruby
12
12
  authors:
13
13
  - David Heinemeier Hansson
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-04-01 00:00:00 -07:00
18
+ date: 2010-04-13 00:00:00 -07:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -29,8 +29,8 @@ dependencies:
29
29
  - 3
30
30
  - 0
31
31
  - 0
32
- - beta2
33
- version: 3.0.0.beta2
32
+ - beta3
33
+ version: 3.0.0.beta3
34
34
  type: :runtime
35
35
  version_requirements: *id001
36
36
  - !ruby/object:Gem::Dependency
@@ -44,8 +44,8 @@ dependencies:
44
44
  - 3
45
45
  - 0
46
46
  - 0
47
- - beta2
48
- version: 3.0.0.beta2
47
+ - beta3
48
+ version: 3.0.0.beta3
49
49
  type: :runtime
50
50
  version_requirements: *id002
51
51
  - !ruby/object:Gem::Dependency
@@ -161,7 +161,6 @@ files:
161
161
  - lib/action_controller/metal/streaming.rb
162
162
  - lib/action_controller/metal/testing.rb
163
163
  - lib/action_controller/metal/url_for.rb
164
- - lib/action_controller/metal/verification.rb
165
164
  - lib/action_controller/metal.rb
166
165
  - lib/action_controller/middleware.rb
167
166
  - lib/action_controller/polymorphic_routes.rb
@@ -1,130 +0,0 @@
1
- module ActionController #:nodoc:
2
- module Verification #:nodoc:
3
- extend ActiveSupport::Concern
4
-
5
- include AbstractController::Callbacks, Flash, Rendering
6
-
7
- # This module provides a class-level method for specifying that certain
8
- # actions are guarded against being called without certain prerequisites
9
- # being met. This is essentially a special kind of before_filter.
10
- #
11
- # An action may be guarded against being invoked without certain request
12
- # parameters being set, or without certain session values existing.
13
- #
14
- # When a verification is violated, values may be inserted into the flash, and
15
- # a specified redirection is triggered. If no specific action is configured,
16
- # verification failures will by default result in a 400 Bad Request response.
17
- #
18
- # Usage:
19
- #
20
- # class GlobalController < ActionController::Base
21
- # # Prevent the #update_settings action from being invoked unless
22
- # # the 'admin_privileges' request parameter exists. The
23
- # # settings action will be redirected to in current controller
24
- # # if verification fails.
25
- # verify :params => "admin_privileges", :only => :update_post,
26
- # :redirect_to => { :action => "settings" }
27
- #
28
- # # Disallow a post from being updated if there was no information
29
- # # submitted with the post, and if there is no active post in the
30
- # # session, and if there is no "note" key in the flash. The route
31
- # # named category_url will be redirected to if verification fails.
32
- #
33
- # verify :params => "post", :session => "post", "flash" => "note",
34
- # :only => :update_post,
35
- # :add_flash => { "alert" => "Failed to create your message" },
36
- # :redirect_to => :category_url
37
- #
38
- # Note that these prerequisites are not business rules. They do not examine
39
- # the content of the session or the parameters. That level of validation should
40
- # be encapsulated by your domain model or helper methods in the controller.
41
- module ClassMethods
42
- # Verify the given actions so that if certain prerequisites are not met,
43
- # the user is redirected to a different action. The +options+ parameter
44
- # is a hash consisting of the following key/value pairs:
45
- #
46
- # <tt>:params</tt>::
47
- # a single key or an array of keys that must be in the <tt>params</tt>
48
- # hash in order for the action(s) to be safely called.
49
- # <tt>:session</tt>::
50
- # a single key or an array of keys that must be in the <tt>session</tt>
51
- # in order for the action(s) to be safely called.
52
- # <tt>:flash</tt>::
53
- # a single key or an array of keys that must be in the flash in order
54
- # for the action(s) to be safely called.
55
- # <tt>:method</tt>::
56
- # a single key or an array of keys--any one of which must match the
57
- # current request method in order for the action(s) to be safely called.
58
- # (The key should be a symbol: <tt>:get</tt> or <tt>:post</tt>, for
59
- # example.)
60
- # <tt>:xhr</tt>::
61
- # true/false option to ensure that the request is coming from an Ajax
62
- # call or not.
63
- # <tt>:add_flash</tt>::
64
- # a hash of name/value pairs that should be merged into the session's
65
- # flash if the prerequisites cannot be satisfied.
66
- # <tt>:add_headers</tt>::
67
- # a hash of name/value pairs that should be merged into the response's
68
- # headers hash if the prerequisites cannot be satisfied.
69
- # <tt>:redirect_to</tt>::
70
- # the redirection parameters to be used when redirecting if the
71
- # prerequisites cannot be satisfied. You can redirect either to named
72
- # route or to the action in some controller.
73
- # <tt>:render</tt>::
74
- # the render parameters to be used when the prerequisites cannot be satisfied.
75
- # <tt>:only</tt>::
76
- # only apply this verification to the actions specified in the associated
77
- # array (may also be a single value).
78
- # <tt>:except</tt>::
79
- # do not apply this verification to the actions specified in the associated
80
- # array (may also be a single value).
81
- def verify(options={})
82
- before_filter :only => options[:only], :except => options[:except] do
83
- verify_action options
84
- end
85
- end
86
- end
87
-
88
- private
89
-
90
- def verify_action(options) #:nodoc:
91
- if prereqs_invalid?(options)
92
- flash.update(options[:add_flash]) if options[:add_flash]
93
- response.headers.merge!(options[:add_headers]) if options[:add_headers]
94
- apply_remaining_actions(options) unless performed?
95
- end
96
- end
97
-
98
- def prereqs_invalid?(options) # :nodoc:
99
- verify_presence_of_keys_in_hash_flash_or_params(options) ||
100
- verify_method(options) ||
101
- verify_request_xhr_status(options)
102
- end
103
-
104
- def verify_presence_of_keys_in_hash_flash_or_params(options) # :nodoc:
105
- [*options[:params] ].find { |v| v && params[v.to_sym].nil? } ||
106
- [*options[:session]].find { |v| session[v].nil? } ||
107
- [*options[:flash] ].find { |v| flash[v].nil? }
108
- end
109
-
110
- def verify_method(options) # :nodoc:
111
- [*options[:method]].all? { |v| request.method != v.to_sym } if options[:method]
112
- end
113
-
114
- def verify_request_xhr_status(options) # :nodoc:
115
- request.xhr? != options[:xhr] unless options[:xhr].nil?
116
- end
117
-
118
- def apply_redirect_to(redirect_to_option) # :nodoc:
119
- (redirect_to_option.is_a?(Symbol) && redirect_to_option != :back) ? self.__send__(redirect_to_option) : redirect_to_option
120
- end
121
-
122
- def apply_remaining_actions(options) # :nodoc:
123
- case
124
- when options[:render] ; render(options[:render])
125
- when options[:redirect_to] ; redirect_to(apply_redirect_to(options[:redirect_to]))
126
- else head(:bad_request)
127
- end
128
- end
129
- end
130
- end