~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to serve-branches.py

  • Committer: Martin Albisetti
  • Date: 2008-06-13 20:08:54 UTC
  • mto: (157.1.3 loggerhead)
  • mto: This revision was merged to the branch mainline in revision 187.
  • Revision ID: argentina@gmail.com-20080613200854-vfa7s0grp5dxa4vv
 * Removed old javascript and css
 * Added mootools 1.2 javascript library
 * Temporarily commented out template code

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
import logging
3
 
import sys
4
 
 
5
 
from paste import httpserver
6
 
from paste.httpexceptions import HTTPExceptionHandler
7
 
from paste.translogger import TransLogger
8
 
 
9
 
from loggerhead.apps.filesystem import BranchesFromFileSystemRoot
10
 
 
11
 
 
12
 
logging.basicConfig()
13
 
logging.getLogger().setLevel(logging.DEBUG)
14
 
 
15
 
if len(sys.argv) > 1:
16
 
    path = sys.argv[1]
17
 
else:
18
 
    path = '.'
19
 
 
20
 
app = BranchesFromFileSystemRoot(path)
21
 
 
22
 
app = HTTPExceptionHandler(app)
23
 
app = TransLogger(app)
24
 
 
25
 
try:
26
 
    from paste.deploy.config import PrefixMiddleware
27
 
except ImportError:
28
 
    pass
29
 
else:
30
 
    app = PrefixMiddleware(app)
31
 
 
32
 
#from paste.evalexception import EvalException
33
 
#app = EvalException(app)
34
 
 
35
 
httpserver.serve(app, host='0.0.0.0', port='8080')