actionpack 3.2.19 → 4.2.11.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


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

Files changed (244) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +412 -503
  3. data/MIT-LICENSE +1 -1
  4. data/README.rdoc +11 -294
  5. data/lib/abstract_controller/asset_paths.rb +2 -2
  6. data/lib/abstract_controller/base.rb +52 -18
  7. data/lib/abstract_controller/callbacks.rb +87 -89
  8. data/lib/abstract_controller/collector.rb +17 -3
  9. data/lib/abstract_controller/helpers.rb +41 -14
  10. data/lib/abstract_controller/logger.rb +1 -2
  11. data/lib/abstract_controller/railties/routes_helpers.rb +3 -3
  12. data/lib/abstract_controller/rendering.rb +65 -118
  13. data/lib/abstract_controller/translation.rb +16 -1
  14. data/lib/abstract_controller/url_for.rb +7 -7
  15. data/lib/abstract_controller.rb +2 -10
  16. data/lib/action_controller/base.rb +61 -28
  17. data/lib/action_controller/caching/fragments.rb +30 -54
  18. data/lib/action_controller/caching.rb +38 -35
  19. data/lib/action_controller/log_subscriber.rb +35 -18
  20. data/lib/action_controller/metal/conditional_get.rb +103 -34
  21. data/lib/action_controller/metal/data_streaming.rb +20 -26
  22. data/lib/action_controller/metal/etag_with_template_digest.rb +50 -0
  23. data/lib/action_controller/metal/exceptions.rb +19 -6
  24. data/lib/action_controller/metal/flash.rb +41 -9
  25. data/lib/action_controller/metal/force_ssl.rb +70 -12
  26. data/lib/action_controller/metal/head.rb +30 -7
  27. data/lib/action_controller/metal/helpers.rb +11 -11
  28. data/lib/action_controller/metal/hide_actions.rb +0 -1
  29. data/lib/action_controller/metal/http_authentication.rb +140 -94
  30. data/lib/action_controller/metal/implicit_render.rb +1 -1
  31. data/lib/action_controller/metal/instrumentation.rb +11 -7
  32. data/lib/action_controller/metal/live.rb +328 -0
  33. data/lib/action_controller/metal/mime_responds.rb +161 -152
  34. data/lib/action_controller/metal/params_wrapper.rb +126 -81
  35. data/lib/action_controller/metal/rack_delegation.rb +10 -4
  36. data/lib/action_controller/metal/redirecting.rb +44 -41
  37. data/lib/action_controller/metal/renderers.rb +48 -19
  38. data/lib/action_controller/metal/rendering.rb +46 -11
  39. data/lib/action_controller/metal/request_forgery_protection.rb +250 -29
  40. data/lib/action_controller/metal/streaming.rb +30 -38
  41. data/lib/action_controller/metal/strong_parameters.rb +669 -0
  42. data/lib/action_controller/metal/testing.rb +12 -18
  43. data/lib/action_controller/metal/url_for.rb +31 -29
  44. data/lib/action_controller/metal.rb +31 -40
  45. data/lib/action_controller/model_naming.rb +12 -0
  46. data/lib/action_controller/railtie.rb +38 -18
  47. data/lib/action_controller/railties/helpers.rb +22 -0
  48. data/lib/action_controller/test_case.rb +359 -173
  49. data/lib/action_controller.rb +9 -16
  50. data/lib/action_dispatch/http/cache.rb +64 -11
  51. data/lib/action_dispatch/http/filter_parameters.rb +20 -10
  52. data/lib/action_dispatch/http/filter_redirect.rb +38 -0
  53. data/lib/action_dispatch/http/headers.rb +85 -17
  54. data/lib/action_dispatch/http/mime_negotiation.rb +55 -5
  55. data/lib/action_dispatch/http/mime_type.rb +167 -114
  56. data/lib/action_dispatch/http/mime_types.rb +2 -1
  57. data/lib/action_dispatch/http/parameter_filter.rb +44 -46
  58. data/lib/action_dispatch/http/parameters.rb +30 -46
  59. data/lib/action_dispatch/http/rack_cache.rb +2 -3
  60. data/lib/action_dispatch/http/request.rb +108 -45
  61. data/lib/action_dispatch/http/response.rb +247 -48
  62. data/lib/action_dispatch/http/upload.rb +60 -29
  63. data/lib/action_dispatch/http/url.rb +135 -45
  64. data/lib/action_dispatch/journey/backwards.rb +5 -0
  65. data/lib/action_dispatch/journey/formatter.rb +166 -0
  66. data/lib/action_dispatch/journey/gtg/builder.rb +162 -0
  67. data/lib/action_dispatch/journey/gtg/simulator.rb +47 -0
  68. data/lib/action_dispatch/journey/gtg/transition_table.rb +157 -0
  69. data/lib/action_dispatch/journey/nfa/builder.rb +76 -0
  70. data/lib/action_dispatch/journey/nfa/dot.rb +36 -0
  71. data/lib/action_dispatch/journey/nfa/simulator.rb +47 -0
  72. data/lib/action_dispatch/journey/nfa/transition_table.rb +163 -0
  73. data/lib/action_dispatch/journey/nodes/node.rb +128 -0
  74. data/lib/action_dispatch/journey/parser.rb +198 -0
  75. data/lib/action_dispatch/journey/parser.y +49 -0
  76. data/lib/action_dispatch/journey/parser_extras.rb +23 -0
  77. data/lib/action_dispatch/journey/path/pattern.rb +193 -0
  78. data/lib/action_dispatch/journey/route.rb +125 -0
  79. data/lib/action_dispatch/journey/router/strexp.rb +27 -0
  80. data/lib/action_dispatch/journey/router/utils.rb +93 -0
  81. data/lib/action_dispatch/journey/router.rb +144 -0
  82. data/lib/action_dispatch/journey/routes.rb +80 -0
  83. data/lib/action_dispatch/journey/scanner.rb +61 -0
  84. data/lib/action_dispatch/journey/visitors.rb +221 -0
  85. data/lib/action_dispatch/journey/visualizer/fsm.css +30 -0
  86. data/lib/action_dispatch/journey/visualizer/fsm.js +134 -0
  87. data/lib/action_dispatch/journey/visualizer/index.html.erb +52 -0
  88. data/lib/action_dispatch/journey.rb +5 -0
  89. data/lib/action_dispatch/middleware/callbacks.rb +16 -11
  90. data/lib/action_dispatch/middleware/cookies.rb +346 -125
  91. data/lib/action_dispatch/middleware/debug_exceptions.rb +52 -24
  92. data/lib/action_dispatch/middleware/exception_wrapper.rb +75 -9
  93. data/lib/action_dispatch/middleware/flash.rb +85 -72
  94. data/lib/action_dispatch/middleware/params_parser.rb +16 -31
  95. data/lib/action_dispatch/middleware/public_exceptions.rb +39 -14
  96. data/lib/action_dispatch/middleware/reloader.rb +16 -7
  97. data/lib/action_dispatch/middleware/remote_ip.rb +132 -40
  98. data/lib/action_dispatch/middleware/request_id.rb +3 -7
  99. data/lib/action_dispatch/middleware/session/abstract_store.rb +22 -20
  100. data/lib/action_dispatch/middleware/session/cache_store.rb +3 -3
  101. data/lib/action_dispatch/middleware/session/cookie_store.rb +84 -29
  102. data/lib/action_dispatch/middleware/session/mem_cache_store.rb +8 -3
  103. data/lib/action_dispatch/middleware/show_exceptions.rb +15 -44
  104. data/lib/action_dispatch/middleware/ssl.rb +72 -0
  105. data/lib/action_dispatch/middleware/stack.rb +6 -1
  106. data/lib/action_dispatch/middleware/static.rb +80 -23
  107. data/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb +34 -0
  108. data/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb +23 -0
  109. data/lib/action_dispatch/middleware/templates/rescues/_source.erb +27 -0
  110. data/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb +52 -0
  111. data/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb +9 -0
  112. data/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb +16 -0
  113. data/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb +9 -0
  114. data/lib/action_dispatch/middleware/templates/rescues/layout.erb +133 -5
  115. data/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb +11 -0
  116. data/lib/action_dispatch/middleware/templates/rescues/missing_template.text.erb +3 -0
  117. data/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb +32 -0
  118. data/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb +11 -0
  119. data/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb +20 -0
  120. data/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb +7 -0
  121. data/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb +6 -0
  122. data/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb +3 -0
  123. data/lib/action_dispatch/middleware/templates/routes/_route.html.erb +16 -0
  124. data/lib/action_dispatch/middleware/templates/routes/_table.html.erb +200 -0
  125. data/lib/action_dispatch/railtie.rb +19 -6
  126. data/lib/action_dispatch/request/session.rb +193 -0
  127. data/lib/action_dispatch/request/utils.rb +35 -0
  128. data/lib/action_dispatch/routing/endpoint.rb +10 -0
  129. data/lib/action_dispatch/routing/inspector.rb +234 -0
  130. data/lib/action_dispatch/routing/mapper.rb +897 -436
  131. data/lib/action_dispatch/routing/polymorphic_routes.rb +213 -92
  132. data/lib/action_dispatch/routing/redirection.rb +97 -37
  133. data/lib/action_dispatch/routing/route_set.rb +432 -239
  134. data/lib/action_dispatch/routing/routes_proxy.rb +7 -4
  135. data/lib/action_dispatch/routing/url_for.rb +63 -34
  136. data/lib/action_dispatch/routing.rb +57 -89
  137. data/lib/action_dispatch/testing/assertions/dom.rb +2 -36
  138. data/lib/action_dispatch/testing/assertions/response.rb +24 -38
  139. data/lib/action_dispatch/testing/assertions/routing.rb +55 -54
  140. data/lib/action_dispatch/testing/assertions/selector.rb +2 -434
  141. data/lib/action_dispatch/testing/assertions/tag.rb +2 -137
  142. data/lib/action_dispatch/testing/assertions.rb +11 -7
  143. data/lib/action_dispatch/testing/integration.rb +88 -72
  144. data/lib/action_dispatch/testing/test_process.rb +9 -6
  145. data/lib/action_dispatch/testing/test_request.rb +13 -9
  146. data/lib/action_dispatch/testing/test_response.rb +1 -5
  147. data/lib/action_dispatch.rb +24 -21
  148. data/lib/action_pack/gem_version.rb +15 -0
  149. data/lib/action_pack/version.rb +5 -7
  150. data/lib/action_pack.rb +1 -1
  151. metadata +181 -292
  152. data/lib/abstract_controller/layouts.rb +0 -423
  153. data/lib/abstract_controller/view_paths.rb +0 -96
  154. data/lib/action_controller/caching/actions.rb +0 -185
  155. data/lib/action_controller/caching/pages.rb +0 -187
  156. data/lib/action_controller/caching/sweeping.rb +0 -97
  157. data/lib/action_controller/deprecated/integration_test.rb +0 -2
  158. data/lib/action_controller/deprecated/performance_test.rb +0 -1
  159. data/lib/action_controller/deprecated.rb +0 -3
  160. data/lib/action_controller/metal/compatibility.rb +0 -65
  161. data/lib/action_controller/metal/responder.rb +0 -286
  162. data/lib/action_controller/metal/session_management.rb +0 -14
  163. data/lib/action_controller/railties/paths.rb +0 -25
  164. data/lib/action_controller/record_identifier.rb +0 -85
  165. data/lib/action_controller/vendor/html-scanner/html/document.rb +0 -68
  166. data/lib/action_controller/vendor/html-scanner/html/node.rb +0 -532
  167. data/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +0 -177
  168. data/lib/action_controller/vendor/html-scanner/html/selector.rb +0 -830
  169. data/lib/action_controller/vendor/html-scanner/html/tokenizer.rb +0 -107
  170. data/lib/action_controller/vendor/html-scanner/html/version.rb +0 -11
  171. data/lib/action_controller/vendor/html-scanner.rb +0 -20
  172. data/lib/action_dispatch/middleware/best_standards_support.rb +0 -30
  173. data/lib/action_dispatch/middleware/body_proxy.rb +0 -30
  174. data/lib/action_dispatch/middleware/head.rb +0 -18
  175. data/lib/action_dispatch/middleware/rescue.rb +0 -26
  176. data/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb +0 -31
  177. data/lib/action_dispatch/middleware/templates/rescues/_trace.erb +0 -26
  178. data/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb +0 -10
  179. data/lib/action_dispatch/middleware/templates/rescues/missing_template.erb +0 -2
  180. data/lib/action_dispatch/middleware/templates/rescues/routing_error.erb +0 -15
  181. data/lib/action_dispatch/middleware/templates/rescues/template_error.erb +0 -17
  182. data/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb +0 -2
  183. data/lib/action_dispatch/testing/performance_test.rb +0 -10
  184. data/lib/action_view/asset_paths.rb +0 -142
  185. data/lib/action_view/base.rb +0 -220
  186. data/lib/action_view/buffers.rb +0 -43
  187. data/lib/action_view/context.rb +0 -36
  188. data/lib/action_view/flows.rb +0 -79
  189. data/lib/action_view/helpers/active_model_helper.rb +0 -50
  190. data/lib/action_view/helpers/asset_paths.rb +0 -7
  191. data/lib/action_view/helpers/asset_tag_helper.rb +0 -457
  192. data/lib/action_view/helpers/asset_tag_helpers/asset_include_tag.rb +0 -146
  193. data/lib/action_view/helpers/asset_tag_helpers/asset_paths.rb +0 -93
  194. data/lib/action_view/helpers/asset_tag_helpers/javascript_tag_helpers.rb +0 -193
  195. data/lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb +0 -148
  196. data/lib/action_view/helpers/atom_feed_helper.rb +0 -200
  197. data/lib/action_view/helpers/cache_helper.rb +0 -64
  198. data/lib/action_view/helpers/capture_helper.rb +0 -203
  199. data/lib/action_view/helpers/controller_helper.rb +0 -25
  200. data/lib/action_view/helpers/csrf_helper.rb +0 -32
  201. data/lib/action_view/helpers/date_helper.rb +0 -1062
  202. data/lib/action_view/helpers/debug_helper.rb +0 -40
  203. data/lib/action_view/helpers/form_helper.rb +0 -1486
  204. data/lib/action_view/helpers/form_options_helper.rb +0 -658
  205. data/lib/action_view/helpers/form_tag_helper.rb +0 -685
  206. data/lib/action_view/helpers/javascript_helper.rb +0 -110
  207. data/lib/action_view/helpers/number_helper.rb +0 -622
  208. data/lib/action_view/helpers/output_safety_helper.rb +0 -38
  209. data/lib/action_view/helpers/record_tag_helper.rb +0 -111
  210. data/lib/action_view/helpers/rendering_helper.rb +0 -90
  211. data/lib/action_view/helpers/sanitize_helper.rb +0 -259
  212. data/lib/action_view/helpers/tag_helper.rb +0 -160
  213. data/lib/action_view/helpers/text_helper.rb +0 -426
  214. data/lib/action_view/helpers/translation_helper.rb +0 -91
  215. data/lib/action_view/helpers/url_helper.rb +0 -693
  216. data/lib/action_view/helpers.rb +0 -60
  217. data/lib/action_view/locale/en.yml +0 -160
  218. data/lib/action_view/log_subscriber.rb +0 -28
  219. data/lib/action_view/lookup_context.rb +0 -254
  220. data/lib/action_view/path_set.rb +0 -89
  221. data/lib/action_view/railtie.rb +0 -55
  222. data/lib/action_view/renderer/abstract_renderer.rb +0 -41
  223. data/lib/action_view/renderer/partial_renderer.rb +0 -415
  224. data/lib/action_view/renderer/renderer.rb +0 -54
  225. data/lib/action_view/renderer/streaming_template_renderer.rb +0 -106
  226. data/lib/action_view/renderer/template_renderer.rb +0 -94
  227. data/lib/action_view/template/error.rb +0 -128
  228. data/lib/action_view/template/handlers/builder.rb +0 -26
  229. data/lib/action_view/template/handlers/erb.rb +0 -125
  230. data/lib/action_view/template/handlers.rb +0 -50
  231. data/lib/action_view/template/resolver.rb +0 -272
  232. data/lib/action_view/template/text.rb +0 -30
  233. data/lib/action_view/template.rb +0 -337
  234. data/lib/action_view/test_case.rb +0 -245
  235. data/lib/action_view/testing/resolvers.rb +0 -50
  236. data/lib/action_view.rb +0 -84
  237. data/lib/sprockets/assets.rake +0 -99
  238. data/lib/sprockets/bootstrap.rb +0 -37
  239. data/lib/sprockets/compressors.rb +0 -83
  240. data/lib/sprockets/helpers/isolated_helper.rb +0 -13
  241. data/lib/sprockets/helpers/rails_helper.rb +0 -182
  242. data/lib/sprockets/helpers.rb +0 -6
  243. data/lib/sprockets/railtie.rb +0 -62
  244. data/lib/sprockets/static_compiler.rb +0 -56
