src/ztfy/utils/browser/zodb.py
branchZTK-1.1
changeset 169 b4b587dd45ca
child 195 8ac8b1696cb3
equal deleted inserted replaced
168:c02d355d3ffd 169:b4b587dd45ca
       
     1 ### -*- coding: utf-8 -*- ####################################################
       
     2 ##############################################################################
       
     3 #
       
     4 # Copyright (c) 2012 Thierry Florac <tflorac AT ulthar.net>
       
     5 # All Rights Reserved.
       
     6 #
       
     7 # This software is subject to the provisions of the Zope Public License,
       
     8 # Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
       
     9 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
       
    10 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
       
    11 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
       
    12 # FOR A PARTICULAR PURPOSE.
       
    13 #
       
    14 ##############################################################################
       
    15 
       
    16 
       
    17 # import standard packages
       
    18 
       
    19 # import Zope3 interfaces
       
    20 
       
    21 # import local interfaces
       
    22 from ztfy.skin.interfaces import IPropertiesMenuTarget
       
    23 from ztfy.utils.interfaces import IZEOConnection
       
    24 
       
    25 # import Zope3 packages
       
    26 from z3c.form import field
       
    27 from zope.interface import implements
       
    28 
       
    29 # import local packages
       
    30 from ztfy.skin.form import EditForm
       
    31 
       
    32 
       
    33 class ZEOConnectionEditForm(EditForm):
       
    34     """Sequential ID utility edit form"""
       
    35 
       
    36     implements(IPropertiesMenuTarget)
       
    37 
       
    38     fields = field.Fields(IZEOConnection)
       
    39     autocomplete = 'off'