1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
# use this to change the server's port
#server.socket_port = 8080
# use this if you're mapping loggerhead within apache via proxy
#server.webpath = 'http://example.com/branches'
# use this if you want loggerhead to listen to another interface than 127.0.0.1
# server.socket_host = 'your_hostname_or_ip'
# if you want a special title on the front page, set it here:
title = 'branches in loggerhead'
# the access and debug logs can be set up to roll 'daily', 'weekly', or 'never':
log.roll = 'weekly'
# group branches by project:
[bazaar]
# name of this project
name = 'bazaar'
# for the top browsing page, you can include a description, in raw HTML.
#description = 'Bazaar is a <i>revision control system</i>.'
# should we cache files changed? (recommended for large trees)
# this will be a folder containing one file. if the folder doesn't
# exist, it'll be created.
#
# all branches in this project will share the same cache, which is usually
# what you want if they share a repository. if not, you can also specify
# this per-branch.
cachepath = '/Users/robey/code/bzr/.bzr/loggerhead-files'
# each branch is in a sub-folder of the website, and the config
# key describes that folder name:
[[bzr.dev]]
# where is the bazaar branch located?
folder = '/Users/robey/code/bzr/bzr.dev'
# (optional) is there a friendier name for the branch that i should
# use on the web pages?
# you can also define this using the branch's nickname.
#branch_name = 'bazaar-dev'
# (optional) short description for the top-level page
# you can also define this using the "description" config key in the
# branch's 'branch.conf'.
description = "bazaar vcs development branch"
# (optional) public branch url for the top-level page
# you can also define this using the "public_url" config key in the
# branch's 'branch.conf'.
url = 'http://bazaar-ng.org/bzr/bzr.dev'
# here's an example of an auto-published folder:
[paramiko]
name = 'paramiko'
cachepath = '/Users/robey/code/paramiko/.bzr/loggerhead-files'
# if an auto_publish_folder is given, any bazaar branches discovered in
# that folder will be published. using each branch's 'branch.conf' to
# provide optional descriptions and public urls is a nice way to avoid
# having to do much configuration here.
auto_publish_folder = '/Users/robey/code/paramiko'
# if all of the branches under an auto_publish_folder are exported to
# the same (base) public url, you can specify that url prefix here, and
# each discovered branch's public url will be generated.
url_prefix = 'http://www.example.com/code/paramiko'
|