~ubuntu-branches/ubuntu/lucid/loggerhead/lucid-security

« back to all changes in this revision

Viewing changes to loggerhead/apps/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2008-12-09 01:04:39 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20081209010439-67a169sw58q1nru3
Tags: 1.10-1
* New upstream release.
* Stop writing home directory to pid file. (Closes: #507002)
* Use objlib from bzr. (Closes: #506999)
* Fix dependency on python-paste.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
from paste import urlparser, fileapp
6
6
 
 
7
from bzrlib.plugin import load_plugins
 
8
 
7
9
static = os.path.join(
8
10
    os.path.dirname(os.path.dirname(__file__)), 'static')
9
11
 
11
13
 
12
14
favicon_app = fileapp.FileApp(os.path.join(static, 'images', 'favicon.ico'))
13
15
robots_app = fileapp.FileApp(os.path.join(static, 'robots.txt'))
 
16
 
 
17
# load plugins - such as svn:// support, extra formats and so on.
 
18
load_plugins()