[Zope-Checkins] CVS: Zope2 - HelpTopic.py:1.12
Brian Lloyd
brian@digicool.com
Tue, 17 Apr 2001 14:44:59 -0400 (EDT)
Update of /cvs-repository/Zope2/lib/python/HelpSys
In directory korak:/home/brian/temp/mainline_test/lib/python/HelpSys
Modified Files:
HelpTopic.py
Log Message:
disabled auto-reload of help topics, as it is causing a ConflictError
--- Updated File HelpTopic.py in package Zope2 --
--- HelpTopic.py 2001/03/13 21:58:54 1.11
+++ HelpTopic.py 2001/04/17 18:44:59 1.12
@@ -257,7 +257,7 @@
def index_html(self, REQUEST=None):
"View the Help Topic"
- if Globals.DevelopmentMode:
+ if 0 and Globals.DevelopmentMode:
try: mtime=os.stat(self.file)
except: mtime=0
if mtime != self._v_last_read:
@@ -278,7 +278,7 @@
"""
def index_html(self, REQUEST=None):
""" View the STX Help Topic """
- if Globals.DevelopmentMode:
+ if 0 and Globals.DevelopmentMode:
try: mtime=os.stat(self.file)
except: mtime=0
if mtime != self._v_last_read:
@@ -314,7 +314,7 @@
def index_html(self, REQUEST, RESPONSE):
"View the Help Topic"
- if Globals.DevelopmentMode:
+ if 0 and Globals.DevelopmentMode:
try: mtime=os.stat(self.file)
except: mtime=0
if mtime != self._v_last_read: