~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-11 23:23:53 UTC
  • Revision ID: mbp@sourcefrog.net-20050311232353-f5e33da490872c6a
Add .bzrignore file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# (C) 2005 Canonical Development Ltd
 
1
#! /usr/bin/env python
 
2
# -*- coding: UTF-8 -*-
2
3
 
3
4
# This program is free software; you can redistribute it and/or modify
4
5
# it under the terms of the GNU General Public License as published by
21
22
from osutils import format_date
22
23
from tree import Tree
23
24
from diff import diff_trees
24
 
from trace import mutter, warning
25
 
import add
26
25
 
27
26
BZRDIR = ".bzr"
28
27
 
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*']
 
28
DEFAULT_IGNORE = ['.*', '*~', '#*#', '*.tmp', '*.o', '*.a', '*.py[oc]',
 
29
                  '{arch}']
36
30
 
37
31
IGNORE_FILENAME = ".bzrignore"
38
32
 
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'
45
33