Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eventdisplay
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository 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
gsu
eventdisplay
Commits
0357a2c7
Commit
0357a2c7
authored
8 years ago
by
Marcel Gläser
Committed by
Dirk Sarpe
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
try to genereate html from py
parent
38e5c370
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
eventdisplays_html_page.py
+66
-0
66 additions, 0 deletions
eventdisplays_html_page.py
with
67 additions
and
0 deletions
.gitignore
0 → 100644
+
1
−
0
View file @
0357a2c7
*.html
This diff is collapsed.
Click to expand it.
eventdisplays_html_page.py
0 → 100644
+
66
−
0
View file @
0357a2c7
#!/usr/bin/python
import
requests
import
arrow
from
ics
import
Calendar
url
=
'
https://portal.idiv.de/ssf/ical/basic.ics?bi=393&ui=1026&pd=171497477d81eb659bd832ffe26c8bfe39d65fc3&v=1
'
tz
=
'
Europe/Berlin
'
now
=
arrow
.
now
(
tz
)
period
=
(
now
.
floor
(
'
day
'
),
now
.
replace
(
weeks
=+
8
))
c
=
Calendar
(
requests
.
get
(
url
).
text
)
my_list
=
[]
for
e
in
c
.
events
:
if
e
.
begin
>
period
[
0
]
and
e
.
begin
<
period
[
1
]:
my_list
.
append
((
e
.
name
,
e
.
begin
.
format
(
'
DD-MM-YYYY HH:mm:ss
'
),
e
.
location
))
event
=
[
my_list
[
0
][
0
],
my_list
[
1
][
0
],
my_list
[
2
][
0
]]
begin
=
[
my_list
[
0
][
1
],
my_list
[
1
][
1
],
my_list
[
2
][
1
]]
location
=
[
my_list
[
0
][
2
],
my_list
[
1
][
2
],
my_list
[
2
][
2
]]
html_page
=
"""
<!DOCTYPE html>
<html>
<head>
<title>Events</title>
<meta charset=
"
utf-8
"
>
<link href=
'
http://fonts.googleapis.com/css?family=Ubuntu|Ruda
'
rel=
'
stylesheet
'
type=
'
text/css
'
>
<link rel=
"
stylesheet
"
type=
"
text/css
"
href=
"
style.css
"
>
<script type=
"
text/javascript
"
src=
"
calendar.js
"
></script>
</head>
<style>
table {{
width:100%;
}}
table, th, td {{
border: 1px solid black;
border-collapse: collapse;
}}
th, td {{
padding: 5px;
text-align: left;
}}
table#t01 tr:nth-child(even) {{
background-color: #eee;
}}
table#t01 tr:nth-child(odd) {{
background-color:#fff;
}}
table#t01 th {{
background-color: black;
color: white;
}}
</style>
</head>
<body>
table id=
"
t01
"
>
<tr>
<th>{the_event}</th>
<th>{the_date}</th>
<th>{the_location}</th>
</tr>
</body>
</html>
"""
.
format
(
the_event
=
event
[
0
],
the_location
=
location
[
0
],
the_date
=
begin
[
0
])
out_file
=
open
(
'
test.html
'
,
'
w
'
)
out_file
.
write
(
html_page
)
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