From 6f1bcc3db2c8ee807b68fa8a47a1a8cb7aabcc48 Mon Sep 17 00:00:00 2001 From: Dirk Engling Date: Thu, 6 Nov 2025 00:48:00 +0000 Subject: Create a create_app helper to be used from wsgi.py --- static/faq.html | 4 ++-- static/halfnarp.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'static') 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 @@ -
The 38C3 halfnarp FAQ
+
The 39C3 halfnarp FAQ
Q: What is halfnarp?
@@ -18,7 +18,7 @@
Q: How does it work?
-

A: 38C3 Fahrplan is curated by six teams each responsible for one track. By default, lectures are sorted by these tracks.

+

A: 39C3 Fahrplan is curated by six teams each responsible for one track. By default, lectures are sorted by these tracks.

  • 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.
  • 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.
  • 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) { calendar += 'DTSTART:' + start.toISOString().replace(/-|;|:|\./g, '').replace(/...Z$/, 'Z') + '\r\n'; calendar += 'DURATION:PT' + item.duration + 'S\r\n'; calendar += 'LOCATION:' + item.room_name + '\r\n'; - calendar += 'URL:http://events.ccc.de/congress/2023/Fahrplan/events/' + item.event_id + '.html\r\n'; + calendar += 'URL:http://events.ccc.de/congress/2025/Fahrplan/events/' + item.event_id + '.html\r\n'; calendar += 'SUMMARY:' + item.title + '\r\n'; calendar += 'DESCRIPTION:' + item.abstract.replace(/\n|\r/g, ' ') + '\r\n'; // console.log( 'id:' + id + ' ' + all_events[id] ); -- cgit v1.2.3