atom

What's a reliable way to check an RSS feed for new entries?

Part of an app I'm building needs to check RSS feeds for updates. I'm looking for a reliable way to know if a feed has new entries. I know that sometimes people make posts to the future and, after that, posts to the present time which could cause some entries to be hidden. It seems like there could be more complications than that, as we...

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? ...

Do I need PHP to serve an HTTP Header with the correct content-type for RSS/ATOM?

I want to send my RSS/Atom feeds with the correct Content-type header, can I do this without access to PHP or any other server-side language? The goal is for the browser to treat the file as a feed and not just a plain XML file. ...

What is the proper way of handling xml-stylesheet :xmlns:blah with haml?

I'm trying to hook up a blog with some xml namespaces and xml stylesheets. The ugly way that I'm doing this currently looks like so: !!! XML = partial('xmlstyle') %channel ......blah..... = partial('xmlend') where _xmlstyle.xml.erb looks like: <?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?> <?xml-st...

Trouble Parsing Atom feed with jQuery

I have an Atom feed like this... <?xml version="1.0"?> <feed xml:base="http://earthquake.usgs.gov/" xmlns="http://www.w3.org/2005/Atom" xmlns:georss="http://www.georss.org/georss"&gt; <updated>2009-10-12T14:47:25Z</updated> <title>USGS M2.5+ Earthquakes</stitle> <subtitle>Real-time, worldwide earthquake list for the...

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? ...

unable add namespace with php's simplexml

Hi , I am creating an atom feed , when I tried below to add xmlns:i as an attribute - $node->addAttribute("xmlns:i","http://www.w3.org/2001/XMLSchema-instance"); I got this as an output - i="http://www.w3.org/2001/XMLSchema-instance" "xmlns:" par was cut off. do I need to escape : char ? or is they any other way to add this namesp...

NSArray atomfeed and categories

Hi, 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 filters to an array with the corresponding articles. Thanks, Bing ...

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%5FPage). First feed may be created without extensions, second with only itunes, and third with itunes, media and so on. Sometimes an item can consist of sho...

atom namespace using linq

I have the following xml <?xml version="1.0" encoding="UTF-8"?> <feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/"&gt; <entry><id><![CDATA[text]]></id>< author><name><![CDATA[film24]]></name></author><title><![CDATA[text]]></title> <updated>2009-10-30T15:55:13+00:00</updated><published>2009-10-30T0...

how to format atom date time

Hi i'm getting dates from feed in this format 2009-11-04T19:55:41Z i'm trying to format it using the date() function in PHP but i get an error saying: date() expects parameter 2 to be long, object given in /bla/bla.php i tried using preg_replace() to remove the T and the Z but still can't get it to work any ideas on this ? ...

PHP Creating an atom feed

How do I go about creating an atom feed in PHP? ...

PHP Atom feeds are not showing

I'm using PHP to generate feeds, which is working perfectly fine on my local development sandbox. Once I upload to the server, I get a blank page. I know the programming is correct, because it works fine on my local box. What do you think the problem might be? I'm not using any extra libraries, atleast I don't think so. I put on error re...

A server side component for tracking a large number of RSS & Atom feeds

I am looking for an open source component that can help me track a large number of RSS feeds (>> 10K RSS sources). I don't care about the programming language, but it should be something with a simple API where I can add or remove RSS feeds and asynchronously receive notifications every time an RSS is updated. Preferably in Java or Pyt...

Something like pubsubhubbub that does not depend on google app engine

I am looking for something like pubsubhubbub that does not depend on google app engine to run. What I need is a tool that can track for me a big very large number of rss or atom feeds and issue events when they are updated. ...

Converting RSS feed to Atom via Feedburner for existing blog

I have an RSS based blog that I now want to convert to Atom. Feedburner can change the output format in one click. Will my existing subscribers notice any change on the reader side? (other than taking advantage of the extra atom functionality) ...

Is there a way to display javascript content in blog feeds

Does RSS/Atom have a semi-official method of including active (read:javascript) content in it's items? I know about RSS enclosures, but I'm presuming that's for true multimedia - ie mp3 and the likes. Say I have a bit of remote javascript I want to include in my post to display a dynamic graph etc, can this be done? Or flash, etc for ...

Is it exists any "rss hosting" with API for creating feeds

Hi, I am creating a desktop app that will create some reports. I want to export these reports as RSS or ATOM feeds. I can easily create feeds with Rome lib for Java. But I have no idea how to spread them. I thought about embedding httpd into my app, but it's bad idea, because a computer can be behind NAT or turned off. I need some kind ...

Java based Atom/RSS Library that works in Google App Engine

I am trying to publish an Atom/RSS feed in my Java based Google App Engine code. I have tried using Rome and keep getting the following error (tried googling without success), also the code I am running that generates the error is the demo code (so I get the feeling Rome won't work with GAE) java.lang.NoClassDefFoundError: org/jdom/JDOM...

How to auto log into gmail atom feed with Python?

Gmail has this sweet thing going on to get an atom feed: def gmail_url(user, pwd): return "https://"+str(user)+":"+str(pwd)+"@gmail.google.com/gmail/feed/atom" Now when you do this in a browser, it authenticates and forwards you. But in Python, at least what I'm trying, isn't working right. url = gmail_url(settings.USER, setting...