~upiq-dev/upiq/uu.formlibrary-searchapi-branch

« back to all changes in this revision

Viewing changes to uu/formlibrary/configure.zcml

  • Committer: sean.upton at utah
  • Date: 2011-10-22 18:49:14 UTC
  • Revision ID: sean.upton@hsc.utah.edu-20111022184914-hcdp9quekcy7eoj0
incomplete initial import -- work in progress for uu.formlibrary

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<configure
 
2
  xmlns="http://namespaces.zope.org/zope"
 
3
  xmlns:cmf="http://namespaces.zope.org/cmf"
 
4
  xmlns:grok="http://namespaces.zope.org/grok"
 
5
  xmlns:five="http://namespaces.zope.org/five">
 
6
 
 
7
  <!-- Include configuration for dependencies listed in setup.py -->
 
8
  <includeDependencies package="." />
 
9
 
 
10
  <!-- Grok package: initialise schema interfaces, content classes -->
 
11
  <grok:grok package="." />
 
12
 
 
13
  <five:registerPackage package="." initialize=".zope2.initialize" />
 
14
 
 
15
  <include package=".browser" />
 
16
 
 
17
  <!-- include Generic Setup extension profiles -->
 
18
  <include file="profiles.zcml" />
 
19
 
 
20
  <!-- event subscribers -->
 
21
  <subscriber
 
22
    for=".interfaces.IBaseForm
 
23
         zope.lifecycleevent.IObjectCopiedEvent"
 
24
    handler=".handlers.handle_copypaste_local_roles"
 
25
    />
 
26
 
 
27
  <subscriber
 
28
    for=".interfaces.IFormDefinition
 
29
         zope.lifecycleevent.IObjedefinitionctModifiedEvent"
 
30
    handler=".handlers.definition_schema_handler"
 
31
    />
 
32
 
 
33
  <subscriber
 
34
    for="plone.schemaeditor.interfaces.ISchemaContext
 
35
         plone.schemaeditor.interfaces.ISchemaModifiedEvent"
 
36
    handler=".handlers.serialize_context_schema_changed"
 
37
    />
 
38
 
 
39
</configure>