Optimise repo_connect by skipping authenticate_user
The authentication being handled by pyramid itself, going through the
authentication stack to recreate the temporary session at each request is very
costly.
On my desktop, for a mostly static front page, the total time for delivering
the page drops from 100ms to 47ms.
[nosetests]
match = ^test
nocapture = 1
cover-package = sampleapp
with-coverage = 1
cover-erase = 1
[compile_catalog]
directory = sampleapp/locale
domain = sampleapp
statistics = true
[extract_messages]
add_comments = TRANSLATORS:
output_file = sampleapp/locale/sampleapp.pot
width = 80
[init_catalog]
domain = sampleapp
input_file = sampleapp/locale/sampleapp.pot
output_dir = sampleapp/locale
[update_catalog]
domain = sampleapp
input_file = sampleapp/locale/sampleapp.pot
output_dir = sampleapp/locale
previous = true