[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/exception/ Update
doc strings to ReST
Phil Ruggera
pruggera at san.rr.com
Fri Jul 23 18:12:52 EDT 2004
Log message for revision 26738:
Update doc strings to ReST
Changed:
U Zope3/trunk/src/zope/app/exception/browser/notfound.py
U Zope3/trunk/src/zope/app/exception/browser/unauthorized.py
U Zope3/trunk/src/zope/app/exception/browser/user.py
U Zope3/trunk/src/zope/app/exception/interfaces.py
-=-
Modified: Zope3/trunk/src/zope/app/exception/browser/notfound.py
===================================================================
--- Zope3/trunk/src/zope/app/exception/browser/notfound.py 2004-07-23 22:08:14 UTC (rev 26737)
+++ Zope3/trunk/src/zope/app/exception/browser/notfound.py 2004-07-23 22:12:52 UTC (rev 26738)
@@ -15,10 +15,12 @@
$Id$
"""
+__docformat__ = 'restructuredtext'
+
class NotFound(object):
- """NotFound Error View
+ """`NotFound` Error View
- NotFound errors should return 404 instead of 200.
+ `NotFound` errors should return 404 instead of 200.
"""
def __call__(self, *args, **kw):
Modified: Zope3/trunk/src/zope/app/exception/browser/unauthorized.py
===================================================================
--- Zope3/trunk/src/zope/app/exception/browser/unauthorized.py 2004-07-23 22:08:14 UTC (rev 26737)
+++ Zope3/trunk/src/zope/app/exception/browser/unauthorized.py 2004-07-23 22:12:52 UTC (rev 26738)
@@ -15,6 +15,8 @@
$Id$
"""
+__docformat__ = 'restructuredtext'
+
from zope.app import zapi
from zope.app.security.interfaces import IAuthenticationService
Modified: Zope3/trunk/src/zope/app/exception/browser/user.py
===================================================================
--- Zope3/trunk/src/zope/app/exception/browser/user.py 2004-07-23 22:08:14 UTC (rev 26737)
+++ Zope3/trunk/src/zope/app/exception/browser/user.py 2004-07-23 22:12:52 UTC (rev 26738)
@@ -13,6 +13,8 @@
$Id$
"""
+__docformat__ = 'restructuredtext'
+
class UserErrorView(object):
def title(self):
Modified: Zope3/trunk/src/zope/app/exception/interfaces.py
===================================================================
--- Zope3/trunk/src/zope/app/exception/interfaces.py 2004-07-23 22:08:14 UTC (rev 26737)
+++ Zope3/trunk/src/zope/app/exception/interfaces.py 2004-07-23 22:12:52 UTC (rev 26738)
@@ -13,6 +13,7 @@
$Id$
"""
+__docformat__ = 'restructuredtext'
from zope.interface import Interface, implements
More information about the Zope3-Checkins
mailing list