<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>lib/will_paginate/view_helpers/merb_renderer_ext.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -32,6 +32,7 @@ lib/will_paginate/view_helpers/action_view.rb
 lib/will_paginate/view_helpers/base.rb
 lib/will_paginate/view_helpers/link_renderer.rb
 lib/will_paginate/view_helpers/link_renderer_base.rb
+lib/will_paginate/view_helpers/merb_renderer_ext.rb
 spec
 spec/collection_spec.rb
 spec/console
@@ -41,6 +42,8 @@ spec/finders
 spec/finders/active_record_spec.rb
 spec/finders/active_resource_spec.rb
 spec/finders/activerecord_test_connector.rb
+spec/finders/data_mapper_spec.rb
+spec/finders/data_mapper_test_connector.rb
 spec/finders_spec.rb
 spec/fixtures
 spec/fixtures/admin.rb</diff>
      <filename>.manifest</filename>
    </modified>
    <modified>
      <diff>@@ -42,4 +42,5 @@ if defined?(Merb::Plugins)
   Merb::AbstractController.send(:include, WillPaginate::ViewHelpers::Base)
   adapter = { :datamapper =&gt; 'data_mapper', :activerecord =&gt; 'active_record' }[Merb.orm]
   require &quot;will_paginate/finders/#{adapter}&quot;
+  require 'will_paginate/view_helpers/merb_renderer_ext'
 end</diff>
      <filename>lib/will_paginate.rb</filename>
    </modified>
    <modified>
      <diff>@@ -18,6 +18,8 @@ module WillPaginate
       # * &lt;tt&gt;:param_name&lt;/tt&gt; -- parameter name for page number in URLs (default: &lt;tt&gt;:page&lt;/tt&gt;)
       # * &lt;tt&gt;:params&lt;/tt&gt; -- additional parameters when generating pagination links
       #   (eg. &lt;tt&gt;:controller =&gt; &quot;foo&quot;, :action =&gt; nil&lt;/tt&gt;)
+      # * &lt;tt&gt;:base_url&lt;/tt&gt; -- specify the action url, the helper will only add the page # attribute
+      #    to the url
       # * &lt;tt&gt;:renderer&lt;/tt&gt; -- class name, class or instance of a link renderer (default:
       #   &lt;tt&gt;WillPaginate::LinkRenderer&lt;/tt&gt;)
       # * &lt;tt&gt;:page_links&lt;/tt&gt; -- when false, only previous/next links are rendered (default: true)</diff>
      <filename>lib/will_paginate/view_helpers/base.rb</filename>
    </modified>
    <modified>
      <diff>@@ -90,7 +90,7 @@ module WillPaginate
         url_params = @base_url_params.dup
         add_current_page_param(url_params, page)
         
-        generate_url(url_params)
+        generate_url(url_params, page)
       end
       
       def default_url_params
@@ -123,7 +123,9 @@ module WillPaginate
         @template.request.get?
       end
       
-      def generate_url(params)
+      # Url generation method
+      # it's being overwritten by merb_renderer_ext
+      def generate_url(params, page)
         @template.url(params)
       end
 </diff>
      <filename>lib/will_paginate/view_helpers/link_renderer.rb</filename>
    </modified>
    <modified>
      <diff>@@ -15,6 +15,6 @@ Gem::Specification.new do |s|
   s.rdoc_options &lt;&lt; '--inline-source' &lt;&lt; '--charset=UTF-8'
   s.extra_rdoc_files = ['README.rdoc', 'LICENSE']
   
