<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: jQuery Flickr</title>
	<atom:link href="http://www.projectatomic.com/2008/04/jquery-flickr/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.projectatomic.com/2008/04/jquery-flickr/</link>
	<description>WEB DEVELOPMENT 2.0</description>
	<pubDate>Thu, 28 Aug 2008 14:44:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: JFlickr free module for Joomla-- Blue Bamboo Joomla CMS Specialists</title>
		<link>http://www.projectatomic.com/2008/04/jquery-flickr/#comment-88</link>
		<dc:creator>JFlickr free module for Joomla-- Blue Bamboo Joomla CMS Specialists</dc:creator>
		<pubDate>Sun, 17 Aug 2008 23:04:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.projectatomic.com/2008/04/jquery-flickr-plug-in-update/#comment-88</guid>
		<description>[...] The JFlickr module delivers a flickr gallery to your desktop using the excellent Jquery script from Project Atomic. You can display galleries based on a photoset, user id, group id or a free text search. You also [...]</description>
		<content:encoded><![CDATA[<p>[...] The JFlickr module delivers a flickr gallery to your desktop using the excellent Jquery script from Project Atomic. You can display galleries based on a photoset, user id, group id or a free text search. You also [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel MacDonald</title>
		<link>http://www.projectatomic.com/2008/04/jquery-flickr/#comment-82</link>
		<dc:creator>Daniel MacDonald</dc:creator>
		<pubDate>Mon, 04 Aug 2008 15:50:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.projectatomic.com/2008/04/jquery-flickr-plug-in-update/#comment-82</guid>
		<description>I left the params setting as open as possible because it just gets tacked on to the end of the flickr request. Since it is at the end of a GET request, params must be prefixed with an ampersand, as in:
&lt;pre&gt;jQuery(function(){
  jQuery("#gallery-litebox").flickr({
    api_key: "your-api-key",
    params: "&#038;min_taken_date=2007-08-04&#038;max_taken_date=2008-08-04"
  });
});&lt;/pre&gt;
Dates must be in &lt;a href="http://dev.mysql.com/doc/refman/5.0/en/datetime.html" rel="nofollow"&gt;mySql datetime&lt;/a&gt; format.</description>
		<content:encoded><![CDATA[<p>I left the params setting as open as possible because it just gets tacked on to the end of the flickr request. Since it is at the end of a GET request, params must be prefixed with an ampersand, as in:</p>
<pre>jQuery(function(){
  jQuery("#gallery-litebox").flickr({
    api_key: "your-api-key",
    params: "&#038;min_taken_date=2007-08-04&#038;max_taken_date=2008-08-04"
  });
});</pre>
<p>Dates must be in <a href="http://dev.mysql.com/doc/refman/5.0/en/datetime.html" rel="nofollow">mySql datetime</a> format.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim G.</title>
		<link>http://www.projectatomic.com/2008/04/jquery-flickr/#comment-80</link>
		<dc:creator>Jim G.</dc:creator>
		<pubDate>Sat, 26 Jul 2008 20:37:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.projectatomic.com/2008/04/jquery-flickr-plug-in-update/#comment-80</guid>
		<description>Can someone please post some example code that uses the 'params' argument?

I'm trying to use the 'min_taken_date' and 'max_taken_date' custom arguments in my own code.</description>
		<content:encoded><![CDATA[<p>Can someone please post some example code that uses the &#8216;params&#8217; argument?</p>
<p>I&#8217;m trying to use the &#8216;min_taken_date&#8217; and &#8216;max_taken_date&#8217; custom arguments in my own code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.projectatomic.com/2008/04/jquery-flickr/#comment-52</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Wed, 02 Jul 2008 15:14:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.projectatomic.com/2008/04/jquery-flickr-plug-in-update/#comment-52</guid>
		<description>Has anyone had a stab at getting pagentation to work yet. Love this plugin and the would really complete it.

Thanks in advance
Pete</description>
		<content:encoded><![CDATA[<p>Has anyone had a stab at getting pagentation to work yet. Love this plugin and the would really complete it.</p>
<p>Thanks in advance<br />
Pete</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: willwade</title>
		<link>http://www.projectatomic.com/2008/04/jquery-flickr/#comment-51</link>
		<dc:creator>willwade</dc:creator>
		<pubDate>Tue, 01 Jul 2008 14:03:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.projectatomic.com/2008/04/jquery-flickr-plug-in-update/#comment-51</guid>
		<description>2 hacks for you. Randomise images and cutoff - that is only show a set number of images (works alongside randomise and per_page)
1. add this to lines 30 &#38; 31 of the code (part of the var s = { code
&lt;code&gt;
	randomise: false,			// [bool] optional, randomise the array of images (willwade at gmail.com)
	cutoff: null				// [integer]  optional, set a cut off number.. use alongside per_page (willwade at gmail.com)
&lt;/code&gt;
2. add this to lines 51 &#38; 52 (once the above is inputted)
&lt;code&gt;
		if (s.randomise) { r.photos.photo.sort(function() {return 0.5 - Math.random()}); }
		if (s.cutoff) { d = s.cutoff } else { d = r.photos.photo.length; }
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>2 hacks for you. Randomise images and cutoff - that is only show a set number of images (works alongside randomise and per_page)<br />
1. add this to lines 30 &amp; 31 of the code (part of the var s = { code<br />
<code><br />
	randomise: false,			// [bool] optional, randomise the array of images (willwade at gmail.com)<br />
	cutoff: null				// [integer]  optional, set a cut off number.. use alongside per_page (willwade at gmail.com)<br />
</code><br />
2. add this to lines 51 &amp; 52 (once the above is inputted)<br />
<code><br />
		if (s.randomise) { r.photos.photo.sort(function() {return 0.5 - Math.random()}); }<br />
		if (s.cutoff) { d = s.cutoff } else { d = r.photos.photo.length; }<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chad Crowell</title>
		<link>http://www.projectatomic.com/2008/04/jquery-flickr/#comment-50</link>
		<dc:creator>Chad Crowell</dc:creator>
		<pubDate>Fri, 27 Jun 2008 05:29:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.projectatomic.com/2008/04/jquery-flickr-plug-in-update/#comment-50</guid>
		<description>Thanks for the update Daniel - but I am a pro member and have been for years.  I did have some security settings I think that were keeping the originals from being available to "everyone".  Thanks.</description>
		<content:encoded><![CDATA[<p>Thanks for the update Daniel - but I am a pro member and have been for years.  I did have some security settings I think that were keeping the originals from being available to &#8220;everyone&#8221;.  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel MacDonald</title>
		<link>http://www.projectatomic.com/2008/04/jquery-flickr/#comment-49</link>
		<dc:creator>Daniel MacDonald</dc:creator>
		<pubDate>Thu, 26 Jun 2008 05:25:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.projectatomic.com/2008/04/jquery-flickr-plug-in-update/#comment-49</guid>
		<description>[Chad] I did a little investigating on Flickr, and it seems you need to have a Pro (paid) account in order to make original format images available.

See: http://www.flickr.com/help/photos/?search=original+format#18

I have modified the Flickr plug-in to at least show the largest size image if the original is not available. Please download the latest version of the plug-in for the update.</description>
		<content:encoded><![CDATA[<p>[Chad] I did a little investigating on Flickr, and it seems you need to have a Pro (paid) account in order to make original format images available.</p>
<p>See: <a href="http://www.flickr.com/help/photos/?search=original+format#18" rel="nofollow">http://www.flickr.com/help/photos/?search=original+format#18</a></p>
<p>I have modified the Flickr plug-in to at least show the largest size image if the original is not available. Please download the latest version of the plug-in for the update.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel MacDonald</title>
		<link>http://www.projectatomic.com/2008/04/jquery-flickr/#comment-48</link>
		<dc:creator>Daniel MacDonald</dc:creator>
		<pubDate>Thu, 26 Jun 2008 05:16:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.projectatomic.com/2008/04/jquery-flickr-plug-in-update/#comment-48</guid>
		<description>[RJS] I'm using the following code on my &lt;a href="http://www.projectatomic.com/2008/05/jquery-litebox/" rel="nofollow"&gt;Litebox&lt;/a&gt; post (condensed for clarity):
&lt;pre&gt;jQuery(function(){   
  jQuery("#gallery-litebox").flickr({     
    api_key: "your-api-key",     
    callback: liteboxCallback   
  }); 
}); 
function liteboxCallback(el){
  jQuery(el).litebox();
}&lt;/pre&gt;

There was recently a pretty big change in the Flickr plug-in, native support for the Litebox plug-in was removed in favor of a more open callback method. Please make sure you have the latest version of the Flickr plug-in.</description>
		<content:encoded><![CDATA[<p>[RJS] I&#8217;m using the following code on my <a href="http://www.projectatomic.com/2008/05/jquery-litebox/" rel="nofollow">Litebox</a> post (condensed for clarity):</p>
<pre>jQuery(function(){
  jQuery("#gallery-litebox").flickr({
    api_key: "your-api-key",
    callback: liteboxCallback
  });
});
function liteboxCallback(el){
  jQuery(el).litebox();
}</pre>
<p>There was recently a pretty big change in the Flickr plug-in, native support for the Litebox plug-in was removed in favor of a more open callback method. Please make sure you have the latest version of the Flickr plug-in.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chad Crowell</title>
		<link>http://www.projectatomic.com/2008/04/jquery-flickr/#comment-47</link>
		<dc:creator>Chad Crowell</dc:creator>
		<pubDate>Wed, 25 Jun 2008 23:24:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.projectatomic.com/2008/04/jquery-flickr-plug-in-update/#comment-47</guid>
		<description>Hey I am using this script, and it works great, but even with the "o" original size attribute in the script, I am getting the 500px wide medium image. I have the originals set for availability.

Here are the 3 images I am trying to get the originals of:
http://flickr.com/photos/thecrowells/sets/72157605707038041/

And here is my call for the script:
//load the pictures from flickr
$("#home-pics").flickr({
	api_key: "12345678901234567890",
	type: "photoset",
	photoset_id: "72157605707038041",
	thumb_size: "s",
	size: "o",
	callback: runSlideshow
});

As I said its all working great but I can't ge tthe originals.  Help?</description>
		<content:encoded><![CDATA[<p>Hey I am using this script, and it works great, but even with the &#8220;o&#8221; original size attribute in the script, I am getting the 500px wide medium image. I have the originals set for availability.</p>
<p>Here are the 3 images I am trying to get the originals of:<br />
<a href="http://flickr.com/photos/thecrowells/sets/72157605707038041/" rel="nofollow">http://flickr.com/photos/thecrowells/sets/72157605707038041/</a></p>
<p>And here is my call for the script:<br />
//load the pictures from flickr<br />
$(&#8221;#home-pics&#8221;).flickr({<br />
	api_key: &#8220;12345678901234567890&#8243;,<br />
	type: &#8220;photoset&#8221;,<br />
	photoset_id: &#8220;72157605707038041&#8243;,<br />
	thumb_size: &#8220;s&#8221;,<br />
	size: &#8220;o&#8221;,<br />
	callback: runSlideshow<br />
});</p>
<p>As I said its all working great but I can&#8217;t ge tthe originals.  Help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RJS</title>
		<link>http://www.projectatomic.com/2008/04/jquery-flickr/#comment-46</link>
		<dc:creator>RJS</dc:creator>
		<pubDate>Tue, 24 Jun 2008 21:56:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.projectatomic.com/2008/04/jquery-flickr-plug-in-update/#comment-46</guid>
		<description>Hi 
I have the jQuery Flickr plugin working. It's really great, thanks. I'm sorry I don't understand how to get the jQuery Litebox element working with the Flickr plugin. Do you have an example of it working somewhere? I have Litebox working imdependently of the Flickr plugin.
Thanks in advance. RJS</description>
		<content:encoded><![CDATA[<p>Hi<br />
I have the jQuery Flickr plugin working. It&#8217;s really great, thanks. I&#8217;m sorry I don&#8217;t understand how to get the jQuery Litebox element working with the Flickr plugin. Do you have an example of it working somewhere? I have Litebox working imdependently of the Flickr plugin.<br />
Thanks in advance. RJS</p>
]]></content:encoded>
	</item>
</channel>
</rss>
