Your message dated Sun, 22 Jan 2012 12:02:07 +0000
with message-id <[email protected]>
and subject line Bug#565181: fixed in slbackup-php 0.3-2.2+squeeze1
has caused the Debian Bug report #565181,
regarding slbackup-php: restoring files with spaces in file names
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
565181: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=565181
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: slbackup-php
Version: 0.3-2
Severity: important

Hello,
        Sorry, My English is bad. I would be brief.
        Unable to restore files containing spaces in their name.
A proposed correction: rdiff-u


--- restore.tpl 2010-01-13 16:40:45.000000000 +0100
+++ restore.tpl.old     2007-04-25 11:27:16.000000000 +0200
@@ -42,13 +42,13 @@
                <IMG SRC="/icons/generic.gif" alt="[   ]">
            {/if}    
            {if $dir.type == "file"}
-               <A 
HREF="index.php?restorefile&client={$client}&sub={$dir.sub}&location={$location}">{$dir.name}</A>
+               <A 
HREF=index.php?restorefile&client={$client}&sub={$dir.sub}&location={$location}>{$dir.name}</A>
            {elseif $dir.type == "delfile"}
-               <A 
HREF="index.php?restorefile&client={$client}&sub={$dir.sub}&location={$location}">{$dir.name}(deleted)</A>
+               <A 
HREF=index.php?restorefile&client={$client}&sub={$dir.sub}&location={$location}>{$dir.name}(deleted)</A>
            {elseif $dir.type == deldir}
-               <A 
HREF="index.php?restorelocation&client={$client}&sub={$dir.sub}&location={$location}">{$dir.name}
 
({t}Deleted{/t})</A>
+               <A 
HREF=index.php?restorelocation&client={$client}&sub={$dir.sub}&location={$location}>{$dir.name}
 
({t}Deleted{/t})</A>
            {else}
-               <A 
HREF="index.php?restorelocation&client={$client}&sub={$dir.sub}&location={$location}">{$dir.name}</A>
+               <A 
HREF=index.php?restorelocation&client={$client}&sub={$dir.sub}&location={$location}>{$dir.name}</A>
            {/if}    
            <BR>
        {/foreach}
@@ -59,13 +59,13 @@
                <IMG SRC="/icons/transfer.gif" alt="[   ]">
            {/if}    
            {if $version.type == "parent"}
-               <A 
HREF="index.php?restorelocation&client={$client}&sub={$version.sub}&location={$location}">{$version.name}</A>
+               <A 
HREF=index.php?restorelocation&client={$client}&sub={$version.sub}&location={$location}>{$version.name}</A>
            {elseif $version.type == "currentfile"}
-               <A 
HREF="index.php?restorefile&client={$client}&file={$version.sub}&location={$location}&revision=current">current</A>
+               <A 
HREF=index.php?restorefile&client={$client}&file={$version.sub}&location={$location}&revision=current>current</A>
            {elseif $version.type == "diff.gz"}
-               <A 
HREF="index.php?restorefile&client={$client}&parent={$version.parent}&location={$location}&revision={$version.revision}&name={$version.name}">{$version.ts}</A>
+               <A 
HREF=index.php?restorefile&client={$client}&parent={$version.parent}&location={$location}&revision={$version.revision}&name={$version.name}>{$version.ts}</A>
            {elseif $version.type == "snapshot.gz"}
-               <A 
HREF="index.php?restorefile&client={$client}&parent={$version.parent}&location={$location}&revision={$version.revision}&name={$version.name}">{$version.ts}</A>
+               <A 
HREF=index.php?restorefile&client={$client}&parent={$version.parent}&location={$location}&revision={$version.revision}&name={$version.name}>{$version.ts}</A>
            {else}
                unknown snapshot type $version.type
            {/if}    



