5147.5.4
by Martin von Gagern
Assign copyright to Canonical Ltd. |
1 |
# Copyright (C) 2009, 2010 Canonical Ltd
|
0.27.14
by Martin von Gagern
Added GPL 2 license document and copyright notice. |
2 |
#
|
5147.5.5
by Martin von Gagern
Adjust copyright notice comments for bash_completion. |
3 |
# This program is free software; you can redistribute it and/or modify
|
4 |
# it under the terms of the GNU General Public License as published by
|
|
5 |
# the Free Software Foundation; either version 2 of the License, or
|
|
6 |
# (at your option) any later version.
|
|
7 |
#
|
|
8 |
# This program is distributed in the hope that it will be useful,
|
|
9 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
10 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
11 |
# GNU General Public License for more details.
|
|
0.27.14
by Martin von Gagern
Added GPL 2 license document and copyright notice. |
12 |
#
|
13 |
# You should have received a copy of the GNU General Public License
|
|
5147.5.5
by Martin von Gagern
Adjust copyright notice comments for bash_completion. |
14 |
# along with this program; if not, write to the Free Software
|
15 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
0.27.14
by Martin von Gagern
Added GPL 2 license document and copyright notice. |
16 |
|
6379.6.1
by Jelmer Vernooij
Import absolute_import in a few places. |
17 |
from __future__ import absolute_import |
18 |
||
5147.5.14
by Martin von Gagern
Assign user-visible docstrings to __doc__. |
19 |
__doc__ = """Generate a shell function for bash command line completion. |
0.27.11
by Martin von Gagern
Add module docstring. |
20 |
|
21 |
This plugin provides a command called bash-completion that generates a
|
|
22 |
bash completion function for bzr. See its documentation for details.
|
|
23 |
"""
|
|
24 |
||
5147.5.12
by Martin von Gagern
Use version of bzrlib. Drop meta.py. |
25 |
from bzrlib import commands, version_info |
26 |
||
27 |
||
28 |
bzr_plugin_name = 'bash_completion' |
|
29 |
bzr_commands = [ 'bash-completion' ] |
|
5147.5.11
by Martin von Gagern
Register command lazily. |
30 |
|
31 |
commands.plugin_cmds.register_lazy('cmd_bash_completion', [], |
|
32 |
'bzrlib.plugins.bash_completion.bashcomp') |
|
0.32.10
by Martin von Gagern
Import modules, not classes or functions. |
33 |
|
0.32.4
by Martin von Gagern
Added some selftests executed through bash. |
34 |
|
35 |
def load_tests(basic_tests, module, loader): |
|
36 |
testmod_names = [ |
|
37 |
'tests', |
|
38 |
]
|
|
39 |
basic_tests.addTest(loader.loadTestsFromModuleNames( |
|
40 |
["%s.%s" % (__name__, tmn) for tmn in testmod_names])) |
|
41 |
return basic_tests |