<?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/"
		>
<channel>
	<title>Comments on: declarative_authorization 0.4</title>
	<atom:link href="http://steffenbartsch.com/blog/2009/11/declarative_authorization-0-4/feed/" rel="self" type="application/rss+xml" />
	<link>http://steffenbartsch.com/blog/2009/11/declarative_authorization-0-4/</link>
	<description>Security, Usability, Rails</description>
	<lastBuildDate>Wed, 26 May 2010 13:12:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Steffen Bartsch</title>
		<link>http://steffenbartsch.com/blog/2009/11/declarative_authorization-0-4/comment-page-1/#comment-4807</link>
		<dc:creator>Steffen Bartsch</dc:creator>
		<pubDate>Thu, 15 Apr 2010 07:28:48 +0000</pubDate>
		<guid isPermaLink="false">http://steffenbartsch.com/blog/?p=139#comment-4807</guid>
		<description>You are right.  Now it&#039;s correct.</description>
		<content:encoded><![CDATA[<p>You are right.  Now it&#8217;s correct.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Schick</title>
		<link>http://steffenbartsch.com/blog/2009/11/declarative_authorization-0-4/comment-page-1/#comment-4805</link>
		<dc:creator>Matt Schick</dc:creator>
		<pubDate>Thu, 15 Apr 2010 02:11:33 +0000</pubDate>
		<guid isPermaLink="false">http://steffenbartsch.com/blog/?p=139#comment-4805</guid>
		<description>Not to nitpick, but you&#039;re missing a closing curly brace in your first example for your improved DSL, it should be as follows:

has_permission_on :companies, :to =&gt; :read do
  if_attribute :branches =&gt; { 
      :manager =&gt; { :last_name =&gt; is { user.last_name } } }
  if_permitted_to :read, :branches
end</description>
		<content:encoded><![CDATA[<p>Not to nitpick, but you&#8217;re missing a closing curly brace in your first example for your improved DSL, it should be as follows:</p>
<p>has_permission_on :companies, :to =&gt; :read do<br />
  if_attribute :branches =&gt; {<br />
      :manager =&gt; { :last_name =&gt; is { user.last_name } } }<br />
  if_permitted_to :read, :branches<br />
end</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steffen Bartsch</title>
		<link>http://steffenbartsch.com/blog/2009/11/declarative_authorization-0-4/comment-page-1/#comment-3723</link>
		<dc:creator>Steffen Bartsch</dc:creator>
		<pubDate>Thu, 31 Dec 2009 09:32:44 +0000</pubDate>
		<guid isPermaLink="false">http://steffenbartsch.com/blog/?p=139#comment-3723</guid>
		<description>For usage questions, please turn to the mailing list http://groups.google.com/group/declarative_authorization/

Actually, this should just work. Maybe you have an error elsewhere in your code.</description>
		<content:encoded><![CDATA[<p>For usage questions, please turn to the mailing list <a href="http://groups.google.com/group/declarative_authorization/" rel="nofollow">http://groups.google.com/group/declarative_authorization/</a></p>
<p>Actually, this should just work. Maybe you have an error elsewhere in your code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: john</title>
		<link>http://steffenbartsch.com/blog/2009/11/declarative_authorization-0-4/comment-page-1/#comment-3720</link>
		<dc:creator>john</dc:creator>
		<pubDate>Thu, 31 Dec 2009 02:58:49 +0000</pubDate>
		<guid isPermaLink="false">http://steffenbartsch.com/blog/?p=139#comment-3720</guid>
		<description>How to set permission for a custom method?
has_permission_on :foos, :to =&gt; :ownmethod doesnt work (is blocked by default) :/</description>
		<content:encoded><![CDATA[<p>How to set permission for a custom method?<br />
has_permission_on :foos, :to =&gt; :ownmethod doesnt work (is blocked by default) :/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Austin Ginder</title>
		<link>http://steffenbartsch.com/blog/2009/11/declarative_authorization-0-4/comment-page-1/#comment-3523</link>
		<dc:creator>Austin Ginder</dc:creator>
		<pubDate>Fri, 27 Nov 2009 21:21:27 +0000</pubDate>
		<guid isPermaLink="false">http://steffenbartsch.com/blog/?p=139#comment-3523</guid>
		<description>my last comment got messed up, not sure how. Just to clarify I did figure it out then.</description>
		<content:encoded><![CDATA[<p>my last comment got messed up, not sure how. Just to clarify I did figure it out then.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Austin Ginder</title>
		<link>http://steffenbartsch.com/blog/2009/11/declarative_authorization-0-4/comment-page-1/#comment-3522</link>
		<dc:creator>Austin Ginder</dc:creator>
		<pubDate>Fri, 27 Nov 2009 16:17:10 +0000</pubDate>
		<guid isPermaLink="false">http://steffenbartsch.com/blog/?p=139#comment-3522</guid>
		<description>I found the namespace documentation a little hard to follow. It would be nice if the documentation said something like.

Given the following Controller:
class SubscriptionAdmin::AccountsController  [:index, :show, :new, :create, :edit, :update, :destroy]
  end
    
end</description>
		<content:encoded><![CDATA[<p>I found the namespace documentation a little hard to follow. It would be nice if the documentation said something like.</p>
<p>Given the following Controller:<br />
class SubscriptionAdmin::AccountsController  [:index, :show, :new, :create, :edit, :update, :destroy]<br />
  end</p>
<p>end</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://steffenbartsch.com/blog/2009/11/declarative_authorization-0-4/comment-page-1/#comment-3515</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 24 Nov 2009 01:43:43 +0000</pubDate>
		<guid isPermaLink="false">http://steffenbartsch.com/blog/?p=139#comment-3515</guid>
		<description>Hi there.  I&#039;m just learning rails and I&#039;m looking for authorization solutions.  This one looks really interesting, but your github links are all giving me 404.. oops never mind looks like github is having issues in general :)
OK I&#039;ll keep my eye on this an hope to learn more soon!
Thanks!</description>
		<content:encoded><![CDATA[<p>Hi there.  I&#8217;m just learning rails and I&#8217;m looking for authorization solutions.  This one looks really interesting, but your github links are all giving me 404.. oops never mind looks like github is having issues in general :)<br />
OK I&#8217;ll keep my eye on this an hope to learn more soon!<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Priit</title>
		<link>http://steffenbartsch.com/blog/2009/11/declarative_authorization-0-4/comment-page-1/#comment-3503</link>
		<dc:creator>Priit</dc:creator>
		<pubDate>Thu, 19 Nov 2009 07:18:03 +0000</pubDate>
		<guid isPermaLink="false">http://steffenbartsch.com/blog/?p=139#comment-3503</guid>
		<description>Thanks for the update, just let you know that declarative authorization is the best one out there imho. In long run it&#039;s really much easier to manage rules in one place than searching around code. Cheers!</description>
		<content:encoded><![CDATA[<p>Thanks for the update, just let you know that declarative authorization is the best one out there imho. In long run it&#8217;s really much easier to manage rules in one place than searching around code. Cheers!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
