2012-08-28 21:31:32 +02:00
|
|
|
from django.conf import settings
|
2012-09-07 19:36:41 +02:00
|
|
|
from django.conf.urls import patterns, url
|
2012-08-28 21:31:32 +02:00
|
|
|
import os.path
|
2012-08-28 18:44:51 +02:00
|
|
|
|
|
|
|
# Uncomment the next two lines to enable the admin:
|
|
|
|
# from django.contrib import admin
|
|
|
|
# admin.autodiscover()
|
|
|
|
|
|
|
|
urlpatterns = patterns('',
|
|
|
|
url(r'^$', 'zephyr.views.home', name='home'),
|
|
|
|
url(r'^update$', 'zephyr.views.update', name='update'),
|
2012-08-28 22:56:21 +02:00
|
|
|
url(r'^get_updates_longpoll$', 'zephyr.views.get_updates_longpoll', name='get_updates_longpoll'),
|
2012-08-28 18:44:51 +02:00
|
|
|
url(r'^zephyr/', 'zephyr.views.zephyr', name='zephyr'),
|
2012-09-06 22:00:39 +02:00
|
|
|
url(r'^forge_zephyr/', 'zephyr.views.forge_zephyr', name='forge_zephyr'),
|
2012-08-28 18:44:51 +02:00
|
|
|
url(r'^accounts/home/', 'zephyr.views.accounts_home', name='accounts_home'),
|
|
|
|
url(r'^accounts/login/', 'django.contrib.auth.views.login', {'template_name': 'zephyr/login.html'}),
|
|
|
|
url(r'^accounts/logout/', 'django.contrib.auth.views.logout', {'template_name': 'zephyr/index.html'}),
|
|
|
|
url(r'^accounts/register/', 'zephyr.views.register', name='register'),
|
2012-08-30 18:04:35 +02:00
|
|
|
url(r'^subscriptions/$', 'zephyr.views.subscriptions', name='subscriptions'),
|
|
|
|
url(r'^subscriptions/manage/$', 'zephyr.views.manage_subscriptions', name='manage_subscriptions'),
|
2012-08-30 20:00:04 +02:00
|
|
|
url(r'^subscriptions/add/$', 'zephyr.views.add_subscriptions', name='add_subscriptions'),
|
2012-08-28 21:31:32 +02:00
|
|
|
url(r'^static/(?P<path>.*)$', 'django.views.static.serve',
|
2012-09-05 23:38:20 +02:00
|
|
|
{'document_root': os.path.join(settings.SITE_ROOT, '..', 'zephyr', 'static/')}),
|
|
|
|
url(r'^subscriptions/exists/(?P<zephyr_class>.*)$', 'zephyr.views.class_exists', name='class_exists'),
|
2012-08-28 18:44:51 +02:00
|
|
|
|
|
|
|
# Uncomment the admin/doc line below to enable admin documentation:
|
|
|
|
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
|
|
|
|
|
|
|
|
# Uncomment the next line to enable the admin:
|
|
|
|
# url(r'^admin/', include(admin.site.urls)),
|
|
|
|
)
|