[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/onlinehelp/onlinehelptopic.py Removed unneeded base class

Dmitry Vasiliev dima at hlabs.spb.ru
Fri Feb 10 05:45:19 EST 2006


Log message for revision 41589:
  Removed unneeded base class
  

Changed:
  U   Zope3/trunk/src/zope/app/onlinehelp/onlinehelptopic.py

-=-
Modified: Zope3/trunk/src/zope/app/onlinehelp/onlinehelptopic.py
===================================================================
--- Zope3/trunk/src/zope/app/onlinehelp/onlinehelptopic.py	2006-02-10 09:16:28 UTC (rev 41588)
+++ Zope3/trunk/src/zope/app/onlinehelp/onlinehelptopic.py	2006-02-10 10:45:18 UTC (rev 41589)
@@ -189,7 +189,7 @@
     source = property(_getSource)
 
 
-class OnlineHelpTopic(SourceTextOnlineHelpTopic, SampleContainer):
+class OnlineHelpTopic(SourceTextOnlineHelpTopic):
     """
     Represents a Help Topic. This generic implementation uses the filename
     extension for guess the type. This topic implementation supports plain
@@ -387,7 +387,7 @@
 
 class ZPTOnlineHelpTopic(BaseOnlineHelpTopic):
     r"""Represents a page template based Help Topic which has other
-    filename extension then `.pt`.
+    filename extension than `.pt`.
 
       >>> from zope.publisher.browser import TestRequest
       >>> from zope.app.publisher.browser import BrowserView
@@ -396,7 +396,7 @@
       >>> from zope.app.onlinehelp.tests.test_onlinehelp import testdir
       >>> path = os.path.join(testdir(), 'help.pt')
 
-    Create a page template bsed Help Topic from a file
+    Create a page template based Help Topic from a file
 
       >>> topic = ZPTOnlineHelpTopic('help','Help',path,'')
 
@@ -508,4 +508,3 @@
         class_.__used_for__ = used_for
 
     return class_
-



More information about the Zope3-Checkins mailing list