summaryrefslogtreecommitdiffstats
path: root/core/views/expo.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2023-11-22 18:58:19 +0000
committerPhilip Sargent <philip.sargent@gmail.com>2023-11-22 18:58:19 +0000
commit32e487eca6b12b70cf6ced3b662d815a9bcbb7cb (patch)
tree00c07f6930e6cede291c0b4859c5f5b2b09e0421 /core/views/expo.py
parenta63f04d194709fae8022dda5ae2bdd9ac4e65be5 (diff)
downloadtroggle-32e487eca6b12b70cf6ced3b662d815a9bcbb7cb.tar.gz
troggle-32e487eca6b12b70cf6ced3b662d815a9bcbb7cb.tar.bz2
troggle-32e487eca6b12b70cf6ced3b662d815a9bcbb7cb.zip
still working on tests
Diffstat (limited to 'core/views/expo.py')
-rw-r--r--core/views/expo.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/views/expo.py b/core/views/expo.py
index 8525b16..c8d9482 100644
--- a/core/views/expo.py
+++ b/core/views/expo.py
@@ -133,7 +133,7 @@ def expowebpage(request, expowebpath, path):
if not os.path.isfile(expowebpath / path):
# Should not get here if the path has suffix "_edit"
print(f" - 404 error in expowebpage() {path}")
- return render(request, "pagenotfound.html", {"path": path}, status="404")
+ return render(request, "pagenotfound.html", {"path": path}, status=404)
# print(f' - {sys_getfilesystemencoding()=}')
if sys_getfilesystemencoding() != "utf-8":
@@ -239,9 +239,9 @@ def mediapage(request, subpath=None, doc_root=None):
try:
return HttpResponse(content=open(filetobeopened, "rb"), content_type=getmimetype(subpath))
except IOError:
- return render(request, "pagenotfound.html", {"path": subpath}, status="404")
+ return render(request, "pagenotfound.html", {"path": subpath}, status=404)
else:
- return render(request, "pagenotfound.html", {"path": subpath}, status="404")
+ return render(request, "pagenotfound.html", {"path": subpath}, status=404)
def expopage(request, path):
@@ -270,7 +270,7 @@ def expopage(request, path):
if (expowebpath / path / p).is_file():
# This needs to reset the path to the new subdirectory
return HttpResponseRedirect("/" + str(Path(path) / p))
- return render(request, "pagenotfound.html", {"path": Path(path) / "index.html"}, status="404")
+ return render(request, "pagenotfound.html", {"path": Path(path) / "index.html"}, status=404)
if path.endswith("/"):
# we already know it is not a directory.
@@ -293,7 +293,7 @@ def expopage(request, path):
content_type = getmimetype(path)
return HttpResponse(content=content, content_type=content_type)
except IOError:
- return render(request, "pagenotfound.html", {"path": path}, status="404")
+ return render(request, "pagenotfound.html", {"path": path}, status=404)
def getmimetype(path):