Tagged Questions
0
votes
0answers
119 views
Rails: Atom Feed Displays As Untitled in Google Reader
I am attempting to implement an Atom feed for a blog I am developing. So far so good, I am creating an almost validated feed which I can read through Google Reader. 99% of the way there. However, when ...
3
votes
1answer
185 views
Displaying images in Atom feed using Rails?
I'm trying to iterate over each articles' pictures in an Atom feed. I have the following code which renders an Atom feed just fine, but am not sure if these are the correct image tags.
Any advice on ...
2
votes
1answer
654 views
How to add images to an atom feed in Rails 3.2?
In a Rails 3.2 app I have a Photo model with a :caption field and using Carrierwave to handle image files.
I'm trying to create an atom feed that contains the images. What is the correct way to do ...
0
votes
1answer
159 views
setting entry id with rails' atom_feed helper
I am using the atom feed builder method in Rails 3.2.2 to create a custom atom feed for a model's index method. I need to set the feed entry ids to a custom url. Currently the builder looks like this:
...
2
votes
2answers
651 views
Rails 3 Atom Feed
Trying to create an atom feed in Rails 3. When i refresh my browser i see basic XML, not the Atom feed im looking for.
class PostsController < ApplicationController
# GET /posts
# GET ...
3
votes
1answer
409 views
Atom feed and rss reader
I'm trying to add a Atom feed for a page, but it just keeps spinning and adds all the items if only one new was added. What am i doing wrong?
http://legionaere.de/posts.atom?team_slug=1_team
I'm ...
0
votes
1answer
341 views
Weird error with rails atom builder
I am trying to create a simple atom feed with the respond_to method in rails
I have the respond to and routes set up properly but my builder errors. I have tried everything I can think of so ...
4
votes
1answer
736 views
ActionView::Template::Error (wrong number of arguments (1 for 0)) with atom_feed after upgrading to rails 3.1.0
I've just upgrade my rails application from the 3.0.7 version to the release candidate 3.1.0 and I got a strange error located in my atom feed builder :
ActionView::Template::Error (wrong number of ...
0
votes
1answer
473 views
Ruby On Rails 3 - Atom Feed Issue
I am getting this error that has to do with the db. Any ideas how to solve it?
/app/views/articles/feed.atom.builder:
atom_feed :language => 'en-gb' do |feed|
feed.title "My Blog"
...
2
votes
2answers
651 views
Rendering HTML-Content in Atom Feed with Rails atom_feed helper
I've got some problems with the (fairly undocumented) atom_feed helper.
I'ld love to do something like this:
for blogpost in @blogposts
feed.entry(blogpost) do |entry|
...
0
votes
1answer
185 views
Combining multiple atom feeds into one
I have 4 resources and I'd like to provide an atom feed for each one but I don't want to ask people sign up for 4 feeds (cos they won't) so is there a guide that explains the best way to combine ...
4
votes
3answers
2k views
How to create an atom feed in Rails 3?
I'm trying to set up a simple atom feed from my Posts model and I'm running into translation problems between rails 2 and rails 3.
I tried to accomplish this task with two steps:
Added the <%= ...
7
votes
1answer
2k views
What happened to Builder::XmlMarkup in Rails 3?
I'm struggling with the atom_feed method in a RoR 3 project. The method complains about a
undefined local variable or method `xml'
error so I tried passing the XML builder as an option to the ...
4
votes
1answer
670 views
Rails AtomFeedBuilder Entry :Url option appears in url tag but not in link tag
I'm using the AtomFeedHelper and everything is working fine except for one feed where I need to link each entry to a URL which is not the default polymorphic_url for the record.
Per the documentation ...
0
votes
1answer
72 views
How do I set the location for the link in the title of a google reader subscription
I've got an atom feed in my application that's build using atom_feed, and it's working, except that when the feed is subscribed to in Google Reader, the link it uses for the title of the subscription ...
0
votes
2answers
546 views
Nested resource with Atom Feed Helper
I'm trying to use the Rails Atom Feed Helper to generate a feed for a nested resource. My view template (index.atom.builder) is:
atom_feed(:schema_date => @favourites.first.created_at) do |feed|
...
0
votes
2answers
533 views
Aggregating feeds in Rails application
I am thinking of writing a daemon to loop through feeds and then add them into the database as ActiveRecord objects.
Firstly, one problem I am facing is that I cannot reliably retrieve the ...
2
votes
3answers
867 views
Rails library to process an RSS/ATOM feed?
What's a good solution to parse an RSS/ATOM feed and present the content in a Rails view?
21
votes
6answers
16k views
Parsing Atom & RSS in Ruby/Rails?
I'm looking for something that will let me parse Atom and RSS in Ruby and Rails. I've looked at the standard RSS library, but is there one library that will auto-detect whatever type of feed it is and ...
4
votes
3answers
2k views
adding html to my RSS/Atom feed in Rails
The default rails XML builder escapes all html so something like:
atom_feed do |feed|
@stories.each do |story|
feed.entry story do |entry|
entry.title story.title
...