<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Kommentare zu roerd's blog</title>
	<atom:link href="http://roerd.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://roerd.wordpress.com</link>
	<description>a blog about programming and (perhaps) other things</description>
	<lastBuildDate>Tue, 14 Jul 2009 18:31:06 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Kommentare von Joel Aufrecht zu DocBook to PDF 2</title>
		<link>http://roerd.wordpress.com/2007/09/12/docbook-to-pdf-2/#comment-37</link>
		<dc:creator>Joel Aufrecht</dc:creator>
		<pubDate>Tue, 14 Jul 2009 18:31:06 +0000</pubDate>
		<guid isPermaLink="false">http://roerd.wordpress.com/2007/09/12/docbook-to-pdf-2/#comment-37</guid>
		<description>For completeness&#039; sake, the actual step to use dblatex is:

dblatex myfile.xml

which produces myfile.pdf

This worked fine on Ubuntu 8.10 with the dblatex package installed.</description>
		<content:encoded><![CDATA[<p>For completeness&#8217; sake, the actual step to use dblatex is:</p>
<p>dblatex myfile.xml</p>
<p>which produces myfile.pdf</p>
<p>This worked fine on Ubuntu 8.10 with the dblatex package installed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentare von roerd zu DocBook XML to PDF on Ubuntu</title>
		<link>http://roerd.wordpress.com/2007/09/12/docbook-pdf-on-ubuntu/#comment-35</link>
		<dc:creator>roerd</dc:creator>
		<pubDate>Fri, 26 Dec 2008 15:57:17 +0000</pubDate>
		<guid isPermaLink="false">http://roerd.wordpress.com/2007/09/12/docbook-pdf-on-ubuntu/#comment-35</guid>
		<description>Marton, thanks for the update. See also my own update post, which recomends the dblatex package.</description>
		<content:encoded><![CDATA[<p>Marton, thanks for the update. See also my own update post, which recomends the dblatex package.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentare von Marton Kadar zu DocBook XML to PDF on Ubuntu</title>
		<link>http://roerd.wordpress.com/2007/09/12/docbook-pdf-on-ubuntu/#comment-34</link>
		<dc:creator>Marton Kadar</dc:creator>
		<pubDate>Thu, 25 Dec 2008 21:19:03 +0000</pubDate>
		<guid isPermaLink="false">http://roerd.wordpress.com/2007/09/12/docbook-pdf-on-ubuntu/#comment-34</guid>
		<description>Both xmlto and fop are available in Ubuntu 8.10.
passivetex is now part of xmltex</description>
		<content:encoded><![CDATA[<p>Both xmlto and fop are available in Ubuntu 8.10.<br />
passivetex is now part of xmltex</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentare von LTK GUI for the Sudoku solver &#171; roerd&#8217;s blog zu Screenshot of the Sudoku LTK GUI</title>
		<link>http://roerd.wordpress.com/2008/09/03/screenshot-of-the-sudoku-ltk-gui/#comment-21</link>
		<dc:creator>LTK GUI for the Sudoku solver &#171; roerd&#8217;s blog</dc:creator>
		<pubDate>Wed, 03 Sep 2008 00:44:43 +0000</pubDate>
		<guid isPermaLink="false">http://roerd.wordpress.com/?p=20#comment-21</guid>
		<description>[...] [I&#039;ve posted a screenshot.] [...]</description>
		<content:encoded><![CDATA[<p>[...] [I've posted a screenshot.] [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentare von roerd zu My Sudoku solver (in Common Lisp)</title>
		<link>http://roerd.wordpress.com/2008/02/04/my-sudoku-solver-in-common-lisp/#comment-12</link>
		<dc:creator>roerd</dc:creator>
		<pubDate>Fri, 08 Aug 2008 22:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://roerd.wordpress.com/?p=5#comment-12</guid>
		<description>Hello Alan, thanks for your kind remarks.

I published the files now in an online Mercurial repository (See my newest post.), I hope the version there (which uses ASDF and a seperate &quot;packages.lisp&quot; file) works without the need for adjustments to the code.</description>
		<content:encoded><![CDATA[<p>Hello Alan, thanks for your kind remarks.</p>
<p>I published the files now in an online Mercurial repository (See my newest post.), I hope the version there (which uses ASDF and a seperate &#8222;packages.lisp&#8220; file) works without the need for adjustments to the code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentare von Alan Crowe zu My Sudoku solver (in Common Lisp)</title>
		<link>http://roerd.wordpress.com/2008/02/04/my-sudoku-solver-in-common-lisp/#comment-11</link>
		<dc:creator>Alan Crowe</dc:creator>
		<pubDate>Fri, 08 Aug 2008 17:49:28 +0000</pubDate>
		<guid isPermaLink="false">http://roerd.wordpress.com/?p=5#comment-11</guid>
		<description>That&#039;s nice. I knocked out the 2 in the bottom line of the first example and it found me 74 solutions.

When I first tried compiling the file, I got an error, which I fixed by wrapping the defpackage in an eval-when

    (eval-when (:compile-toplevel :load-toplevel :execute)
      (defpackage sudoku
      (:use #:cl)
      (:export #:solve)))

Without that CMUCL merely compiles the defpackage, ready to create it really quickly on some later occasion.</description>
		<content:encoded><![CDATA[<p>That&#8217;s nice. I knocked out the 2 in the bottom line of the first example and it found me 74 solutions.</p>
<p>When I first tried compiling the file, I got an error, which I fixed by wrapping the defpackage in an eval-when</p>
<p>    (eval-when (:compile-toplevel :load-toplevel :execute)<br />
      (defpackage sudoku<br />
      (:use #:cl)<br />
      (:export #:solve)))</p>
<p>Without that CMUCL merely compiles the defpackage, ready to create it really quickly on some later occasion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentare von redacteur zu DocBook XML to PDF on Ubuntu</title>
		<link>http://roerd.wordpress.com/2007/09/12/docbook-pdf-on-ubuntu/#comment-4</link>
		<dc:creator>redacteur</dc:creator>
		<pubDate>Sun, 11 Nov 2007 14:24:02 +0000</pubDate>
		<guid isPermaLink="false">http://roerd.wordpress.com/2007/09/12/docbook-pdf-on-ubuntu/#comment-4</guid>
		<description>Bonjour,

small and good tutorial, this is exactly what i search !

Thanks</description>
		<content:encoded><![CDATA[<p>Bonjour,</p>
<p>small and good tutorial, this is exactly what i search !</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentare von roerd zu DocBook XML to PDF on Ubuntu</title>
		<link>http://roerd.wordpress.com/2007/09/12/docbook-pdf-on-ubuntu/#comment-3</link>
		<dc:creator>roerd</dc:creator>
		<pubDate>Tue, 02 Oct 2007 15:43:40 +0000</pubDate>
		<guid isPermaLink="false">http://roerd.wordpress.com/2007/09/12/docbook-pdf-on-ubuntu/#comment-3</guid>
		<description>Thanks Jett, I corrected the name of the package in the post.</description>
		<content:encoded><![CDATA[<p>Thanks Jett, I corrected the name of the package in the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentare von Jett zu DocBook XML to PDF on Ubuntu</title>
		<link>http://roerd.wordpress.com/2007/09/12/docbook-pdf-on-ubuntu/#comment-2</link>
		<dc:creator>Jett</dc:creator>
		<pubDate>Tue, 02 Oct 2007 13:07:51 +0000</pubDate>
		<guid isPermaLink="false">http://roerd.wordpress.com/2007/09/12/docbook-pdf-on-ubuntu/#comment-2</guid>
		<description>I think the name of the package should be db2latex-xsl (latex instead of linux). Useful post - I found a publication in docbook format and this helped convert it to PDF</description>
		<content:encoded><![CDATA[<p>I think the name of the package should be db2latex-xsl (latex instead of linux). Useful post &#8211; I found a publication in docbook format and this helped convert it to PDF</p>
]]></content:encoded>
	</item>
</channel>
</rss>
