##// END OF EJS Templates
Merged with team repository.
Merged with team repository.

File last commit:

r78:ae58592b default
r80:b46de5ed merge default
Show More
urls.py
30 lines | 916 B | text/x-python | PythonLexer
Ilyas
Added django-simple-capthca support...
r78 from django.conf.urls import patterns, url, include
neko259
Initial commit. One test doesn't work, missing posting form.
r0 from boards import views
urlpatterns = patterns('',
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9
neko259
Initial commit. One test doesn't work, missing posting form.
r0 # /boards/
neko259
Compiling regexes for gets. #17 Added pagination. #28 Visually differing the dead (not bumpable) threads.
r46 url(r'^$', views.index, name='index'),
# /boards/page/
url(r'^page/(?P<page>\w+)/$', views.index, name='index'),
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9
# login page
url(r'^login$', views.login, name='login'),
Ilyas
Completed login and logout functionality and covered by tests.
r13 # logout page
url(r'^logout$', views.logout, name='logout'),
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9
neko259
Compiling regexes for gets. #17 Added pagination. #28 Visually differing the dead (not bumpable) threads.
r46 # /boards/tag/tag_name/
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 url(r'^tag/(?P<tag_name>\w+)/$', views.tag, name='tag'),
neko259
Compiling regexes for gets. #17 Added pagination. #28 Visually differing the dead (not bumpable) threads.
r46 # /boards/tag/tag_id/page/
url(r'^tag/(?P<tag_name>\w+)/page/(?P<page>\w+)/$', views.tag, name='tag'),
# /boards/thread/
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 url(r'^thread/(?P<post_id>\w+)/$', views.thread, name='thread'),
# /boards/theme/theme_name/
url(r'^settings$', views.settings, name='settings'),
neko259
Limit number of tags shown in the navigation bar to only the most popular ones.
r57 url(r'^tags$', views.all_tags, name='tags'),
neko259
Initial commit. One test doesn't work, missing posting form.
r0 )
Ilyas
Added django-simple-capthca support...
r78
#enable captcha support
urlpatterns += patterns('',
url(r'^captcha/', include('captcha.urls')),
)