Metadata-Version: 1.0
Name: js.jquery_gritter
Version: 1.7.4
Summary: Fanstatic packaging of Gritter for jQuery (jquery.gritter.js)
Home-page: https://bitbucket.org/s_nikolai/js.jquery_gritter
Author: Nikolai Sevostjanov
Author-email: nikolai.sevostjanov@gmail.com
License: BSD
Description: js.jquery_gritter
        =================
        
        .. contents::
        
        Introduction
        ------------
        
        This library packages `Gritter for jQuery`_ for `fanstatic`_.
        
        .. _`fanstatic`: http://fanstatic.org
        .. _`Gritter for jQuery`: https://github.com/jboesch/Gritter
        
        This requires integration between your web framework and ``fanstatic``,
        and making sure that the original resources (shipped in the ``resources``
        directory in ``js.jquery_gritter``) are published to some URL.
        
        
        CHANGES
        =======
        
        1.7.4 (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_gritter`` from ``js.jquery_gritter`` and ``need``
        it where you want these resources to be included on a page::
        
          >>> from js.jquery_gritter import jquery_gritter
          >>> jquery_gritter.need()
        
        Render the inclusion::
        
          >>> print needed.render()
          <link rel="stylesheet" type="text/css" href="http://localhost/fanstatic/jquery-gritter/css/jquery.gritter.css" />
          <script type="text/javascript" src="http://localhost/fanstatic/jquery/jquery.js"></script>
          <script type="text/javascript" src="http://localhost/fanstatic/jquery-gritter/js/jquery.gritter.js"></script>
        
Platform: UNKNOWN
