Full RSS feed for blogger posts/comments
The official RSS feeds given by Google (http://www.google.com/support/blogger/bin/answer.py?hl=en&answer=97933) only retrieve the latest 50 posts and 20 comments, even if the settings under Site Feed has been set to Full. This default behaviour is useful as readers are usually only interested in latest posts, but will be a problem if you somehow want the RSS feed to show your entire blog.
The solution is simple, just add a HTTP GET parameter to the official RSS URL. For example, if your RSS feed is:
http://blogname.blogspot.com/feeds/posts/default?alt=rss
The feed that returns the full blog is:
http://blogname.blogspot.com/feeds/posts/default?alt=rss&max-results=N
Same for comments, add the max-results parameter to retrieve all comments:
http://blogname.blogspot.com/feeds/comments/default?alt=rss&max-results=N
where N is the maximum number of posts/comments you want to retrieve.