mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-26 01:01:53 +00:00
implemented mimetypes, index.htm(l) and fixed edit view
This commit is contained in:
parent
d3fb0352be
commit
8c2cf48195
@ -15,6 +15,7 @@ import os
|
|||||||
import re
|
import re
|
||||||
|
|
||||||
def flatpage(request, path):
|
def flatpage(request, path):
|
||||||
|
print "gggggg", path
|
||||||
try:
|
try:
|
||||||
r = Redirect.objects.get(originalURL = path)
|
r = Redirect.objects.get(originalURL = path)
|
||||||
return HttpResponseRedirect(r.newURL) # Redirect after POST
|
return HttpResponseRedirect(r.newURL) # Redirect after POST
|
||||||
@ -36,10 +37,22 @@ def flatpage(request, path):
|
|||||||
|
|
||||||
if path.startswith("noinfo") and settings.PUBLIC_SITE and not request.user.is_authenticated():
|
if path.startswith("noinfo") and settings.PUBLIC_SITE and not request.user.is_authenticated():
|
||||||
return HttpResponseRedirect(reverse("auth_login") + '?next=%s' % request.path)
|
return HttpResponseRedirect(reverse("auth_login") + '?next=%s' % request.path)
|
||||||
try:
|
|
||||||
o = open(os.path.normpath(settings.EXPOWEB + path), "rb")
|
if path.endswith("/") or path == "":
|
||||||
except IOError:
|
try:
|
||||||
raise Http404
|
o = open(os.path.normpath(settings.EXPOWEB + path + "index.html"), "rb")
|
||||||
|
path = path + "index.html"
|
||||||
|
except IOError:
|
||||||
|
try:
|
||||||
|
o = open(os.path.normpath(settings.EXPOWEB + path + "index.htm"), "rb")
|
||||||
|
path = path + "index.html"
|
||||||
|
except IOError:
|
||||||
|
raise Http404
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
o = open(os.path.normpath(settings.EXPOWEB + path), "rb")
|
||||||
|
except IOError:
|
||||||
|
raise Http404
|
||||||
if path.endswith(".htm") or path.endswith(".html"):
|
if path.endswith(".htm") or path.endswith(".html"):
|
||||||
html = o.read()
|
html = o.read()
|
||||||
|
|
||||||
@ -56,14 +69,29 @@ def flatpage(request, path):
|
|||||||
body = unicode(body, "iso-8859-1")
|
body = unicode(body, "iso-8859-1")
|
||||||
return render_with_context(request, 'flatpage.html', {'editable': True, 'path': path, 'head': head, 'body': body, "bodyid": bodyid})
|
return render_with_context(request, 'flatpage.html', {'editable': True, 'path': path, 'head': head, 'body': body, "bodyid": bodyid})
|
||||||
else:
|
else:
|
||||||
return HttpResponse(o.read())
|
return HttpResponse(o.read(), mimetype=getmimetype(path))
|
||||||
|
|
||||||
|
def getmimetype(path):
|
||||||
|
if path.endswith(".png"): return "image/png"
|
||||||
|
if path.endswith(".tif"): return "image/tif"
|
||||||
|
if path.endswith(".gif"): return "image/gif"
|
||||||
|
if path.endswith(".jpeg"): return "image/jpeg"
|
||||||
|
if path.endswith(".jpg"): return "image/jpeg"
|
||||||
|
if path.endswith("svg"): return "image/svg+xml"
|
||||||
|
if path.endswith(".pdf"): return "application/pdf"
|
||||||
|
if path.endswith(".ps"): return "application/postscript"
|
||||||
|
if path.endswith(".svx"): return "application/x-survex-svx"
|
||||||
|
if path.endswith(".3d"): return "application/x-survex-3d"
|
||||||
|
if path.endswith(".pos"): return "application/x-survex-pos"
|
||||||
|
if path.endswith(".err"): return "application/x-survex-err"
|
||||||
|
return ""
|
||||||
|
|
||||||
@login_required_if_public
|
@login_required_if_public
|
||||||
def editflatpage(request, path):
|
def editflatpage(request, path):
|
||||||
try:
|
try:
|
||||||
r = CaveRedirect.objects.get(originalURL = path)
|
r = Cave.objects.get(url = path)
|
||||||
return troggle.core.views_caves.editCave(request, r.cave.slug)
|
return troggle.core.views_caves.editCave(request, r.cave.slug)
|
||||||
except CaveRedirect.DoesNotExist:
|
except Cave.DoesNotExist:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user