rss

How can I delay one feed in wordpress but not the others?

Is there anyway to create a special feed in Wordpress that is on a delay that I can distribute to some of our content partners? I have found some tutorials on how to delay your feed (http://wpengineer.com/publish-the-feed-later/) but it uses the conditional statement is_feed and I don't want to apply this to all feeds, just one particul...

Consuming RSS Feed In PHP

I'm trying to use an RSS feed from my blog on the news section on another site. Everything seems to be working fine until I use something like an ellipsis on my blog. The expected output is: One more time…less fail Although this is no joking matter… The actual output is: One more time?less fail Although this is no joking matter… ...

how do I set the channel image in an RSS feed created with Zend_Feed_Writer ?

I can't find any setImage method. Using Zend Framework 1.10.2 (1.10.3 was released today, but I didn't see any mention of Zend_Feed_Writer at all in the changelog). ...

How to make an app for a Wordpress Blog ?

Hello :) I want to make an iPhone OS app for a Wordpress blog, and I'm unable to figure a way to grab the data from the blog. The XML-RPC doesn't seem to have an anonymous read-only mode The RSS feed has truncated posts So, if anyone managed to make it, please help me ;) ...

How RSS feed submitter softwares are able to submit feeds??

Well, recently i bought a software that submits RSS to various RSS directories. Some of the directories, when we visit manually through a internet browser, requires registrations to submit our feed (Most popular example of such directories is feedage dot com) What made me wonder is, the software don't ask any login details while submitti...

How can i enable my custom module to allow syndication?

Its an option in the module setting, but when i enable it for my custom module nothing happens, anyone created a module for dot net nuke before that put the content in a RSS feed before? ...

Data of the web services in a RSS

I only have the .wsdl and I want to put the data that the web services return in the RSS. And in a web page of SAP, I can only upload RSS, so I need put the information of the web services in the RSS For example, I put the information manually(name and total value) in the fields <title> and <descripcion>, these data are extracted from t...

Parsing adobe Kuler RSS feed

I have been trying to parse the below XML file (kuler rss feed). I have read the various posts on this site but am unable to piece them together. I specifically want to extract the child(or siblings) nodes of the element <kuler:themeItem>. However I am getting an exception : Namespace Manager or XsltContext needed. This query has a prefi...

Does anyone know how to create an authenticated RSS reader iphone app?

Hi, I have been working on creating an RSS reader app for the iphone which allows me to view RSS from an external feed. However the project im working on I need to be able to view an Authenticated RSS feed which is behind a login. Im struggling to write the code to do this. I need the app to ask the user to enter: The url they wish to ...

Javascript inside RSS file

I've been given a requirement to impliment some google tracking on an RSS feed. Currently we track when users click the RSS link but they also seem to want to track access to the RSS feed outside of that link. I could impliment this server side but I'm just wondering whether putting google tracking code (Javascript) inside of an RSS (XM...

RSS Detector in NSXMLParser

How do I use NSXMLDetector to find RSS links in HTML files, the tags in the source are like so : <link rel="alternate" type="application/rss+xml" title="CNN - Top Stories [RSS]" href="http://rss.cnn.com/rss/cnn_topstories.rss"&gt; <link rel="alternate" type="application/rss+xml" title="CNN - Recent Stories [RSS]" href="http://rss.cnn.c...

Opening a View with a Table without a NavigationController

Hiya, I'm pretty new to developing with Cocoa Touch/XCode and I came across a problem. I'm making a sort of RSS reader for a newssite and I have 5 views of tables navigated with 5 tabs in a TabBarController. If someone selects a newsitem I want another view to open showing the complete newsitem. My problem is that it won't work. This ...

php count rss entries since a specific date/time

can anyone tell me why this code don't work: $q = $_GET['q']; // Load and parse the XML document $rss = simplexml_load_file("http://search.twitter.com/search.atom?lang=en&amp;q=$q&amp;rpp=100&amp;page=1"); $Count1 = 0; while(strtotime($rss->entry->published)>1270833600){ foreach ($rss->entry as $item) { $Count1++; } } ...

php how do I grab the date of oldest item in rss feed

using simplexml to parse a feed, but I want to grab the date of the oldest item in the feed. Does anyone know how to do it? Thanks $rss = simplexml_load_file("http://search.twitter.com/search.atom?lang=en&amp;q=foobar&amp;rpp=100&amp;page=1"); ...

Best XML Parser for RSS Feeds in Objective C ?

Hi all, I am going to develop an application which will parse the RSS feeds and display the items in my custom cell.(Cell containing the image, label, description, etc). The most popular way of parsing is using the NSXMLParser. But this is bit of a lengthy way. So is there any other way to do this. Or my question will be, which is the b...

Get only new RSS entries with PHP Script ?

What im trying to do: Fetch X numbers of RSS Feeds from my Blogs and echo only new entries. My Problem is, how to know wich items are already parsed? Solution so far: Fetch the Feed every 5 hours, store all titles inside an Database table or flat file. Next run check if the title is already in database if not print it and save it insi...

looking to streamline my RSS feed mashup

Hello crafty developers, I have aggregated RSS feeds from various sources with RSSowl, fetching directly from the social mention API. The RSS feeds are categorized into the following major categories: blogs, news, twitter, Q&A and social networking sites. Each major category is nested with a common group of RSS feeds that represent a pa...

MongoDB RSS Feed Entries, Embed the Entries in the Feed Object?

I am saving a reference to an RSS Feed in MongoDB, each Feed has an ever growing list of Entries. As I'm designing my schema, I'm concerned about this statement from the MongoDB Schema Design - Embed vs. Reference Documentation: If the amount of data to embed is huge (many megabytes), you may read the limit on size of a single o...

Is there a decent alternative to Yahoo Pipes

Pipes is being very buggy lately and has stopped saving new pipes these days. Google Mashup Editor and Microsoft Popfly are both discontinued. Are there are any currently running web apps(or atleast libraries that run on appengine) that do something similar ? ...

RSS MIME Type and XSL Translation

Back in the days when all the major browsers displayed RSS feeds as ugly XML, we implemented an XSL stylesheet so that, when a user browsed to the feed, it would do the following: Look pretty Explain what RSS was - it wasn't so widespread back then Provide a text box to copy the feed url in order to paste it into a feed reader ... just...