mjfreshyfresh-will_paginate 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +105 -0
- data/LICENSE +18 -0
- data/README.rdoc +125 -0
- data/Rakefile +32 -0
- data/lib/will_paginate.rb +45 -0
- data/lib/will_paginate/array.rb +33 -0
- data/lib/will_paginate/collection.rb +145 -0
- data/lib/will_paginate/core_ext.rb +69 -0
- data/lib/will_paginate/deprecation.rb +50 -0
- data/lib/will_paginate/finders.rb +9 -0
- data/lib/will_paginate/finders/active_record.rb +192 -0
- data/lib/will_paginate/finders/active_record/named_scope.rb +170 -0
- data/lib/will_paginate/finders/active_record/named_scope_patch.rb +39 -0
- data/lib/will_paginate/finders/active_resource.rb +51 -0
- data/lib/will_paginate/finders/base.rb +112 -0
- data/lib/will_paginate/finders/data_mapper.rb +30 -0
- data/lib/will_paginate/finders/sequel.rb +22 -0
- data/lib/will_paginate/version.rb +9 -0
- data/lib/will_paginate/view_helpers.rb +42 -0
- data/lib/will_paginate/view_helpers/action_view.rb +158 -0
- data/lib/will_paginate/view_helpers/base.rb +126 -0
- data/lib/will_paginate/view_helpers/link_renderer.rb +130 -0
- data/lib/will_paginate/view_helpers/link_renderer_base.rb +83 -0
- data/lib/will_paginate/view_helpers/merb.rb +13 -0
- data/spec/collection_spec.rb +147 -0
- data/spec/console +8 -0
- data/spec/console_fixtures.rb +8 -0
- data/spec/database.yml +22 -0
- data/spec/finders/active_record_spec.rb +461 -0
- data/spec/finders/active_resource_spec.rb +52 -0
- data/spec/finders/activerecord_test_connector.rb +108 -0
- data/spec/finders/data_mapper_spec.rb +62 -0
- data/spec/finders/data_mapper_test_connector.rb +20 -0
- data/spec/finders/sequel_spec.rb +53 -0
- data/spec/finders/sequel_test_connector.rb +9 -0
- data/spec/finders_spec.rb +76 -0
- data/spec/fixtures/admin.rb +3 -0
- data/spec/fixtures/developer.rb +13 -0
- data/spec/fixtures/developers_projects.yml +13 -0
- data/spec/fixtures/project.rb +15 -0
- data/spec/fixtures/projects.yml +6 -0
- data/spec/fixtures/replies.yml +29 -0
- data/spec/fixtures/reply.rb +7 -0
- data/spec/fixtures/schema.rb +38 -0
- data/spec/fixtures/topic.rb +6 -0
- data/spec/fixtures/topics.yml +30 -0
- data/spec/fixtures/user.rb +2 -0
- data/spec/fixtures/users.yml +35 -0
- data/spec/rcov.opts +2 -0
- data/spec/spec.opts +2 -0
- data/spec/spec_helper.rb +75 -0
- data/spec/tasks.rake +60 -0
- data/spec/view_helpers/action_view_spec.rb +344 -0
- data/spec/view_helpers/base_spec.rb +64 -0
- data/spec/view_helpers/link_renderer_base_spec.rb +84 -0
- data/spec/view_helpers/view_example_group.rb +111 -0
- metadata +115 -0
@@ -0,0 +1,39 @@
|
|
1
|
+
## based on http://dev.rubyonrails.org/changeset/9084
|
2
|
+
|
3
|
+
ActiveRecord::Associations::AssociationProxy.class_eval do
|
4
|
+
protected
|
5
|
+
def with_scope(*args, &block)
|
6
|
+
@reflection.klass.send :with_scope, *args, &block
|
7
|
+
end
|
8
|
+
end
|
9
|
+
|
10
|
+
[ ActiveRecord::Associations::AssociationCollection,
|
11
|
+
ActiveRecord::Associations::HasManyThroughAssociation ].each do |klass|
|
12
|
+
klass.class_eval do
|
13
|
+
protected
|
14
|
+
alias :method_missing_without_scopes :method_missing_without_paginate
|
15
|
+
def method_missing_without_paginate(method, *args, &block)
|
16
|
+
if @reflection.klass.scopes.include?(method)
|
17
|
+
@reflection.klass.scopes[method].call(self, *args, &block)
|
18
|
+
else
|
19
|
+
method_missing_without_scopes(method, *args, &block)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
# Rails 1.2.6
|
26
|
+
ActiveRecord::Associations::HasAndBelongsToManyAssociation.class_eval do
|
27
|
+
protected
|
28
|
+
def method_missing(method, *args, &block)
|
29
|
+
if @target.respond_to?(method) || (!@reflection.klass.respond_to?(method) && Class.respond_to?(method))
|
30
|
+
super
|
31
|
+
elsif @reflection.klass.scopes.include?(method)
|
32
|
+
@reflection.klass.scopes[method].call(self, *args)
|
33
|
+
else
|
34
|
+
@reflection.klass.with_scope(:find => { :conditions => @finder_sql, :joins => @join_sql, :readonly => false }) do
|
35
|
+
@reflection.klass.send(method, *args, &block)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end if ActiveRecord::Base.respond_to? :find_first
|
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'will_paginate/finders/base'
|
2
|
+
require 'active_resource'
|
3
|
+
|
4
|
+
module WillPaginate::Finders
|
5
|
+
# Paginate your ActiveResource models.
|
6
|
+
#
|
7
|
+
# @posts = Post.paginate :all, :params => {
|
8
|
+
# :page => params[:page], :order => 'created_at DESC'
|
9
|
+
# }
|
10
|
+
#
|
11
|
+
module ActiveResource
|
12
|
+
include WillPaginate::Finders::Base
|
13
|
+
|
14
|
+
protected
|
15
|
+
|
16
|
+
def wp_query(options, pager, args, &block) #:nodoc:
|
17
|
+
unless args.empty? or args.first == :all
|
18
|
+
raise ArgumentError, "finder arguments other than :all are not supported for pagination (#{args.inspect} given)"
|
19
|
+
end
|
20
|
+
params = (options[:params] ||= {})
|
21
|
+
params[:page] = pager.current_page
|
22
|
+
params[:per_page] = pager.per_page
|
23
|
+
|
24
|
+
pager.replace find_every(options, &block)
|
25
|
+
end
|
26
|
+
|
27
|
+
# Takes the format that Hash.from_xml produces out of an unknown type
|
28
|
+
# (produced by WillPaginate::Collection#to_xml_with_collection_type),
|
29
|
+
# parses it into a WillPaginate::Collection,
|
30
|
+
# and forwards the result to the former +instantiate_collection+ method.
|
31
|
+
# It only does this for hashes that have a :type => "collection".
|
32
|
+
def instantiate_collection_with_collection(collection, prefix_options = {}) #:nodoc:
|
33
|
+
if collection.is_a?(Hash) && collection["type"] == "collection"
|
34
|
+
collectables = collection.values.find{ |c| c.is_a?(Hash) || c.is_a?(Array) }
|
35
|
+
collectables = [collectables].compact unless collectables.kind_of?(Array)
|
36
|
+
instantiated_collection = WillPaginate::Collection.create(collection["current_page"], collection["per_page"], collection["total_entries"]) do |pager|
|
37
|
+
pager.replace instantiate_collection_without_collection(collectables, prefix_options)
|
38
|
+
end
|
39
|
+
else
|
40
|
+
instantiate_collection_without_collection(collection, prefix_options)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
ActiveResource::Base.class_eval do
|
47
|
+
extend WillPaginate::Finders::ActiveResource
|
48
|
+
class << self
|
49
|
+
# alias_method_chain :instantiate_collection, :collection
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,112 @@
|
|
1
|
+
require 'will_paginate/core_ext'
|
2
|
+
|
3
|
+
module WillPaginate
|
4
|
+
module Finders
|
5
|
+
# = Database-agnostic finder module
|
6
|
+
#
|
7
|
+
# Out of the box, will_paginate supports hooking in several ORMs to
|
8
|
+
# provide paginating finders based on their API. As of this writing, the
|
9
|
+
# supported libraries are:
|
10
|
+
#
|
11
|
+
# * ActiveRecord
|
12
|
+
# * DataMapper
|
13
|
+
# * Sequel
|
14
|
+
#
|
15
|
+
# It's easy to write your own adapter for anything that can load data with
|
16
|
+
# explicit limit and offset settings. DataMapper adapter is a nice and
|
17
|
+
# compact example of writing an adapter to bring the +paginate+ method to
|
18
|
+
# DataMapper models.
|
19
|
+
#
|
20
|
+
# == The importance of SQL's <tt>ORDER BY</tt>
|
21
|
+
#
|
22
|
+
# In most ORMs, <tt>:order</tt> parameter specifies columns for the
|
23
|
+
# <tt>ORDER BY</tt> clause in SQL. It is important to have it, since
|
24
|
+
# pagination only makes sense with ordered sets. Without the order clause,
|
25
|
+
# databases aren't required to do consistent ordering when performing
|
26
|
+
# <tt>SELECT</tt> queries.
|
27
|
+
#
|
28
|
+
# Ordering by a field for which many records share the same value (e.g.
|
29
|
+
# "status") can still result in incorrect ordering with some databases (MS
|
30
|
+
# SQL and Postgres for instance). With these databases it's recommend that
|
31
|
+
# you order by primary key as well. That is, instead of ordering by
|
32
|
+
# "status DESC", use the alternative "status DESC, id DESC" and this will
|
33
|
+
# yield consistent results.
|
34
|
+
#
|
35
|
+
# Therefore, make sure you are doing ordering on a column that makes the
|
36
|
+
# most sense in the current context. Make that obvious to the user, also.
|
37
|
+
# For perfomance reasons you will also want to add an index to that column.
|
38
|
+
module Base
|
39
|
+
def per_page
|
40
|
+
@per_page ||= 30
|
41
|
+
end
|
42
|
+
|
43
|
+
def per_page=(limit)
|
44
|
+
@per_page = limit.to_i
|
45
|
+
end
|
46
|
+
|
47
|
+
# This is the main paginating finder.
|
48
|
+
#
|
49
|
+
# == Special parameters for paginating finders
|
50
|
+
# * <tt>:page</tt> -- REQUIRED, but defaults to 1 if false or nil
|
51
|
+
# * <tt>:per_page</tt> -- defaults to <tt>CurrentModel.per_page</tt> (which is 30 if not overridden)
|
52
|
+
# * <tt>:total_entries</tt> -- use only if you manually count total entries
|
53
|
+
# * <tt>:count</tt> -- additional options that are passed on to +count+
|
54
|
+
# * <tt>:finder</tt> -- name of the finder method to use (default: "find")
|
55
|
+
#
|
56
|
+
# All other options (+conditions+, +order+, ...) are forwarded to +find+
|
57
|
+
# and +count+ calls.
|
58
|
+
def paginate(*args, &block)
|
59
|
+
options = args.pop
|
60
|
+
page, per_page, total_entries = wp_parse_options(options)
|
61
|
+
|
62
|
+
WillPaginate::Collection.create(page, per_page, total_entries) do |pager|
|
63
|
+
query_options = options.except :page, :per_page, :total_entries
|
64
|
+
wp_query(query_options, pager, args, &block)
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
# Iterates through all records by loading one page at a time. This is useful
|
69
|
+
# for migrations or any other use case where you don't want to load all the
|
70
|
+
# records in memory at once.
|
71
|
+
#
|
72
|
+
# It uses +paginate+ internally; therefore it accepts all of its options.
|
73
|
+
# You can specify a starting page with <tt>:page</tt> (default is 1). Default
|
74
|
+
# <tt>:order</tt> is <tt>"id"</tt>, override if necessary.
|
75
|
+
#
|
76
|
+
# {Jamis Buck describes this}[http://weblog.jamisbuck.org/2007/4/6/faking-cursors-in-activerecord]
|
77
|
+
# and also uses a more efficient way for MySQL.
|
78
|
+
def paginated_each(options = {}, &block)
|
79
|
+
options = { :order => 'id', :page => 1 }.merge options
|
80
|
+
options[:page] = options[:page].to_i
|
81
|
+
options[:total_entries] = 0 # skip the individual count queries
|
82
|
+
total = 0
|
83
|
+
|
84
|
+
begin
|
85
|
+
collection = paginate(options)
|
86
|
+
total += collection.each(&block).size
|
87
|
+
options[:page] += 1
|
88
|
+
end until collection.size < collection.per_page
|
89
|
+
|
90
|
+
total
|
91
|
+
end
|
92
|
+
|
93
|
+
protected
|
94
|
+
|
95
|
+
def wp_parse_options(options) #:nodoc:
|
96
|
+
raise ArgumentError, 'parameter hash expected' unless Hash === options
|
97
|
+
raise ArgumentError, ':page parameter required' unless options.key? :page
|
98
|
+
|
99
|
+
if options[:count] and options[:total_entries]
|
100
|
+
raise ArgumentError, ':count and :total_entries are mutually exclusive'
|
101
|
+
end
|
102
|
+
|
103
|
+
page = options[:page] || 1
|
104
|
+
per_page = options[:per_page] || self.per_page
|
105
|
+
total = options[:total_entries]
|
106
|
+
|
107
|
+
return [page, per_page, total]
|
108
|
+
end
|
109
|
+
|
110
|
+
end
|
111
|
+
end
|
112
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'will_paginate/finders/base'
|
2
|
+
require 'dm-core'
|
3
|
+
|
4
|
+
module WillPaginate::Finders
|
5
|
+
module DataMapper
|
6
|
+
include WillPaginate::Finders::Base
|
7
|
+
|
8
|
+
protected
|
9
|
+
|
10
|
+
def wp_query(options, pager, args, &block) #:nodoc
|
11
|
+
find_options = options.except(:count).update(:offset => pager.offset, :limit => pager.per_page)
|
12
|
+
|
13
|
+
pager.replace all(find_options, &block)
|
14
|
+
|
15
|
+
unless pager.total_entries
|
16
|
+
pager.total_entries = wp_count(options)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def wp_count(options) #:nodoc
|
21
|
+
count_options = options.except(:count, :order)
|
22
|
+
# merge the hash found in :count
|
23
|
+
count_options.update options[:count] if options[:count]
|
24
|
+
|
25
|
+
count_options.empty?? count() : count(count_options)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
DataMapper::Model.send(:include, WillPaginate::Finders::DataMapper)
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'sequel'
|
2
|
+
require 'sequel/extensions/pagination'
|
3
|
+
|
4
|
+
existing_methods = Sequel::Dataset::Pagination.instance_methods
|
5
|
+
|
6
|
+
Sequel::Dataset::Pagination.module_eval do
|
7
|
+
# it should quack like a WillPaginate::Collection
|
8
|
+
|
9
|
+
alias :total_pages :page_count unless existing_methods.include_method? :total_pages
|
10
|
+
alias :per_page :page_size unless existing_methods.include_method? :per_page
|
11
|
+
alias :previous_page :prev_page unless existing_methods.include_method? :previous_page
|
12
|
+
alias :total_entries :pagination_record_count unless existing_methods.include_method? :total_entries
|
13
|
+
|
14
|
+
def out_of_bounds?
|
15
|
+
current_page > total_pages
|
16
|
+
end
|
17
|
+
|
18
|
+
# Current offset of the paginated collection
|
19
|
+
def offset
|
20
|
+
(current_page - 1) * per_page
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
require 'will_paginate/deprecation'
|
2
|
+
|
3
|
+
module WillPaginate
|
4
|
+
# = Will Paginate view helpers
|
5
|
+
#
|
6
|
+
# The main view helper is +will_paginate+. It renders the pagination links
|
7
|
+
# for the given collection. The helper itself is lightweight and serves only
|
8
|
+
# as a wrapper around LinkRenderer instantiation; the renderer then does
|
9
|
+
# all the hard work of generating the HTML.
|
10
|
+
#
|
11
|
+
# Read more in WillPaginate::ViewHelpers::Base
|
12
|
+
module ViewHelpers
|
13
|
+
# ==== Global options for helpers
|
14
|
+
#
|
15
|
+
# Options for pagination helpers are optional and get their default values
|
16
|
+
# from the WillPaginate::ViewHelpers.pagination_options hash. You can write
|
17
|
+
# to this hash to override default options on the global level:
|
18
|
+
#
|
19
|
+
# WillPaginate::ViewHelpers.pagination_options[:previous_label] = 'Previous page'
|
20
|
+
#
|
21
|
+
# By putting this into your environment.rb you can easily translate link
|
22
|
+
# texts to previous and next pages, as well as override some other defaults
|
23
|
+
# to your liking.
|
24
|
+
def self.pagination_options() @pagination_options; end
|
25
|
+
# Overrides the default +pagination_options+
|
26
|
+
def self.pagination_options=(value) @pagination_options = value; end
|
27
|
+
|
28
|
+
self.pagination_options = {
|
29
|
+
:class => 'pagination',
|
30
|
+
:previous_label => '← Previous',
|
31
|
+
:next_label => 'Next →',
|
32
|
+
:inner_window => 4, # links around the current page
|
33
|
+
:outer_window => 1, # links around beginning and end
|
34
|
+
:separator => ' ', # single space is friendly to spiders and non-graphic browsers
|
35
|
+
:param_name => :page,
|
36
|
+
:params => nil,
|
37
|
+
:renderer => 'WillPaginate::ViewHelpers::LinkRenderer',
|
38
|
+
:page_links => true,
|
39
|
+
:container => true
|
40
|
+
}
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,158 @@
|
|
1
|
+
require 'will_paginate/view_helpers/base'
|
2
|
+
require 'action_view'
|
3
|
+
require 'action_pack/version'
|
4
|
+
require 'will_paginate/view_helpers/link_renderer'
|
5
|
+
|
6
|
+
module WillPaginate
|
7
|
+
module ViewHelpers
|
8
|
+
# = ActionView helpers
|
9
|
+
#
|
10
|
+
# This module serves for availability in ActionView templates. It also adds a new
|
11
|
+
# view helper: +paginated_section+.
|
12
|
+
#
|
13
|
+
# == Using the helper without arguments
|
14
|
+
# If the helper is called without passing in the collection object, it will
|
15
|
+
# try to read from the instance variable inferred by the controller name.
|
16
|
+
# For example, calling +will_paginate+ while the current controller is
|
17
|
+
# PostsController will result in trying to read from the <tt>@posts</tt>
|
18
|
+
# variable. Example:
|
19
|
+
#
|
20
|
+
# <%= will_paginate :id => true %>
|
21
|
+
#
|
22
|
+
# ... will result in <tt>@post</tt> collection getting paginated:
|
23
|
+
#
|
24
|
+
# <div class="pagination" id="posts_pagination"> ... </div>
|
25
|
+
#
|
26
|
+
module ActionView
|
27
|
+
include WillPaginate::ViewHelpers::Base
|
28
|
+
|
29
|
+
def will_paginate(collection = nil, options = {}) #:nodoc:
|
30
|
+
options, collection = collection, nil if collection.is_a? Hash
|
31
|
+
collection ||= infer_collection_from_controller
|
32
|
+
|
33
|
+
super(collection, options.symbolize_keys)
|
34
|
+
end
|
35
|
+
|
36
|
+
def page_entries_info(collection = nil, options = {}) #:nodoc:
|
37
|
+
options, collection = collection, nil if collection.is_a? Hash
|
38
|
+
collection ||= infer_collection_from_controller
|
39
|
+
|
40
|
+
super(collection, options.symbolize_keys)
|
41
|
+
end
|
42
|
+
|
43
|
+
# Wrapper for rendering pagination links at both top and bottom of a block
|
44
|
+
# of content.
|
45
|
+
#
|
46
|
+
# <% paginated_section @posts do %>
|
47
|
+
# <ol id="posts">
|
48
|
+
# <% for post in @posts %>
|
49
|
+
# <li> ... </li>
|
50
|
+
# <% end %>
|
51
|
+
# </ol>
|
52
|
+
# <% end %>
|
53
|
+
#
|
54
|
+
# will result in:
|
55
|
+
#
|
56
|
+
# <div class="pagination"> ... </div>
|
57
|
+
# <ol id="posts">
|
58
|
+
# ...
|
59
|
+
# </ol>
|
60
|
+
# <div class="pagination"> ... </div>
|
61
|
+
#
|
62
|
+
# Arguments are passed to a <tt>will_paginate</tt> call, so the same options
|
63
|
+
# apply. Don't use the <tt>:id</tt> option; otherwise you'll finish with two
|
64
|
+
# blocks of pagination links sharing the same ID (which is invalid HTML).
|
65
|
+
def paginated_section(*args, &block)
|
66
|
+
pagination = will_paginate(*args).to_s
|
67
|
+
|
68
|
+
unless ::ActionView::Base.respond_to? :erb_variable
|
69
|
+
concat pagination
|
70
|
+
yield
|
71
|
+
concat pagination
|
72
|
+
else
|
73
|
+
content = pagination + capture(&block) + pagination
|
74
|
+
concat(content, block.binding)
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
protected
|
79
|
+
|
80
|
+
def infer_collection_from_controller
|
81
|
+
collection_name = "@#{controller.controller_name}"
|
82
|
+
collection = instance_variable_get(collection_name)
|
83
|
+
raise ArgumentError, "The #{collection_name} variable appears to be empty. Did you " +
|
84
|
+
"forget to pass the collection object for will_paginate?" if collection.nil?
|
85
|
+
collection
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
ActionView::Base.send :include, WillPaginate::ViewHelpers::ActionView
|
92
|
+
# :stopdoc:
|
93
|
+
if defined?(ActionController::Base) and ActionController::Base.respond_to? :rescue_responses
|
94
|
+
ActionController::Base.rescue_responses['WillPaginate::InvalidPage'] = :not_found
|
95
|
+
end
|
96
|
+
|
97
|
+
WillPaginate::ViewHelpers::LinkRenderer.class_eval do
|
98
|
+
protected
|
99
|
+
|
100
|
+
def default_url_params
|
101
|
+
{ :escape => false }
|
102
|
+
end
|
103
|
+
|
104
|
+
def url(page)
|
105
|
+
@base_url_params ||= begin
|
106
|
+
url_params = base_url_params
|
107
|
+
merge_optional_params(url_params)
|
108
|
+
url_params
|
109
|
+
end
|
110
|
+
|
111
|
+
url_params = @base_url_params.dup
|
112
|
+
add_current_page_param(url_params, page)
|
113
|
+
|
114
|
+
@template.url_for(url_params)
|
115
|
+
end
|
116
|
+
|
117
|
+
def base_url_params
|
118
|
+
url_params = default_url_params
|
119
|
+
# page links should preserve GET parameters
|
120
|
+
symbolized_update(url_params, @template.params) if get_request?
|
121
|
+
url_params
|
122
|
+
end
|
123
|
+
|
124
|
+
def merge_optional_params(url_params)
|
125
|
+
symbolized_update(url_params, @options[:params]) if @options[:params]
|
126
|
+
end
|
127
|
+
|
128
|
+
def add_current_page_param(url_params, page)
|
129
|
+
unless param_name.index(/[^\w-]/)
|
130
|
+
url_params[param_name.to_sym] = page
|
131
|
+
else
|
132
|
+
page_param = parse_query_parameters("#{param_name}=#{page}")
|
133
|
+
symbolized_update(url_params, page_param)
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
def get_request?
|
138
|
+
@template.request.get?
|
139
|
+
end
|
140
|
+
|
141
|
+
private
|
142
|
+
|
143
|
+
def parse_query_parameters(params)
|
144
|
+
if defined? Rack::Utils
|
145
|
+
# For Rails > 2.3
|
146
|
+
Rack::Utils.parse_nested_query(params)
|
147
|
+
elsif defined?(ActionController::AbstractRequest)
|
148
|
+
ActionController::AbstractRequest.parse_query_parameters(params)
|
149
|
+
elsif defined?(ActionController::UrlEncodedPairParser)
|
150
|
+
# For Rails > 2.2
|
151
|
+
ActionController::UrlEncodedPairParser.parse_query_parameters(params)
|
152
|
+
elsif defined?(CGIMethods)
|
153
|
+
CGIMethods.parse_query_parameters(params)
|
154
|
+
else
|
155
|
+
raise "unsupported ActionPack version"
|
156
|
+
end
|
157
|
+
end
|
158
|
+
end
|