-  s.files = %w(CHANGELOG.rdoc LICENSE README.rdoc Rakefile examples examples/apple-circle.gif examples/index.haml examples/index.html examples/pagination.css examples/pagination.sass init.rb lib lib/will_paginate lib/will_paginate.rb lib/will_paginate/array.rb lib/will_paginate/collection.rb lib/will_paginate/core_ext.rb lib/will_paginate/deprecation.rb lib/will_paginate/finders lib/will_paginate/finders.rb lib/will_paginate/finders/active_record lib/will_paginate/finders/active_record.rb lib/will_paginate/finders/active_record/named_scope.rb lib/will_paginate/finders/active_record/named_scope_patch.rb lib/will_paginate/finders/active_resource.rb lib/will_paginate/finders/base.rb lib/will_paginate/finders/data_mapper.rb lib/will_paginate/version.rb lib/will_paginate/view_helpers lib/will_paginate/view_helpers.rb lib/will_paginate/view_helpers/action_view.rb lib/will_paginate/view_helpers/base.rb lib/will_paginate/view_helpers/link_renderer.rb lib/will_paginate/view_helpers/link_renderer_base.rb spec spec/collection_spec.rb spec/console spec/console_fixtures.rb spec/database.yml spec/finders spec/finders/active_record_spec.rb spec/finders/active_resource_spec.rb spec/finders/activerecord_test_connector.rb spec/finders_spec.rb spec/fixtures spec/fixtures/admin.rb spec/fixtures/developer.rb spec/fixtures/developers_projects.yml spec/fixtures/project.rb spec/fixtures/projects.yml spec/fixtures/replies.yml spec/fixtures/reply.rb spec/fixtures/schema.rb spec/fixtures/topic.rb spec/fixtures/topics.yml spec/fixtures/user.rb spec/fixtures/users.yml spec/rcov.opts spec/spec.opts spec/spec_helper.rb spec/tasks.rake spec/view_helpers spec/view_helpers/action_view_spec.rb spec/view_helpers/base_spec.rb spec/view_helpers/link_renderer_base_spec.rb spec/view_helpers/view_example_group.rb)
-  s.test_files = %w(spec/collection_spec.rb spec/console spec/console_fixtures.rb spec/database.yml spec/finders spec/finders/active_record_spec.rb spec/finders/active_resource_spec.rb spec/finders/activerecord_test_connector.rb spec/finders_spec.rb spec/fixtures spec/fixtures/admin.rb spec/fixtures/developer.rb spec/fixtures/developers_projects.yml spec/fixtures/project.rb spec/fixtures/projects.yml spec/fixtures/replies.yml spec/fixtures/reply.rb spec/fixtures/schema.rb spec/fixtures/topic.rb spec/fixtures/topics.yml spec/fixtures/user.rb spec/fixtures/users.yml spec/rcov.opts spec/spec.opts spec/spec_helper.rb spec/tasks.rake spec/view_helpers spec/view_helpers/action_view_spec.rb spec/view_helpers/base_spec.rb spec/view_helpers/link_renderer_base_spec.rb spec/view_helpers/view_example_group.rb)
+  s.files = %w(CHANGELOG.rdoc LICENSE README.rdoc Rakefile examples examples/apple-circle.gif examples/index.haml examples/index.html examples/pagination.css examples/pagination.sass init.rb lib lib/will_paginate lib/will_paginate.rb lib/will_paginate/array.rb lib/will_paginate/collection.rb lib/will_paginate/core_ext.rb lib/will_paginate/deprecation.rb lib/will_paginate/finders lib/will_paginate/finders.rb lib/will_paginate/finders/active_record lib/will_paginate/finders/active_record.rb lib/will_paginate/finders/active_record/named_scope.rb lib/will_paginate/finders/active_record/named_scope_patch.rb lib/will_paginate/finders/active_resource.rb lib/will_paginate/finders/base.rb lib/will_paginate/finders/data_mapper.rb lib/will_paginate/version.rb lib/will_paginate/view_helpers lib/will_paginate/view_helpers.rb lib/will_paginate/view_helpers/action_view.rb lib/will_paginate/view_helpers/base.rb lib/will_paginate/view_helpers/link_renderer.rb lib/will_paginate/view_helpers/link_renderer_base.rb lib/will_paginate/view_helpers/merb_renderer_ext.rb spec spec/collection_spec.rb spec/console spec/console_fixtures.rb spec/database.yml spec/finders spec/finders/active_record_spec.rb spec/finders/active_resource_spec.rb spec/finders/activerecord_test_connector.rb spec/finders/data_mapper_spec.rb spec/finders/data_mapper_test_connector.rb spec/finders_spec.rb spec/fixtures spec/fixtures/admin.rb spec/fixtures/developer.rb spec/fixtures/developers_projects.yml spec/fixtures/project.rb spec/fixtures/projects.yml spec/fixtures/replies.yml spec/fixtures/reply.rb spec/fixtures/schema.rb spec/fixtures/topic.rb spec/fixtures/topics.yml spec/fixtures/user.rb spec/fixtures/users.yml spec/rcov.opts spec/spec.opts spec/spec_helper.rb spec/tasks.rake spec/view_helpers spec/view_helpers/action_view_spec.rb spec/view_helpers/base_spec.rb spec/view_helpers/link_renderer_base_spec.rb spec/view_helpers/view_example_group.rb)
+  s.test_files = %w(spec/collection_spec.rb spec/console spec/console_fixtures.rb spec/database.yml spec/finders spec/finders/active_record_spec.rb spec/finders/active_resource_spec.rb spec/finders/activerecord_test_connector.rb spec/finders/data_mapper_spec.rb spec/finders/data_mapper_test_connector.rb spec/finders_spec.rb spec/fixtures spec/fixtures/admin.rb spec/fixtures/developer.rb spec/fixtures/developers_projects.yml spec/fixtures/project.rb spec/fixtures/projects.yml spec/fixtures/replies.yml spec/fixtures/reply.rb spec/fixtures/schema.rb spec/fixtures/topic.rb spec/fixtures/topics.yml spec/fixtures/user.rb spec/fixtures/users.yml spec/rcov.opts spec/spec.opts spec/spec_helper.rb spec/tasks.rake spec/view_helpers spec/view_helpers/action_view_spec.rb spec/view_helpers/base_spec.rb spec/view_helpers/link_renderer_base_spec.rb spec/view_helpers/view_example_group.rb)
 end
\ No newline at end of file</diff>
      <filename>will_paginate.gemspec</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>32d31d3646e306a18b7ad0b494f741bf92b854f7</id>
    </parent>
  </parents>
  <author>
    <name>Matt Aimonetti</name>
    <email>mattaimonetti@gmail.com</email>
  </author>
  <url>http://github.com/mattetti/will_paginate/commit/aef06fcc72f2540d605edfd000903e606f924dc6</url>
  <id>aef06fcc72f2540d605edfd000903e606f924dc6</id>
  <committed-date>2008-10-27T00:15:06-07:00</committed-date>
  <authored-date>2008-10-27T00:15:06-07:00</authored-date>
  <message>w00t added real/full Merb support</message>
  <tree>a49a6c87a6bc0f930492b9f73d4105fcfaad0e17</tree>
  <committer>
    <name>Matt Aimonetti</name>
    <email>mattaimonetti@gmail.com</email>
  </committer>
</commit>
