Hi all,
im using php to create a sorta rss aggregator that stores data from multiple site rss feeds into a mysql database. since articles could be duplicated on many websites, i want to avoid this. ive been told you could use hashing to make unique hashes based on content of rss[description + title]. Now which hashing algorithm is fas...
Hey all.
I am thinking of using either RSS or Atom in my project, but also "enhancing" the feed with some of my own special attributes specifically used by my project.
So I have two questions:
1) Which is most used of RSS and Atom on the web and by the big sites?
2) Which is most suitable to be build from by adding my own tags?
Upda...
Hi all,
Im using php and magpie and would like a general way of detecting images in feed item. I know some websites place images within the enclosure tag, others like this images[rss] and some simply add it to description. Is there any one with a general function for detecting if rss item has image and extracting image url after its b...
Hi, i just need to know what happens when you create a RSS feed in Liferay?
Is the configuration data for the feed (Structure, template, friendly url of the portlet...) stored on the DB or in a file?And, in both cases, where the data is stored exactly?
...
So I have this program that grabs the RSS feed at http://www.muttville.org/mutts/feed and displays a list of the available dogs, basically filling out each item in a ListView with an image of the dog on the left, and the headline about the dog on the right.
My application executes and grabs and parses the XML feed fine. onCreate, it sto...
Hello,
I'm looking for a web service that provides traffic information (accidents, all clear (if poss?), congestion etc..) for roads in the UK, specifically around Portsmouth (south east England.)
Service must be free to use
Non-commercial license is OK
I had a look on google and found the Highways agency does an RSS feed.. however ...
If possible, I would like to develop a ASP.NET (C#) web page that consumes and displays an RSS feed and also provides an RSS feed for others to consume.
Can this be done on a single URL/web page?
...
Is it possible to have a RSS feed by using a Javascript code?
...
There is a blog, powered by Wordpress, which has valid RSS feed (opens up fine in Safari), but doesn't show new posts in Google Reader. In fact, the latest article from Google Reader is from Jul 21, 2010, while the latest article on the blog dates to Aug 19, 2010.
What should I do about the RSS feed (escape characters? modify XML or wha...
I'm running Sharepoint 2010 and it appears as though the RSS Feeds emoted from there are using the Created On date instead of the Modified Date on that particular list.
Any way to modify this behavior known?
...
Preferably a video tutorial, because all text ones I have seen (incl. from Apple) have not been specific enough.
Basic navigation at the bottom, with 3 RSS feeds to keep it simple.
I tried using Dashcode (the easy way) but that did not work either.
...
I'm making a simple RSS feed iPhone app, and I run into this:
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
if ([stories count] == 0) {
NSString * path = @"myfeedURL.rss";
[self parseXMLFileAtURL:path]; <-------Error Here
}
...
Do you happen to know any good rss generator script with caching function. All the script I have found over the net so far doesn't support caching! I need the the content of rss to be generated automatically from database in a specified period of time.
Thanks in advance
...
Should I keep all the articles in rss feed or just new ones? There are too many articles on my website and a new one is added in every 10-20 minutes so what would be the best approach in this case. Keep all the entries and just add new ones or add new ones and delete old ones at the same time??? If the second is better how many entries s...
Hi All,
I have a fetch function that injects rss content into a page for me. This returns an xml which contains the usual RSS elements like title, link, description but the problem is the returned description is a table with two tds which one contains an image the other the text. I am not sure how I can remove the table, img and the tds...
I am using XmlReader.Create to retrieve data from an RSS xml file. Then I am putting this data into a DataSet and binding it to a ListView:
XmlReader xmlReader = XmlReader.Create(this.RssUrl);
XmlDataDocument xdoc = new XmlDataDocument();
xdoc.DataSet.ReadXml(xmlReader, XmlReadMode.InferSchema);
The problem is that one of the fields I...
(Very) basically my app is just a load of information collected from the internet - eg: someone can log into an admin panel on a website and update their app from there. The information gets put into a mysql database.
The way I thought about going about this was to use an RSS feed - it works for blog/twitter feeds, so I thought why not ...
Hi,
I frequently visit some websites and look for changes. It would be more convenient to use RSS feed but those sites don't use them (yes, there are still such websites ...)
Is there any software which let me track website changes without RSS feed ?
...
In my asp.net 3.5 C# application I had RSS feed in some of my web pages.I am using SyndicationItem object to prepare RSS feed and using using System.ServiceModel.Syndication dll to prepare RSS page.
I want them to be auto discoverable i.e The RSS feed button in IE at the browser level should get highlighted when we go to the page with R...
My boss wants me to write a simple RSS feed for an C++ MFC app that will pull and display information from the company's website. It also must be able to grab program updates from the website, tell the user that there are updates and then install the updates. Are there any tutorials that follow these guide lines? How would stackoverflow....