-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathurls.py
74 lines (72 loc) · 2.48 KB
/
urls.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
from django.urls import re_path
from plugins.reporting import views
urlpatterns = [
re_path(r'^$',
views.index,
name='reporting_index'),
re_path(r'^press/$',
views.press,
name='reporting_press'),
re_path(r'^by_month/$',
views.report_journal_usage_by_month,
name='reporting_journal_usage_by_month'),
re_path(r'^articles/(?P<journal_id>\d+)/$',
views.report_articles,
name='reporting_articles'),
re_path(r'^production/$',
views.report_production,
name='reporting_production'),
re_path(r'^review/$',
views.report_review,
name='reporting_review'),
re_path(r'^review/journal/(?P<journal_id>\d+)/$',
views.report_review,
name='reporting_review_journal'),
re_path(r'^geo/$',
views.report_geo,
name='reporting_geo'),
re_path(r'^geo/(?P<journal_id>\d+)/$',
views.report_geo,
name='report_geo_journal'),
re_path(r'^citations/articles/$',
views.report_citations,
name='report_citations'),
re_path(r'^authors/$',
views.report_authors,
name='report_authors'),
re_path(r'^citations/$',
views.report_all_citations,
name='report_all_citations'),
re_path(r'^citations/journal/(?P<journal_id>\d+)/$',
views.report_journal_citations,
name='report_journal_citations'),
re_path(r'^citations/journal/(?P<journal_id>\d+)/article/(?P<article_id>\d+)/$',
views.report_article_citing_works,
name='report_article_citing_works'),
re_path(r'^citations/books/$',
views.report_book_citations,
name='report_book_citations'),
re_path(r'^citations/books/(?P<book_id>\d+)/$',
views.report_book_citing_works,
name='report_book_citing_works'),
re_path(r'^crossref/(?P<journal_id>\d+|)$',
views.report_crossref_dois,
name='reporting_crossref_dois'),
re_path(r'^crossref/(?P<journal_id>\d+|)/crosscheck$',
views.report_crossref_dois_crosscheck,
name='reporting_crossref_dois_crosscheck'),
re_path(r'^licenses/$',
views.report_licenses,
name='reporting_license'),
re_path(r'^workflow/$',
views.report_workflow,
name='reporting_workflow'),
re_path(r'^repository/metrics/$',
views.report_preprints_metrics,
name='report_preprints_metrics'),
re_path(
r'^api/geo/$',
views.geographical_data,
name='api_geographical_data'
),
]