Dear mverkerk,

I spotted a trivial bug in DataModule.php. There is a typo in a sql request that make imports fail.
Here is a patch that works for it:

--- DataModule.php.orig 2007-07-31 10:06:49.000000000 +0200
+++ DataModule.php      2007-07-31 10:09:51.000000000 +0200
@@ -254,7 +254,7 @@

        public function repositoryExists($name)
        {
-               $results = $this->Database->Execute("SELECT name FROM repositories'");
+               $results = $this->Database->Execute("SELECT name FROM repositories");
     if ($results)
     {
       while(!$results->EOF)
--------------------------------------

Thank you very much for this tool that is oh so useful. When will it be packaged in standard distros?

Nicola