Juni 2006
Monthly Archive
recording Webcam and Microphone using OpenLaszlo and Red5
wordpress RSSReader Plugin with OpenLaszlo
As you can see on the left i have an RSS-Feed Reader on my Wordpress Blog-Page ( http://www.wagner-sebastian.com/wordpress/ above the Pages in the sidebar). Its like my RSS-Feed-Reader for Websides. I made a Wordpress-Plugin to enable others easily to integrate other RSS-Feeds on their Blog:
http://bigscreen.osuosl.org/oslmon/wordpress/rssfeedreader/
You’ll find a quick overview about the Installation their.
The RSS-Feed-Reader is configured by an PHP-file, you can configure number of items/number of feeds/feed urls/refresh time/rotation time et cetera.
RSS-Feed-Reader in OpenLaszlo
For my Project @ this Google’s summer of Code 2006 (http://wiki.osuosl.org/display/oslmon/Requirements+and+needs)
I also had to create a RSS-Modul which can be also used as a RSS-Reader on a webside as a single Component. You can see it here:
http://bigscreen.osuosl.org/oslmon/rssfeedsolo/
SourceCode and a zip will provide you with the necessary data/information to alter the URL and Options of the RSS-Feeds:
Basically you only need to specify the url, the rest of the Options are just for ouput option (you find the config in the file ${ your_path_to_LaszloSWF }/services/rssmodule.php :
$t1[”name”]=”OpenLaszlo News”; // —> The Name of the Feed
$t1[”url”]=”http://www.openlaszlo.org/taxonomy/term/40/0/feed”; // —> the url of the feed
$t1[”showdescr”]=1; //show the description of each Feed-Item under the title
$t1[”showtime”]=10000; // the time in the rotation modi untill it switches to the next RSS-Feed
$t1[”refresh”]=60000; // refresh time in miliseconds the Feed will be reloaded
$t1[”items”]=10; // the number of items shown
Download it and check out your favorite RSS-Feed. it should be possible to parse/load any RSS 0.9/1.0/2.0 and ATOM/RDF Feed.
— Next Page »