summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/asset-rebuild6
-rwxr-xr-xscripts/asset-release2
-rwxr-xr-xscripts/update-autocomplete42
3 files changed, 3 insertions, 47 deletions
diff --git a/scripts/asset-rebuild b/scripts/asset-rebuild
index dd59380..eb6a140 100755
--- a/scripts/asset-rebuild
+++ b/scripts/asset-rebuild
@@ -1,17 +1,15 @@
#!/bin/sh
-# Copyright (C) 2020 Daniel Friesel <daniel.friesel@uos.de>
+# Copyright (C) 2020 Birte Kristina Friesel <derf@finalrewind.org>
#
# SPDX-License-Identifier: MIT
set -x
-scripts/update-autocomplete
-
for theme in dark light; do
sassc -t compressed sass/src/${theme}/index.scss public/static/css/${theme}.min.css
done
-for file in autocomplete geolocation travelynx-actions; do
+for file in geolocation travelynx-actions; do
uglifyjs public/static/js/${file}.js -c -m > public/static/js/${file}.min.js
done
diff --git a/scripts/asset-release b/scripts/asset-release
index 6a20835..1f96d33 100755
--- a/scripts/asset-release
+++ b/scripts/asset-release
@@ -1,6 +1,6 @@
#!/bin/sh
-# Copyright (C) 2020 Daniel Friesel <daniel.friesel@uos.de>
+# Copyright (C) 2020 Birte Kristina Friesel <derf@finalrewind.org>
#
# SPDX-License-Identifier: MIT
diff --git a/scripts/update-autocomplete b/scripts/update-autocomplete
deleted file mode 100755
index 4dc64ae..0000000
--- a/scripts/update-autocomplete
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/usr/bin/env perl
-
-use strict;
-use warnings;
-use 5.020;
-
-use JSON;
-use File::Slurp qw(write_file);
-use Travel::Status::DE::IRIS::Stations;
-
-my @station_names
- = map { $_->[1] } Travel::Status::DE::IRIS::Stations::get_stations();
-my $station_list = q{};
-
-for my $station (@station_names) {
- $station_list .= sprintf( "\t\t\t\"%s\": null,\n", $station );
-}
-
-my $autocomplete = <<"EOF";
-/*
- * Copyright (C) 2020 DB Station&Service AG, Europaplatz 1, 10557 Berlin
- * Copyright (C) 2020 Daniel Friesel
- *
- * SPDX-License-Identifier: CC-BY-4.0
- */
-document.addEventListener('DOMContentLoaded', function() {
- var elems = document.querySelectorAll('.autocomplete');
- M.Autocomplete.init(elems, {
- minLength: 3,
- limit: 50,
- data: {
-$station_list
- }
- });
-});
-EOF
-
-write_file(
- "public/static/js/autocomplete.js",
- { binmode => ':encoding(utf-8)' },
- $autocomplete
-);