~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Alexander Belchenko
  • Date: 2006-07-31 16:12:57 UTC
  • mto: (1711.2.111 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1906.
  • Revision ID: bialix@ukr.net-20060731161257-91a231523255332c
new official bzr.ico

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# (C) 2005 Canonical Development Ltd
 
1
# Copyright (C) 2005, 2006 Canonical Development 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
17
17
"""bzr library"""
18
18
 
19
19
 
20
 
# please keep these sorted (in C locale order) to aid merging
21
 
DEFAULT_IGNORE = [
22
 
                  '#*#',
23
 
                  '*$',
24
 
                  '*,v',
25
 
                  '*.BAK',
26
 
                  '*.a',
27
 
                  '*.bak',
28
 
                  '*.elc',
29
 
                  '*.exe',
30
 
                  '*.la',
31
 
                  '*.lo',
32
 
                  '*.o',
33
 
                  '*.o',
34
 
                  '*.obj',
35
 
                  '*.orig',
36
 
                  '*.py[oc]',
37
 
                  '*.so',
38
 
                  '*.tmp',
39
 
                  '.*.tmp',
40
 
                  '*~',
41
 
                  '.#*',
42
 
                  '.*.sw[nop]',
43
 
                  '.sw[nop]',    # vim editing nameless file
44
 
                  '.DS_Store',
45
 
                  '.arch-ids',
46
 
                  '.arch-inventory',
47
 
                  '.bzr.log',
48
 
                  '.del-*',
49
 
                  '.hg',
50
 
                  '.git',
51
 
                  '.jamdeps'
52
 
                  '.libs',
53
 
                  '.make.state',
54
 
                  '.sconsign*',
55
 
                  '.svn',
56
 
                  '.tmp*',
57
 
                  'BitKeeper',
58
 
                  'CVS',
59
 
                  'CVS.adm',
60
 
                  'RCS',
61
 
                  'SCCS',
62
 
                  'TAGS',
63
 
                  '_darcs',
64
 
                  'aclocal.m4',
65
 
                  'autom4te*',
66
 
                  'config.h',
67
 
                  'config.h.in',
68
 
                  'config.log',
69
 
                  'config.status',
70
 
                  'config.sub',
71
 
                  'stamp-h',
72
 
                  'stamp-h.in',
73
 
                  'stamp-h1',
74
 
                  '{arch}',
75
 
                  ]
76
 
 
77
20
IGNORE_FILENAME = ".bzrignore"
78
21
 
79
22
import os
85
28
    sys.platform = 'darwin'
86
29
else:
87
30
    import locale
 
31
# XXX: This probably belongs in osutils instead
88
32
user_encoding = locale.getpreferredencoding() or 'ascii'
89
33
del locale
90
34
 
91
 
__copyright__ = "Copyright 2005,06 Canonical Development Ltd."
92
 
__version__ = version_string = '0.8rc1'
93
 
# same format as sys.version_info
94
 
version_info = (0, 8, 0, 'rc', 1)
95
 
 
96
 
 
97
 
from bzrlib.symbol_versioning import deprecated_function, zero_seven
 
35
__copyright__ = "Copyright 2005, 2006 Canonical Development Ltd."
 
36
__version__ = version_string = '0.9'
 
37
 
 
38
# same format as sys.version_info: "A tuple containing the five components of
 
39
# the version number: major, minor, micro, releaselevel, and serial. All
 
40
# values except releaselevel are integers; the release level is 'alpha',
 
41
# 'beta', 'candidate', or 'final'. The version_info value corresponding to the
 
42
# Python version 2.0 is (2, 0, 0, 'final', 0)."  Additionally we use a
 
43
# releaselevel of 'dev' for unreleased under-development code.
 
44
 
 
45
version_info = (0, 9, 0, 'dev', 0)
 
46
 
 
47
if version_info[3] == 'final':
 
48
    version_string = '%d.%d.%d' % version_info[:3]
 
49
else:
 
50
    version_string = '%d.%d.%d%s%d' % version_info
 
51
__version__ = version_string
 
52
 
 
53
from bzrlib.symbol_versioning import (deprecated_function,
 
54
                                      zero_seven,
 
55
                                      zero_nine,
 
56
                                      deprecated_list,
 
57
                                     )
 
58
 
 
59
# Kept for compatibility with 0.8, it is considered deprecated to modify it
 
60
DEFAULT_IGNORE = deprecated_list(zero_nine, 'DEFAULT_IGNORE', [],
 
61
                    'Consider using bzrlib.ignores.add_unique_user_ignores'
 
62
                    ' or bzrlib.ignores.add_runtime_ignores')
 
63
 
98
64
 
99
65
@deprecated_function(zero_seven)
100
66
def get_bzr_revision():