Atom is an XML based news-feed format

learn more… | top users | synonyms

0
votes
0answers
45 views

Cache-control: why two different max-ages

I'm reading an atom-feed from Twitter. I want to know how often I should consult the feed (i.e. throw it the query URL), in order not to miss any results. The header cache-control line has two ...
1
vote
2answers
69 views

How to grab a single element of a specific field from ColdFusion feed?

I'm no expert in Coldfusion (frankly, I know almost nothing about it), but I've been tasked at work with setting up an Atom feed to show up on one of our client's webpages. I've managed to get ...
0
votes
2answers
425 views

UTC/GMT: Getting the Offset

I'm currently in EST. On my Windows machine, running this command systeminfo | find "Time Zone" yields "Time Zone: (UTC-05:00) Eastern Time (US & Canada)" So it would seem as ...
0
votes
1answer
340 views

Parse RSS/Atom feeds with PHP's HTML DomDocument

How to find the values for namespace content:encoded and dc:creator with the following code Unfortunately I cannot use simplepie or magpierss or even simplexml. I know I've to use ...
0
votes
1answer
86 views

Best Architecture - What's the best way to listen to an atom feed in java?

I am reading Atom feed in Java , i do this at regular intervals of 30 seconds, Based on the feed i must show a different UI. I am not happy polling for feeds every 30 seconds, and would like to know ...
0
votes
0answers
34 views

How to set a feature image in wordpress with feedwordpress plugin?

Using this wordpress plugin and I would like you to insert automatically the feature image. By reading the post and entering the first one it finds. Does anyone have experience in the field? thank you ...
0
votes
0answers
57 views

Maximum number of emails that can be retrieved using atom feed for gmail [closed]

I want to develop an app that will return all the unread messages from an inbox/folder. but by default, Atom feed returns only 20 mails at a time. is there any way I can override this default setting ...
3
votes
1answer
185 views

Displaying images in Atom feed using Rails?

I'm trying to iterate over each articles' pictures in an Atom feed. I have the following code which renders an Atom feed just fine, but am not sure if these are the correct image tags. Any advice on ...
1
vote
0answers
67 views

Changing XML to JSON in PHP

My site was pulling in a shopping API, using XML, and I'd like to switch it to the Google Shopping API, which uses JSON or Atom. I can't seem to work out how to get the following to work in JSON or ...
0
votes
0answers
30 views

I tried to find how to set an e-mail to a “read” state in Atom.NET, but there have been no results

I'm using Atom.NET for C#. My current code looks similar to the following: WebRequest wrgeturl; try { wrgeturl= WebRequest.Create(new ...
0
votes
0answers
94 views

Associating XSLT with Atom feed so it renders in Chrome

I'm generating an ATOM feed with this header: <?xml version="1.0" encoding="utf-8"?> <?xml-stylesheet type="text/xsl" href="/atom2html.xsl"?> <feed ...
0
votes
0answers
85 views

How can i get all atom/rss entries with all custom tags?

