/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to doc/en/admin-guide/hooks-plugins.txt

  • Committer: Marius Kruger
  • Date: 2010-07-10 21:28:56 UTC
  • mto: (5384.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5385.
  • Revision ID: marius.kruger@enerweb.co.za-20100710212856-uq4ji3go0u5se7hx
* Update documentation
* add NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
http://doc.bazaar.canonical.com/plugins/en/.  For purposes of installation,
26
26
plugins are simply python packages.  They can be installed alongside Bazaar in
27
27
the ``bzrlib.plugins`` package using each plugin's ``setup.py``.  They can
28
 
also be installed in the plugin path which is the user's
29
 
``~/.config/breezy/plugins`` directory or can be specified with the
30
 
``BZR_PLUGIN_PATH`` environment variable.  See ``bzr help configuration`` for
31
 
more on specifying the location of plugins.
 
28
also be installed in the plugin path which is the user's ``~/.bazaar/plugins``
 
29
directory or can be specified with the ``BZR_PLUGIN_PATH`` environment
 
30
variable.  See ``bzr help configuration`` for more on specifying the location
 
31
of plugins.
32
32
 
33
33
 
34
34
Email Notification
59
59
mail should be sent.  If it isn't set, email is sent via ``/usr/bin/mail``.
60
60
It can also be configured to communicate directly with an SMTP server.
61
61
For more details on configuring this plugin, see
62
 
http://doc.bazaar.canonical.com/plugins/en/email-plugin.html.  As examples,
63
 
consider the following two possible configurations.  A minimal one (uses
 
62
http://doc.bazaar-vcs.org/plugins/en/email-plugin.html.  As examples, consider
 
63
the following two possible configurations.  A minimal one (uses
64
64
``/usr/bin/mail``)
65
65
 
66
66
::
96
96
 
97
97
::
98
98
 
99
 
  $ brz_hookless_email.py --email=projectx-commits@example.com \
 
99
  $ bzr_hookless_email.py --email=projectx-commits@example.com \
100
100
  --recurse /srv/bzr
101
101
 
102
102
email-notifier
143
143
 
144
144
::
145
145
 
146
 
  $ brz-email-notifier.py --config=/srv/bzr/email-notifier.conf /srv/bzr/projectx
 
146
  $ bzr-email-notifier.py --config=/srv/bzr/email-notifier.conf /srv/bzr/projectx
147
147
 
148
148
will watch all branches under the given directory for commits, branch
149
149
creations and branch deletions.
166
166
``branch.atom`` files.
167
167
 
168
168
In addition, there are other tools that are not plugins for creating news
169
 
feeds from Bazaar branches.  See
170
 
http://wiki.bazaar.canonical.com/FeedGenerators for more on those tools.
 
169
feeds from Bazaar branches.  See http://bazaar-vcs.org/FeedGenerators for more
 
170
on those tools.
171
171
 
172
172
Mirroring
173
173
---------