<?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 GNU/Linux distro timeline</title>
	<atom:link href="http://futurist.se/gldt/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://futurist.se/gldt</link>
	<description></description>
	<lastBuildDate>Mon, 06 Sep 2010 11:27:11 +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 On layouts and icons by jekader</title>
		<link>http://futurist.se/gldt/2010/08/20/on-layouts-and-icons/comment-page-1/#comment-152</link>
		<dc:creator>jekader</dc:creator>
		<pubDate>Mon, 06 Sep 2010 11:27:11 +0000</pubDate>
		<guid isPermaLink="false">http://futurist.se/gldt/?p=208#comment-152</guid>
		<description>The vrtical variant is very nice, but looking at it I understood that it should be turned upside down, and voila - we have &quot;debian genialogical tree&quot;, &quot;redhat tree&quot;, &quot;slackware tree&quot;, and some grass around :)</description>
		<content:encoded><![CDATA[<p>The vrtical variant is very nice, but looking at it I understood that it should be turned upside down, and voila &#8211; we have &#8220;debian genialogical tree&#8221;, &#8220;redhat tree&#8221;, &#8220;slackware tree&#8221;, and some grass around <img src='http://futurist.se/gldt/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on On layouts and icons by Andreas</title>
		<link>http://futurist.se/gldt/2010/08/20/on-layouts-and-icons/comment-page-1/#comment-139</link>
		<dc:creator>Andreas</dc:creator>
		<pubDate>Fri, 03 Sep 2010 11:09:46 +0000</pubDate>
		<guid isPermaLink="false">http://futurist.se/gldt/?p=208#comment-139</guid>
		<description>Why cc-by-sa and not gfdl?</description>
		<content:encoded><![CDATA[<p>Why cc-by-sa and not gfdl?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on On layouts and icons by 0000000000</title>
		<link>http://futurist.se/gldt/2010/08/20/on-layouts-and-icons/comment-page-1/#comment-135</link>
		<dc:creator>0000000000</dc:creator>
		<pubDate>Thu, 02 Sep 2010 06:47:07 +0000</pubDate>
		<guid isPermaLink="false">http://futurist.se/gldt/?p=208#comment-135</guid>
		<description>Why not cc-by-sa?</description>
		<content:encoded><![CDATA[<p>Why not cc-by-sa?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNU/Linux distro timeline 10.8 by Donjan</title>
		<link>http://futurist.se/gldt/2010/08/08/gnulinux-distro-timeline-10-8/comment-page-1/#comment-107</link>
		<dc:creator>Donjan</dc:creator>
		<pubDate>Fri, 20 Aug 2010 23:10:40 +0000</pubDate>
		<guid isPermaLink="false">http://futurist.se/gldt/?p=204#comment-107</guid>
		<description>Thank you for your valuable input!

I&#039;ve streamlined the &lt;a href=&quot;http://futurist.se/gldt/wp-content/uploads/build.sh&quot; rel=&quot;nofollow&quot;&gt;newest version&lt;/a&gt; of the script and hopefully caught all cases. It should handle manual and automatic installation gracefully now.</description>
		<content:encoded><![CDATA[<p>Thank you for your valuable input!</p>
<p>I&#8217;ve streamlined the <a href="http://futurist.se/gldt/wp-content/uploads/build.sh" rel="nofollow">newest version</a> of the script and hopefully caught all cases. It should handle manual and automatic installation gracefully now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNU/Linux distro timeline 10.8 by Yu-Jie Lin</title>
		<link>http://futurist.se/gldt/2010/08/08/gnulinux-distro-timeline-10-8/comment-page-1/#comment-106</link>
		<dc:creator>Yu-Jie Lin</dc:creator>
		<pubDate>Fri, 20 Aug 2010 19:38:56 +0000</pubDate>
		<guid isPermaLink="false">http://futurist.se/gldt/?p=204#comment-106</guid>
		<description>@Donjan, the new one handles better.

I have another suggest about how the build script check gnuclad. It currently find gnuclad in fixed location /usr/local/bin/gnuclad. That might not be right place for distro&#039;s official packages, or for people like me installing on my own ~/bin/gnuclad.

Here is my changes:
$ diff -u build.sh.orig build.sh
--- build.sh.orig       2010-08-21 03:32:22.000000000 +0800
+++ build.sh    2010-08-21 03:37:16.000000000 +0800
@@ -18,7 +18,6 @@
 DISTFILES=&#039;gldt.csv gldt.conf ToDo ChangeLog README LICENSE images build.sh&#039;
 
 # Path to gnuclad and optional path to Inkscape
-GC=/usr/local/bin/gnuclad
 INK=/usr/bin/inkscape
 
 #
@@ -27,7 +26,8 @@
 
 VERS=$1
 
-type -P $GC &amp;&gt;/dev/null &#124;&#124; { echo &quot;gnuclad not found: aborting&quot; &gt;&amp;2; exit 1;}
+GC=$(which gnuclad 2&gt;/dev/null)
+[ &quot;$?&quot; != &quot;0&quot; ] &amp;if [ &quot;$VERS&quot; == &quot;svg&quot; ]; then
        $GC $PROJNAME.csv svg $PROJNAME.conf
        exit 0;

It can be `type -P gnuclad` (bash builtin) instead of `which`, but it seems all scripts I have seen use `which`.</description>
		<content:encoded><![CDATA[<p>@Donjan, the new one handles better.</p>
<p>I have another suggest about how the build script check gnuclad. It currently find gnuclad in fixed location /usr/local/bin/gnuclad. That might not be right place for distro&#8217;s official packages, or for people like me installing on my own ~/bin/gnuclad.</p>
<p>Here is my changes:<br />
$ diff -u build.sh.orig build.sh<br />
&#8212; build.sh.orig       2010-08-21 03:32:22.000000000 +0800<br />
+++ build.sh    2010-08-21 03:37:16.000000000 +0800<br />
@@ -18,7 +18,6 @@<br />
 DISTFILES=&#8217;gldt.csv gldt.conf ToDo ChangeLog README LICENSE images build.sh&#8217;</p>
<p> # Path to gnuclad and optional path to Inkscape<br />
-GC=/usr/local/bin/gnuclad<br />
 INK=/usr/bin/inkscape</p>
<p> #<br />
@@ -27,7 +26,8 @@</p>
<p> VERS=$1</p>
<p>-type -P $GC &amp;&gt;/dev/null || { echo &#8220;gnuclad not found: aborting&#8221; &gt;&amp;2; exit 1;}<br />
+GC=$(which gnuclad 2&gt;/dev/null)<br />
+[ "$?" != "0" ] &amp;if [ "$VERS" == "svg" ]; then<br />
        $GC $PROJNAME.csv svg $PROJNAME.conf<br />
        exit 0;</p>
<p>It can be `type -P gnuclad` (bash builtin) instead of `which`, but it seems all scripts I have seen use `which`.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNU/Linux distro timeline 10.8 by Donjan</title>
		<link>http://futurist.se/gldt/2010/08/08/gnulinux-distro-timeline-10-8/comment-page-1/#comment-104</link>
		<dc:creator>Donjan</dc:creator>
		<pubDate>Fri, 20 Aug 2010 13:24:04 +0000</pubDate>
		<guid isPermaLink="false">http://futurist.se/gldt/?p=204#comment-104</guid>
		<description>@Yu-Jie Lin:
That&#039;s correct, we were asked not to distribute the Red Hat logo. You will find the details in images/COPYING

Here&#039;s an alternative: http://en.wikipedia.org/wiki/File:RedHat.svg,
although even the Wikipedia version can&#039;t be distributed completely freely.

I have improved the build script for the next version to handle such errors a bit better. You can already &lt;a href=&quot;http://futurist.se/gldt/wp-content/uploads/build.sh&quot; rel=&quot;nofollow&quot;&gt;download&lt;/a&gt; it.</description>
		<content:encoded><![CDATA[<p>@Yu-Jie Lin:<br />
That&#8217;s correct, we were asked not to distribute the Red Hat logo. You will find the details in images/COPYING</p>
<p>Here&#8217;s an alternative: <a href="http://en.wikipedia.org/wiki/File:RedHat.svg" rel="nofollow">http://en.wikipedia.org/wiki/File:RedHat.svg</a>,<br />
although even the Wikipedia version can&#8217;t be distributed completely freely.</p>
<p>I have improved the build script for the next version to handle such errors a bit better. You can already <a href="http://futurist.se/gldt/wp-content/uploads/build.sh" rel="nofollow">download</a> it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNU/Linux distro timeline 10.8 by Yu-Jie Lin</title>
		<link>http://futurist.se/gldt/2010/08/08/gnulinux-distro-timeline-10-8/comment-page-1/#comment-103</link>
		<dc:creator>Yu-Jie Lin</dc:creator>
		<pubDate>Fri, 20 Aug 2010 06:50:28 +0000</pubDate>
		<guid isPermaLink="false">http://futurist.se/gldt/?p=204#comment-103</guid>
		<description>I just realized what &quot;NO-INCLUDED&quot; meant. :) I removed it from CSV, the image is generated.

I guess it&#039;s about the permission of inclusion of Red Hat logo, so the file is not included.</description>
		<content:encoded><![CDATA[<p>I just realized what &#8220;NO-INCLUDED&#8221; meant. <img src='http://futurist.se/gldt/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I removed it from CSV, the image is generated.</p>
<p>I guess it&#8217;s about the permission of inclusion of Red Hat logo, so the file is not included.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNU/Linux distro timeline 10.8 by Yu-Jie Lin</title>
		<link>http://futurist.se/gldt/2010/08/08/gnulinux-distro-timeline-10-8/comment-page-1/#comment-102</link>
		<dc:creator>Yu-Jie Lin</dc:creator>
		<pubDate>Fri, 20 Aug 2010 06:19:10 +0000</pubDate>
		<guid isPermaLink="false">http://futurist.se/gldt/?p=204#comment-102</guid>
		<description>I am trying to build from the source, but I got these errors:

$ ./build.sh 
gnuclad 0.2.2: gldt.csv =&gt; gldt.svg
Computing cladogram for 280 nodes, 58 connectors and 3 domains...
Error: failed to open SVG image NOT-INCLUDED/Red_Hat_small.svg
Aborted
mv: cannot stat `gldt.svg&#039;: No such file or directory

** (inkscape:12112): CRITICAL **: Inkscape::XML::Document* sp_repr_read_file(const gchar*, const gchar*): assertion `Inkscape::IO::file_test( filename, G_FILE_TEST_EXISTS )&#039; failed

** (inkscape:12112): CRITICAL **: Inkscape::XML::Document* sp_repr_read_file(const gchar*, const gchar*): assertion `Inkscape::IO::file_test( filename, G_FILE_TEST_EXISTS )&#039; failed

** (inkscape:12112): WARNING **: Specified document gldt.svg cannot be opened (does not exist or not a valid SVG file)
Packaging...
mv: cannot stat `gldt.svg&#039;: No such file or directory
mv: cannot stat `gldt.png&#039;: No such file or directory

I only have four images in the source tarball. Are there image missing included?</description>
		<content:encoded><![CDATA[<p>I am trying to build from the source, but I got these errors:</p>
<p>$ ./build.sh<br />
gnuclad 0.2.2: gldt.csv =&gt; gldt.svg<br />
Computing cladogram for 280 nodes, 58 connectors and 3 domains&#8230;<br />
Error: failed to open SVG image NOT-INCLUDED/Red_Hat_small.svg<br />
Aborted<br />
mv: cannot stat `gldt.svg&#8217;: No such file or directory</p>
<p>** (inkscape:12112): CRITICAL **: Inkscape::XML::Document* sp_repr_read_file(const gchar*, const gchar*): assertion `Inkscape::IO::file_test( filename, G_FILE_TEST_EXISTS )&#8217; failed</p>
<p>** (inkscape:12112): CRITICAL **: Inkscape::XML::Document* sp_repr_read_file(const gchar*, const gchar*): assertion `Inkscape::IO::file_test( filename, G_FILE_TEST_EXISTS )&#8217; failed</p>
<p>** (inkscape:12112): WARNING **: Specified document gldt.svg cannot be opened (does not exist or not a valid SVG file)<br />
Packaging&#8230;<br />
mv: cannot stat `gldt.svg&#8217;: No such file or directory<br />
mv: cannot stat `gldt.png&#8217;: No such file or directory</p>
<p>I only have four images in the source tarball. Are there image missing included?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNU/Linux distro timeline 10.7 by Claitom Sega</title>
		<link>http://futurist.se/gldt/2010/07/03/gnulinux-distro-timeline-10-7/comment-page-1/#comment-84</link>
		<dc:creator>Claitom Sega</dc:creator>
		<pubDate>Wed, 04 Aug 2010 02:15:50 +0000</pubDate>
		<guid isPermaLink="false">http://futurist.se/gldt/?p=148#comment-84</guid>
		<description>Very good this job!Congratulations.After doing an extensive material on my blog, where a link can point to the timeline linux, so that more people know the origin.</description>
		<content:encoded><![CDATA[<p>Very good this job!Congratulations.After doing an extensive material on my blog, where a link can point to the timeline linux, so that more people know the origin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNU/Linux distro timeline 10.7 by Donjan</title>
		<link>http://futurist.se/gldt/2010/07/03/gnulinux-distro-timeline-10-7/comment-page-1/#comment-83</link>
		<dc:creator>Donjan</dc:creator>
		<pubDate>Tue, 03 Aug 2010 07:20:08 +0000</pubDate>
		<guid isPermaLink="false">http://futurist.se/gldt/?p=148#comment-83</guid>
		<description>@Angelos:
Seems like we haven&#039;t included that distro yet. Care to submit it?
http://futurist.se/gldt/contact/


@cc-by-sa:
Could you please offer a rationale?</description>
		<content:encoded><![CDATA[<p>@Angelos:<br />
Seems like we haven&#8217;t included that distro yet. Care to submit it?<br />
<a href="http://futurist.se/gldt/contact/" rel="nofollow">http://futurist.se/gldt/contact/</a></p>
<p>@cc-by-sa:<br />
Could you please offer a rationale?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