@@ -1,423 +0,0 @@
1
- require "active_support/core_ext/module/remove_method"
2
-
3
- module AbstractController
4
- # Layouts reverse the common pattern of including shared headers and footers in many templates to isolate changes in
5
- # repeated setups. The inclusion pattern has pages that look like this:
6
- #
7
- # <%= render "shared/header" %>
8
- # Hello World
9
- # <%= render "shared/footer" %>
10
- #
11
- # This approach is a decent way of keeping common structures isolated from the changing content, but it's verbose
12
- # and if you ever want to change the structure of these two includes, you'll have to change all the templates.
13
- #
14
- # With layouts, you can flip it around and have the common structure know where to insert changing content. This means
15
- # that the header and footer are only mentioned in one place, like this:
16
- #
17
- # // The header part of this layout
18
- # <%= yield %>
19
- # // The footer part of this layout
20
- #
21
- # And then you have content pages that look like this:
22
- #
23
- # hello world
24
- #
25
- # At rendering time, the content page is computed and then inserted in the layout, like this:
26
- #
27
- # // The header part of this layout
28
- # hello world
29
- # // The footer part of this layout
30
- #
31
- # == Accessing shared variables
32
- #
33
- # Layouts have access to variables specified in the content pages and vice versa. This allows you to have layouts with
34
- # references that won't materialize before rendering time:
35
- #
36
- # <h1><%= @page_title %></h1>
37
- # <%= yield %>
38
- #
39
- # ...and content pages that fulfill these references _at_ rendering time:
40
- #
41
- # <% @page_title = "Welcome" %>
42
- # Off-world colonies offers you a chance to start a new life
43
- #
44
- # The result after rendering is:
45
- #
46
- # <h1>Welcome</h1>
47
- # Off-world colonies offers you a chance to start a new life
48
- #
49
- # == Layout assignment
50
- #
51
- # You can either specify a layout declaratively (using the #layout class method) or give
52
- # it the same name as your controller, and place it in <tt>app/views/layouts</tt>.
53
- # If a subclass does not have a layout specified, it inherits its layout using normal Ruby inheritance.
54
- #
55
- # For instance, if you have PostsController and a template named <tt>app/views/layouts/posts.html.erb</tt>,
56
- # that template will be used for all actions in PostsController and controllers inheriting
57
- # from PostsController.
58
- #
59
- # If you use a module, for instance Weblog::PostsController, you will need a template named
60
- # <tt>app/views/layouts/weblog/posts.html.erb</tt>.
61
- #
62
- # Since all your controllers inherit from ApplicationController, they will use
63
- # <tt>app/views/layouts/application.html.erb</tt> if no other layout is specified
64
- # or provided.
65
- #
66
- # == Inheritance Examples
67
- #
68
- # class BankController < ActionController::Base
69
- # # bank.html.erb exists
70
- #
71
- # class ExchangeController < BankController
72
- # # exchange.html.erb exists
73
- #
74
- # class CurrencyController < BankController
75
- #
76
- # class InformationController < BankController
77
- # layout "information"
78
- #
79
- # class TellerController < InformationController
80
- # # teller.html.erb exists
81
- #
82
- # class EmployeeController < InformationController
83
- # # employee.html.erb exists
84
- # layout nil
85
- #
86
- # class VaultController < BankController
87
- # layout :access_level_layout
88
- #
89
- # class TillController < BankController
90
- # layout false
91
- #
92
- # In these examples, we have three implicit lookup scenrios:
93
- # * The BankController uses the "bank" layout.
94
- # * The ExchangeController uses the "exchange" layout.
95
- # * The CurrencyController inherits the layout from BankController.
96
- #
97
- # However, when a layout is explicitly set, the explicitly set layout wins:
98
- # * The InformationController uses the "information" layout, explicitly set.
99
- # * The TellerController also uses the "information" layout, because the parent explicitly set it.
100
- # * The EmployeeController uses the "employee" layout, because it set the layout to nil, resetting the parent configuration.
101
- # * The VaultController chooses a layout dynamically by calling the <tt>access_level_layout</tt> method.
102
- # * The TillController does not use a layout at all.
103
- #
104
- # == Types of layouts
105
- #
106
- # Layouts are basically just regular templates, but the name of this template needs not be specified statically. Sometimes
107
- # you want to alternate layouts depending on runtime information, such as whether someone is logged in or not. This can
108
- # be done either by specifying a method reference as a symbol or using an inline method (as a proc).
109
- #
110
- # The method reference is the preferred approach to variable layouts and is used like this:
111
- #
112
- # class WeblogController < ActionController::Base
113
- # layout :writers_and_readers
114
- #
115
- # def index
116
- # # fetching posts
117
- # end
118
- #
119
- # private
120
- # def writers_and_readers
121
- # logged_in? ? "writer_layout" : "reader_layout"
122
- # end
123
- #
124
- # Now when a new request for the index action is processed, the layout will vary depending on whether the person accessing
125
- # is logged in or not.
126
- #
127
- # If you want to use an inline method, such as a proc, do something like this:
128
- #
129
- # class WeblogController < ActionController::Base
130
- # layout proc{ |controller| controller.logged_in? ? "writer_layout" : "reader_layout" }
131
- # end
132
- #
133
- # Of course, the most common way of specifying a layout is still just as a plain template name:
134
- #
135
- # class WeblogController < ActionController::Base
136
- # layout "weblog_standard"
137
- # end
138
- #
139
- # If no directory is specified for the template name, the template will by default be looked for in <tt>app/views/layouts/</tt>.
140
- # Otherwise, it will be looked up relative to the template root.
141
- #
142
- # Setting the layout to nil forces it to be looked up in the filesystem and fallbacks to the parent behavior if none exists.
143
- # Setting it to nil is useful to re-enable template lookup overriding a previous configuration set in the parent:
144
- #
145
- # class ApplicationController < ActionController::Base
146
- # layout "application"
147
- # end
148
- #
149
- # class PostsController < ApplicationController
150
- # # Will use "application" layout
151
- # end
152
- #
153
- # class CommentsController < ApplicationController
154
- # # Will search for "comments" layout and fallback "application" layout
155
- # layout nil
156
- # end
157
- #
158
- # == Conditional layouts
159
- #
160
- # If you have a layout that by default is applied to all the actions of a controller, you still have the option of rendering
161
- # a given action or set of actions without a layout, or restricting a layout to only a single action or a set of actions. The
162
- # <tt>:only</tt> and <tt>:except</tt> options can be passed to the layout call. For example:
163
- #
164
- # class WeblogController < ActionController::Base
165
- # layout "weblog_standard", :except => :rss
166
- #
167
- # # ...
168
- #
169
- # end
170
- #
171
- # This will assign "weblog_standard" as the WeblogController's layout for all actions except for the +rss+ action, which will
172
- # be rendered directly, without wrapping a layout around the rendered view.
173
- #
174
- # Both the <tt>:only</tt> and <tt>:except</tt> condition can accept an arbitrary number of method references, so
175
- # #<tt>:except => [ :rss, :text_only ]</tt> is valid, as is <tt>:except => :rss</tt>.
176
- #
177
- # == Using a different layout in the action render call
178
- #
179
- # If most of your actions use the same layout, it makes perfect sense to define a controller-wide layout as described above.
180
- # Sometimes you'll have exceptions where one action wants to use a different layout than the rest of the controller.
181
- # You can do this by passing a <tt>:layout</tt> option to the <tt>render</tt> call. For example:
182
- #
183
- # class WeblogController < ActionController::Base
184
- # layout "weblog_standard"
185
- #
186
- # def help
187
- # render :action => "help", :layout => "help"
188
- # end
189
- # end
190
- #
191
- # This will override the controller-wide "weblog_standard" layout, and will render the help action with the "help" layout instead.
192
- module Layouts
193
- extend ActiveSupport::Concern
194
-
195
- include Rendering
196
-
197
- included do
198
- class_attribute :_layout_conditions
199
- remove_possible_method :_layout_conditions
200
- self._layout_conditions = {}
201
- _write_layout_method
202
- end
203
-
204
- delegate :_layout_conditions, :to => "self.class"
205
-
206
- module ClassMethods
207
- def inherited(klass)
208
- super
209
- klass._write_layout_method
210
- end
211
-
212
- # This module is mixed in if layout conditions are provided. This means
213
- # that if no layout conditions are used, this method is not used
214
- module LayoutConditions
215
- # Determines whether the current action has a layout by checking the
216
- # action name against the :only and :except conditions set on the
217
- # layout.
218
- #
219
- # ==== Returns
220
- # * <tt> Boolean</tt> - True if the action has a layout, false otherwise.
221
- def conditional_layout?
222
- return unless super
223
-
224
- conditions = _layout_conditions
225
-
226
- if only = conditions[:only]
227
- only.include?(action_name)
228
- elsif except = conditions[:except]
229
- !except.include?(action_name)
230
- else
231
- true
232
- end
233
- end
234
- end
235
-
236
- # Specify the layout to use for this class.
237
- #
238
- # If the specified layout is a:
239
- # String:: the String is the template name
240
- # Symbol:: call the method specified by the symbol, which will return the template name
241
- # false:: There is no layout
242
- # true:: raise an ArgumentError
243
- # nil:: Force default layout behavior with inheritance
244
- #
245
- # ==== Parameters
246
- # * <tt>layout</tt> - The layout to use.
247
- #
248
- # ==== Options (conditions)
249
- # * :only - A list of actions to apply this layout to.
250
- # * :except - Apply this layout to all actions but this one.
251
- def layout(layout, conditions = {})
252
- include LayoutConditions unless conditions.empty?
253
-
254
- conditions.each {|k, v| conditions[k] = Array(v).map {|a| a.to_s} }
255
- self._layout_conditions = conditions
256
-
257
- @_layout = layout
258
- _write_layout_method
259
- end
260
-
261
- # If no layout is supplied, look for a template named the return
262
- # value of this method.
263
- #
264
- # ==== Returns
265
- # * <tt>String</tt> - A template name
266
- def _implied_layout_name
267
- controller_path
268
- end
269
-
270
- # Creates a _layout method to be called by _default_layout .
271
- #
272
- # If a layout is not explicitly mentioned then look for a layout with the controller's name.
273
- # if nothing is found then try same procedure to find super class's layout.
274
- def _write_layout_method
275
- remove_possible_method(:_layout)
276
-
277
- prefixes = _implied_layout_name =~ /\blayouts/ ? [] : ["layouts"]
278
- name_clause = if name
279
- <<-RUBY
280
- lookup_context.find_all("#{_implied_layout_name}", #{prefixes.inspect}).first || super
281
- RUBY
282
- end
283
-
284
- if defined?(@_layout)
285
- layout_definition = case @_layout
286
- when String
287
- @_layout.inspect
288
- when Symbol
289
- <<-RUBY
290
- #{@_layout}.tap do |layout|
291
- unless layout.is_a?(String) || !layout
292
- raise ArgumentError, "Your layout method :#{@_layout} returned \#{layout}. It " \
293
- "should have returned a String, false, or nil"
294
- end
295
- end
296
- RUBY
297
- when Proc
298
- define_method :_layout_from_proc, &@_layout
299
- "_layout_from_proc(self)"
300
- when false
301
- nil
302
- when true
303
- raise ArgumentError, "Layouts must be specified as a String, Symbol, false, or nil"
304
- when nil
305
- name_clause
306
- end
307
- else
308
- # Add a deprecation if the parent layout was explicitly set and the child
309
- # still does a dynamic lookup. In next Rails release, we should @_layout
310
- # to be inheritable so we can skip the child lookup if the parent explicitly
311
- # set the layout.
312
- parent = self.superclass.instance_eval { @_layout if defined?(@_layout) }
313
- @_layout = nil
314
- inspect = parent.is_a?(Proc) ? parent.inspect : parent
315
-
316
- layout_definition = if parent.nil?
317
- name_clause
318
- elsif name
319
- <<-RUBY
320
- if template = lookup_context.find_all("#{_implied_layout_name}", #{prefixes.inspect}).first
321
- ActiveSupport::Deprecation.warn 'Layout found at "#{_implied_layout_name}" for #{name} but parent controller ' \
322
- 'set layout to #{inspect.inspect}. Please explicitly set your layout to "#{_implied_layout_name}" ' \
323
- 'or set it to nil to force a dynamic lookup.'
324
- template
325
- else
326
- super
327
- end
328
- RUBY
329
- end
330
- end
331
-
332
- self.class_eval <<-RUBY, __FILE__, __LINE__ + 1
333
- def _layout
334
- if conditional_layout?
335
- #{layout_definition}
336
- else
337
- #{name_clause}
338
- end
339
- end
340
- private :_layout
341
- RUBY
342
- end
343
- end
344
-
345
- def _normalize_options(options)
346
- super
347
-
348
- if _include_layout?(options)
349
- layout = options.key?(:layout) ? options.delete(:layout) : :default
350
- options[:layout] = _layout_for_option(layout)
351
- end
352
- end
353
-
354
- attr_internal_writer :action_has_layout
355
-
356
- def initialize(*)
357
- @_action_has_layout = true
358
- super
359
- end
360
-
361
- def action_has_layout?
362
- @_action_has_layout
363
- end
364
-
365
- def conditional_layout?
366
- true
367
- end
368
-
369
- private
370
-
371
- # This will be overwritten by _write_layout_method
372
- def _layout; end
373
-
374
- # Determine the layout for a given name, taking into account the name type.
375
- #
376
- # ==== Parameters
377
- # * <tt>name</tt> - The name of the template
378
- def _layout_for_option(name)
379
- case name
380
- when String then _normalize_layout(name)
381
- when Proc then name
382
- when true then Proc.new { _default_layout(true) }
383
- when :default then Proc.new { _default_layout(false) }
384
- when false, nil then nil
385
- else
386
- raise ArgumentError,
387
- "String, true, or false, expected for `layout'; you passed #{name.inspect}"
388
- end
389
- end
390
-
391
- def _normalize_layout(value)
392
- value.is_a?(String) && value !~ /\blayouts/ ? "layouts/#{value}" : value
393
- end
394
-
395
- # Returns the default layout for this controller.
396
- # Optionally raises an exception if the layout could not be found.
397
- #
398
- # ==== Parameters
399
- # * <tt>require_layout</tt> - If set to true and layout is not found,
400
- # an ArgumentError exception is raised (defaults to false)
401
- #
402
- # ==== Returns
403
- # * <tt>template</tt> - The template object for the default layout (or nil)
404
- def _default_layout(require_layout = false)
405
- begin
406
- value = _layout if action_has_layout?
407
- rescue NameError => e
408
- raise e, "Could not render layout: #{e.message}"
409
- end
410
-
411
- if require_layout && action_has_layout? && !value
412
- raise ArgumentError,
413
- "There was no default layout for #{self.class} in #{view_paths.inspect}"
414
- end
415
-
416
- _normalize_layout(value)
417
- end
418
-
419
- def _include_layout?(options)
420
- (options.keys & [:text, :inline, :partial]).empty? || options.key?(:layout)
421
- end
422
- end
423
- end
@@ -1,96 +0,0 @@
1
- require 'action_view/base'
2
-
3
- module AbstractController
4
- module ViewPaths
5
- extend ActiveSupport::Concern
6
-
7
- included do
8
- class_attribute :_view_paths
9
- self._view_paths = ActionView::PathSet.new
10
- self._view_paths.freeze
11
- end
12
-
13
- delegate :template_exists?, :view_paths, :formats, :formats=,
14
- :locale, :locale=, :to => :lookup_context
15
-
16
- module ClassMethods
17
- def parent_prefixes
18
- @parent_prefixes ||= begin
19
- parent_controller = superclass
20
- prefixes = []
21
-
22
- until parent_controller.abstract?
23
- prefixes << parent_controller.controller_path
24
- parent_controller = parent_controller.superclass
25
- end
26
-
27
- prefixes
28
- end
29
- end
30
- end
31
-
32
- # The prefixes used in render "foo" shortcuts.
33
- def _prefixes
34
- @_prefixes ||= begin
35
- parent_prefixes = self.class.parent_prefixes
36
- parent_prefixes.dup.unshift(controller_path)
37
- end
38
- end
39
-
40
- # LookupContext is the object responsible to hold all information required to lookup
41
- # templates, i.e. view paths and details. Check ActionView::LookupContext for more
42
- # information.
43
- def lookup_context
44
- @_lookup_context ||=
45
- ActionView::LookupContext.new(self.class._view_paths, details_for_lookup, _prefixes)
46
- end
47
-
48
- def details_for_lookup
49
- { }
50
- end
51
-
52
- def append_view_path(path)
53
- lookup_context.view_paths.push(*path)
54
- end
55
-
56
- def prepend_view_path(path)
57
- lookup_context.view_paths.unshift(*path)
58
- end
59
-
60
- module ClassMethods
61
- # Append a path to the list of view paths for this controller.
62
- #
63
- # ==== Parameters
64
- # * <tt>path</tt> - If a String is provided, it gets converted into
65
- # the default view path. You may also provide a custom view path
66
- # (see ActionView::PathSet for more information)
67
- def append_view_path(path)
68
- self._view_paths = view_paths + Array(path)
69
- end
70
-
71
- # Prepend a path to the list of view paths for this controller.
72
- #
73
- # ==== Parameters
74
- # * <tt>path</tt> - If a String is provided, it gets converted into
75
- # the default view path. You may also provide a custom view path
76
- # (see ActionView::PathSet for more information)
77
- def prepend_view_path(path)
78
- self._view_paths = ActionView::PathSet.new(Array(path) + view_paths)
79
- end
80
-
81
- # A list of all of the default view paths for this controller.
82
- def view_paths
83
- _view_paths
84
- end
85
-
86
- # Set the view paths.
87
- #
88
- # ==== Parameters
89
- # * <tt>paths</tt> - If a PathSet is provided, use that;
90
- # otherwise, process the parameter into a PathSet.
91
- def view_paths=(paths)
92
- self._view_paths = ActionView::PathSet.new(Array.wrap(paths))
93
- end
94
- end
95
- end
96
- end
@@ -1,185 +0,0 @@
1
- require 'set'
2
-
3
- module ActionController #:nodoc:
4
- module Caching
5
- # Action caching is similar to page caching by the fact that the entire
6
- # output of the response is cached, but unlike page caching, every
7
- # request still goes through Action Pack. The key benefit of this is
8
- # that filters run before the cache is served, which allows for
9
- # authentication and other restrictions on whether someone is allowed
10
- # to execute such action. Example:
11
- #
12
- # class ListsController < ApplicationController
13
- # before_filter :authenticate, :except => :public
14
- #
15
- # caches_page :public
16
- # caches_action :index, :show
17
- # end
18
- #
19
- # In this example, the +public+ action doesn't require authentication
20
- # so it's possible to use the faster page caching. On the other hand
21
- # +index+ and +show+ require authentication. They can still be cached,
22
- # but we need action caching for them.
23
- #
24
- # Action caching uses fragment caching internally and an around
25
- # filter to do the job. The fragment cache is named according to
26
- # the host and path of the request. A page that is accessed at
27
- # <tt>http://david.example.com/lists/show/1</tt> will result in a fragment named
28
- # <tt>david.example.com/lists/show/1</tt>. This allows the cacher to
29
- # differentiate between <tt>david.example.com/lists/</tt> and
30
- # <tt>jamis.example.com/lists/</tt> -- which is a helpful way of assisting
31
- # the subdomain-as-account-key pattern.
32
- #
33
- # Different representations of the same resource, e.g.
34
- # <tt>http://david.example.com/lists</tt> and
35
- # <tt>http://david.example.com/lists.xml</tt>
36
- # are treated like separate requests and so are cached separately.
37
- # Keep in mind when expiring an action cache that
38
- # <tt>:action => 'lists'</tt> is not the same as
39
- # <tt>:action => 'list', :format => :xml</tt>.
40
- #
41
- # You can modify the default action cache path by passing a
42
- # <tt>:cache_path</tt> option. This will be passed directly to
43
- # <tt>ActionCachePath.path_for</tt>. This is handy for actions with
44
- # multiple possible routes that should be cached differently. If a
45
- # block is given, it is called with the current controller instance.
46
- #
47
- # And you can also use <tt>:if</tt> (or <tt>:unless</tt>) to pass a
48
- # proc that specifies when the action should be cached.
49
- #
50
- # Finally, if you are using memcached, you can also pass <tt>:expires_in</tt>.
51
- #
52
- # The following example depicts some of the points made above:
53
- #
54
- # class ListsController < ApplicationController
55
- # before_filter :authenticate, :except => :public
56
- #
57
- # caches_page :public
58
- #
59
- # caches_action :index, :if => proc do
60
- # !request.format.json? # cache if is not a JSON request
61
- # end
62
- #
63
- # caches_action :show, :cache_path => { :project => 1 },
64
- # :expires_in => 1.hour
65
- #
66
- # caches_action :feed, :cache_path => proc do
67
- # if params[:user_id]
68
- # user_list_url(params[:user_id, params[:id])
69
- # else
70
- # list_url(params[:id])
71
- # end
72
- # end
73
- # end
74
- #
75
- # If you pass <tt>:layout => false</tt>, it will only cache your action
76
- # content. That's useful when your layout has dynamic information.
77
- #
78
- # Warning: If the format of the request is determined by the Accept HTTP
79
- # header the Content-Type of the cached response could be wrong because
80
- # no information about the MIME type is stored in the cache key. So, if
81
- # you first ask for MIME type M in the Accept header, a cache entry is
82
- # created, and then perform a second request to the same resource asking
83
- # for a different MIME type, you'd get the content cached for M.
84
- #
85
- # The <tt>:format</tt> parameter is taken into account though. The safest
86
- # way to cache by MIME type is to pass the format in the route.
87
- module Actions
88
- extend ActiveSupport::Concern
89
-
90
- module ClassMethods
91
- # Declares that +actions+ should be cached.
92
- # See ActionController::Caching::Actions for details.
93
- def caches_action(*actions)
94
- return unless cache_configured?
95
- options = actions.extract_options!
96
- options[:layout] = true unless options.key?(:layout)
97
- filter_options = options.extract!(:if, :unless).merge(:only => actions)
98
- cache_options = options.extract!(:layout, :cache_path).merge(:store_options => options)
99
-
100
- around_filter ActionCacheFilter.new(cache_options), filter_options
101
- end
102
- end
103
-
104
- def _save_fragment(name, options)
105
- content = ""
106
- response_body.each do |parts|
107
- content << parts
108
- end
109
-
110
- if caching_allowed?
111
- write_fragment(name, content, options)
112
- else
113
- content
114
- end
115
- end
116
-
117
- protected
118
- def expire_action(options = {})
119
- return unless cache_configured?
120
-
121
- if options.is_a?(Hash) && options[:action].is_a?(Array)
122
- options[:action].each {|action| expire_action(options.merge(:action => action)) }
123
- else
124
- expire_fragment(ActionCachePath.new(self, options, false).path)
125
- end
126
- end
127
-
128
- class ActionCacheFilter #:nodoc:
129
- def initialize(options, &block)
130
- @cache_path, @store_options, @cache_layout =
131
- options.values_at(:cache_path, :store_options, :layout)
132
- end
133
-
134
- def filter(controller)
135
- path_options = if @cache_path.respond_to?(:call)
136
- controller.instance_exec(controller, &@cache_path)
137
- else
138
- @cache_path
139
- end
140
-
141
- cache_path = ActionCachePath.new(controller, path_options || {})
142
-
143
- body = controller.read_fragment(cache_path.path, @store_options)
144
-
145
- unless body
146
- controller.action_has_layout = false unless @cache_layout
147
- yield
148
- controller.action_has_layout = true
149
- body = controller._save_fragment(cache_path.path, @store_options)
150
- end
151
-
152
- body = controller.render_to_string(:text => body, :layout => true) unless @cache_layout
153
-
154
- controller.response_body = body
155
- controller.content_type = Mime[cache_path.extension || :html]
156
- end
157
- end
158
-
159
- class ActionCachePath
160
- attr_reader :path, :extension
161
-
162
- # If +infer_extension+ is true, the cache path extension is looked up from the request's
163
- # path and format. This is desirable when reading and writing the cache, but not when
164
- # expiring the cache - expire_action should expire the same files regardless of the
165
- # request format.
166
- def initialize(controller, options = {}, infer_extension = true)
167
- if infer_extension
168
- @extension = controller.params[:format]
169
- options.reverse_merge!(:format => @extension) if options.is_a?(Hash)
170
- end
171
-
172
- path = controller.url_for(options).split(%r{://}).last
173
- @path = normalize!(path)
174
- end
175
-
176
- private
177
- def normalize!(path)
178
- path << 'index' if path[-1] == ?/
179
- path << ".#{extension}" if extension and !path.split('?').first.ends_with?(".#{extension}")
180
- URI.parser.unescape(path)
181
- end
182
- end
183
- end
184
- end
185
- end