Changeset 163414
- Timestamp:
- 10/14/2009 05:41:35 PM (16 years ago)
- Location:
- picasaview/trunk
- Files:
-
- 3 edited
-
picasaview.js (modified) (1 diff)
-
picasaview.php (modified) (3 diffs)
-
templates/picasaview_styles.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
picasaview/trunk/picasaview.js
r162251 r163414 43 43 s.down('a').observe('click', this.previousPage.bind(this)); 44 44 }.bind(this)); 45 46 this.adjustBlockHeight();47 45 }, 48 46 49 47 nextPage: function(e) { 50 48 e.stop(); 49 50 this.adjustBlockHeight(); 51 51 52 52 $('picasaViewBlock-' + this.id + '-' + this.startIndex).fade({duration: 0.3, queue: { position: 'end', scope: 'picasaview' }}); -
picasaview/trunk/picasaview.php
r162251 r163414 5 5 Plugin URI: http://www.sattes-faction.de/picasaview 6 6 Description: Allows you to implement all albums or a specific one from picasaWeb 7 Version: 1.0 7 Version: 1.0.1 8 8 License: GPL 9 9 Author: Simon Sattes … … 47 47 'quickPaging' => false, 48 48 'rssLookupType' => 'file_get_contents', 49 'version' => '1.0 ',49 'version' => '1.0.1', 50 50 'instantView' => false 51 51 ); … … 483 483 curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); 484 484 $feed = curl_exec($ch); 485 if(!$feed) { // oops, an error occured 486 $error = "CURL was not able to do a successful request."; 487 $feed = curl_error($ch); 488 } 485 489 curl_close($ch); 486 490 } elseif(ini_get('allow_url_fopen') && $tagOptions['rssLookupType'] == 'file_get_contents') { -
picasaview/trunk/templates/picasaview_styles.css
r162251 r163414 32 32 border-collapse:collapse; 33 33 border-spacing:0px; 34 clear:both; 34 35 } 35 36
Note: See TracChangeset
for help on using the changeset viewer.