<?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 All things digital</title>
	<atom:link href="http://www.allthingsdigital.nl/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.allthingsdigital.nl</link>
	<description>Thoughts about things digital</description>
	<lastBuildDate>Wed, 18 Jan 2012 20:40:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Setting up VNC desktop sharing by David van Enckevort</title>
		<link>http://www.allthingsdigital.nl/2011/02/03/setting-up-vnc-desktop-sharing/comment-page-1/#comment-138</link>
		<dc:creator>David van Enckevort</dc:creator>
		<pubDate>Wed, 18 Jan 2012 20:40:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.allthingsdigital.nl/?p=18#comment-138</guid>
		<description>If you use the built-in VNC client on the Mac to control the shared screen and you might notice that copy &amp; paste between the Mac and the shared screen isn&#039;t working. Using a different VNC client (e.g. Chicken of the VNC) will solve this.</description>
		<content:encoded><![CDATA[<p>If you use the built-in VNC client on the Mac to control the shared screen and you might notice that copy &#038; paste between the Mac and the shared screen isn&#8217;t working. Using a different VNC client (e.g. Chicken of the VNC) will solve this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a DNS redirector with Apache RewriteMaps by David van Enckevort</title>
		<link>http://www.allthingsdigital.nl/2012/01/17/create-a-dns-redirector-with-apache-rewritemaps/comment-page-1/#comment-137</link>
		<dc:creator>David van Enckevort</dc:creator>
		<pubDate>Wed, 18 Jan 2012 18:31:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.allthingsdigital.nl/?p=110#comment-137</guid>
		<description>Rob, that&#039;s true. However it is very easy to change that and add the path to the redirect by changing the RewriteRule to this:
&lt;code&gt;
RewriteRule ^/(.*) ${redirector:%{HTTP_HOST}&#124;http://www.example.com}/}$1? [R,L]
&lt;/code&gt;
The .* is a regular expression matching everything and by putting it in parenthesis you tell the rewrite engine that you want to refer to it again later. The $1 is the back reference to this.</description>
		<content:encoded><![CDATA[<p>Rob, that&#8217;s true. However it is very easy to change that and add the path to the redirect by changing the RewriteRule to this:<br />
<code><br />
RewriteRule ^/(.*) ${redirector:%{HTTP_HOST}|http://www.example.com}/}$1? [R,L]<br />
</code><br />
The .* is a regular expression matching everything and by putting it in parenthesis you tell the rewrite engine that you want to refer to it again later. The $1 is the back reference to this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a DNS redirector with Apache RewriteMaps by Rob Hooft</title>
		<link>http://www.allthingsdigital.nl/2012/01/17/create-a-dns-redirector-with-apache-rewritemaps/comment-page-1/#comment-136</link>
		<dc:creator>Rob Hooft</dc:creator>
		<pubDate>Wed, 18 Jan 2012 18:23:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.allthingsdigital.nl/?p=110#comment-136</guid>
		<description>David, the redirector you describe ignores the path completely. How would you optionally add the path to the redirect, i.e. http://bla.example.com/foo/bar redirects to http://wiki.example.com/index.php/bla/foo/bar? One may not want that option for all redirected domains, but it may sometimes be handy.</description>
		<content:encoded><![CDATA[<p>David, the redirector you describe ignores the path completely. How would you optionally add the path to the redirect, i.e. <a href="http://bla.example.com/foo/bar" rel="nofollow">http://bla.example.com/foo/bar</a> redirects to <a href="http://wiki.example.com/index.php/bla/foo/bar?" rel="nofollow">http://wiki.example.com/index.php/bla/foo/bar?</a> One may not want that option for all redirected domains, but it may sometimes be handy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Maven 3 and the versions dilemma by Werner Keil</title>
		<link>http://www.allthingsdigital.nl/2011/04/10/maven-3-and-the-versions-dilemma/comment-page-1/#comment-134</link>
		<dc:creator>Werner Keil</dc:creator>
		<pubDate>Tue, 03 Jan 2012 12:02:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.allthingsdigital.nl/?p=34#comment-134</guid>
		<description>We ran into many of these during earlier projects last year.
Right now Maven 3 seems to have solved it a bit by making module version numbers optional. So if you have a very consistent module structure, changing it in the master POM and all  entries could solve it, plus consequently using &lt;strong&gt;&lt;/strong&gt; in that master POM instead of  everywhere. 

There is an issue I just came across, that using &lt;strong&gt;${project.version}&lt;/strong&gt; in the dependencyManagement of the master POM refers to the version of the individual module, not the master, so you may end up hardcoding the numbers of each module in addition to the master&#039;s version number. Maybe there&#039;s another version number for that master, but I haven&#039;t come across many people using it yet. Other than that using dependencyManagement at least makes life much easier also regarding version numbers.</description>
		<content:encoded><![CDATA[<p>We ran into many of these during earlier projects last year.<br />
Right now Maven 3 seems to have solved it a bit by making module version numbers optional. So if you have a very consistent module structure, changing it in the master POM and all  entries could solve it, plus consequently using <strong></strong> in that master POM instead of  everywhere. </p>
<p>There is an issue I just came across, that using <strong>${project.version}</strong> in the dependencyManagement of the master POM refers to the version of the individual module, not the master, so you may end up hardcoding the numbers of each module in addition to the master&#8217;s version number. Maybe there&#8217;s another version number for that master, but I haven&#8217;t come across many people using it yet. Other than that using dependencyManagement at least makes life much easier also regarding version numbers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Configuring Red Hat Enterprise Linux 5 or CentOS 5 for IPv6 by Configuring Red Hat Enterprise Linux 5 or CentOS 5 for IPv6 &#124; All &#8230; &#124; unixsecure test</title>
		<link>http://www.allthingsdigital.nl/2011/02/27/configuring-red-hat-enterprise-linux-5-or-centos-5-for-ipv6/comment-page-1/#comment-22</link>
		<dc:creator>Configuring Red Hat Enterprise Linux 5 or CentOS 5 for IPv6 &#124; All &#8230; &#124; unixsecure test</dc:creator>
		<pubDate>Sat, 05 Mar 2011 22:06:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.allthingsdigital.nl/?p=25#comment-22</guid>
		<description>[...] Configuring Red Hat Enterprise Linux 5 or CentOS 5 for IPv6 &#124; All &#8230;   This entry was posted in Uncategorized and tagged enterprise, network, rhel, short, short-post, [...]</description>
		<content:encoded><![CDATA[<p>[...] Configuring Red Hat Enterprise Linux 5 or CentOS 5 for IPv6 | All &#8230;   This entry was posted in Uncategorized and tagged enterprise, network, rhel, short, short-post, [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

