~loggerhead-team/loggerhead/trunk-rich

24 by Robey Pointer
figured out how to make my own separate config file like BzrInspect, and
1
# where's bzrlib?
2
# (you only need this if you don't install bzr.)
46 by Robey Pointer
add footer banners for bazaar and loggerhead, and slightly improve the config
3
#bzrpath = '/Users/robey/code/bzr/bzr'
75 by Robey Pointer
flesh out examples for the auto_publish feature.
4
24 by Robey Pointer
figured out how to make my own separate config file like BzrInspect, and
5
# if you want a special title on the front page, set it here:
49 by Robey Pointer
add top-level page listing available branches. also a patch from matty to not require external-url in atom feeds any more
6
title = 'branches in loggerhead'
75 by Robey Pointer
flesh out examples for the auto_publish feature.
7
49 by Robey Pointer
add top-level page listing available branches. also a patch from matty to not require external-url in atom feeds any more
8
# group branches by project:
9
[bazaar]
10
11
    # name of this project
12
    name = 'bazaar'
13
    
75 by Robey Pointer
flesh out examples for the auto_publish feature.
14
    # for the top browsing page, you can include a description, in raw HTML.
15
    #description = 'Bazaar is a <i>revision control system</i>.'
16
17
    # should we cache revisions and build a text index?  (HIGHLY recommended)
18
    # this will be a folder containing a few files.  if the folder doesn't
19
    # exist, it'll be created.
20
    #
21
    # all branches in this project will share the same cache, which is usually
22
    # what you want if they share a repository.  if not, you can also specify
23
    # this per-branch.
24
    cachepath = '/Users/robey/code/bzr/.bzr/loggerhead-files'
25
49 by Robey Pointer
add top-level page listing available branches. also a patch from matty to not require external-url in atom feeds any more
26
    # each branch is in a sub-folder of the website, and the config
27
    # key describes that folder name:
28
    [[bzr.dev]]
57 by Robey Pointer
use bzr.dev as the branch name now that it's okay
29
49 by Robey Pointer
add top-level page listing available branches. also a patch from matty to not require external-url in atom feeds any more
30
        # where is the bazaar branch located?
31
        folder = '/Users/robey/code/bzr/bzr.dev'
75 by Robey Pointer
flesh out examples for the auto_publish feature.
32
49 by Robey Pointer
add top-level page listing available branches. also a patch from matty to not require external-url in atom feeds any more
33
        # (optional) is there a friendier name for the branch that i should
34
        # use on the web pages?
35
        # you can also define this using the branch's nickname.
75 by Robey Pointer
flesh out examples for the auto_publish feature.
36
        #branch_name = 'bazaar-dev'
37
49 by Robey Pointer
add top-level page listing available branches. also a patch from matty to not require external-url in atom feeds any more
38
        # (optional) short description for the top-level page
39
        # you can also define this using the "description" config key in the
75 by Robey Pointer
flesh out examples for the auto_publish feature.
40
        # branch's 'branch.conf'.
41
        description = "bazaar vcs development branch"
42
49 by Robey Pointer
add top-level page listing available branches. also a patch from matty to not require external-url in atom feeds any more
43
        # (optional) public branch url for the top-level page
44
        # you can also define this using the "public_url" config key in the
75 by Robey Pointer
flesh out examples for the auto_publish feature.
45
        # branch's 'branch.conf'.
46
        url = 'http://bazaar-ng.org/bzr/bzr.dev'
47
48
49
# here's an example of an auto-published folder:
50
[paramiko]
51
    name = 'paramiko'
52
    cachepath = '/Users/robey/code/paramiko/.bzr/loggerhead-files'
53
    
54
    # if an auto_publish_folder is given, any bazaar branches discovered in
55
    # that folder will be published.  using each branch's 'branch.conf' to
56
    # provide optional descriptions and public urls is a nice way to avoid
57
    # having to do much configuration here.
58
    auto_publish_folder = '/Users/robey/code/paramiko'
59
    
60
    # if all of the branches under an auto_publish_folder are exported to
61
    # the same (base) public url, you can specify that url prefix here, and
62
    # each discovered branch's public url will be generated.
63
    url_prefix = 'http://www.example.com/code/paramiko'
64