summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2025-11-06 00:48:00 +0000
committerDirk Engling <erdgeist@erdgeist.org>2025-11-06 00:48:00 +0000
commit6f1bcc3db2c8ee807b68fa8a47a1a8cb7aabcc48 (patch)
tree1c9e920b22a6d7d526b0ecb51cb9d73e61e75823 /static
parent95ae3c51cf05425baf739919af9938608f62ad64 (diff)
Create a create_app helper to be used from wsgi.py
Diffstat (limited to 'static')
-rw-r--r--static/faq.html4
-rw-r--r--static/halfnarp.js2
2 files changed, 3 insertions, 3 deletions
diff --git a/static/faq.html b/static/faq.html
index aefd03d..a90b4b5 100644
--- a/static/faq.html
+++ b/static/faq.html
@@ -7,7 +7,7 @@
7</head> 7</head>
8<body> 8<body>
9 9
10<div class="headline">The 38C3 halfnarp FAQ</div> 10<div class="headline">The 39C3 halfnarp FAQ</div>
11 11
12<dl> 12<dl>
13<dt>Q: What is halfnarp?</dt> 13<dt>Q: What is halfnarp?</dt>
@@ -18,7 +18,7 @@
18</dd> 18</dd>
19<dt>Q: How does it work?</dt> 19<dt>Q: How does it work?</dt>
20<dd> 20<dd>
21 <p>A: 38C3 Fahrplan is curated by six teams each responsible for one track. By default, lectures are sorted by these tracks.</p> 21 <p>A: 39C3 Fahrplan is curated by six teams each responsible for one track. By default, lectures are sorted by these tracks.</p>
22 <ul> 22 <ul>
23 <li>On a desktop browser, hovering over an event’s description reveals the full abstract. Clicking on an event adds or removes events to/from your favorites list – they turn green.</li> 23 <li>On a desktop browser, hovering over an event’s description reveals the full abstract. Clicking on an event adds or removes events to/from your favorites list – they turn green.</li>
24 <li>On mobile browsers, tapping an event once selects it and reveals the whole content. Tapping a selected event adds or removes events to/from your favorites list – they turn green.</li> 24 <li>On mobile browsers, tapping an event once selects it and reveals the whole content. Tapping a selected event adds or removes events to/from your favorites list – they turn green.</li>
diff --git a/static/halfnarp.js b/static/halfnarp.js
index b7f4a45..5cd1ef3 100644
--- a/static/halfnarp.js
+++ b/static/halfnarp.js
@@ -93,7 +93,7 @@ function redraw_calendar(myuid, ids) {
93 calendar += 'DTSTART:' + start.toISOString().replace(/-|;|:|\./g, '').replace(/...Z$/, 'Z') + '\r\n'; 93 calendar += 'DTSTART:' + start.toISOString().replace(/-|;|:|\./g, '').replace(/...Z$/, 'Z') + '\r\n';
94 calendar += 'DURATION:PT' + item.duration + 'S\r\n'; 94 calendar += 'DURATION:PT' + item.duration + 'S\r\n';
95 calendar += 'LOCATION:' + item.room_name + '\r\n'; 95 calendar += 'LOCATION:' + item.room_name + '\r\n';
96 calendar += 'URL:http://events.ccc.de/congress/2023/Fahrplan/events/' + item.event_id + '.html\r\n'; 96 calendar += 'URL:http://events.ccc.de/congress/2025/Fahrplan/events/' + item.event_id + '.html\r\n';
97 calendar += 'SUMMARY:' + item.title + '\r\n'; 97 calendar += 'SUMMARY:' + item.title + '\r\n';
98 calendar += 'DESCRIPTION:' + item.abstract.replace(/\n|\r/g, ' ') + '\r\n'; 98 calendar += 'DESCRIPTION:' + item.abstract.replace(/\n|\r/g, ' ') + '\r\n';
99 // console.log( 'id:' + id + ' ' + all_events[id] ); 99 // console.log( 'id:' + id + ' ' + all_events[id] );