Merge /media/sdb1/gitRepositories/judo into redesign2018

Conflicts:
	homepage/redesign2018/markdownExperiment/wkParticipo/admin/showEvent.php
This commit is contained in:
marko
2018-12-03 17:40:44 +01:00
14 changed files with 259 additions and 48 deletions

View File

@@ -13,6 +13,7 @@ argParser = argparse.ArgumentParser()
#argParser.add_argument("wkId", type=int)
argParser.add_argument("--checkSum")
argParser.add_argument("--vidUrl")
argParser.add_argument("--posterUrl")
argParser.add_argument("--shiaiYamlFile")
argv = argParser.parse_args()
@@ -26,7 +27,8 @@ payLoad = {
'action' : "INSERT",
'wkId' : shiaiData['wkId'],
'checkSum': urllib.parse.quote(argv.checkSum),
'vidUrl' : urllib.parse.quote(argv.vidUrl)
'vidUrl' : urllib.parse.quote(argv.vidUrl),
'posterUrl' : urllib.parse.quote(argv.posterUrl)
}
r = requests.get('http://cwsvjudo.bplaced.net/admin/vidGal.php', params=payLoad, auth=('marko', '***REMOVED***'))