From 95fb75ef149ce2895ee769410dd282ade879f76d Mon Sep 17 00:00:00 2001 From: "Kasper D. Fischer" Date: Wed, 27 Oct 2021 10:30:22 +0200 Subject: [PATCH] set version to "v1.0 (2021-10-27)" --- Dockerfile | 2 +- nginx/default.conf | 2 +- nginx/nginx.conf | 2 +- scripts/fetchEvents.sh | 2 +- scripts/mkGeolocationTable.py | 4 ++-- scripts/patchVersion.sh | 2 +- wsgi/plotFDSN.py | 4 ++-- wsgi/showEnv.py | 2 +- wsgi/traceDayplot.py | 2 +- www/events.js | 2 +- www/events.js.en | 2 +- www/index.html.de | 2 +- www/index.html.en | 2 +- www/map.js | 2 +- www/map.js.en | 2 +- www/misc.js | 2 +- www/stations.js | 2 +- www/stations.js.en | 2 +- 18 files changed, 20 insertions(+), 20 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2b21412..2f9a47a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# Version: VVVVV +# Version: v1.0 (2021-10-27) FROM nginx:alpine # set labels diff --git a/nginx/default.conf b/nginx/default.conf index 4b15472..4b0410e 100644 --- a/nginx/default.conf +++ b/nginx/default.conf @@ -1,4 +1,4 @@ -# Version: VVVVV +# Version: v1.0 (2021-10-27) server { listen 80; listen [::]:80; diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 9aba6f6..26cad8e 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -1,4 +1,4 @@ -# Version: VVVVV +# Version: v1.0 (2021-10-27) user nginx; worker_processes 1; diff --git a/scripts/fetchEvents.sh b/scripts/fetchEvents.sh index f033650..cc7e046 100755 --- a/scripts/fetchEvents.sh +++ b/scripts/fetchEvents.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Version: VVVVV +# Version: v1.0 (2021-10-27) # get starting date # find gdate or date command ( OSX: brew install coreutils) diff --git a/scripts/mkGeolocationTable.py b/scripts/mkGeolocationTable.py index 5621746..f114f54 100755 --- a/scripts/mkGeolocationTable.py +++ b/scripts/mkGeolocationTable.py @@ -12,7 +12,7 @@ AJAX calls to the Nominatim service small, e. g. : curl -s "https://fdsnws.geophysik.ruhr-uni-bochum.de/fdsnws/event/1/query?minlat=50&maxlat=54&minlon=3&maxlon=10&minmag=1" | mkGeolocationTable.py > geolocationTable.js - Version: VVVVV + Version: v1.0 (2021-10-27) License Copyright 2020-2021 Kasper D. Fischer @@ -125,7 +125,7 @@ if __name__ == "__main__": # parse arguments import argparse - versionText = 'VVVVV' + versionText = 'v1.0 (2021-10-27)' parser = argparse.ArgumentParser( description='Reverse geocoding lookup of events in xml format (stdin).', epilog=versionText) diff --git a/scripts/patchVersion.sh b/scripts/patchVersion.sh index ad0846d..6ef1a39 100755 --- a/scripts/patchVersion.sh +++ b/scripts/patchVersion.sh @@ -1,5 +1,5 @@ #!/bin/bash -# version: VVVVV +# version: v1.0 (2021-10-27) if [ $# -le 1 ] ; then echo usage: ${0} version_string files ... diff --git a/wsgi/plotFDSN.py b/wsgi/plotFDSN.py index 0cdfde3..1d01315 100755 --- a/wsgi/plotFDSN.py +++ b/wsgi/plotFDSN.py @@ -4,7 +4,7 @@ Get waveform data from FDSN web service and create a fancy plot This programme runs as a script or as a WSGI application. - :version VVVVV + :version v1.0 (2021-10-27) :license Copyright 2020 Kasper Fischer @@ -378,7 +378,7 @@ if __name__ == "__main__": epilog=u'$Revision$ ($Date$, $Author$)'.replace( "$", "")) parser.add_argument(u'-v', u'-V', u'--version', action='version', - version=u'VVVVV') + version=u'v1.0 (2021-10-27)') parser.add_argument(u'-u', u'--url', action='store', dest='server', default=u'https://ariadne.geophysik.ruhr-uni-bochum.de', help=u'Base URL of the FDSN web service (https://ariadne.geophysik.ruhr-uni-bochum.de).') diff --git a/wsgi/showEnv.py b/wsgi/showEnv.py index 2bc0c4e..1cf5656 100644 --- a/wsgi/showEnv.py +++ b/wsgi/showEnv.py @@ -8,7 +8,7 @@ def application(environ, start_response): :return: response to be sent to the client by the wsgi server :rtype: list - :version: VVVVV + :version: v1.0 (2021-10-27) """ from cgi import FieldStorage diff --git a/wsgi/traceDayplot.py b/wsgi/traceDayplot.py index cad38d0..cbf8678 100755 --- a/wsgi/traceDayplot.py +++ b/wsgi/traceDayplot.py @@ -3,7 +3,7 @@ """ Produce a dayplot from seismogram recordings -version: VVVVV +version: v1.0 (2021-10-27) license: gpl3 Copyright 2012-2020 Seismological Observatory, Ruhr-University Bochum diff --git a/www/events.js b/www/events.js index 7c11138..6fbbd03 100644 --- a/www/events.js +++ b/www/events.js @@ -19,7 +19,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. - Version VVVVV + Version v1.0 (2021-10-27) */ /* adding row(s) to a table and format date strings afterwards */ diff --git a/www/events.js.en b/www/events.js.en index 67858e8..3cd74e4 100644 --- a/www/events.js.en +++ b/www/events.js.en @@ -19,7 +19,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. - Version VVVVV + Version v1.0 (2021-10-27) */ /* adding row(s) to a table and format date strings afterwards */ diff --git a/www/index.html.de b/www/index.html.de index 97ed9b4..2cff39b 100755 --- a/www/index.html.de +++ b/www/index.html.de @@ -1,5 +1,5 @@ - + diff --git a/www/index.html.en b/www/index.html.en index b6f4f3e..261d903 100755 --- a/www/index.html.en +++ b/www/index.html.en @@ -1,5 +1,5 @@ - + diff --git a/www/map.js b/www/map.js index 9e8fa58..d6ea140 100644 --- a/www/map.js +++ b/www/map.js @@ -19,7 +19,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/. - Version VVVVV + Version v1.0 (2021-10-27) */ /* add station marker */ diff --git a/www/map.js.en b/www/map.js.en index 380b742..1d12a48 100644 --- a/www/map.js.en +++ b/www/map.js.en @@ -19,7 +19,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/. - Version VVVVV + Version v1.0 (2021-10-27) */ /* add station marker */ diff --git a/www/misc.js b/www/misc.js index 20261c5..03af4cf 100644 --- a/www/misc.js +++ b/www/misc.js @@ -19,7 +19,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. - Version VVVVV + Version v1.0 (2021-10-27) */ /* calculate marker radius from magnitude diff --git a/www/stations.js b/www/stations.js index 47b664c..96916e5 100644 --- a/www/stations.js +++ b/www/stations.js @@ -19,7 +19,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. - Version VVVVV + Version v1.0 (2021-10-27) */ /* Load the stations using ajax */ diff --git a/www/stations.js.en b/www/stations.js.en index 718cff1..abe438d 100644 --- a/www/stations.js.en +++ b/www/stations.js.en @@ -19,7 +19,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. - Version VVVVV + Version v1.0 (2021-10-27) */ /* Load the stations using ajax */