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
0
votes
2 answers

PHP header issue

I have set HTTP header in PHP as: header("Content-Type: application/xml"); And I got following response: False But when I check headers, it says the response type…
Prasad Rajapaksha
  • 6,118
  • 10
  • 36
  • 52
0
votes
1 answer

atom namespace using linq

I have the following xml
frosty
  • 5,330
  • 18
  • 85
  • 122
0
votes
1 answer

RSS and Atom framework and Extensions

We have many nice RSS and Atom frameworks. Personally I like Argotic Framework from CodePlex. But the problem is in diversity of extensions (see http://rss-extensions.org/wiki/Main_Page). First feed may be created without extensions, second with…
Ilya Khaprov
  • 2,546
  • 14
  • 23
0
votes
1 answer

Converting SyndFeed to SyndEntry with Rome

I'm currently working on a project which implies XML feed parsing (Atom 2005) and I'm using Rome to do this. I have currently two kind of XML structure to parse. The first type :
Neozaru
  • 1,109
  • 1
  • 10
  • 25
0
votes
1 answer

NSArray atomfeed and categories

I have an atomfeed with which is succesfully getting parsed. All the articles are in the root array. But now I also have categories as a tag in the feed. How can I parse the atom xml so that the root array contains the categories and each category…
bing
  • 443
  • 6
  • 11
0
votes
0 answers

Filter news feeds via sgrep

Using Liferea feed reader it's possible to specify a script that filters incoming feed data using stdin/stdout, e. g. via a shell script. For instance sgrep '("" .. "") containing "foo"' only outputs entries containing foo, but…
type
  • 1,137
  • 2
  • 9
  • 16
0
votes
3 answers

How to move posts from blogging engine to another

How one can move blog posts from blogging engine to another? Is there away to transfer posts between blog engines, blogs ... lets say from community server blog to blog engine blog vice versa? Can that be done by using OPML, rss, atom ..etc?
Huthaifa Afanah
  • 189
  • 1
  • 7
0
votes
1 answer

Can't get rss feed to display in IE as HTML with XSLT

I have created a .xsl file to transform an atom feed for friendly viewing in a browser. It works great when viewed in Chrome, but IE (9.0.811) the style sheet is ignored. My question is: What can I change so that the stylesheet is processed by…
GWR
  • 1,878
  • 4
  • 26
  • 44
0
votes
1 answer

Difficulty Reading with Atom Reader

I tried making a parser for both RSS and Atom where RSS feed shows the headlines while Atom shows with images and description plus link. It seems my parser works only for RSS. Can you tell me why? Check this one: public void Get_Parse_Feed(String…
David Dimalanta
  • 548
  • 6
  • 19
0
votes
1 answer

Hyperlinks in custom Atom feed don't work in feed readers

I'm trying to generate an Atom feed for my link blog and distribute it with FeedBurner. I've run into a strange problem where neither the original XML file on my server, or FeedBurner's feed, display links in feed readers. Hopefully I can link…
0
votes
0 answers

client side display results of asynchronous tasks [django]

I'd like to know if there is a better way/pattern of doing what i have in mind. I have a server side process that executes asyncronous tasks. Am planning to use celery for this. the asynchronous tasks themselves can have sub tasks. Even though I…
w--
  • 6,427
  • 12
  • 54
  • 92
0
votes
1 answer

How to add link in atom feed using spring 3, netbeans

Using spring3.2 and netbeans 7.2 Warning code : @Override protected List buildFeedEntries(Map model, HttpServletRequest request, HttpServletResponse response) throws Exception { …
Sudhakar Krishnan
  • 732
  • 1
  • 8
  • 27
0
votes
1 answer

Using Ruby's RSS class to parse both Atom and RSS

I want to use Ruby's RSS class to parse both Atom and RSS feeds, so I can pull the links from them. How do I distinguish between the two types inside the code? I've got a parser response readied like so. response = RSS::Parser.parse(rss_url, false)
Chris
  • 2,174
  • 28
  • 37
0
votes
1 answer

How to catch XML Dom with php regex

I got some XML Atom files on local. On all of those files, there are some ... balise that I want to catch in a PHP string variable. So I did that : function parseAtomByBalise($xml,$balise) { $arrayStr=array(); …
vekah
  • 980
  • 3
  • 13
  • 31
0
votes
1 answer

Is there a standard way to list entry tags in an Atom feed?

Say I have a series of tags (such as "travel", "Paris", "cheese") attached to a post or entry. Is there a standard way of listing those tags in an Atom feed? Even if there isn't, is there a de facto standard that is used by most feed readers?
mybuddymichael
  • 1,660
  • 16
  • 20