~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

  • Committer: Wouter van Heyst
  • Date: 2006-06-07 17:23:59 UTC
  • mto: This revision was merged to the branch mainline in revision 1752.
  • Revision ID: larstiq@larstiq.dyndns.org-20060607172359-6023dec74344453d
more code cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright (C) 2005 Canonical Ltd
2
 
 
 
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
7
 
 
 
7
#
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
11
# GNU General Public License for more details.
12
 
 
 
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24
24
import bzrlib.osutils
25
25
from bzrlib.workingtree import WorkingTree
26
26
 
 
27
 
27
28
def glob_expand_for_win32(file_list):
28
29
    if not file_list:
29
30
        return
114
115
    For the specific behaviour see the help for cmd_add().
115
116
 
116
117
    Returns the number of files added.
117
 
 
118
118
    """
119
119
    file_list = _prepare_file_list(file_list)
120
120
    tree = WorkingTree.open_containing(file_list[0])[0]
257
257
        tree._write_inventory(inv)
258
258
    return added, ignored
259
259
 
 
260
 
260
261
def __add_one(tree, inv, parent_ie, path, kind, action):
261
262
    """Add a new entry to the inventory and automatically add unversioned parents.
262
263