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
|
# where's bzrlib?
# (you only need this if you don't install bzr.)
bzrpath='/Users/robey/code/bzr/bzr'
# if you want a special title on the front page, set it here:
title='branches in loggerhead'
# group branches by project:
[bazaar]
# name of this project
name = 'bazaar'
# each branch is in a sub-folder of the website, and the config
# key describes that folder name:
[[bazaar-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?
#branch_name='bazaar-dev'
# (optional) short description for the top-level page
description="bazaar vcs development branch"
# (optional) public branch url for the top-level page
url='http://bazaar-ng.org/bzr/bzr.dev'
# should we cache revisions? (HIGHLY recommended) where?
# this will be a folder containing a couple of files. if the folder
# doesn't already exist, we'll create it.
cachepath='/Users/robey/code/bzr/bzr.dev/.bzr/loggerhead-cache'
|