summaryrefslogtreecommitdiffstats
path: root/util/bin/vvs.de
diff options
context:
space:
mode:
authormakefu <root@pigstarter.de>2013-12-17 09:29:24 +0100
committermakefu <root@pigstarter.de>2013-12-17 09:29:24 +0100
commite8a3666d702fc099baba8b0b41ff414a8571fd55 (patch)
tree2f72626742ee8213a5fcf57803818b7aa64e5cc0 /util/bin/vvs.de
parentf5c8830887fc238ed1d1075e1459dadc44f5ad4d (diff)
parentabf03f260a3d4b3b1b62c98ede3014b724658e1c (diff)
Merge branch 'master' of https://github.com/krebscode/painload
Diffstat (limited to 'util/bin/vvs.de')
-rwxr-xr-xutil/bin/vvs.de61
1 files changed, 0 insertions, 61 deletions
diff --git a/util/bin/vvs.de b/util/bin/vvs.de
deleted file mode 100755
index 3b7ccf93..00000000
--- a/util/bin/vvs.de
+++ /dev/null
@@ -1,61 +0,0 @@
-#! /bin/sh
-#
-# NAME
-# vvs.de - web scraper for VVS departure information
-#
-# SYNOPSIS
-# vvs.de ORIGIN DESTINATION [HH [MM]]
-#
-# EXAMPLES
-# $ vvs.de Hauptbahnhof Renningen 13 37
-#
-# CAVEATS
-# Acceptable operands have to be found by trial and error.
-#
-# BUGS
-# Probably bit rot.^_^
-#
-# SEE ALSO
-# mobile.vvs.de
-#
-# COPYRIGHT
-# All departure information is copyrighted by Verkehrs- und
-# Tarifverbund Stuttgart GmbH. The original copyright statement can
-# be obtained online at http://www.vvs.de/impressum .
-#
-# The following code is your fault.
-#
-set -euf
-
-# <form action="./efaanyfield/anyfield.php" method="post" id="efaForm">
- #s/itdDateDay=/&${3-$itdDateDay}/
- #s/itdDateMonth=/&${4-$itdDateMonth}/
- #s/itdDateYear=/&${5-$itdDateYear}/
-
-vvs_tmp=/tmp/vvs.tmp
-curl -Ss http://www.vvs.de/fahrplan/ |
-sed -rn "/<!-- EFA -->/,/<!-- \/EFA -->/{
- s.*<input.*name=\"([^\"]*)\".*value=\"([^\"]*)\".*/>.*\1=\2;T
- /itdTripDateTimeDepArr=arr/b
- s/(name_origin=).*/\1${1-$name_origin}/
- s/(name_destination=).*/\1${2-$name_destination}/
- ${3+s/(itdTimeHour=).*/\1${3-$itdTimeHour}/}
- ${4+s/(itdTimeMinute=).*/\1${4-$itdTimeMinute}/}
- p
-}" | tr '\n' '&' | sed 's/&$//' >"$vvs_tmp"
-
-
-#while read line ; do
-# test -z "$line" || echo "$line"
-#done >"$vvs_tmp"
-
-echo from: ${1-$name_origin}
-echo \ \ to: ${2-$name_destination}
-echo '-------------------------------------'
-w3m -cols 9423 -post "$vvs_tmp" \
- -dump http://www.vvs.de/./efaanyfield/anyfield.php |
-sed -rn "
- s/^ +[0-9]+ +([0-9]+:[0-9]+) +([0-9]+:[0-9]+) +([A-Z0-9 ,]+) .*$/\1 \2 \3/p
-" | tr -d ,
-
-####