Metadata-Version: 1.0
Name: zw.schema
Version: 0.2.2
Summary: Additional schema fields for Zope 3
Home-page: https://launchpad.net/zw.schema
Author: Gregor Giesen
Author-email: giesen@zaehlwerk.net
License: GPLv3
Description: ==================
        Zaehlwerk Fields
        ==================
        
        - Color field
        - Email field
        
        
        ===========
        Color Field
        ===========
        
        The string contained in the field describes a RGB color in hexdecimal
        format. Let's first generate a color field:
        
        >>> from zw.schema.color import Color
        >>> color = Color()
        
        Make sure the colors validate:
        
        >>> color.validate('aa00cc')
        >>> color.validate('00aa000')
        Traceback (most recent call last):
        ...
        InvalidColor: 00aa000
        
        
        
        
        .. -*- mode: rst; coding: utf-8; -*-
        
        =======
        CHANGES
        =======
        
        Version 0.2.2 (2008-04-14)
        
        - packaging bug fixed.
        
        Version 0.2.1 (2008-04-13)
        
        - Remove email field. (It can be found in z3c.schema)
        
        Version 0.2 (2008-04-11)
        --------------------------
        
        - Added email field
        
        
Keywords: zope3
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Environment :: Web Environment
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Classifier: Framework :: Zope3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
