~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead.conf

  • Committer: Robey Pointer
  • Date: 2006-12-20 21:17:53 UTC
  • Revision ID: robey@lag.net-20061220211753-tbgl6hlhdvqt2mu4
add top-level page listing available branches.  also a patch from matty to not require external-url in atom feeds any more

Show diffs side-by-side

added added

removed removed

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