~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to serve-branches

  • Committer: Matt Nordhoff
  • Date: 2009-05-04 20:21:08 UTC
  • mto: This revision was merged to the branch mainline in revision 338.
  • Revision ID: mnordhoff@mattnordhoff.com-20090504202108-eedceydocf0luv20
Review:

* Fix hiding directories that start with "." in DirectoryUI.

* Rename loggerhead.apps.filesystem to loggerhead.apps.transport, along with its classes.

* Fix NEWS syntax and mention bug number.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
from paste.translogger import TransLogger
28
28
 
29
29
from loggerhead import __version__
30
 
from loggerhead.apps.filesystem import (
31
 
    BranchesFromFileSystemRoot, UserBranchesFromFileSystemRoot)
 
30
from loggerhead.apps.transport import (
 
31
    BranchesFromTransportRoot, UserBranchesFromTransportRoot)
32
32
from loggerhead.config import LoggerheadConfig
33
33
from loggerhead.util import Reloader
34
34
from loggerhead.apps.error import ErrorHandlerApp
67
67
        if not config.get_option('trunk_dir'):
68
68
            print "You didn't specify a directory for the trunk directories."
69
69
            sys.exit(1)
70
 
        app = UserBranchesFromFileSystemRoot(transport, config)
 
70
        app = UserBranchesFromTransportRoot(transport, config)
71
71
    else:
72
 
        app = BranchesFromFileSystemRoot(transport, config)
 
72
        app = BranchesFromTransportRoot(transport, config)
73
73
 
74
74
    # setup_logging()
75
75
    logging.basicConfig()