<?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"
	>
<channel>
	<title>Comments for Ridge Solutions, Software Development and Software Engineering, Ireland.</title>
	<atom:link href="http://www.ridgesolutions.ie/index.php/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ridgesolutions.ie</link>
	<description>Engineered Software</description>
	<pubDate>Tue, 09 Mar 2010 22:24:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>Comment on Passing an argument to a Block View in Drupal 6 by Corrie Potter</title>
		<link>http://www.ridgesolutions.ie/index.php/2009/01/19/passing-an-argument-to-a-block-view-in-drupal-6/#comment-4576</link>
		<dc:creator>Corrie Potter</dc:creator>
		<pubDate>Thu, 04 Mar 2010 19:27:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.ridgesolutions.ie/?p=58#comment-4576</guid>
		<description>Great post. I have been banging my head on the ground trying to figure this out and it was something completely simple and was a simple miss read of the directions. Make sure that you DO NOT have  brackets surrounding your code. It will cause it to not work! Thanks again!</description>
		<content:encoded><![CDATA[<p>Great post. I have been banging my head on the ground trying to figure this out and it was something completely simple and was a simple miss read of the directions. Make sure that you DO NOT have  brackets surrounding your code. It will cause it to not work! Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XPath with Adobe ActionScript 3 by Keegan Street</title>
		<link>http://www.ridgesolutions.ie/index.php/2008/07/03/xpath-with-adobe-actionscript-3/#comment-4563</link>
		<dc:creator>Keegan Street</dc:creator>
		<pubDate>Mon, 01 Mar 2010 18:05:09 +0000</pubDate>
		<guid isPermaLink="false">http://ridgesolutions.ie/?p=27#comment-4563</guid>
		<description>Thanks! Had a massive headache over this today. This will be a big help.</description>
		<content:encoded><![CDATA[<p>Thanks! Had a massive headache over this today. This will be a big help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Changing the &#8216;Home&#8217; breadcrumb in Drupal 6 by Gareth S Price</title>
		<link>http://www.ridgesolutions.ie/index.php/2009/04/27/changing-the-home-breadcrumb-in-drupal-6/#comment-4372</link>
		<dc:creator>Gareth S Price</dc:creator>
		<pubDate>Sat, 30 Jan 2010 14:50:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.ridgesolutions.ie/?p=70#comment-4372</guid>
		<description>Here's what I ended up with, based on the code above:

&lt;code&gt;
function phptemplate_breadcrumb($breadcrumb) {
	if(!empty($breadcrumb)) {
		$breadcrumb[0] = l(variable_get('site_name', 'Home'), '');
	}
	return theme_breadcrumb($breadcrumb);
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Here&#8217;s what I ended up with, based on the code above:</p>
<div class="codesnip-container" >function phptemplate_breadcrumb($breadcrumb) {<br />
	if(!empty($breadcrumb)) {<br />
		$breadcrumb[0] = l(variable_get(&#8217;site_name&#8217;, &#8216;Home&#8217;), &#8221;);<br />
	}<br />
	return theme_breadcrumb($breadcrumb);<br />
}</div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passing an argument to a Block View in Drupal 6 by Batido de naranja - by victorcoder &#187; Pasar parametros a bloques de vista en Drupal</title>
		<link>http://www.ridgesolutions.ie/index.php/2009/01/19/passing-an-argument-to-a-block-view-in-drupal-6/#comment-4276</link>
		<dc:creator>Batido de naranja - by victorcoder &#187; Pasar parametros a bloques de vista en Drupal</dc:creator>
		<pubDate>Mon, 11 Jan 2010 17:47:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.ridgesolutions.ie/?p=58#comment-4276</guid>
		<description>[...] Referencias:Â http://www.ridgesolutions.ie/index.php/2009/01/19/passing-an-argument-to-a-block-view-in-drupal-6/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Referencias:Â <a href="http://www.ridgesolutions.ie/index.php/2009/01/19/passing-an-argument-to-a-block-view-in-drupal-6/" rel="nofollow">http://www.ridgesolutions.ie/index.php/2009/01/19/passing-an-argument-to-a-block-view-in-drupal-6/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passing an argument to a Block View in Drupal 6 by Chris</title>
		<link>http://www.ridgesolutions.ie/index.php/2009/01/19/passing-an-argument-to-a-block-view-in-drupal-6/#comment-3914</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Tue, 01 Dec 2009 17:44:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.ridgesolutions.ie/?p=58#comment-3914</guid>
		<description>I made a temporary solution that works for what I need but hurts a little. After incorporating your suggestions, I set the block view to show at:
exhibitors/exhibit-list
exhibitors/exhibit-list/*
Under URL aliases, I created 26 aliases (which may grow if we get exhibitors that start with numbers), like this:
node/XX
exhibitors/exhibit-list/c
That works for now, but if there's a better solution, let me know. :)</description>
		<content:encoded><![CDATA[<p>I made a temporary solution that works for what I need but hurts a little. After incorporating your suggestions, I set the block view to show at:<br />
exhibitors/exhibit-list<br />
exhibitors/exhibit-list/*<br />
Under URL aliases, I created 26 aliases (which may grow if we get exhibitors that start with numbers), like this:<br />
node/XX<br />
exhibitors/exhibit-list/c<br />
That works for now, but if there&#8217;s a better solution, let me know. <img src='http://www.ridgesolutions.ie/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passing an argument to a Block View in Drupal 6 by Chris</title>
		<link>http://www.ridgesolutions.ie/index.php/2009/01/19/passing-an-argument-to-a-block-view-in-drupal-6/#comment-3913</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Tue, 01 Dec 2009 17:14:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.ridgesolutions.ie/?p=58#comment-3913</guid>
		<description>I'm almost ready to post an 'AWESOME!' comment, but am not quite there just yet. I have a node located at exhibitors/exhibit-list that has some pdf attachments, copy, etc. (so I can't create a page view here as non-webby people maintain the content) I also have a block view assigned to the same page/path that shows a list of exhibitors, all of them to start. Now, if I enter a URL like:

exhibitors/exhibit-list/b

I get a page not found, because I'm guessing the path is different now. With some minor adjustments to the code I have everything working fine in the views preview. Arguments are being understood there thanks to your help!

Any thoughts on what I might be missing? Do I need to set up something special in pathauto? Thanks for your advise in advance! :D</description>
		<content:encoded><![CDATA[<p>I&#8217;m almost ready to post an &#8216;AWESOME!&#8217; comment, but am not quite there just yet. I have a node located at exhibitors/exhibit-list that has some pdf attachments, copy, etc. (so I can&#8217;t create a page view here as non-webby people maintain the content) I also have a block view assigned to the same page/path that shows a list of exhibitors, all of them to start. Now, if I enter a URL like:</p>
<p>exhibitors/exhibit-list/b</p>
<p>I get a page not found, because I&#8217;m guessing the path is different now. With some minor adjustments to the code I have everything working fine in the views preview. Arguments are being understood there thanks to your help!</p>
<p>Any thoughts on what I might be missing? Do I need to set up something special in pathauto? Thanks for your advise in advance! <img src='http://www.ridgesolutions.ie/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passing an argument to a Block View in Drupal 6 by Luigi</title>
		<link>http://www.ridgesolutions.ie/index.php/2009/01/19/passing-an-argument-to-a-block-view-in-drupal-6/#comment-3838</link>
		<dc:creator>Luigi</dc:creator>
		<pubDate>Mon, 23 Nov 2009 02:44:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.ridgesolutions.ie/?p=58#comment-3838</guid>
		<description>Thanks alot Kevin.</description>
		<content:encoded><![CDATA[<p>Thanks alot Kevin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passing an argument to a Block View in Drupal 6 by Chetan</title>
		<link>http://www.ridgesolutions.ie/index.php/2009/01/19/passing-an-argument-to-a-block-view-in-drupal-6/#comment-3696</link>
		<dc:creator>Chetan</dc:creator>
		<pubDate>Sat, 31 Oct 2009 15:14:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.ridgesolutions.ie/?p=58#comment-3696</guid>
		<description>Hey, Great man, you helped me out!!!

Just wanted to add some notes.
If pathauto is not there try simple one : 

$path = explode('/', $_GET['q']);
return $path[1];

and also for the folks : when you copy &#38; paste please look for the quotes, they might be rendered in differant way for i18n.

Rest is fine work! I checked it on Drupal 6 &#38; basic view.</description>
		<content:encoded><![CDATA[<p>Hey, Great man, you helped me out!!!</p>
<p>Just wanted to add some notes.<br />
If pathauto is not there try simple one : </p>
<p>$path = explode(&#8217;/', $_GET['q']);<br />
return $path[1];</p>
<p>and also for the folks : when you copy &amp; paste please look for the quotes, they might be rendered in differant way for i18n.</p>
<p>Rest is fine work! I checked it on Drupal 6 &amp; basic view.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passing an argument to a Block View in Drupal 6 by Johnathan</title>
		<link>http://www.ridgesolutions.ie/index.php/2009/01/19/passing-an-argument-to-a-block-view-in-drupal-6/#comment-3658</link>
		<dc:creator>Johnathan</dc:creator>
		<pubDate>Fri, 23 Oct 2009 18:54:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.ridgesolutions.ie/?p=58#comment-3658</guid>
		<description>I can get the block to accept the arguments, but whenever I try to use mysite.com/projects/2009 (where 2009 is the argument), I just get a 404 page.

Hasn't anybody else hit this problem?

Right now I just have the block display on every page, so even on the 404 page I see that it's accepting the arguments.

How should I implement this method without getting 404 pages?</description>
		<content:encoded><![CDATA[<p>I can get the block to accept the arguments, but whenever I try to use mysite.com/projects/2009 (where 2009 is the argument), I just get a 404 page.</p>
<p>Hasn&#8217;t anybody else hit this problem?</p>
<p>Right now I just have the block display on every page, so even on the 404 page I see that it&#8217;s accepting the arguments.</p>
<p>How should I implement this method without getting 404 pages?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passing an argument to a Block View in Drupal 6 by zaphod</title>
		<link>http://www.ridgesolutions.ie/index.php/2009/01/19/passing-an-argument-to-a-block-view-in-drupal-6/#comment-3188</link>
		<dc:creator>zaphod</dc:creator>
		<pubDate>Thu, 10 Sep 2009 14:58:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.ridgesolutions.ie/?p=58#comment-3188</guid>
		<description>Greaaaaatttt!</description>
		<content:encoded><![CDATA[<p>Greaaaaatttt!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
