You're using the same @posts for your rss feed as for your html. You
could use a different method for your RSS feed or you can set the
limit according to the call you're making.

Why is the @posts = Post.all line there anyway? You could set it to
@posts_rss and send that along with your RSS feed.

On 15 aug, 12:09, Philip Gavrilos <rails-mailing-l...@andreas-s.net>
wrote:
> hi i use will_paginate for pagination in my blog. i set itto limit 3
> posts per page but also limit my RSS feeds :/ any suggestion ?
>
> this is my code:
>
> controllers/posts.controller.rb
>
>   def index
>     @posts = Post.all
>     @posts = Post.paginate :page => params[:page], :order => 'created_at
> DESC', :per_page=>3
>
>     respond_to do |format|
>       format.html # index.html.erb
>       format.xml  { render :xml => @posts }
>       format.json { render :json => @posts }
>       format.rss  { render }
>     end
>   end
>
> --------------
>
> index.rss.builder
>
> xml.instruct! :xml, :version => "1.0"
> xml.rss :version => "2.0" do
>   xml.channel do
>     xml.title "webstic blog"
>     xml.description ""
>     xml.author "philip"
>     xml.link posts_url(:rss)
>
>     for post in @posts
>       xml.item do
>         xml.title post.title
>         xml.description post.body
>         xml.author post.author
>         xml.pubDate post.created_at.to_s(:rfc822)
>       end
>     end
>   end
> end
> --
> Posted viahttp://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to