4
votes
1answer
35 views
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 …
0
votes
1answer
11 views
How can I get my content from a Joomla blog into Blogger or Wordpress?
I have an old joomla site (v 1.0.11) that I would really like to move over to Blogger or Wordpress. The commenting on the site uses AkoComment which was an add on module. Basical …
0
votes
1answer
21 views
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 …
1
vote
2answers
19 views
What is means of RDF feed in .net plateform
i am struggle with FEED. i see RDF feed but i don't know what is RDF FEED..
are RDF is new feed management system. what is difference between RDF , RSS and atom feed too
0
votes
2answers
13 views
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 si …
0
votes
1answer
31 views
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 - …
1
vote
1answer
57 views
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 so …
0
votes
1answer
25 views
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 …
0
votes
3answers
35 views
PHP Creating an atom feed
How do I go about creating an atom feed in PHP?
0
votes
2answers
51 views
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 f …
0
votes
1answer
21 views
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 …
0
votes
4answers
31 views
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 paramet …
0
votes
1answer
33 views
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/">
<entry> …
0
votes
1answer
52 views
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 …
0
votes
1answer
31 views
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 a …
