1
# Copyright (C) 2006 by Szilveszter Farkas (Phanatic)
2
# Some parts of the code are:
3
# Copyright (C) 2005, 2006 by Canonical Ltd
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.
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.
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
21
import bzrlib.errors as errors
23
from errors import (DirectoryAlreadyExists, NoFilesSpecified, NoMatchingFiles,
27
""" Create new versioned directory.
29
:param directory: the full path to the directory to be created
31
from bzrlib.workingtree import WorkingTree
37
raise DirectoryAlreadyExists(directory)
39
wt, dd = WorkingTree.open_containing(directory)
43
""" Add listed files to the branch.
45
:param file_list - list of files to be added (using full paths)
47
:return: count of ignored files
51
added, ignored = bzrlib.add.smart_add(file_list)
54
for glob, paths in ignored.items():
55
match_len += len(paths)
59
def remove(file_list, new=False):
60
""" Make selected files unversioned.
62
:param file_list: list of files/directories to be removed
64
:param new: if True, the 'added' files will be removed
66
from bzrlib.builtins import tree_files
68
tree, file_list = tree_files(file_list)
72
raise NoFilesSpecified
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:
82
tree.remove(file_list)
83
except errors.NotVersionedError:
84
raise NotVersionedError