[Zope3-checkins] CVS: zopeproducts/demo/jobboard - IJob.py:1.12
Barry Warsaw
barry@python.org
15 Apr 2003 17:47:23 -0400
On Tue, 2003-04-15 at 17:23, Barry Warsaw wrote:
> Update of /cvs-repository/zopeproducts/demo/jobboard
> In directory cvs.zope.org:/tmp/cvs-serv26919/src/zopeproducts/demo/jobboard
>
> Modified Files:
> IJob.py
> Log Message:
> BasicTypes: Do not proxy zope.i18n.messageid.MessageID objects.
>
> I'm not sure this is the 100% right thing to do, but it makes
> TAL/PageTemplates work. Otherwise we'd have to unwrap them to do
> isinstance tests in zope/tales/tales.py, Context.evaluateText() and
> that didn't seem like the right thing either.
>
> Also, add ZPL header and re-organize imports.
>
>
> === zopeproducts/demo/jobboard/IJob.py 1.11 => 1.12 ===
> --- zopeproducts/demo/jobboard/IJob.py:1.11 Wed Dec 25 13:36:35 2002
> +++ zopeproducts/demo/jobboard/IJob.py Tue Apr 15 17:23:29 2003
> @@ -1,6 +1,18 @@
> -"""
> -IJob.py
> -"""
> +##############################################################################
> +#
> +# Copyright (c) 2002 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.
> +#
> +##############################################################################
> +
> +"""IJob.py"""
>
> from zope.interface import Interface
> from zope.interface import Attribute
Wauugh! I must have experienced a pcl-cvs blip which caused the
incorrect checkin messages on some commits. I'll try to follow up with
the correct messages.
Here, I just added the ZPL to the IJob.py file.
-Barry