|
Projects
Fall 2009 Older Courses Spring 2009
Fall 2008
Spring 2008
Fall 2007 HOWTOs |
RSS-Mashups-in-SchemeTom Kiley OverviewMy project provides a simple, easy to use web interface to add create a news feed from search terms. The search terms are sent to google individually and then the xml returned from each query is parsed and combined together resorting the items by date. Screenshot![]() Concepts Demonstrated
External TechnologyThe project uses the scheme web server module to serve web pages to the browser. It uses the scheme url libraries to to retrieve the rss feeds from google. Then it uses the sxml and ssax libraries combined with some map and sort functions to combine the feeds into one master feed. The scheme date and time library was also used to parse the dates in the news feeds and sort them. The scheme code serves as a interface between your browser and the internet news services to provide you with an easier interface to them. InnovationUsually feed readers require you to go and find rss feeds from sites you would want to keep updated on and manually add them. The hot topics in the news change frequently Technology Used Block DiagramCreate a simple block diagram of your software system that illustrates the major technical components and how they interact; e.g.: ![]() Additional RemarksFor the sake of the demonstration, the feed is just displayed in a iframe below the control screen, but the idea is that you could add http://localhost:8000/getFeeds to your feed reader and the scheme would be just producing an rss feed. |