atom

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 in stories.Descendants(xmlns + "entry") select new Story { ...

MSDE merge replication with Intel Atom processor

We have a product that by default installs MSDE SP3 for use with merge replication (as subscriber). We have never had a problem with this. Recently found that on the Eee PC everything installs without incident, which includes applying the latest snapshot; however, when we try to pull down data to the Eee PC from the Publisher it takes ...

An Easy Way to Consume a Twitter Search Feed With ASP.Net

Anyone have an pointers on an easy way to consume a search.twitter.com feed with ASP.Net? I tried using the RSSToolKit, but it doesn't provide anything for parsing the and other tags in the feed. For example: I want to parse this feed: http://search.twitter.com/search.atom?q=c%23 and make it appear on a page just like it does in the t...

Providing Rss and Atom feeds? Do we need both or has RSS won?

Hi folks, I want to provide some RSS feed(s) for my site. Is it worth providing Atom feeds? or is atom the more common feed? Is there a winner? BTW, this relates to programming because I'm required to program the feed which we will provide (or use some open source code, etc). cheers. Update So far it looks like peeps are saying Atom...

IE7 missing Atom feed autodiscovery

I've been showing a website to a customer who insists on using IE and found out, to my surprise, that IE7 does not autodiscover the Atom newsfeed. The feed is linked to within the HEAD element of a valid HTML 4.01 Strict page with <link rel="alternate" type="application/atom+xml" href="atom.xml" title="Atom 1.0">, the link is pointing t...

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

Ruby Atom generator to use with merb

I want to provide feed in my merb application. After reading wikipedia, RSSvsAtom and seeing that StackOverflow uses it, I think I will use Atom. What library should I use? I have found rAtom that looks quite good. Are there better alternatives? Or does merb has anything built in to help me? UPDATE: maybe I should just do the news in p...

Atom, Via Nano, or something else for low-power media PC?

I'm looking to build a media PC attached to the big screen (65"), primarily for Boxee, playing movies, music, and photos, and for occasional web serving / email. Having it act as a DVR for over-the-air HDTV would be a big plus as well. I'm pretty tempted by the Atom based MSI Wind PC as used in this hackintosh. Seems a nice little PC, a...

How To Tell Web Browsers About Atom Feeds

My website has an Atom feed and I want to make it easier to subscribe to it. I see that many sites such as StackOverflow have the Atom icon in the location bar in Firefox 3. I haven't, however, been able to work out how. I assume some HTML is needed - but what tags specify the the browser that a page has a feed? ...

Is there any defined atom syndication xml schema?

Yep, I asked it. There is no more thing to tell :) Thanks in advance. ...

Password protecting ATOM feeds

The Twitter ATOM feed requires your login and password (obviously), which is nicely supported by IE7 (apparently IE7 can't handle RSS feeds with login/pw). IE displays a simple login prompt when you register the feed. How do I implement something similar in ASP.NET without access to the server or IIS? ...

No Nodes Selected from Atom XML document using XPath?

I'm trying to parse an Atom feed programmatically. I have the atom XML downloaded as a string. I can load the XML into an XmlDocument. However, I can't traverse the document using XPath. Whenever I try, I get null. I've been using this Atom feed as a test: http://steve-yegge.blogspot.com/feeds/posts/default Calling SelectSingleNode()...

In an Atom feed is it ok to change the "updated" field when an entry has its content changed?

If an Entry represents some file/resource that has changed - is it enough to change the updated field? I note that most feed readers won't show it as "new" as it has the same UUID? rfc4287 says that I can change it, but feed readers seem to ignore it. ...

Is there a PHP feed reader for both RSS and ATOM?

Hello, I need a PHP library/script that can retreive data from feeds, no matter if they are RSS or ATOM, because I want users to insert random feeds which will then be stored in a database. It would also be great if it could check whether a given URL is a feed or not. If anything exists that could help me out, could anyone tell me? Tha...

Best practices for developing a feed aggregator / proxy?

I'm looking into writing a proxy aggregator for feeds, where a handful of users specify a feed URL and some set of conditions, and the system outputs a continually-updated RSS/Atom feed of entries that match those conditions. Are there best practices for feed aggregators? (Or filtering feed proxies?) For example: Are there certain fe...

Is there a non-technical reason for choosing a Syndication format?

I have a project that will need to be able to export data for feed readers. Is there a non-technical reason I should pick RSS over Atom, Atom over RSS, one of the flavors of RSS over another or anything else? In particular, I'm looking for things like low or high adoption, difficulties/incompatibilities or particular ease with popular ...

How can I convert an RSS feed to Atom, inline?

I admit to being a bit behind the times when it comes to understanding RSS/Atom feed issues. All I know is, I want to have an Atom feed converted to an RSS feed inline. Meaning that I want to specify an option somewhere that says use this xsl or whatever to convert the Atom feed to an RSS feed. Is there some way to accomplish this tha...

Creating RSS/Atom feeds: template language or XML library?

I'm creating an RSS (and/or Atom) feed for my website. Now, I can immediately think of two ways to do this: Use the same templating system I use to generate the HTML (Clearsilver if anyone's wondering), basically just treating the RSS feed like any other web page that happens to be in RSS+XML instead of XHTML Use an XML library, or an ...

How to crawl a feed

My application needs to keep track of RSS/Atom feeds and save the new entries in a database. My question is, What is the most reliable method to determine whether an entry in a feed has already been crawled or not? I use Universal Feed Parser module to parse the feeds. My current implementation keeps record of the latest value of feed.en...

How does FireFox know that the page is an Atom feed?

I'm creating a web site and I'm having trouble getting FireFox to ask me where to add the feed when I open it. I used the tag to add the RSS icon, and it leads to a page that provides a valid Atom feed according to the W3C validator. When the content type is "text/html", I get the content of the xml tags concatenated. When I serve "appl...