[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces - talesapi.py:1.2
Matt Hamilton
matth@netsight.co.uk
Wed, 16 Apr 2003 04:26:35 -0400
Update of /cvs-repository/Zope3/src/zope/app/interfaces
In directory cvs.zope.org:/tmp/cvs-serv20854
Modified Files:
talesapi.py
Log Message:
Opps, sorry guys. I forgot to checkin ITalesAPI :-(
This file details the initial API for a simple tales namespace extension.
=== Zope3/src/zope/app/interfaces/talesapi.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/interfaces/talesapi.py:1.1 Tue Apr 15 16:39:01 2003
+++ Zope3/src/zope/app/interfaces/talesapi.py Wed Apr 16 04:26:34 2003
@@ -1,6 +1,25 @@
-#this is a temporally fix
+##############################################################################
+#
+# Copyright (c) 2003 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.
+#
+##############################################################################
+"""Interfaces for apis to make available to TALES
+
+$Id$
+"""
from zope.interface import Interface
class IZopeTalesAPI(Interface):
- pass
+
+ def title():
+ """Return an object title
+ """