Changeset 1278

Show
Ignore:
Timestamp:
04/18/08 18:38:28 (8 months ago)
Author:
sgillies
Message:

Add custom images, styles, templates

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • pleiades.theme/trunk/pleiades/theme/__init__.py

    r1277 r1278  
     1# Register our skins directory - this makes it available via portal_skins. 
     2from Products.CMFCore.DirectoryView import registerDirectory 
     3GLOBALS = globals() 
     4registerDirectory('skins', GLOBALS) 
     5 
     6def initialize(context): 
     7    """Intializer called when used as a Zope 2 product.""" 
  • pleiades.theme/trunk/pleiades/theme/configure.zcml

    r1277 r1278  
    11<configure 
    2     xmlns="http://namespaces.zope.org/zope" 
    3     xmlns:five="http://namespaces.zope.org/five" 
    4     i18n_domain="pleiades.theme"> 
     2  xmlns="http://namespaces.zope.org/zope" 
     3  xmlns:five="http://namespaces.zope.org/five" 
     4  i18n_domain="pleiades.theme" 
     5  > 
    56 
     7  <five:registerPackage package="." initialize=".initialize"/> 
     8 
     9  <include package=".browser"/> 
     10 
     11  <include file="profiles.zcml"/> 
    612 
    713</configure>