div aenderung

This commit is contained in:
www
2021-01-17 19:14:55 +00:00
parent 49c7387592
commit 9e805feb40
5 changed files with 24 additions and 10 deletions

View File

@@ -18,7 +18,7 @@ from flask import request
from cachetools import TTLCache, cached
from werkzeug.utils import secure_filename
# Initialize application
app = Flask(__name__)
app = Flask(__name__,static_url_path="/bsp/static")
app.config['MAIL_SERVER']= "buran.htu.tuwien.ac.at"
app.config['MAIL_DEFAULT_SENDER']="andis@fet.at"
app.config['FREEZER_DESTINATION_IGNORE']=['*.zip',"*intern*"]
@@ -58,8 +58,8 @@ def load_lvas_folders_studien():
studien[fn]=data
with open(os.path.join("test.yaml"),"w") as f:
f.write(yaml.dump(studien))
#with open(os.path.join("test.yaml"),"w") as f:
# f.write(yaml.dump(studien))
# create a lva list from the structure
for studium, lvaliste in studien.items():
@@ -68,8 +68,8 @@ def load_lvas_folders_studien():
lvas+=[lva]
folders={}
with open(os.path.join("testlvaliste.yaml"),"w") as f:
f.write(yaml.dump(lvas))
#with open(os.path.join("testlvaliste.yaml"),"w") as f:
# f.write(yaml.dump(lvas))
# make folders compact in lva
for lva in lvas:
for l in lva["courses"]:
@@ -166,6 +166,6 @@ def api_index(name='index'):
def url_freeze():
yield "/"
app.register_blueprint(page_blueprint, url_prefix=app.config["url_prefix"],static_folder='static')
app.register_blueprint(page_blueprint, url_prefix=app.config["url_prefix"],static_folder='static',static_url_path="bsp/static")
app.register_blueprint(api_blueprint, url_prefix=app.config["url_prefix"]+"/api/",static_folder='static')
#app.add_url_rule('%s/<path:name>' % cfg.url_prefix,'page', post)