Template:PicasaSlideshow

Table of contents
No headers
// PicasaSlideshow
// Template that shows Picasa web album as slideshow 
// Author: Vassil Keremidchiev
// 
// Parameters: 
// rssfeed - copy-pasted link from album rss 
// width (optional) - image width 
// height (optional) - image height

var photofeed = string.replace( $0 ?? $rssfeed ?? "/base/", "/base/", "/api/" );
var params = uri.build(page.api, _, {
         feed: photofeed,
         captions: "1",
         hl: "en_US",
         feat: "flashalbum",
         RGB: "0x000000",
         host: "picasaweb.google.com"
      });
var flashparams = string.remove( params, 0, string.length( page.api ) + 1 );
var width = $1 ?? $width ?? 400;
var height = $2 ?? $height ?? 267;

<embed type="application/x-shockwave-flash"         
  src="http://picasaweb.google.com/s/c/bin/slideshow.swf"         
  width = (width)
  height = (height)        
  flashvars = (flashparams)
  pluginspage="http://www.macromedia.com/go/getflashplayer"> </embed>
Tag page