Changeset 61

Show
Ignore:
Timestamp:
27/01/07 00:32:29 (2 years ago)
Author:
andy
Message:

New branch for playing with a rewrite idea

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/rewrite/PyBackPack/Version.py

    r53 r61  
    1 VERSION = "0.4.5" 
     1# Copyright (C) 2006-2007 Andrew Price. <andy@andrewprice.me.uk> 
     2#  
     3# This software is distributed under the terms and conditions of the GNU General 
     4# Public License. See http://www.gnu.org/copyleft/gpl.html for details. 
     5 
     6VERSION = "0.5.0" 
    27TITLE = "File Backup Manager" # used in dialogs, etc 
    38APPNAME = "pyBackPack"  
    49APPPATH = "pybackpack" # used for accessing files (eg. ~/.pybackpack) 
    510AUTHORS = ["Andy Price <andy@andrewprice.me.uk>", "Dave Arter <davea@sucs.org>", "Logo by Graham Cole <chckens@sucs.org>"] 
    6 COPYRIGHT = "Copyright (c) 2006 Andy Price, 2005-2006 Dave Arter" 
     11COPYRIGHT = "Copyright (c) 2006-2007 Andy Price, 2005-2006 Dave Arter" 
    712ABOUT = "%s is a tool for backing up user data for the GNOME Desktop" % APPNAME 
  • branches/rewrite/PyBackPack/backend/mkisofs.py

    r56 r61  
     1# Copyright (C) 2006-2007 Andrew Price. <andy@andrewprice.me.uk> 
     2#  
     3# This software is distributed under the terms and conditions of the GNU General 
     4# Public License. See http://www.gnu.org/copyleft/gpl.html for details. 
     5 
     6 
    17from subprocess import Popen 
    28from subprocess import PIPE