Questions tagged [atom-feed]

Atom is an XML based news-feed format. For the text editor from Github, use the [atom-editor] tag.

Atom is an XML-based document format that describes lists of related information known as "feeds". Feeds are composed of a number of items, known as "entries", each with an extensible set of attached metadata. For example, each entry has a title.

The primary use case that Atom addresses is the syndication of Web content such as weblogs and news headlines to Web sites as well as directly to user agents.

689 questions
6
votes
3 answers

Simple AtomPub server library

What simple AtomPub server libraries with file- or DB-based backends can you recommend? Unix-style servers that "do one thing, do it well" are especially welcome. Maybe even libraries in Python?
Andrey Vlasovskikh
  • 16,489
  • 7
  • 44
  • 62
5
votes
3 answers

Determining whether a feed is Atom or RSS

I'm trying to determine whether a given feed is Atom based or RSS based. Here's my code: public boolean isRSS(String URL) throws ParserConfigurationException, SAXException, IOException{ DocumentBuilder builder =…
Mahmoud Hanafy
  • 7,958
  • 12
  • 47
  • 62
5
votes
1 answer

Can I get feed data from Google Reader as JSON?

For the unofficial Google Reader API, I can get all items for a feed in the Atom format. Are they also available in the JSON format?
Jackson Tale
  • 25,428
  • 34
  • 149
  • 271
5
votes
1 answer

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 arguments (1 for 0)): 1: atom_feed do |feed| 2: …
reaper
  • 398
  • 3
  • 15
5
votes
2 answers

Atom entry with C#

How can I make an Atom entry with C# and .NET 4 ? I need to make an entry with this structure: title1 summary1 I tried to do this with…
Alex Luberg
  • 247
  • 3
  • 10
5
votes
1 answer

Embed an image using a data-uri in Rss or Atom-feeds

I might be asking the obvious, but is it possible to embed images in RSS or atom feeds using Data URI's? (And if I would embed them hwo to make feedreaders understand?) Example
asbl
  • 115
  • 1
  • 5
5
votes
2 answers

What RSS parser should I use in PHP?

I am searching an RSS parser written in PHP. The problem is not that I cannot find one. The problem is that there are too many and it's hard to decide which one to use (especially when I have no experience with them and to try them is too time…
Roman
  • 124,451
  • 167
  • 349
  • 456
5
votes
1 answer

How to determine feed type of a .NET SyndicationFeed (RSS vs Atom)?

Is it possible to determine from the System.ServiceModel.Syndication.SyndicationFeed instance what type of SyndicationFeed is being read? If all I have is the url (blahblah.com/feed) it might be rss or atom, and depending on the type I want to do…
SelAromDotNet
  • 4,715
  • 5
  • 37
  • 59
5
votes
2 answers

Selecting author name field from Atom feed using LINQ (C#)

I'm trying to select the "name" field from the author node in an ATOM feed using LINQ. I can get all the fields I need like so: XDocument stories = XDocument.Parse(xmlContent); XNamespace xmlns = "http://www.w3.org/2005/Atom"; var story = from entry…
Robert Dougan
  • 307
  • 5
  • 16
5
votes
3 answers

HTTP Response 412 - can you include content?

I am building a RESTful data store and leveraging Conditional GET and PUT. During a conditional PUT the client can include the Etag from a previous GET on the resource and if the current representation doesn't match the server will return the HTTP…
Gandalf
  • 9,648
  • 8
  • 53
  • 88
5
votes
1 answer

List of gmail atom available labels

I use 'Atom' feeds to read the content of gmail at the address https://mail.google.com/mail/feed/atom/name where name is either empty (to check the inbox) or a user-defined label (even nested). To parse the result, it is useful to read the XML field…
Tom-Tom
  • 107
  • 6
5
votes
1 answer

How to get gmail inbox feed from a category

As specified here https://developers.google.com/google-apps/gmail/gmail_inbox_feed, I can get a feed of unread emails under a label 'work' by simply calling https://mail.google.com/mail/feed/atom/work/ How can we do the same thing with a category…
user3469397
5
votes
2 answers

YouTube Videos in Blogger Atom/RSS feeds

I'm trying to view a feed from my blogger account both from a Ruby on Rails app, and Safari's feed reader. All of the simple HTML (like paragraphs and images) is interpreted just fine, but embedding a YouTube video isn't working. For example, when…
Eric the Red
  • 5,364
  • 11
  • 49
  • 63
5
votes
2 answers

Atom:link in RSS using Rome

It is recommended to add to RSS 2.0. I am wondering if there is any Rome module available to add this tag? Like what they developed for content, media, etc.
Afshin Moazami
  • 2,092
  • 5
  • 33
  • 55
5
votes
2 answers

Argotic Syndication Framework v. System.ServiceModel.Syndication

I'm investigating the Argotic Syndication Framework, and I'm pretty impressed so far. However, a lot of the current implementation--at least for RSS and Atom--seem pretty comparable to System.ServiceModel.Syndication. Does anyone have any opinions…
user29439