~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Martin Pool
  • Date: 2006-03-15 18:27:23 UTC
  • mto: (1668.1.8 bzr-0.8.mbp)
  • mto: This revision was merged to the branch mainline in revision 1710.
  • Revision ID: mbp@sourcefrog.net-20060315182723-34caff0963d7c484
Start lp-register command

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006 by Canonical Ltd
 
2
#
 
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.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
"""Launchpad.net branch registration plugin for bzr
 
18
 
 
19
This adds commands that tell launchpad about newly-created branches, etc.
 
20
 
 
21
To install this file, put the 'bzr_lp' directory, or a symlink to it,
 
22
in your ~/.bazaar/plugins/ directory.
 
23
"""
 
24
 
 
25
from bzrlib.commands import Command, Option, register_command
 
26
 
 
27
class cmd_lp_register(Command):
 
28
    """Register an branch with launchpad.net.
 
29
 
 
30
    This command lists a bzr branch in the directory of branches on
 
31
    launchpad.net.  Registration allows the bug to be associated with
 
32
    bugs or specifications.
 
33
    
 
34
    Before using this command you must register the project to which the
 
35
    branch belongs, and create an account for yourself on launchpad.net.
 
36
    """
 
37
    takes_args = ['url']
 
38
 
 
39
 
 
40
register_command(cmd_lp_register)
 
41
 
 
42
def test_suite():
 
43
    """Called by bzrlib to fetch tests for this plugin"""
 
44
    from unittest import TestSuite, TestLoader
 
45
    import test_register
 
46
    return TestLoader().loadTestsFromModule(test_register)