github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

mislav / will_paginate

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 2,222
    • 178
  • Source
  • Commits
  • Network (178)
  • Issues (12)
  • Downloads (19)
  • Wiki (9)
  • Graphs
  • Branch: master

click here to add a description

click here to add a homepage

  • Branches (4)
    • agnostic
    • gh-pages
    • master ✓
    • rails3
  • Tags (19)
    • v3.0.pre
    • v2.3.12
    • v2.3.11
    • v2.3.10
    • v2.3.9
    • v2.3.8
    • v2.3.7
    • 2.3.6
    • 2.3.5
    • 2.3.4
    • 2.3.3
    • 2.3.2
    • 2.3.1
    • 2.3.0
    • 2.2.3
    • 2.2.2
    • 2.2.1
    • 2.2.0
    • 2.1.0
Sending Request…
Click here to lend your support to: will_paginate and make a donation at www.pledgie.com ! Edit Pledgie Setup

Pledgie Donations

Once activated, we'll place the following badge in your repository's detail box:
Pledgie_example
This service is courtesy of Pledgie.

Adaptive pagination plugin for web frameworks and other applications — Read more

  cancel

http://github.com/mislav/will_paginate/wikis

  cancel
  • Private
  • Read-Only
  • HTTP Read-Only

This URL has Read+Write access

read version number from "will_paginate/version.rb" when building gem 
mislav (author)
Fri Jan 22 11:05:03 -0800 2010
commit  3d531e169db92a16a9a8974f0ae6edf52e52659e
tree    233c91cea7bc99e6a9300f987a1c9f7dc6e41266
parent  262419f88a12255dea5885a5e4e9046bb28d36a0
will_paginate /
name age
history
message
file .gitignore Sun Apr 06 20:02:06 -0700 2008 test with rcov and bring it up to 100% test cov... [mislav]
file .manifest Tue Feb 10 14:35:20 -0800 2009 simplify manifest generation code by using `git... [mislav]
file CHANGELOG.rdoc Fri Jan 22 11:01:33 -0800 2010 remove outdated link to online docs [mislav]
file LICENSE Thu Aug 02 09:50:25 -0700 2007 will_paginate: add license [#75 state:resolved]... [chris]
file README.rdoc Tue Sep 16 03:03:26 -0700 2008 remove gem dependency to activesupport; release... [mislav]
file Rakefile Tue Feb 10 14:35:20 -0800 2009 simplify manifest generation code by using `git... [mislav]
directory examples/ Sun Apr 06 18:40:37 -0700 2008 added prev_page/next_page CSS classes on prev/n... [mislav]
file init.rb Sun Apr 06 20:57:03 -0700 2008 add CHANGELOG covering the 2.2.0 release [mislav]
directory lib/ Fri Jan 22 11:02:17 -0800 2010 remove reference to "mislav-will_paginate" gem ... [mislav]
directory test/ Thu Nov 05 03:05:45 -0800 2009 try to require mocha for testing without checks [mislav]
file will_paginate.gemspec Fri Jan 22 11:05:03 -0800 2010 read version number from "will_paginate/version... [mislav]
README.rdoc

WillPaginate

Pagination is just limiting the number of records displayed. Why should you let it get in your way while developing, then? This plugin makes magic happen. Did you ever want to be able to do just this on a model:

  Post.paginate :page => 1, :order => 'created_at DESC'

… and then render the page links with a single view helper? Well, now you can.

Some resources to get you started:

  • Installation instructions on the wiki
  • Your mind reels with questions? Join our Google group.
  • How to report bugs

Example usage

Use a paginate finder in the controller:

  @posts = Post.paginate_by_board_id @board.id, :page => params[:page], :order => 'updated_at DESC'

Yeah, paginate works just like find — it just doesn’t fetch all the records. Don’t forget to tell it which page you want, or it will complain! Read more on WillPaginate::Finder::ClassMethods.

Render the posts in your view like you would normally do. When you need to render pagination, just stick this in:

  <%= will_paginate @posts %>

You’re done. (You can find the option list at WillPaginate::ViewHelpers.)

How does it know how much items to fetch per page? It asks your model by calling its per_page class method. You can define it like this:

  class Post < ActiveRecord::Base
    cattr_reader :per_page
    @@per_page = 50
  end

… or like this:

  class Post < ActiveRecord::Base
    def self.per_page
      50
    end
  end

… or don’t worry about it at all. WillPaginate defines it to be 30 by default. But you can always specify the count explicitly when calling paginate:

  @posts = Post.paginate :page => params[:page], :per_page => 50

The paginate finder wraps the original finder and returns your resultset that now has some new properties. You can use the collection as you would with any ActiveRecord resultset. WillPaginate view helpers also need that object to be able to render pagination:

  <ol>
    <% for post in @posts -%>
      <li>Render `post` in some nice way.</li>
    <% end -%>
  </ol>

  <p>Now let's render us some pagination!</p>
  <%= will_paginate @posts %>

More detailed documentation:

  • WillPaginate::Finder::ClassMethods for pagination on your models;
  • WillPaginate::ViewHelpers for your views.

Authors and credits

Authors:Mislav Marohnić, PJ Hyett
Original announcement:errtheblog.com/post/929
Original PHP source:www.strangerstudios.com/sandbox/pagination/diggstyle.php

All these people helped making will_paginate what it is now with their code contributions or just simply awesome ideas:

Chris Wanstrath, Dr. Nic Williams, K. Adam Christensen, Mike Garey, Bence Golda, Matt Aimonetti, Charles Brian Quinn, Desi McAdam, James Coglan, Matijs van Zuijlen, Maria, Brendan Ribera, Todd Willey, Bryan Helmkamp, Jan Berkel, Lourens Naudé, Rick Olson, Russell Norris, Piotr Usewicz, Chris Eppstein, Denis Barushev, Ben Pickles.

Usable pagination in the UI

There are some CSS styles to get you started in the "examples/" directory. They are showcased online here.

More reading about pagination as design pattern:

  • Pagination 101
  • Pagination gallery
  • Pagination on Yahoo Design Pattern Library

Want to discuss, request features, ask questions? Join the Google group.

Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server