Metadata-Version: 1.0
Name: js.jquery_globalize
Version: 0.1.0a2
Summary: Fanstatic packaging of jquery globalize
Home-page: UNKNOWN
Author: Fanstatic Developers
Author-email: fanstatic@googlegroups.com
License: MIT
Description: js.jquery_globalize
        *******************
        
        Introduction
        ============
        
        This library packages `jquery globalize`_ for `fanstatic`_.
        
        .. _`fanstatic`: http://fanstatic.org
        .. _`jquery globalize`: http://github.com/jquery/globalize
        
        This requires integration between your web framework and ``fanstatic``,
        and making sure that the original resources (shipped in the ``resources``
        directory in ``js.jquery_globalize``) are published to some URL.
        
        
        How to use?
        ===========
        
        Setup
        
          >>> from fanstatic import init_needed
          >>> needed = init_needed(base_url='')
        
        You can import ``globalize`` from ``js.jquery_globalize`` and ``need`` it where you want
        these resources to be included on a page::
          
        
          >>> from js.jquery_globalize import globalize
          >>> globalize.need()
        
        All 350+ cultures are made available as resources::
        
          >>> from js.jquery_globalize import culture_am_et
          >>> culture_am_et.need()
        
        Render the inclusion:
        
          >>> print needed.render()
          <script type="text/javascript" src="/fanstatic/jquery/jquery.js"></script>
          <script type="text/javascript" src="/fanstatic/jquery_globalize/globalize.js"></script>
          <script type="text/javascript" src="/fanstatic/jquery_globalize/cultures/globalize.culture.am-ET.js"></script>
        
        
        CHANGES
        *******
        
        0.1.0a2 (2011-11-14)
        ====================
        
        - Initial release.
        
Platform: UNKNOWN
