~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/plugins.txt

  • Committer: James Blackwell
  • Date: 2006-03-14 16:57:35 UTC
  • mto: This revision was merged to the branch mainline in revision 1700.
  • Revision ID: jblack@merconline.com-20060314165735-30bae1b8da652fa4
Now they look good in rst2html

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
`bzrlib.commands.register_command(cmd_foo)`.  You must register the command
31
31
when your file is imported, otherwise bzr will not see it.
32
32
 
33
 
By default, bzr will scan `bzrlib/plugins` and `~/.bazaar/plugins` for
34
 
plugins.  You can override this with `BZR_PLUGIN_PATH`.  Plugins may be
 
33
Bzr will scan **bzrlib/plugins** and **~/.bazaar/plugins** for plugins by
 
34
default.  You can override this with **BZR_PLUGIN_PATH**.  Plugins may be
35
35
either modules or packages.  If your plugin is a single file, you can
36
36
structure it as a module.  If it has multiple files, or if you want to
37
37
distribute it as a bzr branch, you should structure it as a package, i.e. a
38
 
directory with an `__init__.py ` file.
 
38
directory with an **__init__.py** file.
39
39
 
40
40
Please feel free to contribute your plugin to BzrTools, if you think it
41
41
would be useful to other people.