prepared version placeholder
placeholder is "VVVVV" use patchVersion.sh to replace version for new release. Do not use this script in develop branch.
This commit is contained in:
parent
8b2b58be05
commit
af7c6642ff
@ -1,3 +1,4 @@
|
|||||||
|
# Version: VVVVV
|
||||||
FROM nginx:alpine
|
FROM nginx:alpine
|
||||||
|
|
||||||
# set labels
|
# set labels
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
# Version: VVVVV
|
||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
listen [::]:80;
|
listen [::]:80;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
|
# Version: VVVVV
|
||||||
user nginx;
|
user nginx;
|
||||||
worker_processes 1;
|
worker_processes 1;
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
# Version: VVVVV
|
||||||
|
|
||||||
# get starting date
|
# get starting date
|
||||||
# find gdate or date command ( OSX: brew install coreutils)
|
# find gdate or date command ( OSX: brew install coreutils)
|
||||||
|
@ -12,6 +12,8 @@
|
|||||||
AJAX calls to the Nominatim service small, e. g. :
|
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
|
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
|
||||||
|
|
||||||
License
|
License
|
||||||
Copyright 2020-2021 Kasper D. Fischer <kasper.fischer@rub.de>
|
Copyright 2020-2021 Kasper D. Fischer <kasper.fischer@rub.de>
|
||||||
|
|
||||||
@ -123,7 +125,7 @@ if __name__ == "__main__":
|
|||||||
|
|
||||||
# parse arguments
|
# parse arguments
|
||||||
import argparse
|
import argparse
|
||||||
versionText = 'r20211017 (2021-10-17)'
|
versionText = 'VVVVV'
|
||||||
parser = argparse.ArgumentParser(
|
parser = argparse.ArgumentParser(
|
||||||
description='Reverse geocoding lookup of events in xml format (stdin).',
|
description='Reverse geocoding lookup of events in xml format (stdin).',
|
||||||
epilog=versionText)
|
epilog=versionText)
|
||||||
|
@ -4,8 +4,7 @@
|
|||||||
Get waveform data from FDSN web service and create a fancy plot
|
Get waveform data from FDSN web service and create a fancy plot
|
||||||
This programme runs as a script or as a WSGI application.
|
This programme runs as a script or as a WSGI application.
|
||||||
|
|
||||||
Subversion information:
|
:version VVVVV
|
||||||
$Id$
|
|
||||||
|
|
||||||
:license
|
:license
|
||||||
Copyright 2020 Kasper Fischer <kasper.fischer@ruhr-uni-bochum.de>
|
Copyright 2020 Kasper Fischer <kasper.fischer@ruhr-uni-bochum.de>
|
||||||
@ -379,8 +378,7 @@ if __name__ == "__main__":
|
|||||||
epilog=u'$Revision$ ($Date$, $Author$)'.replace(
|
epilog=u'$Revision$ ($Date$, $Author$)'.replace(
|
||||||
"$", ""))
|
"$", ""))
|
||||||
parser.add_argument(u'-v', u'-V', u'--version', action='version',
|
parser.add_argument(u'-v', u'-V', u'--version', action='version',
|
||||||
version=u'$Revision$ ($Date$, \
|
version=u'VVVVV')
|
||||||
$Author$)'.replace('$', ''))
|
|
||||||
parser.add_argument(u'-u', u'--url', action='store', dest='server',
|
parser.add_argument(u'-u', u'--url', action='store', dest='server',
|
||||||
default=u'https://ariadne.geophysik.ruhr-uni-bochum.de',
|
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).')
|
help=u'Base URL of the FDSN web service (https://ariadne.geophysik.ruhr-uni-bochum.de).')
|
||||||
|
@ -7,6 +7,8 @@ def application(environ, start_response):
|
|||||||
:type start_response: function
|
:type start_response: function
|
||||||
:return: response to be sent to the client by the wsgi server
|
:return: response to be sent to the client by the wsgi server
|
||||||
:rtype: list
|
:rtype: list
|
||||||
|
|
||||||
|
:version: VVVVV
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from cgi import FieldStorage
|
from cgi import FieldStorage
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
"""
|
"""
|
||||||
Produce a dayplot from seismogram recordings
|
Produce a dayplot from seismogram recordings
|
||||||
|
|
||||||
Subversion information:
|
version: VVVVV
|
||||||
$Id$
|
|
||||||
|
|
||||||
license: gpl3
|
license: gpl3
|
||||||
Copyright 2012-2020 Seismological Observatory, Ruhr-University Bochum
|
Copyright 2012-2020 Seismological Observatory, Ruhr-University Bochum
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
You should have received a copy of the GNU General Public License along
|
You should have received a copy of the GNU General Public License along
|
||||||
with this program. If not, see http://www.gnu.org/licenses/.
|
with this program. If not, see http://www.gnu.org/licenses/.
|
||||||
|
|
||||||
Version r20211017.2 (2021-10-17)
|
Version VVVVV
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* adding row(s) to a table and format date strings afterwards */
|
/* adding row(s) to a table and format date strings afterwards */
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
You should have received a copy of the GNU General Public License along
|
You should have received a copy of the GNU General Public License along
|
||||||
with this program. If not, see http://www.gnu.org/licenses/.
|
with this program. If not, see http://www.gnu.org/licenses/.
|
||||||
|
|
||||||
Version r20211017.2 (2021-10-17)
|
Version VVVVV
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* adding row(s) to a table and format date strings afterwards */
|
/* adding row(s) to a table and format date strings afterwards */
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
You should have received a copy of the GNU General Public License along
|
You should have received a copy of the GNU General Public License along
|
||||||
with this program. If not, see http://www.gnu.org/licenses/.
|
with this program. If not, see http://www.gnu.org/licenses/.
|
||||||
|
|
||||||
Version r20211017.2 (2021-10-17)
|
Version VVVVV
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Load the stations using ajax */
|
/* Load the stations using ajax */
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
You should have received a copy of the GNU General Public License along
|
You should have received a copy of the GNU General Public License along
|
||||||
with this program. If not, see http://www.gnu.org/licenses/.
|
with this program. If not, see http://www.gnu.org/licenses/.
|
||||||
|
|
||||||
Version r20211017.2 (2021-10-17)
|
Version VVVVV
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Load the stations using ajax */
|
/* Load the stations using ajax */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user