diff options
author | Glenn Morris <rgm@gnu.org> | 2011-05-28 10:46:02 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-05-28 10:46:02 -0700 |
commit | 57f4e35d09c683681ec78104083e1b56eb403da3 (patch) | |
tree | 590a9ad19312c3db16337c8de10bdf5f18013b29 /admin | |
parent | 5199bde17738aba58d6380ba5b334fd2a48b6621 (diff) | |
download | emacs-57f4e35d09c683681ec78104083e1b56eb403da3.tar.gz |
* admin/notes/bzr: Your very own Loggerhead server.
Diffstat (limited to 'admin')
-rw-r--r-- | admin/notes/bzr | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/admin/notes/bzr b/admin/notes/bzr index 8720982e0aa..2fdbc2854f8 100644 --- a/admin/notes/bzr +++ b/admin/notes/bzr @@ -179,3 +179,24 @@ where revision N+1 is the one where file was removed. You could also try `bzr add --file-ids-from', if you have a copy of another branch where file still exists. + +* Loggerhead + +Loggerhead is the bzr tool for viewing a repository over http (similar +to ViewVC). The central version is at http://bzr.savannah.gnu.org/lh/emacs, +but if you just like the way this interface presents data, then if +you have your own copy of the repository, you can operate your own +Loggerhead server in stand-alone mode, and so help to reduce the load +on Savannah: + + bzr branch lp:loggerhead ~/.bazaar/plugins/loggerhead + cd /path/to/emacs/bzr + bzr serve --http + +You may need to install some Python dependencies to get this command to work. +For example, on RHEL6 I needed: + + yum install python-paste python-simplejson + yum --enablerepo=epel install python-simpletal + +Then point your web-browser to http://127.0.0.1:8080/ . |