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
9
votes
1 answer

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 an undefined local variable or method `xml' error so I tried passing the XML builder as an option to the atom_feed (i e atom_feed({:xml =>…
Erik
  • 131
  • 1
  • 9
9
votes
1 answer

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 I've specified an :url option for the entry. This…
Nick
  • 8,483
  • 10
  • 46
  • 65
9
votes
3 answers

How to publish a dynamic event feed for google calendar?

I'm building a webapp that manages certain types of events for users. I want to provide a way to display those events inside of a user's google calendar. What I was really hoping for was a way to publish my own google calendar compatible feed and…
Tauren
  • 26,795
  • 42
  • 131
  • 167
9
votes
3 answers

Is there a well supported feed generation library for Java?

I'm looking to build a feed generator for RSS and Atom feeds. I've been looking around for a library that will generate a wide variety of formats (RSS .9 through whatever is current, and Atom .3 through whatever is current). I'd rather not look…
Steve Kallestad
  • 3,484
  • 2
  • 23
  • 31
9
votes
2 answers

RFC-822 date-time format in RSS 2.0 feeds: CET not accepted?

[Updated with working solution] I have an RSS feed which gets displayed correctly in RSS clients, but when being validated by http://feedvalidator.org I get this error: pubDate must be an RFC-822 date-time My date is formatted as follows: Wed, 27…
basZero
  • 4,129
  • 9
  • 51
  • 89
9
votes
2 answers

How To Add A SyndicationElementExtension To A SyndicationItem

Using the .NET System.ServiceModel.Syndication classes... I would like to add a new SyndicationElementExtension to a SyndicationItem that will export the following XML:
Shawn Miller
  • 7,082
  • 6
  • 46
  • 54
8
votes
6 answers

Reading Atom feed of gmail account from C#

I have a project that will send an email with certain data to a gmail account. I think that it will probably be easier to read the Atom feed rather than connect through POP. The url that I should be using according to Google…
Crash893
  • 11,428
  • 21
  • 88
  • 123
8
votes
3 answers

What is the best way to generate an atom or rss feed in node.js application

I'm trying to add newsfeeds to an node.js application using express.js and I can't find a painless way to take a json model and turn it into an atom or rss feed. Best solutions i've come up with is use an Xml library (also not so hot on node.js) or…
Arne Claassen
  • 14,088
  • 5
  • 67
  • 106
8
votes
1 answer

Adding Namespaces to a SyndicationFeed rather than Individual Elements?

I have a class like this: public static class MyFeedExtensions { private readonly static XNamespace _namespace = XNamespace.Get(@"http://mynamespace"); public static XElement MyElement(string value) { return new…
Michael Stum
  • 177,530
  • 117
  • 400
  • 535
8
votes
5 answers

Link to RSS/Atom feed, relative, doesn't work in Firefox

I have a weird problem. I generate a HTML page, hosted let's say at http://www.x.com/stuff which contains .. The result is: In IE7 all works well - you can…
Adrian Smith
  • 17,236
  • 11
  • 71
  • 93
8
votes
4 answers

Are there CPAN modules that will help me parse an RSS or ATOM feed in Perl?

I need code in Perl for requesting and parsing ATOM and RSS feeds. Is there a CPAN module(s) for that?
user47145
  • 1,775
  • 2
  • 13
  • 8
8
votes
1 answer

Swagger: "equivalent path already exists" despite different parameters

I'm trying to turn the Atom Publishing Protocol (RFC5023) in to a Swagger / OpenAPI spec to exercise writing those specs. I ran into the following problem: in Atom there are different types of URIs, e.g. Collection and Member URIs. My idea was to…
trilean
  • 515
  • 5
  • 11
8
votes
1 answer

Exposing data in an atom feed

How do I add extra data into an atom feed that does not map into the standard entry nodes (title, link, id, updated, summary)? Is it possible to add my own custom xml here and still be compliant with the spec?
NabilS
  • 1,421
  • 1
  • 19
  • 31
8
votes
2 answers

how can I get a global rss feed on Gitlab?

In Gitlab there is an RSS news feed button for every project. http://git.domain.name/userName/projectName/commits/master.atom?private_token=xxxxxxxxxxxxx Is there a way to retrieve a global RSS feed for all projects related to one user? Or even…
Mau
  • 1,257
  • 2
  • 15
  • 21
8
votes
2 answers

Displaying images in atom feed

I have problems with displaying images in atom file. It doesn't include images in feed in google reader, opera or firefox. As a starting point I did everything like in Listing 6. at [An overview of the Atom 1.0 Syndication Format] But it doesn't…
kmasalski
  • 238
  • 4
  • 17
1 2
3
45 46