diff options
author | VOC | 2015-11-13 19:46:24 +0100 |
---|---|---|
committer | VOC | 2015-11-13 19:46:24 +0100 |
commit | 144f592e66b7cbbe22f05495c558347873d7e7e3 (patch) | |
tree | 3482fecb0e88e0777d6680dec8f65e7a755f0c6c | |
parent | 0d47343635a047baca351e89b526ede5ec124ca6 (diff) |
Configure NixCon
Diffstat (limited to '')
-rw-r--r-- | configs/conferences/nixcon15/config.php | 10 | ||||
-rwxr-xr-x | configs/conferences/nixcon15/download.sh | 6 |
2 files changed, 10 insertions, 6 deletions
diff --git a/configs/conferences/nixcon15/config.php b/configs/conferences/nixcon15/config.php index 5127046..212bb9c 100644 --- a/configs/conferences/nixcon15/config.php +++ b/configs/conferences/nixcon15/config.php @@ -42,7 +42,7 @@ $GLOBALS['CONFIG']['CONFERENCE'] = array( * Dieser im Seiten-Header, im <title>-Tag, in der About-Seite und ggf. ab weiteren Stellen als * Anzeigetext benutzt */ - 'TITLE' => 'NixCon 2015 Berlin', + 'TITLE' => 'NixCon 2015', /** * Veranstalter @@ -56,7 +56,7 @@ $GLOBALS['CONFIG']['CONFERENCE'] = array( * Wird für den <meta name="description">-Tag verdet. Wird diese Zeile auskommentiert, wird kein solcher * <meta>-Tag generiert. */ - 'DESCRIPTION' => 'A NixOS Conference.', + 'DESCRIPTION' => 'The NixOS Conference.', /** * Schlüsselwortliste, Kommasepariert @@ -71,7 +71,7 @@ $GLOBALS['CONFIG']['CONFERENCE'] = array( * Wird diese Zeile auskommentiert, wird die Standard-Attribuierung für (c3voc.de) verwendet */ 'FOOTER_HTML' => ' - by <a href="https://c3voc.de">c3voc</a> + by <a href="http://nixos.org">NixOS</a> & <a href="https://c3voc.de">c3voc</a> ', /** @@ -109,7 +109,7 @@ $GLOBALS['CONFIG']['CONFERENCE'] = array( * Wird beides aktiviert, hat der externe Link Vorrang! * Wird beides auskommentiert, wird der Link nicht angezeigt */ - //'RELIVE_JSON' => 'http://vod.c3voc.de/index.json', + 'RELIVE_JSON' => 'configs/conferences/nixcon2015/relive.json', /** * APCU-Cache-Zeit in Sekunden @@ -151,7 +151,7 @@ $GLOBALS['CONFIG']['ROOMS'] = array( /** * Angezeige-Name */ - 'DISPLAY' => 'The Room.', + 'DISPLAY' => 'Main room', /** * ID des Video/Audio-Streams. Die Stream-ID ist davon abhängig, welches diff --git a/configs/conferences/nixcon15/download.sh b/configs/conferences/nixcon15/download.sh index 505de02..a81b80c 100755 --- a/configs/conferences/nixcon15/download.sh +++ b/configs/conferences/nixcon15/download.sh @@ -1,4 +1,8 @@ #!/bin/sh # fahrplan -wget --no-check-certificate -q "http://n621.de/fud/nixcon.xml" -O /tmp/schedule.xml && mv /tmp/schedule.xml schedule.xml +wget --no-check-certificate -q "http://n621.de/fud/nixcon.xml" -O /tmp/nixcon2015-schedule.xml && mv /tmp/nixcon2015-schedule.xml schedule.xml + +# relive +wget --no-check-certificate -q "http://live.ber.c3voc.de/releases/relive/nixcon2015/index.json" -O /tmp/nixcon2015-relive.json && mv /tmp/nixcon2015-relive.json relive.json + |