~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to serve-branches.py

  • Committer: Robey Pointer
  • Date: 2006-12-15 08:42:22 UTC
  • Revision ID: robey@lag.net-20061215084222-x9wqt4yklp59apqz
lots of little changes:
- allow revno to be used in most urls where a revid is desired.
- clean up the upper right navbar; no more "-300 -100" confusion
- the upper left navbar is now always the same, never contextual
- for the 3 pages that had contextual buttons in the upper-left navbar, move
  them to little side-arrows underneath the h1
- add "jump to diff" link next to modified-files in /changes and /revision
- add date to inventory-view
- add copyright credits from bazaar-webserve

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
from loggerhead.apps.filesystem import BranchesFromFileSystemRoot
3
 
from paste import httpserver
4
 
from paste.httpexceptions import make_middleware
5
 
from paste.translogger import make_filter
6
 
 
7
 
app = BranchesFromFileSystemRoot('.')
8
 
 
9
 
app = app
10
 
app = make_middleware(app)
11
 
app = make_filter(app, None)
12
 
 
13
 
#from paste.evalexception import EvalException
14
 
#app = EvalException(app)
15
 
 
16
 
httpserver.serve(app, host='0.0.0.0', port='9876')