[CMF-checkins] CVS: CMF - FSImage.py:1.6 FSObject.py:1.2 FSPropertiesObject.py:1.3
shane@digicool.com
shane@digicool.com
Thu, 12 Apr 2001 15:02:54 -0400 (EDT)
Update of /cvs-repository/CMF/CMFCore
In directory korak:/tmp/cvs-serv28473
Modified Files:
FSImage.py FSObject.py FSPropertiesObject.py
Log Message:
Fixed comments.
--- Updated File FSImage.py in package CMF --
--- FSImage.py 2001/04/12 17:51:57 1.5
+++ FSImage.py 2001/04/12 19:02:52 1.6
@@ -151,7 +151,7 @@
security.declareProtected(View, 'tag')
def tag(self, height=None, width=None, alt=None,
scale=0, xscale=0, yscale=0, **args):
- # Hook into an oppertunity to reload metadata.
+ # Hook into an opportunity to reload metadata.
self._readFile()
return apply(self._image_tag, (height, width, alt, scale, xscale,
yscale), args)
--- Updated File FSObject.py in package CMF --
--- FSObject.py 2001/04/11 19:28:09 1.1
+++ FSObject.py 2001/04/12 19:02:52 1.2
@@ -99,9 +99,9 @@
class FSObject(Acquisition.Implicit, Item):
"""FSObject is a base class for all filesystem based look-alikes.
- Subclasses of this class mimic ZODB based objects like Image and DTMLMethod,
- but are not directly modifiable from the management interface. They provide
- means to create a TTW editable copy, however.
+ Subclasses of this class mimic ZODB based objects like Image and
+ DTMLMethod, but are not directly modifiable from the management
+ interface. They provide means to create a TTW editable copy, however.
"""
# Always empty for FS based, non-editable objects.
--- Updated File FSPropertiesObject.py in package CMF --
--- FSPropertiesObject.py 2001/04/11 19:28:09 1.2
+++ FSPropertiesObject.py 2001/04/12 19:02:52 1.3
@@ -82,7 +82,7 @@
# attributions are listed in the accompanying credits file.
#
##############################################################################
-"""Customizable DTML methods that come from the filesystem."""
+"""Customizable properties that come from the filesystem."""
__version__='$Revision$'[11:-2]
from string import split, strip