![]() |
Existing libraries for RSS and iCal generation? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22) +--- Thread: Existing libraries for RSS and iCal generation? (/showthread.php?tid=7790) |
Existing libraries for RSS and iCal generation? - El Forum - 04-23-2008 [eluser]NBrepresent[/eluser] I've looked around the wiki and haven't found anything yet... Are there any existing CI libraries for RSS and iCal generation? I'm just asking before I 'librarify' an existing class... I thought I would have to do that for the Monte Ohrt Google Maps class, and it was already done by someone! Thanks! Existing libraries for RSS and iCal generation? - El Forum - 04-24-2008 [eluser]NBrepresent[/eluser] I found this class by Marijo Galesic and made some tiny tweaks. I'll add it to the wiki tonight. It's not much of a contribution, but I think that there should be an RSS generation library and I don't see one yet. Existing libraries for RSS and iCal generation? - El Forum - 04-24-2008 [eluser]Derek Allard[/eluser] Not iCal, but I wrote something up about RSS if you're interested. http://www.derekallard.com/blog/post/building-an-rss-feed-in-code-igniter/ Existing libraries for RSS and iCal generation? - El Forum - 04-24-2008 [eluser]NBrepresent[/eluser] Very nice tutorial, I like your approach because it is more organized and there is a separate view. On the other hand, using this library the feed controller would just output the feed so there's no need for a view. Existing libraries for RSS and iCal generation? - El Forum - 04-29-2008 [eluser]taewoo[/eluser] Derek.. I followed your tutorial but when i try to load it in the browser, the browser asks me to download.. Is this a header issue? (By the way... browser screenshot attached) Controller: Code: $data['encoding'] = 'utf-8'; View Code: <?php echo '<?xml version="1.0" encoding="utf-8"?>'; ?> |