using rome api I have Iterator entryIter = feed.getEntries().iterator(); while (entryIter.hasNext()) { SyndEntry entry = (SyndEntry) entryIter.next(); and get all standart ...
2
votes
0answers
141 views

Convert video to mp4 and start streaming it while it's still converting

I want to convert a video file to mp4 (it doesn't matter if it's ffmpeg or something different) and then stream it to a device on my network. I already know that I need to move the "moov atom" to the ...
0
votes
1answer
46 views

Which content type should i use for xml sitemap? And which one for rss and atom feed?

Should i use application/xml or text/xml or some other content-type? I'm trying to figure out which one must be for rss and atom feed and which one for a xml sitemap. I have googled this already but ...
0
votes
1answer
258 views

How to get gmail inbox feed from a nested label

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 ...
0
votes
0answers
289 views

OutOfLineContent exception in Java Google gdata Spreadsheet library

This exception was caused by having the incorrect URL for the SPREADSHEET_FEED_URL variable. The URL should always be: //spreadsheets.google.com/feeds/spreadsheets/private/full This URL will provide ...
0
votes
0answers
25 views

Merging Atom feeds

I have multiple picture galleries on my website and am trying to create a single global feed from separate feeds for each gallery using atom links. I have created the following feed code that checks ...
0
votes
1answer
133 views

Google Shopping API

there are some stupid sellers who put their EAN code in Description! so this messes up my calculations because for example if i search for EAN 111122223333 it will send the following products in the ...
0
votes
1answer
126 views

android rss data <dc:date> and image extraction

I have an xml file with the following structure <item> <title>Title</title> <link>Link</link> <description>Description</description> ...
0
votes
1answer
1k views

Can't get RSS feed to show in Drupal 7

I cannot get RSS feed to show on Drupal 7.14 page, feed does not show any items. Feed url: http://www.engadget.com/rss.xml I added feed url in Feed aggregator with no problems, and feed name is shown ...
0
votes
0answers
96 views

How to display multiple atom link tags with simplepie?

I am trying to display an atom feed from an external site on my Wordpress site. The atoms feed contains two link tags: <entry> ... <link rel="alternate" type="text/html" ...
0
votes
0answers
255 views

ASCII code displaying instead of special character in SimplePie 1.3 Atom feed

I'm using SimplePie 1.3 to display a client's latest FB wall posts on their site via Atom feed. However apostrophes aren't displaying correctly. Instead, SimplePie is outputting the ascii code ...
2
votes
1answer
647 views

How to add images to an atom feed in Rails 3.2?

In a Rails 3.2 app I have a Photo model with a :caption field and using Carrierwave to handle image files. I'm trying to create an atom feed that contains the images. What is the correct way to do ...
0
votes
1answer
115 views

Summary of OData standard for a minimal, read-only implementation

The OData specification is long. Even the "OData Core" document is pretty long. So, how about a condensed summary of what a read-only OData publisher needs to implement at a minimum?
0
votes
0answers
63 views

How to get URL of last cached feed in SimplePie

How can I know which feed was downloaded last? $files = glob("cache/*.spc"); $files = array_combine($files, array_map("filemtime", $files)); arsort($files); $latest_file = key($files); Above code ...
0
votes
1answer
451 views

Zend_Feed_Reader exception: Read timed out after 10 seconds

I am using Zend_Feed_Reader to read feeds but I have a problem. At some feeds, I get this exception: Read timed out after 10 seconds and I want to reduce that time. So in the case Zend_Feed_Reader ...
0
votes
0answers
9 views

Parsing several feeds, than counting number of occurencies of videos

the current project I'm facing is about creating a chart of the most shared youtube videos among a certain amount of blogs and twitter accounts. What I'm trying to do, is: 1- parsing the rss/atom ...
0
votes
0answers
48 views

convert News Industry Text Format (NITF) document referenced in the ATOM feed [closed]

I need to convert ATOM feed that contains NITF documnet within it in XML. Any help is appreciated. Thanks.
0
votes
1answer
197 views

Return View encoded in UTF-8 without BOM

In my MVC Web Application, I developed a function to return a Newsstand Atom Feed (for Apple's Newsstand). One of their requirements for this feed is that it is effectively encoded in UTF-8 and must ...
0
votes
1answer
158 views

SimplePie won't display latest posts from Facebook Atom feed

First question posted so sorry in advance if this has already been covered and I just couldn't find the answer. I'm using SimplePie 1.2.1 to display an Atom feed of a client's Facebook wall on their ...
1
vote
1answer
215 views

C# XmlReader Colon Issues (Namespace)

I have a strange problem with the XMLReader class. I get atom feed from a URl, and some elements of the xml tree are named like these: <element:title>Hello World!</element:title> ...
-1
votes
1answer
176 views

Restructure XML File using XSLT or PHP script

I have an iphone app which parses standard rss feeds and displays it on a table. However I have been given a feed from a client but the parser in the app cannot pickup the nodes and parse the data as ...
0
votes
0answers
271 views

Subscribe an RSS feed to the Facebook News Feed

I recently came across this Facebook application by the BBC: https://apps.facebook.com/bbcnewsnew At first glance it doesn't look like much until I realized that Liking one of the categories will ...
0
votes
0answers
213 views

Getting the GMAIL atom feed from Appengine using JAVA, OAuth 2 for a Google Apps User

I am using the following code to get the GMAIL atom feed on Google Appengine. I am using the CLIENT_ID and CLIENT_SECRET generated in the Google APPS Admin Dashboard. public void ...
2
votes
1answer
332 views

Less painful way to parse a RSS-Feed with lxml?

I need to display RSS-feeds with Python, Atom for the most part. Coming from PHP, where I could get values pretty fast with $entry->link i find lxml to be much more precise, faster, albeit ...
0
votes
1answer
384 views

Error accessing gmail atom feeds using feedparser

I was having a problem accessing my gmail atom feeds using feedparser module. For a non-password protected fees like a blog, for example, import feedparser d = ...
0
votes
1answer
558 views

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 ...
0
votes
1answer
404 views

How do I set WordPress plugins to do cron jobs?

We are looking for an autoblogging WordPress plugin for Atom/Rss feeds (must support Atom). The problem is, I tried 4 autoblogging plugins, but none of them run its cron jobs on time. I want the ...
0
votes
0answers
187 views

How to update my feed's favicon in Google Reader?

Today I launched my new website with new design and with a new favicon. I used the same URL for my RSS feed in order to keep my subscribers. But Google Reader retains the old favicon. How can I force ...
0
votes
0answers
22 views

Is there a smiple way in .NET to convert a POCO to an ATOM pub?

I've done some searching and haven't found anything too helpful but I need something quick and simply just for a prototyping exercise that will allow me to convert a POCO into an atom feed. WCF Data ...
0
votes
1answer
243 views

Sitemap / RSS / Atom, SEO

So, I was about to make a regular sitemap.xml for my site, then I saw that both Google and Bing accept Atom and RSS as sitemaps. My site is a forum, so there will be new pages created very ...
1
vote
0answers
147 views

Accessing gmail atom feed when users are logged in with CAS

I am working on a liferay portal. Users are logged into the portal via a CAS sign on and this same CAS sign on also logs users into their gmail accounts (Single sign on). Passwords are not imported ...
0
votes
1answer
225 views

Split a feed of Feedburner into multiple feeds by label

How can I separate my feed of FeedBurner into multiple feeds? My one is posted to FeedBurner from blogger.com and has category tag, which is label in Blogger. I tried to split items by label with ...
0
votes
0answers
127 views

periodic interrupt Real Time Clock issue

I've old software written for DOS (16-bit) that I used to refresh timer of a watchdog board. This software works well on Intel Pentium M CPU board. If I try to use it on a new Intel Atom or Intel Core ...
0
votes
0answers
96 views

Adding Google data (<gd:when>) tags to ATOM feed

I've been trying to write an ATOM feed generated from a database of events and would like to include the Google data extensions such as gd:where and gd:when. I've been attempting to use the ...
0
votes
1answer
159 views

How to convert an XML file produced by RSS feed to a file in Atom format?

I have an XML file (obviously) which is the output of an RSS feed. I would like to convert that file to the Atom format. There are plenty of Q&A's on StackOverflow about converting feeds, but I ...
0
votes
0answers
183 views

Android native SAX Parser & choosing adequate root element

I've chosen the Android's SAX Parser to perform rss and atom parsing because of it's simplicity. The parser works perfectly on pure rss feeds (not the combined rss and atom feeds I've found arround ...
1
vote
0answers
106 views

Retrieving a blogger post in Atom format using standard post URL

Let's say I have the url for a blog post, myblog.blogspot.com/2012/05/myblogs-latest-post.html Using only this information, is there any reasonably direct way to retrieve this single blog post in ...
7
votes
1answer
115 views

Correct/Accepted Way to Update an ATOM Entry

What's to "correct" way to indicate an entry in an ATOM feed is updated? By "correct" I mean fits into existing specifications and something feed readers will notice and mark as new/unread. All the ...
1
vote
1answer
334 views

How can I access a GitHub private project RSS feed?

Is it possible to read activity of a GitHub private repository and of its branches?

1 2 3 4 5 11