[CMF-checkins] CVS: CMF/CMFCore/interfaces - Contentish.py:1.4.36.1

Sidnei da Silva sidnei@x3ng.com.br
Tue, 3 Jun 2003 10:59:46 -0400


Update of /cvs-repository/CMF/CMFCore/interfaces
In directory cvs.zope.org:/tmp/cvs-serv2574/CMFCore/interfaces

Modified Files:
      Tag: CMF-1_3-branch
	Contentish.py 
Log Message:
Whitespace

=== CMF/CMFCore/interfaces/Contentish.py 1.4 => 1.4.36.1 ===
--- CMF/CMFCore/interfaces/Contentish.py:1.4	Wed Nov 28 14:06:24 2001
+++ CMF/CMFCore/interfaces/Contentish.py	Tue Jun  3 10:59:46 2003
@@ -1,14 +1,14 @@
 ##############################################################################
 #
 # Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
-# 
+#
 # This software is subject to the provisions of the Zope Public License,
 # Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
 # FOR A PARTICULAR PURPOSE
-# 
+#
 ##############################################################################
 import Interface
 
@@ -16,20 +16,20 @@
     """
     General interface for "contentish" items.
 
-    These methods need to be implemented by any class that wants to be a 
+    These methods need to be implemented by any class that wants to be a
     first-class citizen in the Portal Content world.
-    
+
     PortalContent implements this interface.
     """
-    
+
     def getIcon(relative_to_portal=0):
         """
-        This method returns the path to an object's icon. It is used 
-        in the folder_contents view to generate an appropriate icon 
+        This method returns the path to an object's icon. It is used
+        in the folder_contents view to generate an appropriate icon
         for the items found in the folder.
 
         If the content item does not define an attribute named "icon"
-        this method will return the path "/misc_/dtmldoc.gif", which is 
+        this method will return the path "/misc_/dtmldoc.gif", which is
         the icon used for DTML Documents.
 
         If 'relative_to_portal' is true, return only the portion of
@@ -39,20 +39,20 @@
 
     def listActions():
         """
-        listAction returns a tuple containing dictionaries that describe 
+        listAction returns a tuple containing dictionaries that describe
         a specific "action". An "action" shows up as a link in the PTK
-        toolbox which has a title, a URL, a category (the action can be 
-        applied at the object- or user-level or everywhere) and the 
+        toolbox which has a title, a URL, a category (the action can be
+        applied at the object- or user-level or everywhere) and the
         permissions needed to show the action link.
 
-        listActions can be used to provide actions specific to your 
+        listActions can be used to provide actions specific to your
         content object.
         """
 
     def SearchableText():
         """
-        SearchableText is called to provide the Catalog with textual 
-        information about your object. It is a string usually generated 
+        SearchableText is called to provide the Catalog with textual
+        information about your object. It is a string usually generated
         by concatenating the string attributes of your content class. This
         string can then be used by the catalog to index your document and
         make it findable through the catalog.