Changeset 718787
- Timestamp:
- 05/27/2013 09:37:42 AM (13 years ago)
- Location:
- javascript-flickr-badge
- Files:
-
- 1 deleted
- 2 edited
- 7 copied
-
tags/2.3 (copied) (copied from javascript-flickr-badge/trunk)
-
tags/2.3/javascript-flickr-badge-es_ES.mo (copied) (copied from javascript-flickr-badge/trunk/javascript-flickr-badge-es_ES.mo)
-
tags/2.3/javascript-flickr-badge-es_ES.po (copied) (copied from javascript-flickr-badge/trunk/javascript-flickr-badge-es_ES.po)
-
tags/2.3/javascript-flickr-badge.js (deleted)
-
tags/2.3/javascript-flickr-badge.min.js (copied) (copied from javascript-flickr-badge/trunk/javascript-flickr-badge.min.js)
-
tags/2.3/javascript-flickr-badge.php (copied) (copied from javascript-flickr-badge/trunk/javascript-flickr-badge.php) (3 diffs)
-
tags/2.3/readme.txt (copied) (copied from javascript-flickr-badge/trunk/readme.txt) (2 diffs)
-
tags/2.3/screenshot-1.png (copied) (copied from javascript-flickr-badge/trunk/screenshot-1.png)
-
trunk/javascript-flickr-badge.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
javascript-flickr-badge/tags/2.3/javascript-flickr-badge.php
r718422 r718787 4 4 Plugin URI: http://blog.jyst.us/javascript-flickr-badge?utm_source=Wordpress&utm_medium=Plugin%2BAdmin&utm_campaign=Javascript%2BFlickr%2BBadge 5 5 Description: Displays photos from Flickr, with optional tag filtering, with client-side javascript. Several eye-catching effects available. 6 Version: 2. 26 Version: 2.3 7 7 Author: Jyst 8 8 Author URI: http://jyst.us/ … … 21 21 $options = get_option('javascript_flickr_badge'); 22 22 if($options['flickrId']) { 23 if($options["tags"]) { 24 $tagString = "'".join('\',\'',$options['tags'])."'"; 25 } 26 else { 27 $tagString = ""; 28 } 23 29 ?> 24 30 <script type="text/javascript"> 25 jsFlickrBadge(document.getElementById( 'jsFlickrBadge'), {26 flickrId: '<?php echo $options['flickrId'] ? $options['flickrId'] : '40969270@N00'; ?>',27 feed: '<?php echo $options['feed'] ? $options['feed'] : 'group'; ?>',28 tags: '<?php echo $options['tags'] ? $options['tags'] : ''; ?>',29 rows: <?php echo $options[ 'rows'] ? $options['rows'] : 3; ?>,30 columns: <?php echo $options[ 'columns'] ? $options['columns'] : 3; ?>,31 size: <?php echo $options[ 'size'] ? $options['size'] : 75; ?>,32 animation: '<?php echo $options['animation'] ? $options['animation'] : 'none'; ?>',33 animationSpeed: <?php echo $options[ 'animationSpeed'] ? $options['animationSpeed'] : '1'; ?>,34 animationPause: <?php echo $options[ 'animationPause'] ? $options['animationPause'] : '2'; ?>31 jsFlickrBadge(document.getElementById("jsFlickrBadge"), { 32 flickrId: "<?php echo $options["flickrId"] ? $options["flickrId"] : "40969270@N00"; ?>", 33 feed: "<?php echo $options["feed"] ? $options["feed"] : "group"; ?>", 34 tags: [<?php echo $tagString; ?>], 35 rows: <?php echo $options["rows"] ? $options["rows"] : 3; ?>, 36 columns: <?php echo $options["columns"] ? $options["columns"] : 3; ?>, 37 size: <?php echo $options["size"] ? $options["size"] : 75; ?>, 38 animation: "<?php echo $options["animation"] ? $options["animation"] : "none"; ?>", 39 animationSpeed: <?php echo $options["animationSpeed"] ? $options["animationSpeed"] : "1"; ?>, 40 animationPause: <?php echo $options["animationPause"] ? $options["animationPause"] : "2"; ?> 35 41 }); 36 42 </script> … … 51 57 else { 52 58 $tags = join('+', $options['tags']); 53 $tagstitle = join(' & ', $options['tags']);54 59 $photostream = 'http://www.flickr.com/photos/' . $options['flickrId'] . '/'; 55 60 $rows = $options['rows'] ? $options['rows'] : 3; 56 61 $size = $options['size'] ? $options['size'] : 75; 62 echo '<!-- Javascript Flickr Badge (http://blog.jyst.us/javascript-flickr-badge) v2.3 -->'; 57 63 echo $before_widget . $before_title . '<a id="jsFlickrBadgeTitle" href="' . $photostream . '">' . $title . '</a>' . $after_title; 58 64 echo '<div id="jsFlickrBadge" style="position:relative;height:'.($rows * $size).'px;"><div style="padding:10px;"><a href="http://blog.jyst.us/javascript-flickr-badge?utm_source=Wordpress&utm_medium=Plugin&utm_campaign=Javascript%2BFlickr%2BBadge">Javascript Flickr Badge</a>, by <a href="http://jyst.us/" title="Social Media Aggregator">Jyst</a>, a <a href="http://jyst.us/" title="Social Media Aggregator">Social Media Aggregator</a>, requires javascript.</div></div>'; -
javascript-flickr-badge/tags/2.3/readme.txt
r718422 r718787 4 4 Requires at least: 2.0.2 5 5 Tested up to: 3.5.1 6 Stable tag: 2. 26 Stable tag: 2.3 7 7 8 8 Displays photos from Flickr, with optional tag filtering, with pure client-side javascript. Several eye-catching effects available. … … 79 79 = 2.2 = 80 80 * Fixed bug with tag filtering 81 = 2.3 = 82 * Fixed another bug with tag filtering -
javascript-flickr-badge/trunk/javascript-flickr-badge.php
r718422 r718787 4 4 Plugin URI: http://blog.jyst.us/javascript-flickr-badge?utm_source=Wordpress&utm_medium=Plugin%2BAdmin&utm_campaign=Javascript%2BFlickr%2BBadge 5 5 Description: Displays photos from Flickr, with optional tag filtering, with client-side javascript. Several eye-catching effects available. 6 Version: 2. 26 Version: 2.3 7 7 Author: Jyst 8 8 Author URI: http://jyst.us/ … … 21 21 $options = get_option('javascript_flickr_badge'); 22 22 if($options['flickrId']) { 23 if($options["tags"]) { 24 $tagString = "'".join('\',\'',$options['tags'])."'"; 25 } 26 else { 27 $tagString = ""; 28 } 23 29 ?> 24 30 <script type="text/javascript"> 25 jsFlickrBadge(document.getElementById( 'jsFlickrBadge'), {26 flickrId: '<?php echo $options['flickrId'] ? $options['flickrId'] : '40969270@N00'; ?>',27 feed: '<?php echo $options['feed'] ? $options['feed'] : 'group'; ?>',28 tags: '<?php echo $options['tags'] ? $options['tags'] : ''; ?>',29 rows: <?php echo $options[ 'rows'] ? $options['rows'] : 3; ?>,30 columns: <?php echo $options[ 'columns'] ? $options['columns'] : 3; ?>,31 size: <?php echo $options[ 'size'] ? $options['size'] : 75; ?>,32 animation: '<?php echo $options['animation'] ? $options['animation'] : 'none'; ?>',33 animationSpeed: <?php echo $options[ 'animationSpeed'] ? $options['animationSpeed'] : '1'; ?>,34 animationPause: <?php echo $options[ 'animationPause'] ? $options['animationPause'] : '2'; ?>31 jsFlickrBadge(document.getElementById("jsFlickrBadge"), { 32 flickrId: "<?php echo $options["flickrId"] ? $options["flickrId"] : "40969270@N00"; ?>", 33 feed: "<?php echo $options["feed"] ? $options["feed"] : "group"; ?>", 34 tags: [<?php echo $tagString; ?>], 35 rows: <?php echo $options["rows"] ? $options["rows"] : 3; ?>, 36 columns: <?php echo $options["columns"] ? $options["columns"] : 3; ?>, 37 size: <?php echo $options["size"] ? $options["size"] : 75; ?>, 38 animation: "<?php echo $options["animation"] ? $options["animation"] : "none"; ?>", 39 animationSpeed: <?php echo $options["animationSpeed"] ? $options["animationSpeed"] : "1"; ?>, 40 animationPause: <?php echo $options["animationPause"] ? $options["animationPause"] : "2"; ?> 35 41 }); 36 42 </script> … … 51 57 else { 52 58 $tags = join('+', $options['tags']); 53 $tagstitle = join(' & ', $options['tags']);54 59 $photostream = 'http://www.flickr.com/photos/' . $options['flickrId'] . '/'; 55 60 $rows = $options['rows'] ? $options['rows'] : 3; 56 61 $size = $options['size'] ? $options['size'] : 75; 62 echo '<!-- Javascript Flickr Badge (http://blog.jyst.us/javascript-flickr-badge) v2.3 -->'; 57 63 echo $before_widget . $before_title . '<a id="jsFlickrBadgeTitle" href="' . $photostream . '">' . $title . '</a>' . $after_title; 58 64 echo '<div id="jsFlickrBadge" style="position:relative;height:'.($rows * $size).'px;"><div style="padding:10px;"><a href="http://blog.jyst.us/javascript-flickr-badge?utm_source=Wordpress&utm_medium=Plugin&utm_campaign=Javascript%2BFlickr%2BBadge">Javascript Flickr Badge</a>, by <a href="http://jyst.us/" title="Social Media Aggregator">Jyst</a>, a <a href="http://jyst.us/" title="Social Media Aggregator">Social Media Aggregator</a>, requires javascript.</div></div>'; -
javascript-flickr-badge/trunk/readme.txt
r718422 r718787 4 4 Requires at least: 2.0.2 5 5 Tested up to: 3.5.1 6 Stable tag: 2. 26 Stable tag: 2.3 7 7 8 8 Displays photos from Flickr, with optional tag filtering, with pure client-side javascript. Several eye-catching effects available. … … 79 79 = 2.2 = 80 80 * Fixed bug with tag filtering 81 = 2.3 = 82 * Fixed another bug with tag filtering
Note: See TracChangeset
for help on using the changeset viewer.