Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
backend_api
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Package registry
Container registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
videoag
backend_api
Commits
c17db676
Commit
c17db676
authored
Oct 22, 2017
by
Julian Rother
Browse files
Options
Downloads
Patches
Plain Diff
Revert "fixed import errors for stats"
This reverts commit
9421ce62
.
parent
9421ce62
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
stats.py
+6
-6
6 additions, 6 deletions
stats.py
with
6 additions
and
6 deletions
stats.py
+
6
−
6
View file @
c17db676
...
...
@@ -2,7 +2,7 @@ from server import *
import
json
from
jobs
import
date_json_handler
from
hashlib
import
md5
import
datetime
from
datetime
import
datetime
@app.route
(
'
/internal/stats
'
)
@app.route
(
'
/internal/stats/<semester>
'
)
...
...
@@ -13,11 +13,11 @@ def stats():
for
s
in
semester
:
year
=
int
(
s
[
'
semester
'
][
0
:
4
])
if
s
[
'
semester
'
].
endswith
(
'
ss
'
):
s
[
'
from
'
]
=
datetime
.
datetime
(
year
,
4
,
1
)
s
[
'
to
'
]
=
datetime
.
datetime
(
year
,
10
,
1
)
s
[
'
from
'
]
=
datetime
(
year
,
4
,
1
)
s
[
'
to
'
]
=
datetime
(
year
,
10
,
1
)
if
s
[
'
semester
'
].
endswith
(
'
ws
'
):
s
[
'
from
'
]
=
datetime
.
datetime
(
year
,
10
,
1
)
s
[
'
to
'
]
=
datetime
.
datetime
(
year
+
1
,
4
,
1
)
s
[
'
from
'
]
=
datetime
(
year
,
10
,
1
)
s
[
'
to
'
]
=
datetime
(
year
+
1
,
4
,
1
)
return
render_template
(
'
stats.html
'
,
semester
=
semester
,
filter
=
request
.
args
.
get
(
'
filter
'
))
statsqueries
=
{}
...
...
@@ -117,7 +117,7 @@ def stats_viewsperday(req, param=""):
expr
=
queries
[
req
].
replace
(
'
%T
'
,
'"'
+
query
(
date_subexpr
%
(
'
viewsperday.
'
+
req
),
param
)[
0
][
'
t
'
]
+
'"'
)
params
=
[
param
]
*
expr
.
count
(
'
?
'
)
try
:
modify
(
update_expr
%
(
'
viewsperday.
'
+
req
,
expr
),
param
,
*
(
params
+
[
datetime
.
datetime
.
combine
(
datetime
.
date
.
today
(),
datetime
.
time
())]))
modify
(
update_expr
%
(
'
viewsperday.
'
+
req
,
expr
),
param
,
*
(
params
+
[
datetime
.
combine
(
date
.
today
(),
time
())]))
modify
(
'
COMMIT
'
)
except
Exception
:
traceback
.
print_exc
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment