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:
parent
e820a516de
commit
5f5359f933
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user