~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/apps/__init__.py

  • Committer: Martin Albisetti
  • Date: 2008-11-17 02:23:41 UTC
  • Revision ID: martin.albisetti@canonical.com-20081117022341-pj0oyhob16zgog81
Allow serving robots.txt out of static/ (Brian Harring)

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
static_app = urlparser.make_static(None, static)
11
11
 
12
12
favicon_app = fileapp.FileApp(os.path.join(static, 'images', 'favicon.ico'))
 
13
robots_app = fileapp.FileApp(os.path.join(static, 'robots.txt'))