<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Josh Software - Where Programming is an Art!</title>
	<atom:link href="http://blog.joshsoftware.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.joshsoftware.com</link>
	<description>India&#039;s Ruby On Rails Experts!</description>
	<lastBuildDate>Thu, 23 Feb 2012 23:52:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Multiple Applications with Devise, Omniauth and Single Sign On by PJ Cabrera</title>
		<link>http://blog.joshsoftware.com/2010/12/16/multiple-applications-with-devise-omniauth-and-single-sign-on/#comment-4182</link>
		<dc:creator><![CDATA[PJ Cabrera]]></dc:creator>
		<pubDate>Thu, 23 Feb 2012 23:52:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshsoftware.com/?p=669#comment-4182</guid>
		<description><![CDATA[Great post and great feedback to readers with questions! Thanks for sharing the implementation on Github.]]></description>
		<content:encoded><![CDATA[<p>Great post and great feedback to readers with questions! Thanks for sharing the implementation on Github.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on filter.js &#8211; Client side search filtering using JSON and jQuery by jiren</title>
		<link>http://blog.joshsoftware.com/2011/09/28/filter-js-client-side-search-filtering-using-json-and-jquery/#comment-4130</link>
		<dc:creator><![CDATA[jiren]]></dc:creator>
		<pubDate>Fri, 17 Feb 2012 09:09:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshsoftware.com/?p=1087#comment-4130</guid>
		<description><![CDATA[This is a good idea. I have not done this yet. Do submit a pull request if you do this. I shall try to do this when I get some free time.]]></description>
		<content:encoded><![CDATA[<p>This is a good idea. I have not done this yet. Do submit a pull request if you do this. I shall try to do this when I get some free time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple Applications with Devise, Omniauth and Single Sign On by Gautam Rege</title>
		<link>http://blog.joshsoftware.com/2010/12/16/multiple-applications-with-devise-omniauth-and-single-sign-on/#comment-4129</link>
		<dc:creator><![CDATA[Gautam Rege]]></dc:creator>
		<pubDate>Fri, 17 Feb 2012 08:33:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshsoftware.com/?p=669#comment-4129</guid>
		<description><![CDATA[If you want a different view for App1 and App2, you can fetch the user data from UserManager using user.json and then render the info in your own way specific for App1 or App2. 

In case of edit, you should set the form url to post the data to UserManager app and send a redirect_url as one of the parameters, so the views are consistent after update. ]]></description>
		<content:encoded><![CDATA[<p>If you want a different view for App1 and App2, you can fetch the user data from UserManager using user.json and then render the info in your own way specific for App1 or App2. </p>
<p>In case of edit, you should set the form url to post the data to UserManager app and send a redirect_url as one of the parameters, so the views are consistent after update. </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple Applications with Devise, Omniauth and Single Sign On by Bastien</title>
		<link>http://blog.joshsoftware.com/2010/12/16/multiple-applications-with-devise-omniauth-and-single-sign-on/#comment-4128</link>
		<dc:creator><![CDATA[Bastien]]></dc:creator>
		<pubDate>Fri, 17 Feb 2012 08:15:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshsoftware.com/?p=669#comment-4128</guid>
		<description><![CDATA[Thanks for your quick reply, it makes more sense now and SSO enables a seamless access to the UserManager&#039;s data. &#039;Step 2.&#039; would mean that the /users/:id/edit &#039;s view is common to all Apps. If we wanted App1 and App2 to  have a different design to show / edit the user profile I&#039;m guessing that &#039;Step 2.&#039; would not achieve that, am I right?]]></description>
		<content:encoded><![CDATA[<p>Thanks for your quick reply, it makes more sense now and SSO enables a seamless access to the UserManager&#8217;s data. &#8216;Step 2.&#8217; would mean that the /users/:id/edit &#8216;s view is common to all Apps. If we wanted App1 and App2 to  have a different design to show / edit the user profile I&#8217;m guessing that &#8216;Step 2.&#8217; would not achieve that, am I right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple Applications with Devise, Omniauth and Single Sign On by Gautam Rege</title>
		<link>http://blog.joshsoftware.com/2010/12/16/multiple-applications-with-devise-omniauth-and-single-sign-on/#comment-4126</link>
		<dc:creator><![CDATA[Gautam Rege]]></dc:creator>
		<pubDate>Fri, 17 Feb 2012 05:55:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshsoftware.com/?p=669#comment-4126</guid>
		<description><![CDATA[@Bastien,  If you synchronize data across your apps, you would end up with some crazy amount of complexity. The User model should *always* reside on the UserManager (I am guessing this is the omniauth provider for App1 and App2). In case you need to show / edit the user details, you can do this: 

1. Post-authentication, you send the user.json request (as it shows in the sample app) and return the current details of the user - cache this information and show it in App1 or App2. 

2.  When you want to edit a user, simply redirect the user to /users/:id/edit Since there is SSO in place, you can easily move between applications and you can set a return_url in the session if required. ]]></description>
		<content:encoded><![CDATA[<p>@Bastien,  If you synchronize data across your apps, you would end up with some crazy amount of complexity. The User model should *always* reside on the UserManager (I am guessing this is the omniauth provider for App1 and App2). In case you need to show / edit the user details, you can do this: </p>
<p>1. Post-authentication, you send the user.json request (as it shows in the sample app) and return the current details of the user &#8211; cache this information and show it in App1 or App2. </p>
<p>2.  When you want to edit a user, simply redirect the user to /users/:id/edit Since there is SSO in place, you can easily move between applications and you can set a return_url in the session if required. </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on filter.js &#8211; Client side search filtering using JSON and jQuery by Seb</title>
		<link>http://blog.joshsoftware.com/2011/09/28/filter-js-client-side-search-filtering-using-json-and-jquery/#comment-4125</link>
		<dc:creator><![CDATA[Seb]]></dc:creator>
		<pubDate>Thu, 16 Feb 2012 22:44:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshsoftware.com/?p=1087#comment-4125</guid>
		<description><![CDATA[Thanks for your quick reply and help!

I know how to filter by link with an amount like 30-50, but can I also string together different single values or ranges? Like &quot;30-50&quot;+&quot;green&quot;+&quot;c&quot; to give users a number of filter presets?

Best regards,

Sebastian]]></description>
		<content:encoded><![CDATA[<p>Thanks for your quick reply and help!</p>
<p>I know how to filter by link with an amount like 30-50, but can I also string together different single values or ranges? Like &#8220;30-50&#8243;+&#8221;green&#8221;+&#8221;c&#8221; to give users a number of filter presets?</p>
<p>Best regards,</p>
<p>Sebastian</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple Applications with Devise, Omniauth and Single Sign On by Bastien</title>
		<link>http://blog.joshsoftware.com/2010/12/16/multiple-applications-with-devise-omniauth-and-single-sign-on/#comment-4124</link>
		<dc:creator><![CDATA[Bastien]]></dc:creator>
		<pubDate>Thu, 16 Feb 2012 18:06:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshsoftware.com/?p=669#comment-4124</guid>
		<description><![CDATA[Hi Gautam,
First thanks for this great explanations, it helped me a lot figuring out the right set up for my auth system! I have one question in my mind for which I can&#039;t find a good answer ; let&#039;s say App1 and App2 need to access the UserManager&#039;s User model to display &amp; edit the current_user profile (first_name, last_name...), how would you implement such interaction? (JSON API, synchronisation of the User model in AppX and UserManager, user profile&#039;s page hosted on the UserManager...) Again thank you very much!]]></description>
		<content:encoded><![CDATA[<p>Hi Gautam,<br />
First thanks for this great explanations, it helped me a lot figuring out the right set up for my auth system! I have one question in my mind for which I can&#8217;t find a good answer ; let&#8217;s say App1 and App2 need to access the UserManager&#8217;s User model to display &amp; edit the current_user profile (first_name, last_name&#8230;), how would you implement such interaction? (JSON API, synchronisation of the User model in AppX and UserManager, user profile&#8217;s page hosted on the UserManager&#8230;) Again thank you very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on filter.js &#8211; Client side search filtering using JSON and jQuery by jiren</title>
		<link>http://blog.joshsoftware.com/2011/09/28/filter-js-client-side-search-filtering-using-json-and-jquery/#comment-4120</link>
		<dc:creator><![CDATA[jiren]]></dc:creator>
		<pubDate>Thu, 16 Feb 2012 12:48:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshsoftware.com/?p=1087#comment-4120</guid>
		<description><![CDATA[Yes,  you can set link input like(ref: examples/filterjs.html and examples/filterjs.js )

&lt;code&gt; &lt;a id=&quot;filter_by_link&quot; href=&quot;#&quot; data-value=&quot;50&quot; data-target=&#039;#link_filter&#039;&gt;Price: 50 &lt;/a&gt;
 &lt;input type=&quot;hidden&quot; id=&quot;link_filter&quot; value=&quot;50&quot; /&gt;
&lt;/code&gt;
 
 Set the &#039;filter_criteria&#039;: 
 &lt;code&gt;link_filter: [&#039;#link_filter .EVENT.change .SELECT.:input&#039;, &#039;amount&#039;]&lt;/code&gt;

To set  corresponding checkboxes you have to implement code in the click event.
&lt;code&gt;$(&#039;#filter_by_link&#039;).click(function(e){
       fJS.filter();
      // corresponding checkbox  selection implementation
});&lt;/code&gt;

For second point you can set  &#039;and_filter_on: false&#039; in filter criteria 
but  implemented  &#039;and&#039; - &#039;or&#039;  filter function is not working correctly , I am working on it.
On complete i will let you know.]]></description>
		<content:encoded><![CDATA[<p>Yes,  you can set link input like(ref: examples/filterjs.html and examples/filterjs.js )</p>
<p><code> &lt;a id="filter_by_link" href="#" data-value="50" data-target='#link_filter'&gt;Price: 50 &lt;/a&gt;<br />
 &lt;input type="hidden" id="link_filter" value="50" /&gt;<br />
</code></p>
<p> Set the &#8216;filter_criteria&#8217;:<br />
 <code>link_filter: ['#link_filter .EVENT.change .SELECT.:input', 'amount']</code></p>
<p>To set  corresponding checkboxes you have to implement code in the click event.<br />
<code>$('#filter_by_link').click(function(e){<br />
       fJS.filter();<br />
      // corresponding checkbox  selection implementation<br />
});</code></p>
<p>For second point you can set  &#8216;and_filter_on: false&#8217; in filter criteria<br />
but  implemented  &#8216;and&#8217; &#8211; &#8216;or&#8217;  filter function is not working correctly , I am working on it.<br />
On complete i will let you know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on filter.js &#8211; Client side search filtering using JSON and jQuery by Seb</title>
		<link>http://blog.joshsoftware.com/2011/09/28/filter-js-client-side-search-filtering-using-json-and-jquery/#comment-4119</link>
		<dc:creator><![CDATA[Seb]]></dc:creator>
		<pubDate>Wed, 15 Feb 2012 18:51:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshsoftware.com/?p=1087#comment-4119</guid>
		<description><![CDATA[Thank you for your great work!

Two questions: 
- Is it possible to string together single values for link filtering? Like for example 31 and 34? (and  
  maybe have it also check the corresponding checkboxes?)
- Can I change the filter behaviour, so that all results are shown if no boxes are checked?

Any help would be greatly appreciated!

Thanks again,
Sebastian]]></description>
		<content:encoded><![CDATA[<p>Thank you for your great work!</p>
<p>Two questions:<br />
- Is it possible to string together single values for link filtering? Like for example 31 and 34? (and<br />
  maybe have it also check the corresponding checkboxes?)<br />
- Can I change the filter behaviour, so that all results are shown if no boxes are checked?</p>
<p>Any help would be greatly appreciated!</p>
<p>Thanks again,<br />
Sebastian</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Designing Rails API using Rabl and Devise by sunny</title>
		<link>http://blog.joshsoftware.com/2011/12/23/designing-rails-api-using-rabl-and-devise/#comment-4111</link>
		<dc:creator><![CDATA[sunny]]></dc:creator>
		<pubDate>Tue, 14 Feb 2012 05:32:56 +0000</pubDate>
		<guid isPermaLink="false">http://joshsoftware.wordpress.com/?p=1304#comment-4111</guid>
		<description><![CDATA[Good Tutorials..]]></description>
		<content:encoded><![CDATA[<p>Good Tutorials..</p>
]]></content:encoded>
	</item>
</channel>
</rss>

