Metadata-Version: 1.0
Name: js.jquery_formwizard
Version: 3.0.5
Summary: Fanstatic packaging of FormWizard for jQuery (jquery.form.wizard.js)
Home-page: https://bitbucket.org/s_nikolai/js.jquery_formwizard
Author: Nikolai Sevostjanov
Author-email: nikolai.sevostjanov@gmail.com
License: BSD
Description: js.jquery_formwizard
        ====================
        
        .. contents::
        
        Introduction
        ------------
        
        This library packages `FormWizard`_ for `fanstatic`_.
        
        .. _`fanstatic`: http://fanstatic.org
        .. _`FormWizard`: https://github.com/thecodemine/formwizard
        
        This requires integration between your web framework and ``fanstatic``,
        and making sure that the original resources (shipped in the ``resources``
        directory in ``js.jquery_formwizard``) are published to some URL.
        
        
        CHANGES
        =======
        
        3.0.5 (2013-03-17)
        ------------------
        
        - Initial release.
        
        
        How to use?
        ===========
        
        This should be setup before rendering a page. See `fanstatic`_ for more
        information::
        
          >>> from fanstatic import init_needed
          >>> needed = init_needed(base_url='http://localhost')
        
        You can import ``jquery_formwizard`` from ``js.jquery_formwizard`` and ``need``
        it where you want these resources to be included on a page::
        
          >>> from js.jquery_formwizard import jquery_formwizard
          >>> jquery_formwizard.need()
        
        Render the inclusion::
        
          >>> print needed.render()
          <script type="text/javascript" src="http://localhost/fanstatic/jquery/jquery.js"></script>
          <script type="text/javascript" src="http://localhost/fanstatic/jquery-validate/jquery.validate.js"></script>
          <script type="text/javascript" src="http://localhost/fanstatic/jquery_form/jquery.form.js"></script>
          <script type="text/javascript" src="http://localhost/fanstatic/jqueryui/ui/jquery-ui.js"></script>
          <script type="text/javascript" src="http://localhost/fanstatic/jquery-formwizard/jquery.form.wizard.js"></script>
        
Platform: UNKNOWN
