<?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 for BlogChuck</title>
	<atom:link href="http://blogchuck.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogchuck.com</link>
	<description>how much blog can blogchuck blog</description>
	<lastBuildDate>Thu, 02 Sep 2010 18:11:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Limit Data by User with CakePHP by Chuck Burgess</title>
		<link>http://blogchuck.com/2010/06/limit-data-by-user-with-cakephp/comment-page-1/#comment-283</link>
		<dc:creator>Chuck Burgess</dc:creator>
		<pubDate>Thu, 02 Sep 2010 18:11:13 +0000</pubDate>
		<guid isPermaLink="false">http://blogchuck.com/?p=331#comment-283</guid>
		<description>That&#039;s what makes this so flexible. That is also a great approach to the situation. Glad you liked it. I will soon be putting out my custom user management app that can be put into any cakephp app. I am still fine tuning the way it works. But it is fairly comprehensive. Keep an eye on the blog, I suspect it will be out in another few weeks.</description>
		<content:encoded><![CDATA[<p>That&#8217;s what makes this so flexible. That is also a great approach to the situation. Glad you liked it. I will soon be putting out my custom user management app that can be put into any cakephp app. I am still fine tuning the way it works. But it is fairly comprehensive. Keep an eye on the blog, I suspect it will be out in another few weeks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Limit Data by User with CakePHP by jdrummey</title>
		<link>http://blogchuck.com/2010/06/limit-data-by-user-with-cakephp/comment-page-1/#comment-282</link>
		<dc:creator>jdrummey</dc:creator>
		<pubDate>Thu, 02 Sep 2010 17:44:46 +0000</pubDate>
		<guid isPermaLink="false">http://blogchuck.com/?p=331#comment-282</guid>
		<description>Thanks for writing this, I used the code almost exactly as written and it works well. 

The one change I made is that I wanted admin users to get those rights from the admin group and not from a flag in the users table. Therefore, the login code checks if  the user is in the admin group and sets an &quot;admin_flag&quot; Configure variable. Then that flag is looked for in the beforeAdminFilter() and before beforeUserFilter() functions.</description>
		<content:encoded><![CDATA[<p>Thanks for writing this, I used the code almost exactly as written and it works well. </p>
<p>The one change I made is that I wanted admin users to get those rights from the admin group and not from a flag in the users table. Therefore, the login code checks if  the user is in the admin group and sets an &#8220;admin_flag&#8221; Configure variable. Then that flag is looked for in the beforeAdminFilter() and before beforeUserFilter() functions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Limit Data by User with CakePHP by Chuck Burgess</title>
		<link>http://blogchuck.com/2010/06/limit-data-by-user-with-cakephp/comment-page-1/#comment-281</link>
		<dc:creator>Chuck Burgess</dc:creator>
		<pubDate>Thu, 12 Aug 2010 23:50:25 +0000</pubDate>
		<guid isPermaLink="false">http://blogchuck.com/?p=331#comment-281</guid>
		<description>Yes. There should be no issue with it. ACL will control what actually has rights to CRUD (and custom functions) within each controller. This only manages the data that is queried and saved. It will limit it by the user. So if ACL does not allow them access, this functionality will not even be executed. I hope that makes sense.</description>
		<content:encoded><![CDATA[<p>Yes. There should be no issue with it. ACL will control what actually has rights to CRUD (and custom functions) within each controller. This only manages the data that is queried and saved. It will limit it by the user. So if ACL does not allow them access, this functionality will not even be executed. I hope that makes sense.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Single Login For Multiple User Types with CakePHP by Kim Pomares</title>
		<link>http://blogchuck.com/2010/04/single-login-for-multiple-user-types-with-cakephp/comment-page-1/#comment-280</link>
		<dc:creator>Kim Pomares</dc:creator>
		<pubDate>Thu, 12 Aug 2010 21:21:17 +0000</pubDate>
		<guid isPermaLink="false">http://blogchuck.com/?p=326#comment-280</guid>
		<description>Got it!

$queryData[&#039;conditions&#039;][&#039;StaffMember.group_id&#039;] = ‘&gt; 5?;

becomes:

$queryData[&#039;conditions&#039;] = array(&#039;StaffMember.group_id &gt;&#039; =&gt; &#039;5&#039;);

:-)</description>
		<content:encoded><![CDATA[<p>Got it!</p>
<p>$queryData['conditions']['StaffMember.group_id'] = ‘&gt; 5?;</p>
<p>becomes:</p>
<p>$queryData['conditions'] = array(&#8216;StaffMember.group_id &gt;&#8217; =&gt; &#8217;5&#8242;);</p>
<p> <img src='http://blogchuck.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Single Login For Multiple User Types with CakePHP by Kim Pomares</title>
		<link>http://blogchuck.com/2010/04/single-login-for-multiple-user-types-with-cakephp/comment-page-1/#comment-279</link>
		<dc:creator>Kim Pomares</dc:creator>
		<pubDate>Thu, 12 Aug 2010 21:12:47 +0000</pubDate>
		<guid isPermaLink="false">http://blogchuck.com/?p=326#comment-279</guid>
		<description>So elegant!

My question: I have 4 different types of users: Guests, Members, Staff Members and System Administrators. 

In my StaffMember model, I would like my beforeFind to return Staff members and Administrators.

I amusing [&#039;group_id&#039;] instead of [&#039;type&#039;] in my table, with a groups table and the group names.

$queryData[&#039;conditions&#039;][&#039;StaffMember.group_id&#039;] = &#039;&gt; 5&#039;;

But what I get is all users who have a blank group_id.</description>
		<content:encoded><![CDATA[<p>So elegant!</p>
<p>My question: I have 4 different types of users: Guests, Members, Staff Members and System Administrators. </p>
<p>In my StaffMember model, I would like my beforeFind to return Staff members and Administrators.</p>
<p>I amusing ['group_id'] instead of ['type'] in my table, with a groups table and the group names.</p>
<p>$queryData['conditions']['StaffMember.group_id'] = &#8216;&gt; 5&#8242;;</p>
<p>But what I get is all users who have a blank group_id.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Limit Data by User with CakePHP by Kim Pomares</title>
		<link>http://blogchuck.com/2010/06/limit-data-by-user-with-cakephp/comment-page-1/#comment-278</link>
		<dc:creator>Kim Pomares</dc:creator>
		<pubDate>Thu, 12 Aug 2010 20:21:10 +0000</pubDate>
		<guid isPermaLink="false">http://blogchuck.com/?p=331#comment-278</guid>
		<description>Can this be used along with CakePHP&#039;s ACL implementation as described in their ACL tutorial.

http://book.cakephp.org/view/1543/Simple-Acl-controlled-Application</description>
		<content:encoded><![CDATA[<p>Can this be used along with CakePHP&#8217;s ACL implementation as described in their ACL tutorial.</p>
<p><a href="http://book.cakephp.org/view/1543/Simple-Acl-controlled-Application" rel="nofollow">http://book.cakephp.org/view/1543/Simple-Acl-controlled-Application</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding SVN Information to File Headers Revisited by Chuck Burgess</title>
		<link>http://blogchuck.com/2009/09/adding-svn-headers-revisited/comment-page-1/#comment-277</link>
		<dc:creator>Chuck Burgess</dc:creator>
		<pubDate>Thu, 10 Jun 2010 05:02:59 +0000</pubDate>
		<guid isPermaLink="false">http://blogchuck.com/?p=146#comment-277</guid>
		<description>I use Cornerstone for Mac and I post to the Google Code repository.</description>
		<content:encoded><![CDATA[<p>I use Cornerstone for Mac and I post to the Google Code repository.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding SVN Information to File Headers Revisited by alan75</title>
		<link>http://blogchuck.com/2009/09/adding-svn-headers-revisited/comment-page-1/#comment-276</link>
		<dc:creator>alan75</dc:creator>
		<pubDate>Wed, 09 Jun 2010 10:48:12 +0000</pubDate>
		<guid isPermaLink="false">http://blogchuck.com/?p=146#comment-276</guid>
		<description>Yes, I did both operation (commit and update). Changes for &quot;standard&quot; svn keywords are in place after &quot;commit&quot;. I did tests with 2 svn repositories:
- Collab.net (homeland for svn)
- xp-dev.com (free)

Do you remember which svn repository and client did you use exactly?</description>
		<content:encoded><![CDATA[<p>Yes, I did both operation (commit and update). Changes for &#8220;standard&#8221; svn keywords are in place after &#8220;commit&#8221;. I did tests with 2 svn repositories:<br />
- Collab.net (homeland for svn)<br />
- xp-dev.com (free)</p>
<p>Do you remember which svn repository and client did you use exactly?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding SVN Information to File Headers Revisited by Chuck Burgess</title>
		<link>http://blogchuck.com/2009/09/adding-svn-headers-revisited/comment-page-1/#comment-275</link>
		<dc:creator>Chuck Burgess</dc:creator>
		<pubDate>Wed, 09 Jun 2010 03:36:27 +0000</pubDate>
		<guid isPermaLink="false">http://blogchuck.com/?p=146#comment-275</guid>
		<description>Yes. There are only five main keywords it automatically lists for substitution when enabled. However, you can define custom substitutions.

I have been able to get this working for my repositories. Even using Google Code. Have you tried submitting and then checking the code out again (or doing an update) to see if the variables are modified?</description>
		<content:encoded><![CDATA[<p>Yes. There are only five main keywords it automatically lists for substitution when enabled. However, you can define custom substitutions.</p>
<p>I have been able to get this working for my repositories. Even using Google Code. Have you tried submitting and then checking the code out again (or doing an update) to see if the variables are modified?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding SVN Information to File Headers Revisited by alan75</title>
		<link>http://blogchuck.com/2009/09/adding-svn-headers-revisited/comment-page-1/#comment-274</link>
		<dc:creator>alan75</dc:creator>
		<pubDate>Tue, 08 Jun 2010 22:20:54 +0000</pubDate>
		<guid isPermaLink="false">http://blogchuck.com/?p=146#comment-274</guid>
		<description>I hope there is some hint for enforce SVN substitute custom property (just I really need it for my project), but in svnbook I see following information:
Subversion defines the list of keywords available for substitution. That list contains the following five keywords, some of which have aliases that you can also use:... 

&quot;five keywords&quot; - only five... hmmm</description>
		<content:encoded><![CDATA[<p>I hope there is some hint for enforce SVN substitute custom property (just I really need it for my project), but in svnbook I see following information:<br />
Subversion defines the list of keywords available for substitution. That list contains the following five keywords, some of which have aliases that you can also use:&#8230; </p>
<p>&#8220;five keywords&#8221; &#8211; only five&#8230; hmmm</p>
]]></content:encoded>
	</item>
</channel>
</rss>
