guptahanu / google-ajax-apis

Automatically exported from code.google.com/p/google-ajax-apis
0 stars 1 forks source link

Use next / previous Media RSS GFSlideshow #469

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Currently GFSlideShow will only show all pictures in the RSS itself and will 
not continue with the "next" page. F.e. Cooliris/Piclens uses this already.
Introduce an option to use the atom:link next/previous related tag for getting 
the next pictures in a slideshow.

Example of a Media RSS feed 
(http://www.somewhere.com/explorer/media/page:2/media.rss):
<?xml version='1.0' encoding='UTF-8'?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" 
xmlns:media="http://search.yahoo.com/mrss/" >
<channel>
  <title>TITLE</title>
  <link>http://www.somewhere.com/</link>
  <description>Media RSS of phTagr (http://www.somewhere.com/)</description>
  <atom:link rel="self" href="http://www.somewhere.com/explorer/media/media.rss" />
  <atom:link rel="previous" href="http://www.somewhere.com/explorer/media/media.rss" />
  <atom:link rel="next" href="http://www.somewhere.com/explorer/media/page:3/media.rss" />
  <item>
    <title>P1000108.JPG by someone</title>
    <link>http://www.somewhere.com/images/view/3/</link>
        <media:thumbnail url="http://www.somewhere.com/media/thumb/3/P1000108.JPG" height="165" width="220" />
    <media:content url="http://www.somewhere.com/media/preview/3/P1000108.JPG" height="450" width="600" />
    <guid>http://www.somewhere.com/media/view/3</guid>
    <description />
  </item>
  ... (more items)
</channel>
</rss>

Original issue reported on code.google.com by hostmas...@gab-ev.de on 9 Jun 2010 at 6:51

GoogleCodeExporter commented 8 years ago

Original comment by jscud.w...@gmail.com on 11 Jun 2010 at 1:40