-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.zcml
24 lines (21 loc) · 979 Bytes
/
configure.zcml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:gs="http://namespaces.zope.org/genericsetup"
xmlns:i18n="http://namespaces.zope.org/i18n"
i18n_domain="RosterSynch">
<!-- Allow these profiles to be seen by GenericSetup so I can call setImportContext() on them in Install.py: -->
<gs:registerProfile
name="default"
title="RosterSynch"
directory="profiles/default"
description="PSU specific product for synchronizing site access with ANGEL."
provides="Products.GenericSetup.interfaces.EXTENSION"
for="Products.CMFPlone.interfaces.IPloneSiteRoot" />
<gs:registerProfile
name="uninstall"
title="RosterSynch Uninstall"
directory="profiles/uninstall"
description="Removes the RosterSynch templates from portal_skins."
provides="Products.GenericSetup.interfaces.EXTENSION"
for="Products.CMFPlone.interfaces.IPloneSiteRoot" />
</configure>