<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>LINQFlickr Work Item Rss Feed</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/List.aspx</link><description>LINQFlickr Work Item Rss Description</description><item><title>Commented Issue: "Media" Extras Option not working</title><link>http://linqflickr.codeplex.com/WorkItem/View.aspx?WorkItemId=7447</link><description>It&amp;#39;s important for us to be able to see the media type of the Photo item, but p.Extras &amp;#61;&amp;#61; &amp;#40; ExtrasOption.Media &amp;#41; was not working until updated the GetExtrasString method from Helper.cs to include the following&amp;#58;&lt;br /&gt;&lt;br /&gt;   if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Media &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Media &amp;#41;&lt;br /&gt;   &amp;#123;&lt;br /&gt;       if &amp;#40; builder.Length &amp;#62; 0 &amp;#41; builder.Append&amp;#40; &amp;#34;,&amp;#34; &amp;#41;&amp;#59;&lt;br /&gt;       builder.Append&amp;#40; ExtrasOption.Media.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;   &amp;#125;&lt;br /&gt;   return builder.ToString&amp;#40;&amp;#41;.ToLower&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;... alternatively I&amp;#39;ve also rewritten this method for you to be a little cleaner &amp;#40;also attached updated Helper.cs&amp;#41;&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#9;internal static string GetExtrasString&amp;#40; this ExtrasOption extras &amp;#41;&lt;br /&gt;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;List&amp;#60;string&amp;#62; list &amp;#61; new List&amp;#60;string&amp;#62;&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Date_Taken &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Date_Taken &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Date_Taken.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Date_Upload &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Date_Upload &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Date_Upload.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Icon_Server &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Icon_Server &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Icon_Server.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.License &amp;#41; &amp;#61;&amp;#61; ExtrasOption.License &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.License.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Owner_Name &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Owner_Name &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Owner_Name.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Original_Format &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Original_Format &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Owner_Name.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Last_Update &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Last_Update &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Last_Update.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Tags &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Tags &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Tags.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Geo &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Geo &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Geo.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Views &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Views &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Views.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Media &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Media &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Media.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&lt;br /&gt;&amp;#9;&amp;#9;return string.Join&amp;#40; &amp;#34;,&amp;#34;, list.ToArray&amp;#40;&amp;#41; &amp;#41;.ToLower&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#125;&lt;br /&gt;Comments: ** Comment from web user: mehfuzh ** &lt;p&gt;Great.. i will add to to the code. Thanks &amp;#33;&amp;#33;&amp;#33;&lt;/p&gt;</description><author>mehfuzh</author><pubDate>Fri, 10 Apr 2009 09:44:36 GMT</pubDate><guid isPermaLink="false">Commented Issue: "Media" Extras Option not working 20090410094436A</guid></item><item><title>Created Issue: "Media" Extras Option not working</title><link>http://linqflickr.codeplex.com/WorkItem/View.aspx?WorkItemId=7447</link><description>It&amp;#39;s important for us to be able to see the media type of the Photo item, but p.Extras &amp;#61;&amp;#61; &amp;#40; ExtrasOption.Media &amp;#41; was not working until updated the GetExtrasString method from Helper.cs to include the following&amp;#58;&lt;br /&gt;&lt;br /&gt;   if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Media &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Media &amp;#41;&lt;br /&gt;   &amp;#123;&lt;br /&gt;       if &amp;#40; builder.Length &amp;#62; 0 &amp;#41; builder.Append&amp;#40; &amp;#34;,&amp;#34; &amp;#41;&amp;#59;&lt;br /&gt;       builder.Append&amp;#40; ExtrasOption.Media.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;   &amp;#125;&lt;br /&gt;   return builder.ToString&amp;#40;&amp;#41;.ToLower&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;... alternatively I&amp;#39;ve also rewritten this method for you to be a little cleaner &amp;#40;also attached updated Helper.cs&amp;#41;&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#9;internal static string GetExtrasString&amp;#40; this ExtrasOption extras &amp;#41;&lt;br /&gt;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;List&amp;#60;string&amp;#62; list &amp;#61; new List&amp;#60;string&amp;#62;&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Date_Taken &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Date_Taken &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Date_Taken.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Date_Upload &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Date_Upload &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Date_Upload.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Icon_Server &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Icon_Server &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Icon_Server.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.License &amp;#41; &amp;#61;&amp;#61; ExtrasOption.License &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.License.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Owner_Name &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Owner_Name &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Owner_Name.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Original_Format &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Original_Format &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Owner_Name.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Last_Update &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Last_Update &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Last_Update.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Tags &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Tags &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Tags.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Geo &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Geo &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Geo.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Views &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Views &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Views.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40; &amp;#40; extras &amp;#38; ExtrasOption.Media &amp;#41; &amp;#61;&amp;#61; ExtrasOption.Media &amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;list.Add&amp;#40; ExtrasOption.Media.ToString&amp;#40;&amp;#41; &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&lt;br /&gt;&amp;#9;&amp;#9;return string.Join&amp;#40; &amp;#34;,&amp;#34;, list.ToArray&amp;#40;&amp;#41; &amp;#41;.ToLower&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#125;&lt;br /&gt;</description><author>nairdo</author><pubDate>Fri, 10 Apr 2009 08:19:16 GMT</pubDate><guid isPermaLink="false">Created Issue: "Media" Extras Option not working 20090410081916A</guid></item><item><title>Commented Issue: Bugfix: Use Relavance by default!</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=6334</link><description>I&amp;#39;m a little worried that this was not included from the beginning.  I cleaned up the sort logic to match the flickr api docs and make Sort By Relavence the default.  Also, it should be noted that orderby does not affect the query to flickr, only the results returned from flickr.&lt;br /&gt;Comments: ** Comment from web user: mehfuzh ** &lt;p&gt;Fix added, from now and on if no orderby is provided in the search query, default will be relevance. I have made the necessary changes according to the diff and few more.  Also, In the Photo.Cs there is no need to declare Relevance enum option as default is always returned as relevance &amp;#58;-&amp;#41;.&lt;/p&gt;</description><author>mehfuzh</author><pubDate>Thu, 02 Oct 2008 18:54:29 GMT</pubDate><guid isPermaLink="false">Commented Issue: Bugfix: Use Relavance by default! 20081002065429P</guid></item><item><title>Closed Issue: Bugfix: Use Relavance by default!</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=6334</link><description>I&amp;#39;m a little worried that this was not included from the beginning.  I cleaned up the sort logic to match the flickr api docs and make Sort By Relavence the default.  Also, it should be noted that orderby does not affect the query to flickr, only the results returned from flickr.&lt;br /&gt;</description><author>mehfuzh</author><pubDate>Thu, 02 Oct 2008 18:33:53 GMT</pubDate><guid isPermaLink="false">Closed Issue: Bugfix: Use Relavance by default! 20081002063353P</guid></item><item><title>Commented Issue: Bugfix: Use Relavance by default!</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=6334</link><description>I&amp;#39;m a little worried that this was not included from the beginning.  I cleaned up the sort logic to match the flickr api docs and make Sort By Relavence the default.  Also, it should be noted that orderby does not affect the query to flickr, only the results returned from flickr.&lt;br /&gt;Comments: ** Comment from web user: mehfuzh ** &lt;p&gt;So, the change is this , for any search you have made the sort by relavence by default right &amp;#63;  I check though the code , thanka a lot&amp;#33;&amp;#33;&amp;#33;&lt;/p&gt;</description><author>mehfuzh</author><pubDate>Thu, 02 Oct 2008 13:13:05 GMT</pubDate><guid isPermaLink="false">Commented Issue: Bugfix: Use Relavance by default! 20081002011305P</guid></item><item><title>Commented Issue: Bugfix: Use Relavance by default!</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=6334</link><description>I&amp;#39;m a little worried that this was not included from the beginning.  I cleaned up the sort logic to match the flickr api docs and make Sort By Relavence the default.  Also, it should be noted that orderby does not affect the query to flickr, only the results returned from flickr.&lt;br /&gt;Comments: ** Comment from web user: jgeurts ** &lt;p&gt;Yeah, my spelling sucks but the fixes are solid &amp;#58;&amp;#41;&lt;/p&gt;</description><author>jgeurts</author><pubDate>Wed, 01 Oct 2008 22:12:16 GMT</pubDate><guid isPermaLink="false">Commented Issue: Bugfix: Use Relavance by default! 20081001101216P</guid></item><item><title>Commented Issue: Bugfix: Use Relavance by default!</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=6334</link><description>I&amp;#39;m a little worried that this was not included from the beginning.  I cleaned up the sort logic to match the flickr api docs and make Sort By Relavence the default.  Also, it should be noted that orderby does not affect the query to flickr, only the results returned from flickr.&lt;br /&gt;Comments: ** Comment from web user: jgeurts ** &lt;p&gt;The other diff related to this...&lt;/p&gt;</description><author>jgeurts</author><pubDate>Wed, 01 Oct 2008 22:10:35 GMT</pubDate><guid isPermaLink="false">Commented Issue: Bugfix: Use Relavance by default! 20081001101035P</guid></item><item><title>Created Issue: Bugfix: Use Relavance by default!</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=6334</link><description>I&amp;#39;m a little worried that this was not included from the beginning.  I cleaned up the sort logic to match the flickr api docs and make Sort By Relavence the default.  Also, it should be noted that orderby does not affect the query to flickr, only the results returned from flickr.&lt;br /&gt;</description><author>jgeurts</author><pubDate>Wed, 01 Oct 2008 22:10:10 GMT</pubDate><guid isPermaLink="false">Created Issue: Bugfix: Use Relavance by default! 20081001101010P</guid></item><item><title>Closed Feature: Make a release 1.4 (Athena)</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=5655</link><description>From this release the project will be known as Athena - LINQ to flickr API.&lt;br /&gt;&lt;br /&gt;Features done in this release&lt;br /&gt;1. Extras support for photo search.&lt;br /&gt;2. WebUrl &lt;br /&gt;3. Fixing of Date issue of photos.&lt;br /&gt;4. Photo and comment update support through &lt;br /&gt;flickr.photos.setMeta&lt;br /&gt;flickr.photos.comment.EditComments.&lt;br /&gt;5. Easy NAunit build files to build the source and test it in click of a button.&lt;br /&gt;4. Easy authenticaton interfaces.&lt;br /&gt;5. Others Fixes and Refactors.&lt;br /&gt;Comments: Release completed</description><author>mehfuzh</author><pubDate>Mon, 28 Jul 2008 08:12:05 GMT</pubDate><guid isPermaLink="false">Closed Feature: Make a release 1.4 (Athena) 20080728081205A</guid></item><item><title>Created Feature: Make a release 1.4 (Athena)</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=5655</link><description>&lt;br /&gt;</description><author>mehfuzh</author><pubDate>Sat, 26 Jul 2008 08:29:55 GMT</pubDate><guid isPermaLink="false">Created Feature: Make a release 1.4 (Athena) 20080726082955A</guid></item><item><title>Closed Issue: GetUrl() method is unreliable</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=4715</link><description>The GetUrl&amp;#40;&amp;#41; method builds a URL based on the order of Dictionary keys. The key order is unspecified in a Dictionary. I needed to change the code because I am porting it to Java using Grasshopper &amp;#60;http&amp;#58;&amp;#47;&amp;#47;dev.mainsoft.com&amp;#62;. Please let me know if you want the patch.&lt;br /&gt;&lt;br /&gt;MSDN link&amp;#58; &amp;#60;http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;yt2fy5zk.aspx&amp;#62;&lt;br /&gt;Comments: Fixed</description><author>mehfuzh</author><pubDate>Sat, 26 Jul 2008 08:28:42 GMT</pubDate><guid isPermaLink="false">Closed Issue: GetUrl() method is unreliable 20080726082842A</guid></item><item><title>Closed Task: Add Extras support for Flickr photos.</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=5654</link><description>What is Extras&lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; &amp;#60;summary&amp;#62;&lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; A comma-delimited list of extra information to fetch for each returned record. &lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; Currently supported fields are&amp;#58; license, date_upload, date_taken, owner_name, icon_server, &lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; original_format, last_update, geo, tags, machine_tags, views, media. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Support for LINQ query like the following.&lt;br /&gt;&amp;#160;Use ExtrasOption enum with &amp;#124; to set your options. Ex &lt;br /&gt;&amp;#160;p.Extras &amp;#61;&amp;#61; &amp;#40;ExtrasOption.Views &amp;#124; ExtrasOption.Date_Taken &amp;#124; ExtrasOption.Date_Upload&amp;#41; &amp;#38;&amp;#38; ... other options&lt;br /&gt;</description><author>mehfuzh</author><pubDate>Sat, 26 Jul 2008 08:27:23 GMT</pubDate><guid isPermaLink="false">Closed Task: Add Extras support for Flickr photos. 20080726082723A</guid></item><item><title>Created Task: Add Extras support for Flickr photos.</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=5654</link><description>What is Extras&lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; &amp;#60;summary&amp;#62;&lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; A comma-delimited list of extra information to fetch for each returned record. &lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; Currently supported fields are&amp;#58; license, date_upload, date_taken, owner_name, icon_server, &lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; original_format, last_update, geo, tags, machine_tags, views, media. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Support for LINQ query like the following.&lt;br /&gt;&amp;#160;Use ExtrasOption enum with &amp;#124; to set your options. Ex &lt;br /&gt;&amp;#160;p.Extras &amp;#61;&amp;#61; &amp;#40;ExtrasOption.Views &amp;#124; ExtrasOption.Date_Taken &amp;#124; ExtrasOption.Date_Upload&amp;#41; &amp;#38;&amp;#38; ... other options&lt;br /&gt;</description><author>mehfuzh</author><pubDate>Sat, 26 Jul 2008 08:23:24 GMT</pubDate><guid isPermaLink="false">Created Task: Add Extras support for Flickr photos. 20080726082324A</guid></item><item><title>COMMENTED ISSUE: GetUrl() method is unreliable</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=4715</link><description>The GetUrl&amp;#40;&amp;#41; method builds a URL based on the order of Dictionary keys. The key order is unspecified in a Dictionary. I needed to change the code because I am porting it to Java using Grasshopper &amp;#60;http&amp;#58;&amp;#47;&amp;#47;dev.mainsoft.com&amp;#62;. Please let me know if you want the patch.&lt;br /&gt;&lt;br /&gt;MSDN link&amp;#58; &amp;#60;http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;yt2fy5zk.aspx&amp;#62;&lt;br /&gt;Comments: ** Comment from web user: mehfuzh ** &lt;p&gt;Also, i guess your porting this API for Linux based system &amp;#40;accoridng to mainsoft&amp;#41;, how you are giving support for linq in that case.&lt;/p&gt;</description><author>mehfuzh</author><pubDate>Wed, 14 May 2008 09:22:56 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: GetUrl() method is unreliable 20080514092256A</guid></item><item><title>COMMENTED ISSUE: GetUrl() method is unreliable</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=4715</link><description>The GetUrl&amp;#40;&amp;#41; method builds a URL based on the order of Dictionary keys. The key order is unspecified in a Dictionary. I needed to change the code because I am porting it to Java using Grasshopper &amp;#60;http&amp;#58;&amp;#47;&amp;#47;dev.mainsoft.com&amp;#62;. Please let me know if you want the patch.&lt;br /&gt;&lt;br /&gt;MSDN link&amp;#58; &amp;#60;http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;yt2fy5zk.aspx&amp;#62;&lt;br /&gt;Comments: ** Comment from web user: mehfuzh ** &lt;p&gt;i would like to know a deaill of it , i mean why you need to change. GetUrl should not accesed by outside world i should mark in internal. I have used SortedDictionary , that makes the order properly , tell me more about your thought. You can send me the patch, but make sure, it passes the Test &amp;#58;-&amp;#41;&lt;/p&gt;</description><author>mehfuzh</author><pubDate>Wed, 14 May 2008 09:17:45 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: GetUrl() method is unreliable 20080514091745A</guid></item><item><title>CREATED ISSUE: GetUrl() method is unreliable</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=4715</link><description>The GetUrl&amp;#40;&amp;#41; method builds a URL based on the order of Dictionary keys. The key order is unspecified in a Dictionary. I needed to change the code because I am porting it to Java using Grasshopper &amp;#60;http&amp;#58;&amp;#47;&amp;#47;dev.mainsoft.com&amp;#62;. Please let me know if you want the patch.&lt;br /&gt;&lt;br /&gt;MSDN link&amp;#58; &amp;#60;http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;yt2fy5zk.aspx&amp;#62;&lt;br /&gt;</description><author>jonasil</author><pubDate>Tue, 13 May 2008 10:27:05 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: GetUrl() method is unreliable 20080513102705A</guid></item><item><title>CLOSED ISSUE: Move settings to dedicated configuration section</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=2565</link><description>Move the Linq.Flickr configuration sections out of appSettings into a specialized ConfigurationSection to avoid cluttering in larger applications.&lt;br /&gt;Comments: Implemented.</description><author>mehfuzh</author><pubDate>Fri, 22 Feb 2008 03:52:28 GMT</pubDate><guid isPermaLink="false">CLOSED ISSUE: Move settings to dedicated configuration section 20080222035228A</guid></item><item><title>CLOSED ISSUE: Querying by PhotoSize Throws Error</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=3639</link><description>&amp;#60;b&amp;#62;Sample Query&amp;#60;&amp;#47;b&amp;#62;&lt;br /&gt;var query &amp;#61; &amp;#40; from ph in context.Photos&lt;br /&gt;                          where ph.ViewMode &amp;#61;&amp;#61; mode &amp;#38;&amp;#38; ph.User &amp;#61;&amp;#61; &amp;#34;&amp;#35;&amp;#35;YourUserName&amp;#35;&amp;#35;&amp;#34; &amp;#38;&amp;#38;  ph.PhotoSize &amp;#61;&amp;#61; PhotoSize.Original&lt;br /&gt;                          orderby PhotoOrder.Date_Posted descending&lt;br /&gt;                          select ph &amp;#41;.Take&amp;#40; 10 &amp;#41;.Skip&amp;#40; 0 &amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;The ParseElement&amp;#40;&amp;#41; method in the PhotoRepository.cs file throws an error&amp;#58; &amp;#34;Error code&amp;#58; 96 Message&amp;#58; Invalid Signature&amp;#34;&lt;br /&gt;Comments: Fixed in 14832</description><author>mehfuzh</author><pubDate>Mon, 18 Feb 2008 05:48:49 GMT</pubDate><guid isPermaLink="false">CLOSED ISSUE: Querying by PhotoSize Throws Error 20080218054849A</guid></item><item><title>COMMENTED ISSUE: Querying by PhotoSize Throws Error</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=3639</link><description>&amp;#60;b&amp;#62;Sample Query&amp;#60;&amp;#47;b&amp;#62;&lt;br /&gt;var query &amp;#61; &amp;#40; from ph in context.Photos&lt;br /&gt;                          where ph.ViewMode &amp;#61;&amp;#61; mode &amp;#38;&amp;#38; ph.User &amp;#61;&amp;#61; &amp;#34;&amp;#35;&amp;#35;YourUserName&amp;#35;&amp;#35;&amp;#34; &amp;#38;&amp;#38;  ph.PhotoSize &amp;#61;&amp;#61; PhotoSize.Original&lt;br /&gt;                          orderby PhotoOrder.Date_Posted descending&lt;br /&gt;                          select ph &amp;#41;.Take&amp;#40; 10 &amp;#41;.Skip&amp;#40; 0 &amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;The ParseElement&amp;#40;&amp;#41; method in the PhotoRepository.cs file throws an error&amp;#58; &amp;#34;Error code&amp;#58; 96 Message&amp;#58; Invalid Signature&amp;#34;&lt;br /&gt;Comments: ** Comment from web user: mehfuzh ** &lt;p&gt;Fixed with current release 14832. Thanks for the issue &amp;#58;-&amp;#41;&lt;/p&gt;</description><author>mehfuzh</author><pubDate>Sat, 16 Feb 2008 19:29:09 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Querying by PhotoSize Throws Error 20080216072909P</guid></item><item><title>COMMENTED ISSUE: Querying by PhotoSize Throws Error</title><link>http://www.codeplex.com/LINQFlickr/WorkItem/View.aspx?WorkItemId=3639</link><description>&amp;#60;b&amp;#62;Sample Query&amp;#60;&amp;#47;b&amp;#62;&lt;br /&gt;var query &amp;#61; &amp;#40; from ph in context.Photos&lt;br /&gt;                          where ph.ViewMode &amp;#61;&amp;#61; mode &amp;#38;&amp;#38; ph.User &amp;#61;&amp;#61; &amp;#34;&amp;#35;&amp;#35;YourUserName&amp;#35;&amp;#35;&amp;#34; &amp;#38;&amp;#38;  ph.PhotoSize &amp;#61;&amp;#61; PhotoSize.Original&lt;br /&gt;                          orderby PhotoOrder.Date_Posted descending&lt;br /&gt;                          select ph &amp;#41;.Take&amp;#40; 10 &amp;#41;.Skip&amp;#40; 0 &amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;The ParseElement&amp;#40;&amp;#41; method in the PhotoRepository.cs file throws an error&amp;#58; &amp;#34;Error code&amp;#58; 96 Message&amp;#58; Invalid Signature&amp;#34;&lt;br /&gt;Comments: ** Comment from web user: mehfuzh ** &lt;p&gt;Fixed with current release 14832. Thanks for the issue &amp;#58;-&amp;#41;&lt;/p&gt;</description><author>mehfuzh</author><pubDate>Sat, 16 Feb 2008 19:26:02 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Querying by PhotoSize Throws Error 20080216072602P</guid></item></channel></rss>