|
| 1 | +# Copyright The IETF Trust 2016-2019, All Rights Reserved |
1 | 2 | from django.conf import settings |
2 | 3 |
|
3 | 4 | from ietf.stats import views |
4 | 5 | from ietf.utils.urls import url |
5 | 6 |
|
6 | 7 | urlpatterns = [ |
7 | | - url("^$", views.stats_index), |
8 | | - url("^document/(?:(?P<stats_type>authors|pages|words|format|formlang|author/(?:documents|affiliation|country|continent|citations|hindex)|yearly/(?:affiliation|country|continent))/)?$", views.document_stats), |
9 | | - url("^knowncountries/$", views.known_countries_list), |
10 | | - url("^meeting/(?P<num>\d+)/(?P<stats_type>country|continent)/$", views.meeting_stats), |
11 | | - url("^meeting/(?:(?P<stats_type>overview|country|continent)/)?$", views.meeting_stats), |
12 | | - url("^review/(?:(?P<stats_type>completion|results|states|time)/)?(?:%(acronym)s/)?$" % settings.URL_REGEXPS, views.review_stats), |
| 8 | + url(r"^$", views.stats_index), |
| 9 | + url(r"^document/(?:(?P<stats_type>authors|pages|words|format|formlang|author/(?:documents|affiliation|country|continent|citations|hindex)|yearly/(?:affiliation|country|continent))/)?$", views.document_stats), |
| 10 | + url(r"^knowncountries/$", views.known_countries_list), |
| 11 | + url(r"^meeting/(?P<num>\d+)/(?P<stats_type>country|continent)/$", views.meeting_stats), |
| 12 | + url(r"^meeting/(?:(?P<stats_type>overview|country|continent)/)?$", views.meeting_stats), |
| 13 | + url(r"^review/(?:(?P<stats_type>completion|results|states|time)/)?(?:%(acronym)s/)?$" % settings.URL_REGEXPS, views.review_stats), |
13 | 14 | ] |
0 commit comments