~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead.conf

  • Committer: Robey Pointer
  • Date: 2006-12-20 03:05:27 UTC
  • Revision ID: robey@lag.net-20061220030527-h9fh8fztifgne8q7
slowly moving the branch-specific stuff into a common structure...
the changes cache is now its own class (ChangeCache) like TextIndex, and
both are fields in History.  almost all of the cache rebuilding logic, etc,
has been moved there and out of __init__.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
 
2
# where is the bazaar branch located, and what should we call it?
 
3
folder='/Users/robey/code/bzr/bzr.dev'
 
4
branch_name='bzr.dev'
 
5
 
 
6
# should we cache revisions?  (HIGHLY recommended)  where?
 
7
# this will be a folder containing a couple of files.  if the folder
 
8
# doesn't already exist, we'll create it.
 
9
cachepath='/Users/robey/code/bzr/bzr.dev/.bzr/loggerhead-cache'
 
10
 
 
11
# what is my externally-visible url? (for use in the atom feed)
 
12
external_url="http://localhost:8080"
 
13
 
2
14
# where's bzrlib?
3
15
# (you only need this if you don't install bzr.)
4
16
bzrpath='/Users/robey/code/bzr/bzr'
5
17
 
6
 
# each branch is in a sub-folder of the website, and the config
7
 
# key describes that folder name:
8
 
[bazaar-dev]
9
 
 
10
 
    # where is the bazaar branch located, and what should we call it?
11
 
    folder='/Users/robey/code/bzr/bzr.dev'
12
 
 
13
 
    # (optional) is there a friendier name for the branch that i should
14
 
    # use on the web pages?
15
 
    #branch_name='bazaar-dev'
16
 
 
17
 
    # should we cache revisions?  (HIGHLY recommended)  where?
18
 
    # this will be a folder containing a couple of files.  if the folder
19
 
    # doesn't already exist, we'll create it.
20
 
    cachepath='/Users/robey/code/bzr/bzr.dev/.bzr/loggerhead-cache'
21
 
 
22
 
    # what is my externally-visible url? (for use in the atom feed)
23
 
    external_url="http://localhost:8080"
24
 
 
25