Commit 10b8eef8 authored by Chris McDonough's avatar Chris McDonough

Changed all HTMLFile references over to DTMLFile after fixing dtml-in related problem in DT_InSV.py

parent ef166af0
......@@ -89,7 +89,7 @@ API documentation help topics
import types
import string
import HelpTopic
from Globals import HTMLFile, Persistent
from Globals import DTMLFile, Persistent
_ignore_objects = {}
......@@ -140,7 +140,7 @@ class APIHelpTopic(HelpTopic.HelpTopic):
if not self.title:
self.title=self.apis[0].name
index_html=HTMLFile('dtml/APIHelpView', globals())
index_html=DTMLFile('dtml/APIHelpView', globals())
def SearchableText(self):
"The full text of the Help Topic, for indexing purposes"
......@@ -236,7 +236,7 @@ class APIDoc(Persistent):
text="%s %s %s" % (text, method.name, method.doc)
return text
view=HTMLFile('dtml/APIView', globals())
view=DTMLFile('dtml/APIView', globals())
class AttributeDoc(Persistent):
......@@ -248,7 +248,7 @@ class AttributeDoc(Persistent):
self.name=name
self.value=value
view=HTMLFile('dtml/attributeView', globals())
view=DTMLFile('dtml/attributeView', globals())
class MethodDoc(Persistent):
......@@ -314,7 +314,7 @@ class MethodDoc(Persistent):
if func.func_code.co_flags & CO_VARKEYWORDS:
self.kwargs=names[ix]
view=HTMLFile('dtml/methodView', globals())
view=DTMLFile('dtml/methodView', globals())
def trim_doc_string(text):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment