<?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 chirale</title>
	<atom:link href="http://chirale.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://chirale.wordpress.com</link>
	<description>watashi no yume...</description>
	<pubDate>Sun, 20 Jul 2008 02:23:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>Comment on Improve Drupal performance by Nguyen</title>
		<link>http://chirale.wordpress.com/2008/02/06/improve-drupal-performance/#comment-132</link>
		<dc:creator>Nguyen</dc:creator>
		<pubDate>Sat, 12 Jul 2008 16:04:24 +0000</pubDate>
		<guid isPermaLink="false">http://chirale.wordpress.com/?p=37#comment-132</guid>
		<description>Thank you very much, I have just applied at my website. 

Data Savings: 75.86%</description>
		<content:encoded><![CDATA[<p>Thank you very much, I have just applied at my website. </p>
<p>Data Savings: 75.86%</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VirtualBox OSE Debian install howto by hildebrand</title>
		<link>http://chirale.wordpress.com/2007/12/23/virtualbox-ose-debian-install-howto/#comment-127</link>
		<dc:creator>hildebrand</dc:creator>
		<pubDate>Fri, 04 Jul 2008 10:51:49 +0000</pubDate>
		<guid isPermaLink="false">http://chirale.wordpress.com/2007/12/23/virtualbox-ose-debian-install-howto/#comment-127</guid>
		<description>Thanks for the excellent instructions. I had independently tried but had some problems with the module. (Virtualbox didn't seem happy with it. Was asking for some recompilation). After running the module-assistant bit it started working. 

As for badiane's query when you login the user settings get updated and are fixed for the session. Since you have made a change to the setting you need to logout and login so that the changes get into use.
There must be a login script which is run for doing this.</description>
		<content:encoded><![CDATA[<p>Thanks for the excellent instructions. I had independently tried but had some problems with the module. (Virtualbox didn&#8217;t seem happy with it. Was asking for some recompilation). After running the module-assistant bit it started working. </p>
<p>As for badiane&#8217;s query when you login the user settings get updated and are fixed for the session. Since you have made a change to the setting you need to logout and login so that the changes get into use.<br />
There must be a login script which is run for doing this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VirtualBox OSE Debian install howto by Utilizzare VirtualBox su Ubuntu 8.04 at &#8230;DaveSpace:</title>
		<link>http://chirale.wordpress.com/2007/12/23/virtualbox-ose-debian-install-howto/#comment-126</link>
		<dc:creator>Utilizzare VirtualBox su Ubuntu 8.04 at &#8230;DaveSpace:</dc:creator>
		<pubDate>Thu, 03 Jul 2008 09:04:37 +0000</pubDate>
		<guid isPermaLink="false">http://chirale.wordpress.com/2007/12/23/virtualbox-ose-debian-install-howto/#comment-126</guid>
		<description>[...] cito le due fonti che mi sono servite per l&#8217;installazion: Chirale Blog, Ubuntu-Unleashed. Il primo propone l&#8217;installazione per Debian con tecnologia AMD K7, il [...]</description>
		<content:encoded><![CDATA[<p>[...] cito le due fonti che mi sono servite per l&#8217;installazion: Chirale Blog, Ubuntu-Unleashed. Il primo propone l&#8217;installazione per Debian con tecnologia AMD K7, il [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Customize links menu in Drupal by Diego Cortassa</title>
		<link>http://chirale.wordpress.com/2008/02/29/customize-links-menu-in-drupal/#comment-121</link>
		<dc:creator>Diego Cortassa</dc:creator>
		<pubDate>Fri, 27 Jun 2008 01:05:24 +0000</pubDate>
		<guid isPermaLink="false">http://chirale.wordpress.com/?p=48#comment-121</guid>
		<description>Thanks, Great tip!
I'm using this technique in a site I'm developing on Drupal5.

I found a simple way to change image depending on the active link too, here is a piece of my code form "theme_primarylinks" function (I ave a PrimaryLink folder in my images in there I have a menuname.png image and a menunameActive.png image):

---------------------------------------------
      // Initialize fragment and query variables.
      $link['query'] = isset($link['query']) ? $link['query'] : NULL;
      $link['fragment'] = isset($link['fragment']) ? $link['fragment'] : NULL;

      if (isset($link['href'])) {
        $linkactive = "";
        // should this button be active?
        if(substr($link['attributes']['class'], -6) == "active" ) { $linkactive = "Active";}
        // if an active image exixts use it!
        if(file_exists("/opt/lampp/htdocs/" . path_to_subtheme() . "/images/PrimaryLinks/" . $link['title'] . $linkactive . ".png")) {

        $output .= l("",
                     $link['href'], $link['attributes'], $link['query'], $link['fragment'], FALSE, $html = TRUE);


        }
        else {
          $output .= l($link['title'], $link['href'], $link['attributes'], $link['query'], $link['fragment'], FALSE, $html);
        }
      }
...
-------------------------------------------------------------</description>
		<content:encoded><![CDATA[<p>Thanks, Great tip!<br />
I&#8217;m using this technique in a site I&#8217;m developing on Drupal5.</p>
<p>I found a simple way to change image depending on the active link too, here is a piece of my code form &#8220;theme_primarylinks&#8221; function (I ave a PrimaryLink folder in my images in there I have a menuname.png image and a menunameActive.png image):</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
      // Initialize fragment and query variables.<br />
      $link['query'] = isset($link['query']) ? $link['query'] : NULL;<br />
      $link['fragment'] = isset($link['fragment']) ? $link['fragment'] : NULL;</p>
<p>      if (isset($link['href'])) {<br />
        $linkactive = &#8220;&#8221;;<br />
        // should this button be active?<br />
        if(substr($link['attributes']['class'], -6) == &#8220;active&#8221; ) { $linkactive = &#8220;Active&#8221;;}<br />
        // if an active image exixts use it!<br />
        if(file_exists(&#8221;/opt/lampp/htdocs/&#8221; . path_to_subtheme() . &#8220;/images/PrimaryLinks/&#8221; . $link['title'] . $linkactive . &#8220;.png&#8221;)) {</p>
<p>        $output .= l(&#8221;",<br />
                     $link['href'], $link['attributes'], $link['query'], $link['fragment'], FALSE, $html = TRUE);</p>
<p>        }<br />
        else {<br />
          $output .= l($link['title'], $link['href'], $link['attributes'], $link['query'], $link['fragment'], FALSE, $html);<br />
        }<br />
      }<br />
&#8230;<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Customize links menu in Drupal by Marco</title>
		<link>http://chirale.wordpress.com/2008/02/29/customize-links-menu-in-drupal/#comment-120</link>
		<dc:creator>Marco</dc:creator>
		<pubDate>Wed, 25 Jun 2008 14:15:50 +0000</pubDate>
		<guid isPermaLink="false">http://chirale.wordpress.com/?p=48#comment-120</guid>
		<description>Thanks, mate!
That really helped me out! =)</description>
		<content:encoded><![CDATA[<p>Thanks, mate!<br />
That really helped me out! =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PDF cover thumbnails for attached files by neko</title>
		<link>http://chirale.wordpress.com/2008/06/06/pdf-cover-thumbnails-for-attached-files/#comment-114</link>
		<dc:creator>neko</dc:creator>
		<pubDate>Wed, 18 Jun 2008 15:06:54 +0000</pubDate>
		<guid isPermaLink="false">http://chirale.wordpress.com/?p=71#comment-114</guid>
		<description>Grazie, appena avrò finito la ristrutturazione del blog  ti aggiungerò anche io nella sezione apposita.</description>
		<content:encoded><![CDATA[<p>Grazie, appena avrò finito la ristrutturazione del blog  ti aggiungerò anche io nella sezione apposita.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PDF cover thumbnails for attached files by chirale</title>
		<link>http://chirale.wordpress.com/2008/06/06/pdf-cover-thumbnails-for-attached-files/#comment-113</link>
		<dc:creator>chirale</dc:creator>
		<pubDate>Tue, 17 Jun 2008 20:59:56 +0000</pubDate>
		<guid isPermaLink="false">http://chirale.wordpress.com/?p=71#comment-113</guid>
		<description>Sul serio, è un buon metodo. Poi nei post privati ci puoi mettere anche la lista della spesa. Intanto ti ho aggiunto al blogroll.</description>
		<content:encoded><![CDATA[<p>Sul serio, è un buon metodo. Poi nei post privati ci puoi mettere anche la lista della spesa. Intanto ti ho aggiunto al blogroll.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PDF cover thumbnails for attached files by neko</title>
		<link>http://chirale.wordpress.com/2008/06/06/pdf-cover-thumbnails-for-attached-files/#comment-112</link>
		<dc:creator>neko</dc:creator>
		<pubDate>Tue, 17 Jun 2008 14:56:36 +0000</pubDate>
		<guid isPermaLink="false">http://chirale.wordpress.com/?p=71#comment-112</guid>
		<description>Hai appena inventato il blog-it (blog+post-it).</description>
		<content:encoded><![CDATA[<p>Hai appena inventato il blog-it (blog+post-it).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Make JCarousel and Contemplate work together by chirale</title>
		<link>http://chirale.wordpress.com/2008/01/13/make-jcarousel-and-contemplate-work-together/#comment-111</link>
		<dc:creator>chirale</dc:creator>
		<pubDate>Mon, 16 Jun 2008 20:21:36 +0000</pubDate>
		<guid isPermaLink="false">http://chirale.wordpress.com/2008/01/13/make-jcarousel-and-contemplate-work-together/#comment-111</guid>
		<description>Hi drop, screenshot sample is taken from an early version of &lt;a href="http://www.animemex.com/it/anime/66.html&#38;distyle=Carousel" rel="nofollow"&gt;Fantastic Children&lt;/a&gt; on Animemex.com. 

Here other samples:

&lt;a href="http://www.animemex.com/it/anime/199.html&#38;distyle=Carousel" rel="nofollow"&gt;Infinite Ryvius&lt;/a&gt;
&lt;a href="http://www.animemex.com/it/anime/82.html&#38;distyle=Carousel" rel="nofollow"&gt;Uchuu no Stellvia&lt;/a&gt;
&lt;a href="http://www.animemex.com/it/anime/223.html&#38;distyle=Carousel" rel="nofollow"&gt;Toward the Terra&lt;/a&gt;


But you can found other examples by adding "&#38;distyle=Carousel" to any anime listed on the site. I make this workaround just now to show you a live Drupal jCarousel, officially to change characters visualization you must register and change one setting on your profile page. ;-)

Bye.</description>
		<content:encoded><![CDATA[<p>Hi drop, screenshot sample is taken from an early version of <a href="http://www.animemex.com/it/anime/66.html&amp;distyle=Carousel" rel="nofollow">Fantastic Children</a> on Animemex.com. </p>
<p>Here other samples:</p>
<p><a href="http://www.animemex.com/it/anime/199.html&amp;distyle=Carousel" rel="nofollow">Infinite Ryvius</a><br />
<a href="http://www.animemex.com/it/anime/82.html&amp;distyle=Carousel" rel="nofollow">Uchuu no Stellvia</a><br />
<a href="http://www.animemex.com/it/anime/223.html&amp;distyle=Carousel" rel="nofollow">Toward the Terra</a></p>
<p>But you can found other examples by adding &#8220;&amp;distyle=Carousel&#8221; to any anime listed on the site. I make this workaround just now to show you a live Drupal jCarousel, officially to change characters visualization you must register and change one setting on your profile page. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Bye.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PDF cover thumbnails for attached files by chirale</title>
		<link>http://chirale.wordpress.com/2008/06/06/pdf-cover-thumbnails-for-attached-files/#comment-110</link>
		<dc:creator>chirale</dc:creator>
		<pubDate>Mon, 16 Jun 2008 19:19:36 +0000</pubDate>
		<guid isPermaLink="false">http://chirale.wordpress.com/?p=71#comment-110</guid>
		<description>Temo che il mio sia un'inglese un po' maccheronico, ma ti ringrazio per la comprensione e per la visita. :-) Questo spazio lo uso proprio come intendevo consigliarti di usare il tuo, come backup della memoria a breve termine. Meglio dei fogliettini che lasciavo in giro per casa prima, comunque. :-D</description>
		<content:encoded><![CDATA[<p>Temo che il mio sia un&#8217;inglese un po&#8217; maccheronico, ma ti ringrazio per la comprensione e per la visita. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> Questo spazio lo uso proprio come intendevo consigliarti di usare il tuo, come backup della memoria a breve termine. Meglio dei fogliettini che lasciavo in giro per casa prima, comunque. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>
