lp:backuppc

Created by VCS imports and last modified
Get this branch:
bzr branch lp:backuppc

Related bugs

Related blueprints

Branch information

Owner:
VCS imports
Project:
backuppc
Status:
Development

Import details

Import Status: Failed

This branch is an import of the CVS module BackupPC from :pserver:anonymous@backuppc.cvs.sourceforge.net:/cvsroot/backuppc.

The import has been suspended because it failed 5 or more times in succession.

Last successful import was .

Import started on pear and finished taking 15 seconds — see the log
Import started on pear and finished taking 10 seconds — see the log
Import started on pear and finished taking 10 seconds — see the log
Import started on pear and finished taking 15 seconds — see the log

Recent revisions

149. By cbarratt

* Added more helpful text (instead of "New Key") for BackupFilesOnly and
  BackupFilesExclude in the CGI editor.

* Removed deprecated defined(@Backups) from lib/BackupPC/CGI/Browse.pm;
  patch from Alexander Moisseev.

* Updated Spanish language file lib/BackupPC/Lang/es.pm from Luis Bustamante.

* Updated init.d/debian-backuppc from Eduardo D�az Rodr�guez.

148. By cbarratt

* Minor changes to BackupPC.pod

147. By cbarratt

* Made the directory path display (when browsing backups or history) a sequence of links,
  allowing any parent directory to be quick selected.

* Ensure $num and $share in lib/BackupPC/CGI/RestoreFile.pm error messages
  are escaped, to avoid XSS vulnerability. Report and patch by Jamie Strandboge.
  Also added some additional error checking and tweaked the handling of the
  invalid number error message.

* Added more careful checking that IO::Dirent returns valid inodes and file types.
  Suggested by Daniel Harvey.

* Changed the timeStamp2 function in lib/BackupPC/CGI/Lib.pm so that times more than 330
  days ago also include the year. More recent times continue to use just the day of month
  and month.

* Updated copyright dates

146. By cbarratt

* Patch from Alexander Moisseev that fixed file name encodings in zip files.
  The default charset is now utf8. Added a menu option to override the codepage.

* Removed -N option from smbclient command in conf/config.pl to remain compatible
  with more recent versions (3.2.3 and later) of smbclient. Reported and discussed
  by various people on the mail list, most recently by Jeff Boyce, Les Mikesell and
  Holger Parplies. Alexander Moisseev also submitted a patch.

  Using smbclient >= 3.2.3 with the -N option will give a "tree connect failed:
  NT_STATUS_ACCESS_DENIED" error.

* Reapplied a patch from Tyler Wagner for lib/BackupPC/CGI/HostInfo.pl so that
  empty email status info doesn't appear. Somehow this missed 3.2.1.

* Fixed check on $parfile in bin/BackupPC_archiveHost since it is numeric.
  Fix submitted by Tim Massey.

145. By cbarratt

* Ensure $num is numeric in lib/BackupPC/CGI/View.pm error message
  to avoid XSS attack. Report and patch by Jamie Strandboge.

* Fixed qw(...) deprecated syntax warnings in lib/BackupPC/Storage/Text.pm
  and lib/BackupPC/Lib.pm. Patch supplied by Juergen Harms.

* Fixed error in bin/BackupPC_sendEmail that caused accumulation of
  per-host errors in the admin email to be skipped if a host's user
  is not defined. Reported by Marco Dalla Via.

* Fixed lib/BackupPC/CGI/RSS.pm so that the base_url is correct for https.
  Report and fix by Samuel Monsarrat.

* Added Japanese language file lib/BackupPC/Lang/ja.pm submitted by Rikiya
  Yamamoto.

* Added Ukrainian language file lib/BackupPC/Lang/uk.pm submitted by Yakim.

* Added Russian language file lib/BackupPC/Lang/ru.pm submitted by Sergei Butakov.

* Removed redundant setting of $Lang{CfgEdit_Title_Other} from all the Lang files.

* Changed restore file name from restore.{zip|tar} to restore_$host_YYYY-MM-DD.{zip|tar},
  where the date is the start date of the backup. Originally suggested by Brad Alexander,
  with a healthy debate among Les, Holger, Jeffrey, Adam and others.

