diff --git a/Dockerfile b/Dockerfile index 9dabf6f..5fd48e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# Version: VVVVV +# Version: v1.1 (2021-10-31) FROM nginx:alpine # set labels diff --git a/docker-compose.yaml b/docker-compose.yaml index f70002f..777b6dc 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -9,7 +9,7 @@ services: build: context: . dockerfile: Dockerfile - image: seisobs-map:dev + image: seisobs-map:v1.1 networks: - seisobs volumes: diff --git a/nginx/default.conf b/nginx/default.conf index 71d9cf7..3270da7 100644 --- a/nginx/default.conf +++ b/nginx/default.conf @@ -1,4 +1,4 @@ -# Version: VVVVV +# Version: v1.1 (2021-10-31) server { listen 80; listen [::]:80; diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 9aba6f6..f1e0593 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -1,4 +1,4 @@ -# Version: VVVVV +# Version: v1.1 (2021-10-31) user nginx; worker_processes 1; diff --git a/scripts/fetchEvents.sh b/scripts/fetchEvents.sh index f033650..c699f22 100755 --- a/scripts/fetchEvents.sh +++ b/scripts/fetchEvents.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Version: VVVVV +# Version: v1.1 (2021-10-31) # get starting date # find gdate or date command ( OSX: brew install coreutils) diff --git a/scripts/mkGeolocationTable.py b/scripts/mkGeolocationTable.py index 5621746..d2159dc 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.1 (2021-10-31) License Copyright 2020-2021 Kasper D. Fischer @@ -125,7 +125,7 @@ if __name__ == "__main__": # parse arguments import argparse - versionText = 'VVVVV' + versionText = 'v1.1 (2021-10-31)' 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..f4ac0d0 100755 --- a/scripts/patchVersion.sh +++ b/scripts/patchVersion.sh @@ -1,5 +1,5 @@ #!/bin/bash -# version: VVVVV +# version: v1.1 (2021-10-31) if [ $# -le 1 ] ; then echo usage: ${0} version_string files ... diff --git a/wsgi/plotFDSN.py b/wsgi/plotFDSN.py index 0cdfde3..9e17de1 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.1 (2021-10-31) :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.1 (2021-10-31)') 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..4f40250 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.1 (2021-10-31) """ from cgi import FieldStorage diff --git a/wsgi/traceDayplot.py b/wsgi/traceDayplot.py index cad38d0..46cd21f 100755 --- a/wsgi/traceDayplot.py +++ b/wsgi/traceDayplot.py @@ -3,7 +3,7 @@ """ Produce a dayplot from seismogram recordings -version: VVVVV +version: v1.1 (2021-10-31) license: gpl3 Copyright 2012-2020 Seismological Observatory, Ruhr-University Bochum diff --git a/www/events.js b/www/events.js index 7c11138..b155f69 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.1 (2021-10-31) */ /* 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..4d070da 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.1 (2021-10-31) */ /* adding row(s) to a table and format date strings afterwards */ diff --git a/www/index.html.de b/www/index.html.de index e021ce3..65f3272 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 da4c26e..b170b66 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 a9f54bf..4b9926a 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.1 (2021-10-31) */ /* add station marker */ diff --git a/www/map.js.en b/www/map.js.en index a8a8109..a41232e 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.1 (2021-10-31) */ /* add station marker */ diff --git a/www/misc.js b/www/misc.js index 20261c5..fd03d4b 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.1 (2021-10-31) */ /* calculate marker radius from magnitude diff --git a/www/stations.js b/www/stations.js index 47b664c..7da256b 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.1 (2021-10-31) */ /* Load the stations using ajax */ diff --git a/www/stations.js.en b/www/stations.js.en index 718cff1..563e3af 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.1 (2021-10-31) */ /* Load the stations using ajax */