~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/apps/__init__.py

  • Committer: Robey Pointer
  • Date: 2007-01-21 02:46:53 UTC
  • Revision ID: robey@lag.net-20070121024653-wmv3n4pbwbup0e60
add news, bump version to 1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
import os
3
 
 
4
 
from paste import urlparser, fileapp
5
 
 
6
 
static = os.path.join(
7
 
    os.path.dirname(os.path.dirname(__file__)), 'static')
8
 
 
9
 
static_app = urlparser.make_static(None, static)
10
 
 
11
 
favicon_app = fileapp.FileApp(os.path.join(static, 'images', 'favicon.ico'))