<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on Flickr EXIF Decorator | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/9476</link>
    <description>Recent comments on userscript: Flickr EXIF Decorator</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Using this on Flickriver, replied by masetime</title>
      <description>&lt;p&gt;Does anyone know of a way to modify this to work on Flickriver photos?&lt;/p&gt;

&lt;p&gt;That would be KILLER!&lt;/p&gt;</description>
      <pubDate>Tue, 31 Mar 2009 02:59:06 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:24104:106941</guid>
      <author>masetime</author>
      <link>http://userscripts.org/posts/106941</link>
    </item>
    <item>
      <title>Archived Comments, replied by Arnoud</title>
      <description>&lt;p&gt;Very nice script, and thanks for that fix Bekir! Added Lens Type to my own script.&lt;/p&gt;</description>
      <pubDate>Sun, 10 Aug 2008 14:05:37 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:9958:19327</guid>
      <author>Arnoud</author>
      <link>http://userscripts.org/posts/19327</link>
    </item>
    <item>
      <title>Archived Comments, replied by pellk</title>
      <description>&lt;p&gt;so useful, so stylish. nice piece of code.&lt;/p&gt;</description>
      <pubDate>Sat, 12 Jul 2008 19:03:18 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:9958:19328</guid>
      <author>pellk</author>
      <link>http://userscripts.org/posts/19328</link>
    </item>
    <item>
      <title>Archived Comments, replied by Bekir Dogan</title>
      <description>&lt;p&gt;Hi;
&lt;br /&gt;This script doesn't work for my private pictures, because it use developers key for api calls.&lt;/p&gt;

&lt;p&gt;Flickr has it's wown API call methot in loaded JS. So i changed some parts of the script tu use this builtin function, and removed GM_xmlhttpRequest.&lt;/p&gt;

&lt;p&gt;Here is the diff, and now it also works for my private pictures.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;
&lt;br /&gt; bekir@hede:~/.mozilla/firefox/32ba1h2c.default/gm_scripts$ diff -u flickrexifdecorator.user.js-orig flickrexifdecorator.user.js
&lt;br /&gt;--- flickrexifdecorator.user.js-orig    2007-10-30 11:55:06.000000000 +0200
&lt;br /&gt;+++ flickrexifdecorator.user.js 2007-10-30 12:02:41.000000000 +0200
&lt;br /&gt;@@ -70,16 +70,10 @@
&lt;br /&gt;     
&lt;br /&gt;     photo_id = location.pathname.split('/')[3];
&lt;br /&gt;     var img = document.getElementById('photoImgDiv' + photo_id);
&lt;br /&gt;-    
&lt;br /&gt;-    GM_xmlhttpRequest({
&lt;br /&gt;-        method: 'GET',
&lt;br /&gt;-        url:    'http://api.flickr.com/services/rest/?method=flickr.photos.getExif'
&lt;br /&gt;-               +'&amp;amp;api_key=45d5d4b7dff9bc653c8eb3e73271c10c'
&lt;br /&gt;-               +'&amp;amp;format=json&amp;amp;nojsoncallback=1'
&lt;br /&gt;-               +'&amp;amp;photo_id=' + photo_id,
&lt;br /&gt;-               
&lt;br /&gt;-        onload: function(responseDetails) {
&lt;br /&gt;-            var data        = eval('(' + responseDetails.responseText + ')');
&lt;br /&gt;+    var listener = {
&lt;br /&gt;+        flickr_photos_getExif_onLoad: function(success, responseXML, responseText, params){
&lt;br /&gt;+            var rsp         = responseText.replace(/jsonFlickrApi/,'');
&lt;br /&gt;+            var data        = eval(rsp);
&lt;br /&gt;             var exif_array  = data.photo.exif;
&lt;br /&gt;             var exif        = new Array();
&lt;br /&gt;             var rawexif     = new Array();
&lt;br /&gt;@@ -220,5 +214,6 @@
&lt;br /&gt;             img.addEventListener('mouseover', mouseOverListener, false);
&lt;br /&gt;             overlay.addEventListener('mouseout', mouseOutListener, false);
&lt;br /&gt;         }
&lt;br /&gt;-    });
&lt;br /&gt;+    }
&lt;br /&gt;+    unsafeWindow.F.API.callMethod(&quot;flickr.photos.getExif&quot;,{photo_id:photo_id, format:&quot;json&quot;}, listener)
&lt;br /&gt; }
&lt;br /&gt;bekir@hede:~/.mozilla/firefox/32ba1h2c.default/gm_scripts$ 
&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 30 Oct 2007 10:03:15 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:9958:19329</guid>
      <author>Bekir Dogan</author>
      <link>http://userscripts.org/posts/19329</link>
    </item>
    <item>
      <title>Archived Comments, replied by BlindWanderer</title>
      <description>&lt;p&gt;On line 73 this needs to be added so it doesn't throw errors on other pages:
