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