benadida / beamauth

Using a Bookmark as a Second Authentication Factor

This URL has Read+Write access

benadida (author)
Fri Apr 03 20:52:03 -0700 2009
commit  175807293683a5ed3d39574374ab2439be22a40d
tree    45adc9ee67f17ca57dbe18cd78a3706f6429822d
parent  61d6ca7609d2bdae7ebaea4dd97f86fe27dd2e8f
beamauth / urls.py
100644 16 lines (11 sloc) 0.368 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""
URLs for BeamAuth Server, just send everything to the beamauth app
 
ben@adida.net
"""
 
from django.conf.urls.defaults import *
 
urlpatterns = patterns('',
    (r'^beamauth/', include('beamauth.urls')),
 
    # static hack -- production should bypass this route
    (r'^static/(?P<path>.*)$', 'django.views.static.serve',
            {'document_root': 'static'}),
)