diff -r 0f1acc4c3e1e -r 7dd6d8347b56 app/soc/views/docs/show.py --- a/app/soc/views/docs/show.py Fri Oct 03 22:17:05 2008 +0000 +++ b/app/soc/views/docs/show.py Fri Oct 03 23:01:49 2008 +0000 @@ -29,8 +29,9 @@ from soc.logic import document from soc.logic import out_of_band from soc.views import simple +from soc.views import helper +import soc.views.helper.templates from soc.views.helpers import response_helpers -from soc.views.helpers import template_helpers DEF_DOCS_PUBLIC_TMPL = 'soc/docs/public.html' @@ -69,7 +70,7 @@ # show custom 404 page when Document path doesn't exist in Datastore return simple.errorResponse(request, error, template, context) - doc.content = template_helpers.unescape(doc.content) + doc.content = helper.templates.unescape(doc.content) context['document'] = doc return response_helpers.respond(request, template, context)