Metadata-Version: 1.0
Name: tw.uploadify
Version: 0.1a2
Summary: upload files with progress informations
Home-page: UNKNOWN
Author: Nicolas Laurance
Author-email: nicolas[dot]laurance[at]gmail[dot]com
License: UNKNOWN
Description: 
        .. contents::
        
        Detailed Documentation
        **********************
        
        
        tw.uploadify documentation
        ==========================
        
        
        tw.uploadify is a tosca widget wrapper around jquery uploadify plugin
         which can be found here :
        
        `http://www.uploadify.com/ <http://www.uploadify.com/>`_
        
        the version released with this package is 2.1.4
        
        
        using the widget
        ----------------
        
        in the widget lib
        ~~~~~~~~~~~~~~~~~
        
        ::
        
            from tw.forms import TableFieldSet
            from tw.uploadify import Uploadify
        
            class UploadFieldset(TableFieldSet):
                label_text = "upload files"
                fields = [
                    Uploadify('upload_file', label_text='upload File',
                              script='upload',
                              fileDataName='upload_file',
                              scriptData={'_method': 'PUT'},
                              removeCompleted=False,
                              ),
                        ]
        
            upload_fieldset = UploadFieldset("upload_fieldset")
        
        
        
        in the view controller
        ~~~~~~~~~~~~~~~~~~~~~~
        
        ::
        
            from widgetlib import upload_fieldset
        
            ...
        
            class UploadController(BaseController):
        
                @expose('project.templates.upload')
                options=dict(script="foobarbaz")
                params = { 'child_args' : {
                              'upload_file': dict(options=options),
                            }
                          }
                tmpl_context.file_form = upload_fieldset
                return dict(params=params)
        
        
        in the template
        ~~~~~~~~~~~~~~~
        
        ::
        
            <div py:replace="tmpl_context.file_form(**params)">Files Form</div>
        
        
        options
        ~~~~~~~
        
        only some options are implemented now, please refer to the widgets.py source code
        
        Change history
        **************
        
        New in 0.1
        ==========
        
        0.1a2
        nice test and debugging contrib from Diez Roggisch
        better example
        
        0.1a1
        CHANGES.txt wasn't including, stopping easy_install
        
        0.1a0
        First Release
        
        
Keywords: toscawidgets.widgets,jquery,uploadify,progress bar
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Environment :: Web Environment :: ToscaWidgets
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Widget Sets
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: TurboGears :: Widgets
Classifier: License :: OSI Approved :: MIT License
