Tagged Questions
0
votes
1answer
28 views
In PHP, create an ATOM Feed from an RDF based RSS Feed
Because of a legacy system I have that produces an old RDF based RSS 1.0 Feed, and the unability of most of the RSS Readers to handle HTTP Basic Auth, I'd like to have a PHP script that reads this ...
0
votes
0answers
44 views
android: how to read wordpress feeds using robospice?
I've been studying the robospice-sample-spicelist in order to adapt part of it for a feed reader I'm trying to code. If I use the its SpringAndroidSpiceService as is I get an exception for not having ...
0
votes
0answers
32 views
ATOM to RSS feeds converter
I found this working converter: http://feedmix.novaclic.com/atom2rss.php
However I would like to have a source code. Where can I found a working one for PHP?
0
votes
1answer
93 views
tt_news rss feed <link>
I'm trying to set up an RSS Feed through tt_news in Typo3: http://www.familieistzukunft.ch/home/?type=100
The Links in the RSS feed are not proper HTML. They turn up like this:
<link ...
0
votes
0answers
16 views
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 '("<entry>" .. "</entry>") ...
1
vote
1answer
35 views
RSS issue with Lyften Bloggie component for Joomla
I am using a component called Lyften Bloggie for my website which is built up on Joomla. But there is an issue with the RSS feeds. When I click on the feed buton it is re-loading the same blog page ...
0
votes
1answer
35 views
Atom/RSS Feed to show post published only today
I host a ATOM feed (through my ERP software). User subscribes to the feed in Outlook. I will publish new content once in 24 Hrs. So I like the users have only the feeds published today in his Outlook ...
0
votes
0answers
17 views
resubscribing to an rss feed with cached items
my goal is to subscribe to a feed with more items than in actually provides,
up until a few days ago i did this using google reader and atom2rssDOTsemiologicDOTcom/,
ill give an example,
...
1
vote
2answers
33 views
What's the universal standard to get data from any blog?
I want to extract data from various kinds of blogs and was going through various ways to do it:
API which needs user authentication
XML RPC(Don't know which all support it)
RSS(Again, not ...
1
vote
2answers
134 views
RFC-822 date-time format in RSS 2.0 feeds: CET not accepted?
[Updated with working solution]
I have an RSS feed which gets displayed correctly in RSS clients, but when being validated by http://feedvalidator.org I get this error:
pubDate must be an RFC-822 ...
0
votes
0answers
48 views
How to go about adding RSS/Atom feeds to my custom blog [closed]
I have a blog which I want to add RSS and/or Atom feeds to. It's 100% hand written outside of existing frameworks/CMS. As such, I can't just "use a wordpress plugin" and other such things I commonly ...
0
votes
1answer
99 views
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 ...
0
votes
1answer
275 views
Android fast rss/atom parsing
I'm looking for a fast way to parse an RSS and Atom feed (the source changes periodically). I tried different approach:
Writing my own parser: I made a very fast one using SAX
Problem:
Most of the ...
0
votes
1answer
73 views
Twitter Search (atom), date ranges
I have a Twitter feed I'm using for a site, and in theory it should work perfectly, but for some reason
http://search.twitter.com/search.atom?q=from:@goinnative&rpp=10
only loads 3 tweets ...
0
votes
0answers
62 views
SimpleXmlElement constructor generates error on one server, but doesn't on another
I used the same piece of code with the same test URL. My localhost and my public web server both run Ubuntu, they both have Simplexml support enabled and Schema support enabled. My localhost runs PHP ...
0
votes
1answer
60 views
Remove entry from user's rss reader
I realized pretty simple atom feed in my application.
Sometimes records expire and are no longer published in the feed.
Is there a way to remove entry from user`s reader?
3
votes
1answer
284 views
How to Add CSS Reference to .NET SyndicationFeed?
I have created a simple SyndicationFeed with many SyndicationItems. Each SyndicationItem has HtmlContent. The HtmlContent is a table. This displays OK, but now I need a minimum of styling/padding on ...
0
votes
2answers
91 views
Feed URL detector for an URL
I'm looking for a code or service that can detect feed URL(RSS or Atom) of a website automatically.
thanks a lot
0
votes
1answer
92 views
Atom to RSS Conversion Tool in Python
This post is really going to show my lack of knowledge with the two formats, but does there exist a tool that will convert an Atom document into an RSS document?
I'm hoping there is a pre-existing ...
0
votes
1answer
99 views
Read RSS feeds with atom support
Hello i am looking for a code snippet or even better for an android library for reading rss (atom) feeds. Thanks in advance!
0
votes
0answers
608 views
Facebook RSS feed (atom deprecated?) [closed]
Over the last few days, it seems as if the RSS feeds for Facebook are not working (whereas they were a week ago). I've had success up until now with both ...
0
votes
1answer
69 views
How to make my hub subscribe to other hubs? (PubSubHubBub) [closed]
Is there a way to make my HUB subscribe to other hubs? Ie. if I find a link with rel=hub, and the hub is someone else's, can I have my own hub subscribe to this topic at this hub, thus making it ...
0
votes
0answers
51 views
Inserting Database Information Into RSS Feed
This is the current code for my RSS Feed:
<?php header("Content-type: text/xml"); ?>
<?php echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; ?>
<?php ...
0
votes
1answer
90 views
Random Number in RSS feed
This is what I currently have for my PHP file:
<?php header("Content-type: text/xml"); ?>
<?php echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; ?>
<rss version="2.0">
...
1
vote
1answer
30 views
Do Author and Category feed elements at item level have to match channel level?
I notice that feeds have these elements both at the top feed level and the feed item level:
<feed>
<author> ... </author>
<category> ... </category>
<item>
...
1
vote
0answers
67 views
Atom/RSS Feeds as Static Files on Subdomain
Am about to implement syndication for a site that will (hopefully!) have many feeds. My first thought is to generate XML files with the feed content every 5 minutes or so (only if there are changes), ...
4
votes
1answer
62 views
Android: how to get link from Atom
I'm making RSS reader for Android but I have problem with Atom. In RSS 2.0 I get link with this:
if (xpp.getName().equalsIgnoreCase("link"))
and it's made like this:
...
2
votes
1answer
207 views
How to improve my solution for Rss/Atom using SyndicationFeed with ServiceStack?
I successfully used System.ServiceModel.Syndication.SyndicationFeed to add some Atom10 output from my ASP.NET 3.5 web site. It was my first production use of ServiceStack, and it all work fine.
My ...
0
votes
1answer
50 views
how to identify feeds in a web crawl?
I've run a web crawl and gathered a lot of html and xml pages. My purpose is to extract all Rss/Atom feeds out of them. I noticed that many sites simply use "text/xml" as content type on the header, ...
-4
votes
1answer
96 views
Can a Site get a Virus from using Curl? [closed]
I have a script which uses simple php curl requests to get the contents from rss/atom feeds....
now my question is it possible that by using curl, is there a chance i might get a virus?
Let's say I ...
2
votes
1answer
377 views
How do I fix simplepie? failed to open stream: No such file or directory
I am trying to pull in some posts from a remote wordpress site with simplepie. I have installed the library and put what I think is the right code at the top of the .php page.
right now my it looks ...
1
vote
1answer
126 views
How to generate ATOM and RSS2 feeds with ASP.NET Web API?
What steps are needed to adjust the default XML output of the ASP.NET Web API to generate ATOM and RSS2 feeds?
1
vote
1answer
185 views
WebSphere Portal 7: use rss/atom feed as a content provider for portlets. Is it possible?
Is there any way to use atom feed as a content provider in WebSphere Portal 7?
Let's say I have 2 portlets on a page which are representing main part and footer. I have one atom feed with 2 entries. ...
0
votes
1answer
344 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
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
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 ...
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
0answers
26 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
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 ...
2
votes
1answer
651 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
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
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 ...
-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
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
412 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
1answer
246 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 ...
0
votes
1answer
228 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 ...

