2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 07:11:52 +00:00

Changed regex for finding head and body of flat pages.

This commit is contained in:
Martin Green 2011-08-07 19:17:27 +01:00
parent e820a516de
commit 5f5359f933

View File

@ -15,7 +15,6 @@ import os
import re
def flatpage(request, path):
print "gggggg", path
try:
r = Redirect.objects.get(originalURL = path)
return HttpResponseRedirect(r.newURL) # Redirect after POST
@ -103,7 +102,7 @@ def editflatpage(request, path):
except IOError:
raise Http404
html = o.read()
m = re.search(r"<head>(.*)</head>.*<body>(.*)</body>", html, re.DOTALL)
m = re.search(r"<head>(.*)</head>.*<body[^>]*>(.*)</body>", html, re.DOTALL)
if m:
head, body = m.groups()
if re.search(r"iso-8859-1", html):