2012-08-28 21:31:32 +02:00
|
|
|
from django.conf import settings
|
2013-07-05 20:04:47 +02:00
|
|
|
from django.conf.urls import patterns, url, include
|
2013-03-08 19:15:51 +01:00
|
|
|
from django.views.generic import TemplateView, RedirectView
|
2012-08-28 21:31:32 +02:00
|
|
|
import os.path
|
2013-07-29 23:03:31 +02:00
|
|
|
import zerver.forms
|
2012-08-28 18:44:51 +02:00
|
|
|
|
2013-03-21 22:38:02 +01:00
|
|
|
# NB: There are several other pieces of code which route requests by URL:
|
|
|
|
#
|
|
|
|
# - runtornado.py has its own URL list for Tornado views. See the
|
|
|
|
# invocation of web.Application in that file.
|
|
|
|
#
|
|
|
|
# - The Nginx config knows which URLs to route to Django or Tornado.
|
|
|
|
#
|
|
|
|
# - Likewise for the local dev server in tools/run-dev.py.
|
|
|
|
|
2012-08-28 18:44:51 +02:00
|
|
|
urlpatterns = patterns('',
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^$', 'zerver.views.home'),
|
2013-11-07 19:48:21 +01:00
|
|
|
# We have a desktop-specific landing page in case we change our / to not log in in the future. We don't
|
|
|
|
# want to require a new desktop app build for everyone in that case
|
|
|
|
url(r'^desktop_home/$', 'zerver.views.home'),
|
|
|
|
|
2013-02-20 22:26:06 +01:00
|
|
|
url(r'^accounts/login/openid/$', 'django_openid_auth.views.login_begin', name='openid-login'),
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^accounts/login/openid/done/$', 'zerver.views.process_openid_login', name='openid-complete'),
|
2013-02-20 22:26:06 +01:00
|
|
|
url(r'^accounts/login/openid/done/$', 'django_openid_auth.views.login_complete', name='openid-complete'),
|
2013-11-04 23:16:46 +01:00
|
|
|
url(r'^accounts/login/sso/$', 'zerver.views.remote_user_sso'),
|
2012-09-29 00:49:34 +02:00
|
|
|
# We have two entries for accounts/login to allow reverses on the Django
|
|
|
|
# view we're wrapping to continue to function.
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^accounts/login/', 'zerver.views.login_page', {'template_name': 'zerver/login.html'}),
|
|
|
|
url(r'^accounts/login/', 'django.contrib.auth.views.login', {'template_name': 'zerver/login.html'}),
|
|
|
|
url(r'^accounts/logout/', 'zerver.views.logout_then_login'),
|
2013-08-23 20:49:06 +02:00
|
|
|
url(r'^accounts/webathena_kerberos_login/', 'zerver.views.webathena_kerberos_login'),
|
2012-10-16 21:42:40 +02:00
|
|
|
|
2012-11-05 19:53:16 +01:00
|
|
|
url(r'^accounts/password/reset/$', 'django.contrib.auth.views.password_reset',
|
|
|
|
{'post_reset_redirect' : '/accounts/password/reset/done/',
|
2013-07-29 23:03:31 +02:00
|
|
|
'template_name': 'zerver/reset.html',
|
2012-11-05 19:53:16 +01:00
|
|
|
'email_template_name': 'registration/password_reset_email.txt',
|
|
|
|
}),
|
|
|
|
url(r'^accounts/password/reset/done/$', 'django.contrib.auth.views.password_reset_done',
|
2013-07-29 23:03:31 +02:00
|
|
|
{'template_name': 'zerver/reset_emailed.html'}),
|
2013-11-01 20:09:17 +01:00
|
|
|
url(r'^accounts/password/reset/(?P<uidb64>[0-9A-Za-z]+)/(?P<token>.+)/$',
|
|
|
|
'django.contrib.auth.views.password_reset_confirm',
|
|
|
|
{'post_reset_redirect' : '/accounts/password/done/',
|
|
|
|
'template_name': 'zerver/reset_confirm.html',
|
2013-07-29 23:03:31 +02:00
|
|
|
'set_password_form' : zerver.forms.LoggingSetPasswordForm}),
|
2013-11-01 20:10:41 +01:00
|
|
|
|
|
|
|
# the next line can be removed PASSWORD_RESET_TIMEOUT_DAYS after this code is deployed
|
|
|
|
url(r'^reset/(?P<uidb36>[0-9A-Za-z]+)-(?P<token>.+)/$',
|
|
|
|
'django.contrib.auth.views.password_reset_confirm_uidb36',
|
|
|
|
{'post_reset_redirect' : '/accounts/password/done/',
|
|
|
|
'template_name': 'zerver/reset_confirm.html',
|
|
|
|
'set_password_form' : zerver.forms.LoggingSetPasswordForm}),
|
|
|
|
|
2012-11-05 19:53:16 +01:00
|
|
|
url(r'^accounts/password/done/$', 'django.contrib.auth.views.password_reset_complete',
|
2013-07-29 23:03:31 +02:00
|
|
|
{'template_name': 'zerver/reset_done.html'}),
|
2012-11-05 19:53:16 +01:00
|
|
|
|
2012-10-29 22:16:22 +01:00
|
|
|
# Registration views, require a confirmation ID.
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^accounts/home/', 'zerver.views.accounts_home'),
|
2013-03-08 19:15:51 +01:00
|
|
|
url(r'^accounts/send_confirm/(?P<email>[\S]+)?',
|
2013-07-29 23:03:31 +02:00
|
|
|
TemplateView.as_view(template_name='zerver/accounts_send_confirm.html'), name='send_confirm'),
|
|
|
|
url(r'^accounts/register/', 'zerver.views.accounts_register'),
|
2012-11-02 16:13:14 +01:00
|
|
|
url(r'^accounts/do_confirm/(?P<confirmation_key>[\w]+)', 'confirmation.views.confirm'),
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^invite/$', 'zerver.views.initial_invite_page', name='initial-invite-users'),
|
2012-10-29 22:16:22 +01:00
|
|
|
|
2013-01-08 23:26:40 +01:00
|
|
|
# Portico-styled page used to provide email confirmation of terms acceptance.
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^accounts/accept_terms/$', 'zerver.views.accounts_accept_terms'),
|
2013-01-08 23:26:40 +01:00
|
|
|
|
2012-10-26 18:59:59 +02:00
|
|
|
# Terms of service and privacy policy
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^terms/$', TemplateView.as_view(template_name='zerver/terms.html')),
|
|
|
|
url(r'^privacy/$', TemplateView.as_view(template_name='zerver/privacy.html')),
|
2012-10-26 18:59:59 +02:00
|
|
|
|
2013-11-06 13:02:47 +01:00
|
|
|
# Login/registration
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^register/$', 'zerver.views.accounts_home', name='register'),
|
|
|
|
url(r'^login/$', 'zerver.views.login_page', {'template_name': 'zerver/login.html'}),
|
2013-05-16 21:24:11 +02:00
|
|
|
|
2013-08-02 20:32:56 +02:00
|
|
|
# A registration page that passes through the domain, for totally open realms.
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^register/(?P<domain>\S+)/$', 'zerver.views.accounts_home_with_domain'),
|
2013-08-02 20:32:56 +02:00
|
|
|
|
2013-02-06 20:25:04 +01:00
|
|
|
# API and integrations documentation
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^api/$', TemplateView.as_view(template_name='zerver/api.html')),
|
|
|
|
url(r'^api/endpoints/$', 'zerver.views.api_endpoint_docs'),
|
|
|
|
url(r'^integrations/$', TemplateView.as_view(template_name='zerver/integrations.html')),
|
2013-10-14 18:49:42 +02:00
|
|
|
url(r'^apps/$', TemplateView.as_view(template_name='zerver/apps.html')),
|
2013-02-04 20:01:45 +01:00
|
|
|
|
2013-03-18 21:49:59 +01:00
|
|
|
url(r'^robots\.txt$', RedirectView.as_view(url='/static/robots.txt')),
|
2013-03-18 21:47:37 +01:00
|
|
|
)
|
2013-03-18 21:49:59 +01:00
|
|
|
|
2013-10-28 16:13:53 +01:00
|
|
|
# These are used for localserver development. On a real localserver instance,
|
|
|
|
# these files would be served by nginx.
|
|
|
|
if not settings.DEPLOYED and settings.LOCAL_UPLOADS_DIR is not None:
|
|
|
|
urlpatterns += patterns('',
|
|
|
|
url(r'^user_avatars/(?P<path>.*)$', 'django.views.static.serve',
|
|
|
|
{'document_root': os.path.join(settings.LOCAL_UPLOADS_DIR, "avatars")}),
|
|
|
|
url(r'^user_uploads/(?P<path>.*)$', 'django.views.static.serve',
|
|
|
|
{'document_root': os.path.join(settings.LOCAL_UPLOADS_DIR, "files")}),
|
|
|
|
)
|
|
|
|
|
2013-07-29 23:03:31 +02:00
|
|
|
urlpatterns += patterns('zerver.views',
|
2012-10-16 21:42:40 +02:00
|
|
|
# These are json format views used by the web client. They require a logged in browser.
|
2013-03-18 21:47:37 +01:00
|
|
|
url(r'^json/update_pointer$', 'json_update_pointer'),
|
|
|
|
url(r'^json/get_old_messages$', 'json_get_old_messages'),
|
|
|
|
url(r'^json/get_public_streams$', 'json_get_public_streams'),
|
2013-09-10 11:46:18 +02:00
|
|
|
url(r'^json/rename_stream$', 'json_rename_stream'),
|
2013-03-18 21:47:37 +01:00
|
|
|
url(r'^json/send_message$', 'json_send_message'),
|
|
|
|
url(r'^json/invite_users$', 'json_invite_users'),
|
2013-07-11 21:40:52 +02:00
|
|
|
url(r'^json/bulk_invite_users$', 'json_bulk_invite_users'),
|
2013-03-18 21:47:37 +01:00
|
|
|
url(r'^json/settings/change$', 'json_change_settings'),
|
2013-10-25 22:41:35 +02:00
|
|
|
url(r'^json/notify_settings/change$', 'json_change_notify_settings'),
|
2013-03-18 21:47:37 +01:00
|
|
|
url(r'^json/subscriptions/remove$', 'json_remove_subscriptions'),
|
|
|
|
url(r'^json/subscriptions/add$', 'json_add_subscriptions'),
|
|
|
|
url(r'^json/subscriptions/exists$', 'json_stream_exists'),
|
|
|
|
url(r'^json/subscriptions/property$', 'json_subscription_property'),
|
|
|
|
url(r'^json/get_subscribers$', 'json_get_subscribers'),
|
|
|
|
url(r'^json/fetch_api_key$', 'json_fetch_api_key'),
|
|
|
|
url(r'^json/get_members$', 'json_get_members'),
|
|
|
|
url(r'^json/update_active_status$', 'json_update_active_status'),
|
|
|
|
url(r'^json/get_active_statuses$', 'json_get_active_statuses'),
|
2013-04-04 22:30:28 +02:00
|
|
|
url(r'^json/tutorial_status$', 'json_tutorial_status'),
|
2013-03-18 21:47:37 +01:00
|
|
|
url(r'^json/change_enter_sends$', 'json_change_enter_sends'),
|
|
|
|
url(r'^json/get_profile$', 'json_get_profile'),
|
|
|
|
url(r'^json/report_error$', 'json_report_error'),
|
2013-11-04 23:58:51 +01:00
|
|
|
url(r'^json/report_send_time$', 'json_report_send_time'),
|
2013-03-18 21:47:37 +01:00
|
|
|
url(r'^json/update_message_flags$', 'json_update_flags'),
|
2013-03-14 23:21:53 +01:00
|
|
|
url(r'^json/register$', 'json_events_register'),
|
2013-03-14 22:12:25 +01:00
|
|
|
url(r'^json/upload_file$', 'json_upload_file'),
|
2013-04-24 17:18:49 +02:00
|
|
|
url(r'^json/messages_in_narrow$', 'json_messages_in_narrow'),
|
2013-05-03 00:26:53 +02:00
|
|
|
url(r'^json/create_bot$', 'json_create_bot'),
|
|
|
|
url(r'^json/get_bots$', 'json_get_bots'),
|
2013-05-14 21:18:11 +02:00
|
|
|
url(r'^json/update_message$', 'json_update_message'),
|
2013-05-15 00:22:16 +02:00
|
|
|
url(r'^json/fetch_raw_message$', 'json_fetch_raw_message'),
|
2013-07-26 16:51:02 +02:00
|
|
|
url(r'^json/refer_friend$', 'json_refer_friend'),
|
2013-09-03 22:41:17 +02:00
|
|
|
url(r'^json/set_alert_words$', 'json_set_alert_words'),
|
2013-09-10 00:06:24 +02:00
|
|
|
url(r'^json/set_muted_topics$', 'json_set_muted_topics'),
|
2013-10-28 15:49:38 +01:00
|
|
|
url(r'^json/set_avatar$', 'json_set_avatar'),
|
2012-10-16 21:42:40 +02:00
|
|
|
|
|
|
|
# These are json format views used by the API. They require an API key.
|
2013-03-18 21:47:37 +01:00
|
|
|
url(r'^api/v1/get_profile$', 'api_get_profile'),
|
|
|
|
url(r'^api/v1/get_old_messages$', 'api_get_old_messages'),
|
|
|
|
url(r'^api/v1/get_public_streams$', 'api_get_public_streams'),
|
|
|
|
url(r'^api/v1/subscriptions/list$', 'api_list_subscriptions'),
|
|
|
|
url(r'^api/v1/subscriptions/add$', 'api_add_subscriptions'),
|
|
|
|
url(r'^api/v1/subscriptions/remove$', 'api_remove_subscriptions'),
|
|
|
|
url(r'^api/v1/get_subscribers$', 'api_get_subscribers'),
|
|
|
|
url(r'^api/v1/send_message$', 'api_send_message'),
|
|
|
|
url(r'^api/v1/update_pointer$', 'api_update_pointer'),
|
|
|
|
url(r'^api/v1/get_members$', 'api_get_members'),
|
2012-11-02 16:17:25 +01:00
|
|
|
|
2012-10-30 19:39:15 +01:00
|
|
|
# This json format view used by the API accepts a username password/pair and returns an API key.
|
2013-03-18 21:47:37 +01:00
|
|
|
url(r'^api/v1/fetch_api_key$', 'api_fetch_api_key'),
|
2013-03-21 20:19:04 +01:00
|
|
|
|
2013-07-05 20:04:47 +02:00
|
|
|
# These are integration-specific web hook callbacks
|
2013-08-30 00:12:04 +02:00
|
|
|
url(r'^api/v1/external/beanstalk$' , 'webhooks.api_beanstalk_webhook'),
|
|
|
|
url(r'^api/v1/external/github$', 'webhooks.api_github_landing'),
|
|
|
|
url(r'^api/v1/external/jira$', 'webhooks.api_jira_webhook'),
|
|
|
|
url(r'^api/v1/external/pivotal$', 'webhooks.api_pivotal_webhook'),
|
|
|
|
url(r'^api/v1/external/newrelic$', 'webhooks.api_newrelic_webhook'),
|
|
|
|
url(r'^api/v1/external/bitbucket$', 'webhooks.api_bitbucket_webhook'),
|
2013-09-03 20:23:41 +02:00
|
|
|
url(r'^api/v1/external/desk$', 'webhooks.api_deskdotcom_webhook'),
|
2013-10-28 21:51:29 +01:00
|
|
|
url(r'^api/v1/external/stash$', 'webhooks.api_stash_webhook'),
|
2013-11-08 21:14:57 +01:00
|
|
|
url(r'^api/v1/external/freshdesk$', 'webhooks.api_freshdesk_webhook'),
|
2013-10-24 23:33:12 +02:00
|
|
|
|
|
|
|
url(r'^user_uploads/(?P<realm_id>\d*)/(?P<filename>.*)', 'rest_dispatch',
|
|
|
|
{'GET': 'get_uploaded_file'}),
|
2013-07-05 20:04:47 +02:00
|
|
|
)
|
|
|
|
|
2013-07-29 23:03:31 +02:00
|
|
|
v1_api_and_json_patterns = patterns('zerver.views',
|
2013-03-21 20:19:04 +01:00
|
|
|
# JSON format views used by the redesigned API, accept basic auth username:password.
|
|
|
|
# GET returns messages, possibly filtered, POST sends a message
|
2013-07-05 20:04:47 +02:00
|
|
|
url(r'^messages$', 'rest_dispatch',
|
2013-03-21 20:19:04 +01:00
|
|
|
{'GET': 'get_old_messages_backend',
|
2013-05-14 21:18:11 +02:00
|
|
|
'PATCH': 'update_message_backend',
|
2013-03-21 20:19:04 +01:00
|
|
|
'POST': 'send_message_backend'}),
|
2013-07-30 23:25:00 +02:00
|
|
|
url(r'^messages/render$', 'rest_dispatch',
|
|
|
|
{'GET': 'render_message_backend'}),
|
2013-08-08 20:38:24 +02:00
|
|
|
url(r'^messages/flags$', 'rest_dispatch',
|
|
|
|
{'POST': 'update_message_flags'}),
|
2013-07-05 20:04:47 +02:00
|
|
|
url(r'^streams$', 'rest_dispatch',
|
2013-08-22 17:37:02 +02:00
|
|
|
{'GET': 'get_streams_backend'}),
|
2013-03-21 20:19:04 +01:00
|
|
|
# GET returns "stream info" (undefined currently?), HEAD returns whether stream exists (200 or 404)
|
2013-07-05 20:04:47 +02:00
|
|
|
url(r'^streams/(?P<stream_name>.*)/members$', 'rest_dispatch',
|
2013-03-21 20:19:04 +01:00
|
|
|
{'GET': 'get_subscribers_backend'}),
|
2013-07-05 20:04:47 +02:00
|
|
|
url(r'^streams/(?P<stream_name>.*)$', 'rest_dispatch',
|
2013-03-21 20:19:04 +01:00
|
|
|
{'HEAD': 'stream_exists_backend',
|
|
|
|
'GET': 'stream_exists_backend'}),
|
2013-07-05 20:04:47 +02:00
|
|
|
url(r'^users$', 'rest_dispatch',
|
2013-03-21 20:19:04 +01:00
|
|
|
{'GET': 'get_members_backend'}),
|
2013-07-05 20:04:47 +02:00
|
|
|
url(r'^users/me$', 'rest_dispatch',
|
2013-03-21 20:19:04 +01:00
|
|
|
{'GET': 'get_profile_backend'}),
|
2013-07-05 20:04:47 +02:00
|
|
|
url(r'^users/me/enter-sends$', 'rest_dispatch',
|
2013-03-21 20:19:04 +01:00
|
|
|
{'POST': 'json_change_enter_sends'}),
|
2013-07-05 20:04:47 +02:00
|
|
|
url(r'^users/me/pointer$', 'rest_dispatch',
|
2013-03-21 20:19:04 +01:00
|
|
|
{'GET': 'get_pointer_backend',
|
2013-04-02 22:41:23 +02:00
|
|
|
'PUT': 'update_pointer_backend'}),
|
2013-03-21 20:19:04 +01:00
|
|
|
# GET lists your streams, POST bulk adds, PATCH bulk modifies/removes
|
2013-07-05 20:04:47 +02:00
|
|
|
url(r'^users/me/subscriptions$', 'rest_dispatch',
|
2013-03-21 20:19:04 +01:00
|
|
|
{'GET': 'list_subscriptions_backend',
|
|
|
|
'POST': 'add_subscriptions_backend',
|
|
|
|
'PATCH': 'update_subscriptions_backend'}),
|
2013-09-03 22:41:17 +02:00
|
|
|
url(r'^users/me/alert_words$', 'rest_dispatch',
|
|
|
|
{'GET': 'list_alert_words',
|
|
|
|
'PUT': 'set_alert_words',
|
|
|
|
'PATCH': 'add_alert_words',
|
|
|
|
'DELETE': 'remove_alert_words'}),
|
2013-08-08 16:49:32 +02:00
|
|
|
url(r'^users/me/api_key/regenerate$', 'rest_dispatch',
|
|
|
|
{'POST': 'regenerate_api_key'}),
|
2013-10-15 20:19:41 +02:00
|
|
|
# Endpoint used by iOS devices to register their
|
|
|
|
# unique APNS device token
|
|
|
|
url(r'^users/me/apns_device_token$', 'rest_dispatch',
|
|
|
|
{'POST' : 'add_apns_device_token',
|
|
|
|
'DELETE': 'remove_apns_device_token'}),
|
2013-07-08 23:34:43 +02:00
|
|
|
url(r'^users/(?P<email>.*)$', 'rest_dispatch',
|
|
|
|
{'DELETE': 'deactivate_user_backend'}),
|
2013-07-19 17:45:06 +02:00
|
|
|
url(r'^bots/(?P<email>.*)/api_key/regenerate$', 'rest_dispatch',
|
|
|
|
{'POST': 'regenerate_bot_api_key'}),
|
2013-07-16 22:25:34 +02:00
|
|
|
url(r'^bots/(?P<email>.*)$', 'rest_dispatch',
|
2013-08-01 19:35:39 +02:00
|
|
|
{'PATCH': 'patch_bot_backend'}),
|
2013-07-05 20:04:47 +02:00
|
|
|
url(r'^register$', 'rest_dispatch',
|
2013-04-02 22:42:51 +02:00
|
|
|
{'POST': 'api_events_register'}),
|
2013-10-25 20:13:17 +02:00
|
|
|
|
2013-11-08 17:53:41 +01:00
|
|
|
# Returns a 204, used by desktop app to verify connectivity status
|
|
|
|
url(r'generate_204$', 'generate_204'),
|
|
|
|
|
2013-10-25 20:13:17 +02:00
|
|
|
) + patterns('zerver.tornadoviews',
|
2013-07-26 22:30:55 +02:00
|
|
|
url(r'^events$', 'rest_dispatch',
|
|
|
|
{'GET': 'get_events_backend'}),
|
2013-03-18 21:47:37 +01:00
|
|
|
)
|
2013-10-25 23:34:27 +02:00
|
|
|
if not settings.LOCAL_SERVER:
|
2013-10-17 22:55:09 +02:00
|
|
|
v1_api_and_json_patterns += patterns('',
|
|
|
|
# Still scoped to api/v1/, but under a different project
|
|
|
|
url(r'^deployments/', include('zilencer.urls.api')),
|
|
|
|
)
|
2012-10-17 20:43:52 +02:00
|
|
|
|
2013-11-07 19:57:13 +01:00
|
|
|
urlpatterns += patterns('',
|
|
|
|
url(r'^', include('zilencer.urls.pages')),
|
|
|
|
)
|
|
|
|
|
2013-11-05 19:30:18 +01:00
|
|
|
urlpatterns += patterns('',
|
2013-11-06 13:25:55 +01:00
|
|
|
url(r'^', include('analytics.urls')),
|
2013-11-05 19:30:18 +01:00
|
|
|
)
|
|
|
|
|
2013-11-05 23:50:19 +01:00
|
|
|
urlpatterns += patterns('',
|
|
|
|
url(r'^', include('corporate.urls')),
|
|
|
|
)
|
|
|
|
|
2013-07-05 20:04:47 +02:00
|
|
|
|
2013-07-29 23:03:31 +02:00
|
|
|
urlpatterns += patterns('zerver.tornadoviews',
|
2013-03-18 21:49:59 +01:00
|
|
|
# Tornado views
|
2013-03-26 18:06:52 +01:00
|
|
|
url(r'^json/get_events$', 'json_get_events'),
|
2012-10-09 22:21:03 +02:00
|
|
|
# Used internally for communication between Django and Tornado processes
|
2013-03-18 21:47:37 +01:00
|
|
|
url(r'^notify_tornado$', 'notify'),
|
2012-08-28 18:44:51 +02:00
|
|
|
)
|
2012-10-15 22:47:52 +02:00
|
|
|
|
2013-07-05 20:04:47 +02:00
|
|
|
# Include the dual-use patterns twice
|
|
|
|
urlpatterns += patterns('',
|
|
|
|
url(r'^api/v1/', include(v1_api_and_json_patterns)),
|
|
|
|
url(r'^json/', include(v1_api_and_json_patterns)),
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2013-01-30 23:35:24 +01:00
|
|
|
if not settings.DEPLOYED:
|
|
|
|
use_prod_static = getattr(settings, 'PIPELINE', False)
|
2013-06-24 20:56:44 +02:00
|
|
|
static_root = os.path.join(settings.DEPLOY_ROOT,
|
2013-07-25 22:41:44 +02:00
|
|
|
'prod-static/serve' if use_prod_static else 'static')
|
2013-01-30 23:35:24 +01:00
|
|
|
|
|
|
|
urlpatterns += patterns('',
|
|
|
|
url(r'^static/(?P<path>.*)$', 'django.views.static.serve',
|
|
|
|
{'document_root': static_root}))
|