Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
website
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Roman Karwacik
website
Commits
a9761c66
Commit
a9761c66
authored
7 years ago
by
Andreas Valder
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of git.fsmpi.rwth-aachen.de:videoagwebsite/videoagwebsite
parents
a78ccce1
e3495a26
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
scheduler.py
+3
-2
3 additions, 2 deletions
scheduler.py
server.py
+0
-1
0 additions, 1 deletion
server.py
stats.py
+6
-6
6 additions, 6 deletions
stats.py
with
9 additions
and
9 deletions
scheduler.py
+
3
−
2
View file @
a9761c66
from
server
import
*
import
threading
import
sched
from
time
import
sleep
scheduler
=
sched
.
scheduler
()
def
run_scheduler
():
time
.
sleep
(
1
)
# UWSGI does weird things on startup
sleep
(
1
)
# UWSGI does weird things on startup
while
True
:
scheduler
.
run
()
time
.
sleep
(
10
)
sleep
(
10
)
def
sched_func
(
delay
,
priority
=
0
,
firstdelay
=
None
,
args
=
[],
kargs
=
{}):
if
firstdelay
==
None
:
...
...
This diff is collapsed.
Click to expand it.
server.py
+
0
−
1
View file @
a9761c66
...
...
@@ -14,7 +14,6 @@ import math
import
locale
import
base64
import
json
import
time
locale
.
setlocale
(
locale
.
LC_ALL
,
'
de_DE.utf8
'
)
...
...
This diff is collapsed.
Click to expand it.
stats.py
+
6
−
6
View file @
a9761c66
...
...
@@ -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