summaryrefslogtreecommitdiff
path: root/modules/rss/views
AgeCommit message (Collapse)Author
2012-05-07Update date format to make it RFC822 compliant. Thanks to moullas. Fixes ↵Bharat Mediratta
#1798.
2010-06-20Rename "children" to "items" in our feed view because it makes moreBharat Mediratta
semantic sense.
2010-02-16Fix for ticket #1020: Fix RSS feed validation of album / recent items feeds.Andy Staudacher
2010-02-01Use single quotes on the <?xml tag for readability.Bharat Mediratta
2009-12-05Change the default image to be the full size so that the slideshow shows the ↵Bharat Mediratta
big one.
2009-11-15Don't show resizes for albums, only for photos.Bharat Mediratta
Fixes ticket #893.
2009-10-23Clean up the rss feed for the slideshow. It now validates using ↵Tim Almdal
"http://validator.w3.org/feed/". Fixes ticket #806. Doesn't fix ticket#23.
2009-10-04Renamed most, if not all css selectors from gName to g-name. Moved a few ↵Chad Kieffer
shared images from wind to lib. Deleted unused images in the admin_wind. This will likely break a few ajax features.
2009-08-31Fix XSS vectors in HTML attributes (mostly t() calls)Andy Staudacher
2009-08-29Update all code to use helper method html::clean(), html::purify(), ... ↵Andy Staudacher
instead of SafeString directly.
2009-08-29XSS fixesAndy Staudacher
2009-08-29Refactor all calls of p::clean() to SafeString::of() and p::purify() to ↵Andy Staudacher
SafeString::purify(). Removing any p::clean() calls for arguments to t() and t2() since their args are wrapped in a SafeString anyway.
2009-06-14Refactor the way that the rss module works so that we're not allowingBharat Mediratta
the url to dictate arbitrary static method calls. * Each xxx_rss helper has a single feed() call which takes an id as the argument * xxx_rss::available_feedS() only returns feeds when they're applicable (ie if you're viewing a tag, it won't show you an item feed). * Feed urls are now in the module/feed_id form so that we can bind a feed id to a given module * Tightened up the Rss_Controller by using url::merge and some other tricks. * Made the slideshow module express its own feed.
2009-06-14Refactor feed code to use stdClass everywhere. Fix bugs in theBharat Mediratta
max-pages calculation code. Move feed related data into the $feed variable and only pass that to the view.
2009-06-12Move the processing of rss feeds from the rss controller to callbacks in theTim Almdal
modules that are supplying the feed. The rss controller becomes a router. In this change the comment and updates fields are distributed.
2009-05-31Rename "text" to "title" for clarity.Bharat Mediratta
2009-05-31Run all variables that come from user-entered data through p::clean()Bharat Mediratta
2009-03-17filesize() dies if the file doesn't exist, which can happen in theBharat Mediratta
case that a gallery is slightly corrupt. In that case, just ignore the error.
2009-02-24Added a block to the siebar that lists the available feedsTim Almdal
2009-02-23Change the way movies are presented in the feed. Couldn't figure outTim Almdal
how to embed the object in the feed, so the recieve will still have to click on the thumbnail to see the move. Instead of actually playing in the feed reader.
2009-02-23Change the media content for video. I don't think its quite rightTim Almdal
yet, but that's maybe because I'm not generating thumbnails
2009-02-23Fix broken slideshowTim Almdal
2009-02-231) Updated the media feed with new fieldsTim Almdal
2) Created a comments feed (/rss/comments) 3) Created a updates feed (/rss/updates) User interface to follow
2009-02-22Removed the full-size enclosure tag and fixed alignment of the content tag.Tim Almdal
2009-02-21Correct the layout of the feed so that the image shows up in the bodyTim Almdal
of the message in the feed reader.
2009-02-191) Rename the module media_rss to rssTim Almdal
2) Protect the fullsize image with a permission check 3) Added a content:encoded element to each item which allows the image to show up in the body of the feed.