* Applied couple of fixes to Lib.pm suggested by Jeffrey Kosowsky for special case of where
  configuration commands are fragments of perl code.

144. By cbarratt

* updates to lib/BackupPC/Xfer/Protocol.pm to fix FTP excludes

* updated versions on the new files for 3.2.1

143. By cbarratt

* Ensure $num is numeric in lib/BackupPC/CGI/Browse.pm to avoid XSS
  attack. Report and patch by Adam E.

* Fixed application of "*" in $Conf{BackupFilesOnly} and
  $Conf{BackupFilesExclud} for 2nd and later shares. Reported
  by Alessandro and Alexander Maringer.

* Fixed email status check in lib/BackupPC/CGI/HostInfo.pl so that
  empty email info doesn't appear; reported by Wayne Trevena,
  and based on patch from Tyler Wagner.

* Wrapped eval() around unpack() in lib/BackupPC/Attrib.pm to avoid
  failures on corrupted attrib files.

* Applied documention patch from Alexander Moisseev.

142. By cbarratt

Release for 3.2.0. Changes since 3.2.0beta1:

* Fixed code that detects duplicate shares in bin/BackupPC_dump

* Added fix to lib/BackupPC/Zip/FileMember.pm to avoid bug in
  Archive::Zip 1.30 when creating compressed archives.

* Added Czech translation from Petr Pokorny.

141. By cbarratt

* fixed typo in ChangeLog

140. By cbarratt

* Changes in preparation for 3.2.0beta1...

* Fixed FTP xfer method, with help from Holger Parplies and
  Mirco Piccin. FTP restores are still not supported.

* Fixed bug in BackupPC_sendEmail where a user only receives
  email about one host.

* Fixed bug where top-level attrib file was linked into the pool with
  the wrong digest, caused by it being updated multiple times with
  multiple shares. Reported by Jeff Kosowsky who also supplied a
  patch.

* Fixed bug in blackout calculation when multiple periods span midnight.
  Report and patch from Joachim Falk.

* Wrapped eval {} around attribute unpacking to make it more robust
  to data corruption. Path submitted by Tim Connors.

* Ignore fileType 8 and 9 in BackupPC_tarCreate rather than consider then
  errors. These are sockets and unknown (eg: solaris door) files that
  are created dynamicaly by applications - there is no meaningful restore
  for these file types.

* Changed lib/BackupPC/Lib.pm and lib/BackupPC/Storage/Text.pm based on
  patches from Davide Brini and Holger Parplies so that main config
  %Conf values are available in the host config file, allowing more
  flexibility in perl expressions in the config files. Use beware,
  since the CGI editor won't work correctly if the config file have
  perl expressions.

* Obscure password values in LOG file when CGI editor is used to change
  values. Proposed by Steve Ling.

* Added favicon.ico from Axel Beckert. Thanks to Tyler Wagner for submitting
  another version and reminding me about the first.

* Replace "sort(HostSortCompare keys(%$Hosts))" with "sort HostSortCompare keys(%$Hosts)"
  in bin/BackupPC to avoid an error with certain versions of perl.

* Fixed $Conf{XX} links in the BackupPC.html and the CGI editor so they
  correctly reference the definition.

* Support ${VAR} style variable substitution in commands, in addition to
  existing $VAR style. Suggested by Jeffrey Kosowsky.

* Clarified usage of -b and -w options to BackupPC_tarCreate. Submitted by
  Michael Selway.

* Repaired Unable_to_connect_to_BackupPC_server Lang string and added new
  string Unable_to_connect_to_BackupPC_server_error_message. Proposed and
  explained by Holger Parplies.

* Added 'use utf8' to lib/BackupPC/Lang/pl.pm. Reported by Michal Sawicz.

* Minor updates to lib/BackupPC/Lang/fr.pm from Hubert Tournier.

* Minor update to lib/BackupPC/Lang/en.pm from David Relson.

Branch metadata

Branch format:
Branch format 7
Repository format:
Bazaar repository format 2a (needs bzr 1.16 or later)
This branch contains Public information 
Everyone can see this information.

Subscribers

No subscribers.