from django.conf import settings from ietf.stats import views from ietf.utils.urls import url urlpatterns = [ url("^$", views.stats_index), url("^document/(?:(?Pauthors|pages|words|format|formlang|author/(?:documents|affiliation|country|continent|citations|hindex)|yearly/(?:affiliation|country|continent))/)?$", views.document_stats), url("^knowncountries/$", views.known_countries_list), url("^meeting/(?P\d+)/(?Pcountry|continent)/$", views.meeting_stats), url("^meeting/(?:(?Poverview|country|continent)/)?$", views.meeting_stats), url("^review/(?:(?Pcompletion|results|states|time)/)?(?:%(acronym)s/)?$" % settings.URL_REGEXPS, views.review_stats), ]