Your message dated Sun, 03 Apr 2005 13:17:15 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#302018: fixed in websvn 1.61-13
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 29 Mar 2005 18:03:36 +0000
>From [EMAIL PROTECTED] Tue Mar 29 10:03:36 2005
Return-path: <[EMAIL PROTECTED]>
Received: from olive.qinip.net [62.100.30.40] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1DGL3v-00061q-00; Tue, 29 Mar 2005 10:03:35 -0800
Received: from ben.cassee.net (h6210023030.dsl.speedlinq.nl [62.100.23.30])
        by olive.qinip.net (Postfix) with ESMTP id 5D949188A5
        for <[EMAIL PROTECTED]>; Tue, 29 Mar 2005 20:03:19 +0200 (MEST)
Received: from localhost (localhost.localdomain [127.0.0.1])
        by ben.cassee.net (Postfix) with ESMTP id 3404580CB
        for <[EMAIL PROTECTED]>; Tue, 29 Mar 2005 20:03:13 +0200 (CEST)
Received: from ben.cassee.net ([127.0.0.1])
        by localhost (ben [127.0.0.1]) (amavisd-new, port 10024) with LMTP
        id 13820-03 for <[EMAIL PROTECTED]>;
        Tue, 29 Mar 2005 20:02:52 +0200 (CEST)
Received: by ben.cassee.net (Postfix, from userid 999)
        id C6606841A; Tue, 29 Mar 2005 20:02:51 +0200 (CEST)
Content-Type: multipart/mixed; boundary="===============1031532562=="
MIME-Version: 1.0
From: System Administrator <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: websvn: tarballs with spaces fail
X-Mailer: reportbug 3.8
Date: Tue, 29 Mar 2005 20:02:51 +0200
Message-Id: <[EMAIL PROTECTED]>
X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at cassee.net
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

This is a multi-part MIME message sent by reportbug.

--===============1031532562==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Package: websvn
Version: 1.61-12
Severity: normal
Tags: patch


When a directory contains spaces tarball creation fails. Patch that
simply quotes names included.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages websvn depends on:
ii  apache2-mpm-prefork [httpd]   2.0.53-5   traditional model for Apache2
ii  debconf                       1.4.30.11  Debian configuration management sy
ii  libapache2-mod-php4           4:4.3.10-9 server-side, HTML-embedded scripti
ii  php4                          4:4.3.10-9 server-side, HTML-embedded scripti
ii  po-debconf                    0.8.22     manage translated Debconf template
ii  subversion                    1.1.3-2    advanced version control system (a
ii  ucf                           1.14       Update Configuration File: preserv

-- debconf information excluded

--===============1031532562==
Content-Type: text/x-c++; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="websvn-dl.php.patch"

--- dl.php      2004-08-30 08:41:06.000000000 +0200
+++ /usr/share/websvn/dl.php    2005-03-29 19:48:28.561402068 +0200
@@ -59,14 +59,14 @@
    if (empty($arcname))
       $arcname = $rep->name;
 
-   $svnrep->exportDirectory($path, $tmpname.DIRECTORY_SEPARATOR.$arcname, 
$rev);
+   $svnrep->exportDirectory($path, 
quote($tmpname.DIRECTORY_SEPARATOR.$arcname), $rev);
    
    // Create the tar file
    chdir($tmpname);
-   exec($config->tar." -cf $arcname.tar $arcname");
+   exec($config->tar." -cf \"$arcname.tar\" \"$arcname\"");
    
    // ZIP it up
-   exec($config->gzip." $arcname.tar");
+   exec($config->gzip." \"$arcname.tar\"");
    $size = filesize("$arcname.tar.gz");
 
    // Give the file to the browser

--===============1031532562==--

---------------------------------------
Received: (at 302018-close) by bugs.debian.org; 3 Apr 2005 17:31:32 +0000
>From [EMAIL PROTECTED] Sun Apr 03 10:31:32 2005
Return-path: <[EMAIL PROTECTED]>
Received: from gluck.debian.org [192.25.206.10] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1DI8we-0001Im-00; Sun, 03 Apr 2005 10:31:32 -0700
Received: from newraff.debian.org [208.185.25.31] (mail)
        by gluck.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1DI8we-0004z5-00; Sun, 03 Apr 2005 11:31:32 -0600
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
        id 1DI8ip-00026l-00; Sun, 03 Apr 2005 13:17:15 -0400
From: Pierre Chifflier <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#302018: fixed in websvn 1.61-13
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sun, 03 Apr 2005 13:17:15 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 
X-CrossAssassin-Score: 3

Source: websvn
Source-Version: 1.61-13

We believe that the bug you reported is fixed in the latest version of
websvn, which is due to be installed in the Debian FTP archive:

websvn_1.61-13.diff.gz
  to pool/main/w/websvn/websvn_1.61-13.diff.gz
websvn_1.61-13.dsc
  to pool/main/w/websvn/websvn_1.61-13.dsc
websvn_1.61-13_all.deb
  to pool/main/w/websvn/websvn_1.61-13_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Pierre Chifflier <[EMAIL PROTECTED]> (supplier of updated websvn package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sun,  3 Apr 2005 17:04:10 +0200
Source: websvn
Binary: websvn
Architecture: source all
Version: 1.61-13
Distribution: unstable
Urgency: low
Maintainer: Pierre Chifflier <[EMAIL PROTECTED]>
Changed-By: Pierre Chifflier <[EMAIL PROTECTED]>
Description: 
 websvn     - interface for subversion repositories written in PHP
Closes: 298486 298885 302018 302426
Changes: 
 websvn (1.61-13) unstable; urgency=low
 .
   * Corrected grammar error in template (Closes: #302426)
   * Applied patch to fix tarballs with spaces (Closes: #302018)
   * Applied patch to urlencode repository name (Closes: #298885)
   * Applied patch to fix notice warning (Closes: #298486)
Files: 
 24439f4fb819b7c6e38ed5a0cd56f95e 579 devel optional websvn_1.61-13.dsc
 7fa878a535a9fe8f6efe204549a60464 13697 devel optional websvn_1.61-13.diff.gz
 9d9b5cf0b5deaa70ccb3f8556c81ffb3 98086 devel optional websvn_1.61-13_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)

iD8DBQFCUCKyw3ao2vG823MRApczAJwMiLApnMeXHe3VV4fkfQUv5LEBvwCeP/IY
Agzze0etr3Z71bPpw1Cfk6Y=
=EscN
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to