[CMF-checkins] CVS: Products/CMFDefault/browser - __init__.py:1.1.2.1 configure.zcml:1.1.2.1 five_template.pt:1.1.2.1

Yvo Schubbe y.2005- at wcm-solutions.de
Wed Jun 22 09:24:44 EDT 2005


Update of /cvs-repository/Products/CMFDefault/browser
In directory cvs.zope.org:/tmp/cvs-serv22781/CMFDefault/browser

Added Files:
      Tag: CMF-1_5-branch
	__init__.py configure.zcml five_template.pt 
Log Message:
backported changes from HEAD:
- added style_slot to main_template
- added a five_template that bridges to main_template


=== Added File Products/CMFDefault/browser/__init__.py ===
##############################################################################
#
# Copyright (c) 2005 Zope Corporation and Contributors. All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (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.
#
##############################################################################
""" CMFDefault.browser package.

$Id: __init__.py,v 1.1.2.1 2005/06/22 13:24:44 yuppie Exp $
"""


=== Added File Products/CMFDefault/browser/configure.zcml ===
<configure
    xmlns="http://namespaces.zope.org/browser"
    >

  <page
      name="five_template"
      for="Products.CMFCore.interfaces.IDynamicType"
      template="five_template.pt"
      permission="zope2.View"
      />

</configure>


=== Added File Products/CMFDefault/browser/five_template.pt ===
<metal:macro metal:define-macro="page"
><html metal:use-macro="context/main_template/macros/master">
<head>
<metal:slot metal:fill-slot="style_slot"
><metal:slot metal:define-slot="style_slot" /></metal:slot>
</head>
<body>
<metal:slot metal:fill-slot="main"
><metal:slot metal:define-slot="body" /></metal:slot>
</body>
</html></metal:macro>



More information about the CMF-checkins mailing list