/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz
0.8.1 by Szilveszter Farkas (Phanatic)
* backend/errors.py: some basic exceptions added
1
# Copyright (C) 2006 by Szilveszter Farkas (Phanatic)
2
# Some parts of the code are:
3
# Copyright (C) 2005, 2006 by Canonical Ltd
4
5
# This program is free software; you can redistribute it and/or modify
6
# it under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 2 of the License, or
8
# (at your option) any later version.
9
10
# This program is distributed in the hope that it will be useful,
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
# GNU General Public License for more details.
14
15
# You should have received a copy of the GNU General Public License
16
# along with this program; if not, write to the Free Software
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
19
import os
0.8.2 by Szilveszter Farkas (Phanatic)
* backend/commit.py: commit() implemented
20
21
import bzrlib.errors as errors
22
23
from errors import (DirectoryAlreadyExists, NoFilesSpecified, NoMatchingFiles,
24
                    NotVersionedError)
0.8.1 by Szilveszter Farkas (Phanatic)
* backend/errors.py: some basic exceptions added
25
26
def mkdir(directory):
0.8.2 by Szilveszter Farkas (Phanatic)
* backend/commit.py: commit() implemented
27
    """ Create new versioned directory.
28
    
29
    :param directory: the full path to the directory to be created
30
    """
0.8.1 by Szilveszter Farkas (Phanatic)
* backend/errors.py: some basic exceptions added
31
    from bzrlib.workingtree import WorkingTree
32
    
33
    try:
34
        os.mkdir(directory)
35
    except OSError, e:
36
        if e.errno == 17:
37
            raise DirectoryAlreadyExists(directory)
38
    else:
39
        wt, dd = WorkingTree.open_containing(directory)
40
        wt.add([dd])
41
42
def add(file_list):
0.8.2 by Szilveszter Farkas (Phanatic)
* backend/commit.py: commit() implemented
43
    """ Add listed files to the branch. 
44
    
45
    :param file_list - list of files to be added (using full paths)
46
    
47
    :return: count of ignored files
0.8.1 by Szilveszter Farkas (Phanatic)
* backend/errors.py: some basic exceptions added
48
    """
49
    import bzrlib.add
50
    
51
    added, ignored = bzrlib.add.smart_add(file_list)
52
    
53
    match_len = 0
54
    for glob, paths in ignored.items():
55
        match_len += len(paths)
56
    
57
    return match_len
0.8.2 by Szilveszter Farkas (Phanatic)
* backend/commit.py: commit() implemented
58
59
def remove(file_list, new=False):
60
    """ Make selected files unversioned.
61
    
62
    :param file_list: list of files/directories to be removed
63
    
64
    :param new: if True, the 'added' files will be removed
65
    """
66
    from bzrlib.builtins import tree_files
67
    
68
    tree, file_list = tree_files(file_list)
69
    
70
    if new is False:
71
        if file_list is None:
72
            raise NoFilesSpecified
73
    else:
74
        from bzrlib.delta import compare_trees
75
        added = [compare_trees(tree.basis_tree(), tree,
76
                               specific_files=file_list).added]
77
        file_list = sorted([f[0] for f in added[0]], reverse=True)
78
        if len(file_list) == 0:
79
            raise NoMatchingFiles
80
    
81
    try:
82
        tree.remove(file_list)
83
    except errors.NotVersionedError:
84
        raise NotVersionedError
85