~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: mbp at sourcefrog
  • Date: 2005-03-30 22:27:17 UTC
  • Revision ID: mbp@sourcefrog.net-20050330222717-027b5837127b938d
experiment with new nested inventory file format
not used by default yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /usr/bin/env python
2
 
# -*- coding: UTF-8 -*-
 
1
# (C) 2005 Canonical Development Ltd
3
2
 
4
3
# This program is free software; you can redistribute it and/or modify
5
4
# it under the terms of the GNU General Public License as published by
22
21
from osutils import format_date
23
22
from tree import Tree
24
23
from diff import diff_trees
 
24
from trace import mutter, warning
 
25
import add
25
26
 
26
27
BZRDIR = ".bzr"
27
28
 
28
 
DEFAULT_IGNORE = ['.*', '*~', '#*#', '*.tmp', '*.o', '*.a', '*.py[oc]',
29
 
                  '{arch}']
 
29
DEFAULT_IGNORE = ['.bzr.log',
 
30
                  '*~', '#*#', '*$', '.#*',
 
31
                  '*.tmp', '*.bak', '*.BAK', '*.orig',
 
32
                  '*.o', '*.obj', '*.a', '*.py[oc]', '*.so', '*.exe', '*.elc', 
 
33
                  '{arch}', 'CVS', '.svn', '_darcs', 'SCCS', 'RCS',
 
34
                  'TAGS', '.make.state', '.sconsign']
30
35
 
31
36
IGNORE_FILENAME = ".bzrignore"
32
37
 
33
38
 
 
39
__copyright__ = "Copyright 2005 Canonical Development Ltd."
 
40
__author__ = "Martin Pool <mbp@canonical.com>"
 
41
__version__ = '0.0.1'
 
42