~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to start-loggerhead.py

  • Committer: Robey Pointer
  • Date: 2007-01-14 01:22:51 UTC
  • Revision ID: robey@lag.net-20070114012251-4r9icwoouak09zog
try john's idea of implementing _get_deltas_for_revisions_with_trees().
i don't think it helps a lot, but it's clearly less redundant.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/Library/Frameworks/Python.framework/Versions/2.4/Resources/Python.app/Contents/MacOS/Python
 
1
#!/usr/bin/env python2.4
2
2
import pkg_resources
3
3
pkg_resources.require("TurboGears")
4
4
 
23
23
    turbogears.update_config(configfile="prod.cfg",
24
24
        modulename="loggerhead.config")
25
25
 
26
 
# robey FIXME
27
 
sys.path.insert(0, '/Users/robey/code/bzr/bzr.dev')
28
 
 
29
26
from loggerhead.controllers import Root
30
27
 
31
 
turbogears.start_server(Root())
 
28
turbogears.start_server(Root)