Metadata-Version: 1.0
Name: archetypes.multifile
Version: 1.3
Summary: This package adds a field to upload multiple files
Home-page: http://pypi.python.org/pypi/collective.multifile
Author: Matous Hora
Author-email: matous.hora@dms4u.cz
License: GPL
Description: Introduction
        ============
        archetypes.multifile is a Plone Archetype Field which allows to upload multiple files.
        
        Usage
        =====
        1. Install package by adding the egg into your buildout cfg::
        
        [instance]
        ...
        eggs =
        archetypes.multifile
        zcml =
        archetypes.multifile
        
        2. Rerun buildout and start the instance
        
        3. Install via quickinstaller
        
        4. Use it in your custom Archetypes content type::
        
        from archetypes.multifile.MultiFileField import MultiFileField
        from archetypes.multifile.MultiFileWidget import MultiFileWidget
        
        MultiFileField('file',
        primary=True,
        languageIndependent=True,
        storage = AnnotationStorage(migrate=True),
        widget = MultiFileWidget(
        description = "Select the file to be added by clicking the 'Browse' button.",
        label= "File Some Text",
        show_content_type = False,)),
        
        
        TODO
        ====
        Add tests
        
        Credits
        =======
        This package was built upon a MultiFile product by
        
        Partecs Participatory Technologies
        http://www.partecs.com
        
        Eggified by
        Matous Hora
        http://dms4u.cz
        
        
        Changelog
        =========
        
        1.2 - (2009-10-23)
        ------------------
        Added Danish translation
        
        1.0 - (2009-10-20)
        ------------------
        
        * Initial release
        
        
Keywords: plone archetypes multi file field
Platform: UNKNOWN
Classifier: Framework :: Plone
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
