[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content - IFileContent.py:1.1.2.1 IHTMLContent.py:NONE

Jim Fulton jim@zope.com
Sun, 2 Jun 2002 10:34:47 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content
In directory cvs.zope.org:/tmp/cvs-serv29793/lib/python/Zope/App/OFS/Content

Added Files:
      Tag: Zope3InWonderland-branch
	IFileContent.py 
Removed Files:
      Tag: Zope3InWonderland-branch
	IHTMLContent.py 
Log Message:
- Added template attribute to allow views to be created from a
  template source file.

- Added beginnings of a Zope debugger. This required seperating site
  and server configuration.

- Added the ability to specify a config file package in the
  zopeConfigure directive. Made "config.zcml" a default for the file
  attribute in the include directive.

- Fixed mapply to unwrap proxied objects. This was necessary once
  views became wrapped in proxies. We need to investigate why they
  weren't being wrapped before. 

- I updated enough system page templates and zcml directives so that:

  - Zope now starts. :)

  - The root folder contents listing can be viewed.

  Many more templates and zcml files need to be updated to reflect the
  way views are now handled.



=== Added File Zope3/lib/python/Zope/App/OFS/Content/IFileContent.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
# 
##############################################################################
"""

Revision information:
$Id: IFileContent.py,v 1.1.2.1 2002/06/02 14:34:45 jim Exp $
"""
from Interface import Interface

class IFileContent(Interface):
    """Marker interface for content that is managed as files

    The default view for file content has effective URLs that don't end in
    /.  In particular, if the content inclused HTML, relative links in
    the HTML are relative to the container the content is in.

    """

=== Removed File Zope3/lib/python/Zope/App/OFS/Content/IHTMLContent.py ===