<?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 BarneyBlog</title>
	<atom:link href="http://www.barneyb.com/barneyblog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.barneyb.com/barneyblog</link>
	<description>Thoughts, rants, and even some code from the mind of Barney Boisvert.</description>
	<lastBuildDate>Thu, 11 Sep 2014 09:58:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on cfusion_encrypt/cfusion_decrypt UDFs by Ewert</title>
		<link>https://www.barneyb.com/barneyblog/2005/10/28/cfusion_encryptcfusion_decrypt-udfs/comment-page-1/#comment-581518</link>
		<dc:creator>Ewert</dc:creator>
		<pubDate>Thu, 11 Sep 2014 09:58:12 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=129#comment-581518</guid>
		<description>Thanks a lot this helped me in my pursuit to develop a C# equivalent to cfusion_encrypt. :)</description>
		<content:encoded><![CDATA[<p>Thanks a lot this helped me in my pursuit to develop a C# equivalent to cfusion_encrypt. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Don&#039;t Forget Inverse=&quot;true&quot;! by Pritesh</title>
		<link>https://www.barneyb.com/barneyblog/2010/04/09/dont-forget-inverse-true/comment-page-1/#comment-536111</link>
		<dc:creator>Pritesh</dc:creator>
		<pubDate>Wed, 18 Jun 2014 14:52:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/?p=1473#comment-536111</guid>
		<description>Detail explanation. Thanks for your all effort.</description>
		<content:encoded><![CDATA[<p>Detail explanation. Thanks for your all effort.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on cfusion_encrypt/cfusion_decrypt UDFs by Gordon Frobenius</title>
		<link>https://www.barneyb.com/barneyblog/2005/10/28/cfusion_encryptcfusion_decrypt-udfs/comment-page-1/#comment-526753</link>
		<dc:creator>Gordon Frobenius</dc:creator>
		<pubDate>Thu, 29 May 2014 21:51:15 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=129#comment-526753</guid>
		<description>Thanks!  This came in handy now that these functions have been removed from ColdFusion 11.  But in order to keep the results IDENTICAL I added UCASE() to the cfreturn in fusion_encrypt.  I did a test of looping 10,000 times, creating a new UUID each iteration and sending that UUID into your function and the native one.  All 10,000 matched.  Good enough for me.  UUIDs only use alphanumerics so I&#039;ll test later using other special characters.  Thanks again.</description>
		<content:encoded><![CDATA[<p>Thanks!  This came in handy now that these functions have been removed from ColdFusion 11.  But in order to keep the results IDENTICAL I added UCASE() to the cfreturn in fusion_encrypt.  I did a test of looping 10,000 times, creating a new UUID each iteration and sending that UUID into your function and the native one.  All 10,000 matched.  Good enough for me.  UUIDs only use alphanumerics so I'll test later using other special characters.  Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Read-Only and Read-Write SVN Repositories by Matteo</title>
		<link>https://www.barneyb.com/barneyblog/2008/02/28/read-only-and-read-write-svn-repositories/comment-page-1/#comment-521883</link>
		<dc:creator>Matteo</dc:creator>
		<pubDate>Thu, 22 May 2014 08:53:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/2008/02/28/read-only-and-read-write-svn-repositories/#comment-521883</guid>
		<description>The problem is that if I do a chekcout of the anonymous-enabled subpath &quot;public&quot;as follows:
svn co https://repo_url/public
Apache always ask for a username and password</description>
		<content:encoded><![CDATA[<p>The problem is that if I do a chekcout of the anonymous-enabled subpath "public"as follows:<br />
svn co <a href="https://repo_url/public" rel="nofollow">https://repo_url/public</a><br />
Apache always ask for a username and password</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Read-Only and Read-Write SVN Repositories by Matteo</title>
		<link>https://www.barneyb.com/barneyblog/2008/02/28/read-only-and-read-write-svn-repositories/comment-page-1/#comment-521882</link>
		<dc:creator>Matteo</dc:creator>
		<pubDate>Thu, 22 May 2014 08:49:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/2008/02/28/read-only-and-read-write-svn-repositories/#comment-521882</guid>
		<description>Hi Barney,
I need exaclty what you explained in this post: a repo with RW acces to authenticated users, but with a subpath with anonymous readonly access. So i configured apache as you suggested:

  
   ...
   # Authorization
    AuthzSVNAccessFile my_auth_file
    Satisfy any
    Require valid-user
  

And the authz file is as follows
  [repo:/]
  matteo = rw
  [repo:/public]
  * = r
  mbrunettini = rw

But it does not work on subversion 1.6.17
Where Am I wrong?
Thanks for you help.
Matteo</description>
		<content:encoded><![CDATA[<p>Hi Barney,<br />
I need exaclty what you explained in this post: a repo with RW acces to authenticated users, but with a subpath with anonymous readonly access. So i configured apache as you suggested:</p>
<p>   &#8230;<br />
   # Authorization<br />
    AuthzSVNAccessFile my_auth_file<br />
    Satisfy any<br />
    Require valid-user</p>
<p>And the authz file is as follows<br />
  [repo:/]<br />
  matteo = rw<br />
  [repo:/public]<br />
  * = r<br />
  mbrunettini = rw</p>
<p>But it does not work on subversion 1.6.17<br />
Where Am I wrong?<br />
Thanks for you help.<br />
Matteo</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remote Diff by Bhargav Kesavan</title>
		<link>https://www.barneyb.com/barneyblog/2005/09/20/remote-diff/comment-page-1/#comment-462635</link>
		<dc:creator>Bhargav Kesavan</dc:creator>
		<pubDate>Fri, 31 Jan 2014 11:01:52 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=120#comment-462635</guid>
		<description>I think the brackets didn&#039;t show up in my previous comment.

It&#039;s like this

rsync -nr remote_server:/home/bkesavan/test/ Local_server_dir_path</description>
		<content:encoded><![CDATA[<p>I think the brackets didn't show up in my previous comment.</p>
<p>It's like this</p>
<p>rsync -nr remote_server:/home/bkesavan/test/ Local_server_dir_path</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remote Diff by Bhargav Kesavan</title>
		<link>https://www.barneyb.com/barneyblog/2005/09/20/remote-diff/comment-page-1/#comment-462634</link>
		<dc:creator>Bhargav Kesavan</dc:creator>
		<pubDate>Fri, 31 Jan 2014 11:00:39 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=120#comment-462634</guid>
		<description>Thanks for your reply Barney.

I&#039;ve tried it using rsync and it&#039;s working fine for me.

I used rsync -nr :/home/bkesavan/test/ 

Thank you.</description>
		<content:encoded><![CDATA[<p>Thanks for your reply Barney.</p>
<p>I've tried it using rsync and it's working fine for me.</p>
<p>I used rsync -nr :/home/bkesavan/test/ </p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remote Diff by barneyb</title>
		<link>https://www.barneyb.com/barneyblog/2005/09/20/remote-diff/comment-page-1/#comment-462493</link>
		<dc:creator>barneyb</dc:creator>
		<pubDate>Thu, 30 Jan 2014 19:17:08 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=120#comment-462493</guid>
		<description>Bhargav, 

The first half of your command is trying to execute a directory via SSH, which doesn&#039;t make any sense.  That&#039;s what the error message is showing.  My script used SCP to move files locally and do a local diff.  An improvement is to use a stream (as Amit suggested above), though that only allows for one remote file (not two).  A directory can&#039;t be streamed like that, however, you&#039;ll need to walk the directory and do file-by-file comparisons unless you pull the whole directory to the local machine and do a local recursive diff.

So the short answer is &quot;no, not really&quot;.</description>
		<content:encoded><![CDATA[<p>Bhargav, </p>
<p>The first half of your command is trying to execute a directory via SSH, which doesn't make any sense.  That's what the error message is showing.  My script used SCP to move files locally and do a local diff.  An improvement is to use a stream (as Amit suggested above), though that only allows for one remote file (not two).  A directory can't be streamed like that, however, you'll need to walk the directory and do file-by-file comparisons unless you pull the whole directory to the local machine and do a local recursive diff.</p>
<p>So the short answer is "no, not really".</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remote Diff by Bhargav Kesavan</title>
		<link>https://www.barneyb.com/barneyblog/2005/09/20/remote-diff/comment-page-1/#comment-462492</link>
		<dc:creator>Bhargav Kesavan</dc:creator>
		<pubDate>Thu, 30 Jan 2014 19:06:15 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=120#comment-462492</guid>
		<description>Hi,

Thanks for sharing this useful information.

I&#039;m trying to do a diff between remote servers for directories.

&lt;pre&gt;ssh  &quot;/home/bkesavan&quot; &#124; diff -S /home/bkesavan/
&lt;/pre&gt;

I&#039;ve tried multipe variables there (S,s,p,q,r) etc, but I can only see the below response
bash: /home/bkesavan: is a directory

Is it achievable through diff?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks for sharing this useful information.</p>
<p>I'm trying to do a diff between remote servers for directories.</p>
<pre>ssh  "/home/bkesavan" | diff -S /home/bkesavan/
</pre>
<p>I've tried multipe variables there (S,s,p,q,r) etc, but I can only see the below response<br />
bash: /home/bkesavan: is a directory</p>
<p>Is it achievable through diff?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Read-Only and Read-Write SVN Repositories by Karthik</title>
		<link>https://www.barneyb.com/barneyblog/2008/02/28/read-only-and-read-write-svn-repositories/comment-page-1/#comment-453599</link>
		<dc:creator>Karthik</dc:creator>
		<pubDate>Thu, 09 Jan 2014 23:07:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/2008/02/28/read-only-and-read-write-svn-repositories/#comment-453599</guid>
		<description>Barney - Thanks for your reply. I have got it working now. Yes, my repo name is all in caps (SVNCOPY) but the actual issue was that I didn&#039;t have to specify the repo name at all. Since I declared realm name as SYNCOPY, I guess it only needed to know the parent folder names at the root level. When I corrected, it started working as expected. 

Cheers,
Karthik Durairajan</description>
		<content:encoded><![CDATA[<p>Barney &#8211; Thanks for your reply. I have got it working now. Yes, my repo name is all in caps (SVNCOPY) but the actual issue was that I didn't have to specify the repo name at all. Since I declared realm name as SYNCOPY, I guess it only needed to know the parent folder names at the root level. When I corrected, it started working as expected. </p>
<p>Cheers,<br />
Karthik Durairajan</p>
]]></content:encoded>
	</item>
</channel>
</rss>
