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