Changeset 2639 in products


Ignore:
Timestamp:
Jul 8, 2010 5:46:10 PM (14 years ago)
Author:
chervol
Message:

Added basic package install/uninstall profiles with browser layer marker interface

Location:
quintagroup.blog.star/trunk/quintagroup/blog/star
Files:
15 added
1 edited

Legend:

Unmodified
Added
Removed
  • quintagroup.blog.star/trunk/quintagroup/blog/star/configure.zcml

    r2636 r2639  
    22    xmlns="http://namespaces.zope.org/zope" 
    33    xmlns:five="http://namespaces.zope.org/five" 
     4    xmlns:genericsetup="http://namespaces.zope.org/genericsetup"  
    45    i18n_domain="quintagroup.blog.star"> 
     6 
     7  <include package="collective.blog.star" /> 
    58 
    69  <five:registerPackage package="." initialize=".initialize" /> 
    710 
     11  <include package=".browser" /> 
     12 
     13  <genericsetup:registerProfile 
     14     name="default" 
     15     title="Quintagroup blog.star customization" 
     16     directory="profiles/default" 
     17     description="Generic setup for Quintagroup blogging" 
     18     provides="Products.GenericSetup.interfaces.EXTENSION" 
     19     /> 
     20 
     21  <genericsetup:registerProfile 
     22     name="uninstall" 
     23     title="Uninstall Quintagroup blog.star customization" 
     24     directory="profiles/uninstall" 
     25     description="Uninstall Quintagroup blogging" 
     26     provides="Products.GenericSetup.interfaces.EXTENSION" 
     27     /> 
     28 
    829</configure> 
Note: See TracChangeset for help on using the changeset viewer.