&lt;br /&gt;&lt;code&gt;if(!img) return true;&lt;/code&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 23 Oct 2007 15:08:52 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:9958:19330</guid>
      <author>BlindWanderer</author>
      <link>http://userscripts.org/posts/19330</link>
    </item>
    <item>
      <title>Archived Comments, replied by bitrot</title>
      <description>&lt;p&gt;Tagging seems to be back up now!&lt;/p&gt;</description>
      <pubDate>Fri, 13 Jul 2007 04:48:52 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:9958:19331</guid>
      <author>bitrot</author>
      <link>http://userscripts.org/posts/19331</link>
    </item>
    <item>
      <title>Archived Comments, replied by Simon Whitaker</title>
      <description>&lt;p&gt;Yeah, the tagging thing is a real shame, I searched for ages trying to figure out how to add tags before coming to the conclusion that they must be disabled right now. Hopefully they'll be back before long.&lt;/p&gt;</description>
      <pubDate>Tue, 12 Jun 2007 03:46:09 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:9958:19332</guid>
      <author>Simon Whitaker</author>
      <link>http://userscripts.org/posts/19332</link>
    </item>
    <item>
      <title>Archived Comments, replied by TeknoMusicMan</title>
      <description>&lt;p&gt;Great Script!&lt;/p&gt;</description>
      <pubDate>Thu, 07 Jun 2007 03:49:03 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:9958:19333</guid>
      <author>TeknoMusicMan</author>
      <link>http://userscripts.org/posts/19333</link>
    </item>
    <item>
      <title>Archived Comments, replied by dirgon</title>
      <description>&lt;p&gt;Disregard my message about tagging.  I just found out that tagging is currently disabled.&lt;/p&gt;</description>
      <pubDate>Mon, 04 Jun 2007 15:27:34 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:9958:19334</guid>
      <author>dirgon</author>
      <link>http://userscripts.org/posts/19334</link>
    </item>
    <item>
      <title>Archived Comments, replied by dirgon</title>
      <description>&lt;p&gt;To the author... add a &quot;flickr&quot; tag to this script show it will show up when doing a tag search.&lt;/p&gt;</description>
      <pubDate>Sun, 03 Jun 2007 16:28:16 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:9958:19335</guid>
      <author>dirgon</author>
      <link>http://userscripts.org/posts/19335</link>
    </item>
    <item>
      <title>Archived Comments, replied by Aleksandar Djuri&#263;</title>
      <description>&lt;p&gt;Clara, searching for &lt;em&gt;flickrexifdecorator.user.js&lt;/em&gt; file (located inside &lt;em&gt;gm_scripts&lt;/em&gt; folder), deleting it and installing it again should do the trick.&lt;/p&gt;</description>
      <pubDate>Fri, 01 Jun 2007 15:41:06 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:9958:19336</guid>
      <author>Aleksandar Djuri&#263;</author>
      <link>http://userscripts.org/posts/19336</link>
    </item>
    <item>
      <title>Archived Comments, replied by Clara</title>
      <description>&lt;p&gt;I uninstalled and can't install again, please help. See the error here:
&lt;br /&gt;&lt;a href=&quot;http://tam-tam.tumblr.com/post/2686209&quot;&gt;http://tam-tam.tumblr.com/post/2686209&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 30 May 2007 22:39:24 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:9958:19337</guid>
      <author>Clara</author>
      <link>http://userscripts.org/posts/19337</link>
    </item>
    <item>
      <title>Archived Comments, replied by Jesse Andrews</title>
      <description>&lt;p&gt;The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)&lt;/p&gt;</description>
      <pubDate>Wed, 17 Nov 2004 01:05:57 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:9958:19326</guid>
      <author>Jesse Andrews</author>
      <link>http://userscripts.org/posts/19326</link>
    </item>
  </channel>
</rss>