--- index.php   2010-01-13 16:38:35.000000000 +0100
+++ index.php.old       2007-04-25 10:15:47.000000000 +0200
@@ -71,7 +71,7 @@
 function removesnapshots ($passwd, $clientdir, $snapshot) {
 global $backuphost, $backupuser, $ssh_options, $ssh_askpass ;
 
-    $cmd = sprintf ("ssh %s %s@%s 'rdiff-backup --force 
--remove-older-than %s \"%s\"'", 
+    $cmd = sprintf ("ssh %s %s@%s 'rdiff-backup --force 
--remove-older-than %s %s'", 
                     $ssh_options, $backupuser, 
                     $backuphost, $snapshot, $clientdir) ; 
 
@@ -98,7 +98,7 @@
 function listsnapshots ($passwd, $clientdir) {
 global $backuphost, $backupuser, $ssh_options, $ssh_askpass ;
 
-    $cmd = sprintf ("ssh %s %s@%s 'find \"%s/rdiff-backup-data\" 
-maxdepth 1 -name \"increments.*\" -printf %s'", 
+    $cmd = sprintf ("ssh %s %s@%s 'find %s/rdiff-backup-data -maxdepth 
1 -name \"increments.*\" -printf %s'", 
                     $ssh_options, $backupuser, 
                     $backuphost, $clientdir, '"%P\n"') ; 
 
@@ -126,7 +126,7 @@
 function fetchfile ($passwd, $clientdir, $location, $file) {
 global $backuphost, $backupuser, $ssh_options, $ssh_askpass ;
 
-    $cmd = sprintf ("ssh %s %s@%s 'cat \"%s%s/%s\"'", 
+    $cmd = sprintf ("ssh %s %s@%s 'cat %s%s/%s'", 
                     $ssh_options, $backupuser, 
                     $backuphost, $clientdir, $location, $file ) ; 
 
@@ -169,7 +169,7 @@
     } else unset ($tempfile) ; 
     if (empty($tempfile))
         return ; 
-    $cmd = sprintf ("ssh %s %s@%s 'rdiff-backup --force 
\"%s/rdiff-backup-data/increments%s/%s\" \"%s\"'", 
+    $cmd = sprintf ("ssh %s %s@%s 'rdiff-backup --force 
%s/rdiff-backup-data/increments%s/%s %s'", 
                     $ssh_options, $backupuser, 
                     $backuphost, $clientdir, $location, $file, 
$tempfile ) ; 
 
@@ -180,7 +180,7 @@
        fclose ($pipes[1]) ; 
        proc_close ($proc) ; 
     } 
-    $cmd = sprintf ("ssh %s %s@%s 'cat \"%s\" && rm \"%s\"'", 
+    $cmd = sprintf ("ssh %s %s@%s 'cat %s && rm %s'", 
                     $ssh_options, $backupuser, 
                     $backuphost, $tempfile, $tempfile) ; 
     $proc = proc_open ($cmd, $desc, $pipes, '/tmp', $env) ; 
@@ -213,7 +213,7 @@
 
     $env = array ('SSH_ASKPASS' => $ssh_askpass, 
                  'DISPLAY' => ':nowhere') ; 
-    $cmd = sprintf ("ssh %s %s@%s 'find \"%s%s/%s\" -maxdepth 1 
-mindepth 1 -type f -name \"%s\"'", 
+    $cmd = sprintf ("ssh %s %s@%s 'find %s%s/%s -maxdepth 1 -mindepth 1 
-type f -name %s'", 
                     $ssh_options, $backupuser, 
                     $backuphost, $clientdir, $location, $parent, $base 
) ; 
     $proc = proc_open ($cmd, $desc, $pipes, '/tmp', $env) ; 
@@ -230,7 +230,7 @@
        proc_close ($proc) ; 
     }
     $baselen= strlen ($base) ; 
-    $cmd = sprintf ("ssh %s %s@%s 'find 
\"%s/rdiff-backup-data/increments%s/%s\" -maxdepth 1 -mindepth 1 -type f 
-name \"%s*.gz\"'", 
+    $cmd = sprintf ("ssh %s %s@%s 'find 
%s/rdiff-backup-data/increments%s/%s -maxdepth 1 -mindepth 1 -type f 
-name \"%s*.gz\"'", 
                     $ssh_options, $backupuser, 
                     $backuphost, $clientdir, $location, $parent, $base 
) ; 
 
@@ -283,7 +283,7 @@
 
     $env = array ('SSH_ASKPASS' => $ssh_askpass, 
                  'DISPLAY' => ':nowhere') ; 
-    $cmd = sprintf ("ssh %s %s@%s 'find \"%s%s/%s\" -maxdepth 1 
-mindepth 1 -type d'", 
+    $cmd = sprintf ("ssh %s %s@%s 'find %s%s/%s -maxdepth 1 -mindepth 1 
-type d'", 
                     $ssh_options, $backupuser, 
                     $backuphost, $clientdir, $location, $sub ) ; 
     $proc = proc_open ($cmd, $desc, $pipes, '/tmp', $env) ; 
@@ -299,7 +299,7 @@
        fclose ($pipes[1]) ; 
        proc_close ($proc) ; 
     }
-    $cmd = sprintf ("ssh %s %s@%s 'find 
\"%s/rdiff-backup-data/increments%s/%s\" -maxdepth 1 -mindepth 1 -type 
d'", 
+    $cmd = sprintf ("ssh %s %s@%s 'find 
%s/rdiff-backup-data/increments%s/%s -maxdepth 1 -mindepth 1 -type d'", 
                     $ssh_options, $backupuser, 
                     $backuphost, $clientdir, $location, $sub ) ; 
     $proc = proc_open ($cmd, $desc, $pipes, '/tmp', $env) ; 
@@ -322,7 +322,7 @@
        fclose ($pipes[1]) ; 
        proc_close ($proc) ; 
     }
-    $cmd = sprintf ("ssh %s %s@%s 'find \"%s%s/%s\" -maxdepth 1 
-mindepth 1 -type f'", 
+    $cmd = sprintf ("ssh %s %s@%s 'find %s%s/%s -maxdepth 1 -mindepth 1 
-type f'", 
                     $ssh_options, $backupuser, 
                     $backuphost, $clientdir, $location, $sub ) ; 
 
@@ -339,7 +339,7 @@
        fclose ($pipes[1]) ; 
        proc_close ($proc) ; 
     }
-    $cmd = sprintf ("ssh %s %s@%s 'find 
\"%s/rdiff-backup-data/increments%s/%s\" -maxdepth 1 -mindepth 1 -type f 
-name \"*.snapshot.gz\"'", 
+    $cmd = sprintf ("ssh %s %s@%s 'find 
%s/rdiff-backup-data/increments%s/%s -maxdepth 1 -mindepth 1 -type f 
-name \"*.snapshot.gz\"'", 
                     $ssh_options, $backupuser, 
                     $backuphost, $clientdir, $location, $sub ) ; 
     $proc = proc_open ($cmd, $desc, $pipes, '/tmp', $env) ; 




-- System Information:
Debian Release: 5.0.3
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages slbackup-php depends on:
ii  apache2            2.2.9-10+lenny6       Apache HTTP Server metapackage
ii  apache2-mpm-prefor 2.2.9-10+lenny6       Apache HTTP Server - traditional n
ii  debconf [debconf-2 1.5.24                Debian configuration management sy
ii  libapache2-mod-php 5.2.6.dfsg.1-1+lenny4 server-side, HTML-embedded scripti
ii  php5-cli           5.2.6.dfsg.1-1+lenny4 command-line interpreter for the p
ii  smarty             2.6.20-1.2            Template engine for PHP
ii  smarty-gettext     1.0b1-2               provides gettext support for smart
ii  ssh                1:5.1p1-5             secure shell client and server (me

slbackup-php recommends no packages.

slbackup-php suggests no packages.

-- debconf information excluded

-- 
Ce message a été vérifié par MailScanner
pour des virus ou des polluriels et rien de
suspect n'a été trouvé.
For all your IT requirements visit: http://www.transtec.co.uk






--- End Message ---
--- Begin Message ---
Source: slbackup-php
Source-Version: 0.3-2.2+squeeze1

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

slbackup-php_0.3-2.2+squeeze1.diff.gz
  to main/s/slbackup-php/slbackup-php_0.3-2.2+squeeze1.diff.gz
slbackup-php_0.3-2.2+squeeze1.dsc
  to main/s/slbackup-php/slbackup-php_0.3-2.2+squeeze1.dsc
slbackup-php_0.3-2.2+squeeze1_all.deb
  to main/s/slbackup-php/slbackup-php_0.3-2.2+squeeze1_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.
Mike Gabriel <[email protected]> (supplier of updated 
slbackup-php 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.8
Date: Sat, 21 Jan 2012 23:08:18 +0100
Source: slbackup-php
Binary: slbackup-php
Architecture: source all
Version: 0.3-2.2+squeeze1
Distribution: stable
Urgency: low
Maintainer: Patrick Winnertz <[email protected]>
Changed-By: Mike Gabriel <[email protected]>
Description: 
 slbackup-php - web-based administration tool for slbackup
Closes: 565181 655832
Changes: 
 slbackup-php (0.3-2.2+squeeze1) stable; urgency=low
 .
   * Non-maintainer upload.
   * Patch src/index.php. Fixes reappearing login page on every click
     (closes: #655832).
   * Patch src/index.php and templates/restore.tpl. Allows restore
     of files with blanks in their name. Closes: #565181.
     Patch provided by Cyril ETCHEVERRIA <[email protected]> -> thanks!
   * Patch templates/status.tpl. For last failed backup really show the
     timestamp of the last failed backup and not erroneously the timestamp
     of the last successful backup.
 .
   * Upload sponsored by Petter Reinholdtsen.
Checksums-Sha1: 
 7f2b9632398da2cbb48e5e115440243d6d82153e 1129 slbackup-php_0.3-2.2+squeeze1.dsc
 6062ff7e2141c52cfa93fd15c50a9465995dc048 10132 
slbackup-php_0.3-2.2+squeeze1.diff.gz
 5fc5389d1f7020af0240cf5dc2112f39844c311b 21624 
slbackup-php_0.3-2.2+squeeze1_all.deb
Checksums-Sha256: 
 fd2d223cf83da18b3c32d80146a4e8e30d854b8f1f9ea1cb9cfe58f59c4ce7c6 1129 
slbackup-php_0.3-2.2+squeeze1.dsc
 8b661b27ac550cca8379e21826ff180322bc4f9b4d108ff20184853c5a98146e 10132 
slbackup-php_0.3-2.2+squeeze1.diff.gz
 ddc3c6374d5eef24b15e1d3e7091e648b5228800725645618fca608aaab7837e 21624 
slbackup-php_0.3-2.2+squeeze1_all.deb
Files: 
 7a42dafa7034453c28fe534790a1f9a6 1129 misc optional 
slbackup-php_0.3-2.2+squeeze1.dsc
 c05f63d211b909da4a810f95baf61eed 10132 misc optional 
slbackup-php_0.3-2.2+squeeze1.diff.gz
 51dfd500d9208dfce351c6e34035386c 21624 misc optional 
slbackup-php_0.3-2.2+squeeze1_all.deb

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

iD8DBQFPG7zA20zMSyow1ykRAkFvAJkBvmhikSiBQnIy9bwUNEWOYtbvhQCeJfmY
Ls43Qoaj0gbrY+PIMakPQcw=
=pfW3
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to