src/ztfy/utils/browser/configure.zcml
branchZTK-1.1
changeset 169 b4b587dd45ca
parent 165 9615e7d1a4ee
child 178 b28d7a44b81f
equal deleted inserted replaced
168:c02d355d3ffd 169:b4b587dd45ca
     1 <configure
     1 <configure
     2 	xmlns="http://namespaces.zope.org/zope"
     2 	xmlns="http://namespaces.zope.org/zope"
       
     3 	xmlns:browser="http://namespaces.zope.org/browser"
     3 	xmlns:z3c="http://namespaces.zope.org/z3c"
     4 	xmlns:z3c="http://namespaces.zope.org/z3c"
     4 	i18n_domain="ztfy.i18n">
     5 	i18n_domain="ztfy.i18n">
       
     6 
       
     7 	<!-- ZEO connection views -->
       
     8 	<browser:addMenuItem
       
     9 		title="ZEO connection"
       
    10 		description="A simple utility used to store ZEO connection settings"
       
    11 		class="..zodb.ZEOConnectionUtility"
       
    12 		permission="zope.ManageServices" />
       
    13 
       
    14 	<z3c:pagelet
       
    15 		name="properties.html"
       
    16 		for="..interfaces.IZEOConnection"
       
    17 		class=".zodb.ZEOConnectionEditForm"
       
    18 		layer="ztfy.skin.layer.IZTFYBrowserLayer"
       
    19 		permission="ztfy.ViewManagementScreens" />
       
    20 
       
    21 	<browser:viewlet
       
    22 		name="Properties"
       
    23 		viewURL="@@properties.html"
       
    24 		for="..interfaces.IZEOConnection"
       
    25 		manager="ztfy.skin.viewlets.actions.interfaces.IActionsViewletManager"
       
    26 		class="ztfy.skin.menu.PropertiesMenuItem"
       
    27 		permission="ztfy.ViewManagementScreens"
       
    28 		layer="ztfy.skin.layer.IZTFYBackLayer"
       
    29 		weight="10" />
     5 
    30 
     6 	<!-- Encoding selection widget -->
    31 	<!-- Encoding selection widget -->
     7 	<adapter
    32 	<adapter
     8 		factory=".encoding.EncodingSelectFieldWidget" />
    33 		factory=".encoding.EncodingSelectFieldWidget" />
     9 
    34