~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Martin Pool
  • Date: 2005-04-28 07:24:55 UTC
  • Revision ID: mbp@sourcefrog.net-20050428072453-7b99afa993a1e549
todo

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
                  'BitKeeper',
 
35
                  'TAGS', '.make.state', '.sconsign', '.tmp*']
30
36
 
31
37
IGNORE_FILENAME = ".bzrignore"
32
38
 
 
39
import locale
 
40
user_encoding = locale.getpreferredencoding()
 
41
 
 
42
__copyright__ = "Copyright 2005 Canonical Development Ltd."
 
43
__author__ = "Martin Pool <mbp@canonical.com>"
 
44
__version__ = '0.0.5pre'
33
45