Metadata-Version: 1.0
Name: zw.schema
Version: 0.3.0b2.1
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
        - Reference field
        - Rich text 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
        
        
        
        
        ===============
        Reference Field
        ===============
        
        
        
        ===============
        Rich text Field
        ===============
        
        The text contained in the field describes a rich field in
        HTML format. Let's first generate a such a field:
        
        >>> from zw.schema.richtext import RichText
        >>> richtext = RichText()
        
        
        
        .. -*- mode: rst; coding: utf-8; -*-
        
        =======
        CHANGES
        =======
        
        Version 0.3.0b2.1 (2008-10-06)
        
        - fixed a packaging error
        
        
        Version 0.3.0b2 (2008-06-17)
        ----------------------------
        
        - added: Reference and RichText field
        
        
        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 :: 4 - Beta
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)
