Metadata-Version: 1.0
Name: js.bootstrap
Version: 3.0.0.2
Summary: fanstatic twitter bootstrap.
Home-page: https://github.com/RedTurtle/js.bootstrap
Author: RedTurtle Developers
Author-email: sviluppoplone@redturtle.it
License: BSD
Description: js.bootstrap
        ************
        
        .. image:: https://travis-ci.org/RedTurtle/js.bootstrap.png?branch=master
        
        Introduction
        ============
        
        This library packages `twitter bootstrap`_ for `fanstatic`_. It is aware of different modes (normal, minified).
        
        .. _`fanstatic`: http://fanstatic.org
        .. _`twitter bootstrap`: http://getbootstrap.com
        
        This requires integration between your web framework and ``fanstatic``,
        and making sure that the original resources (shipped in the ``resources``
        directory in ``js.bootstrap``) are published to some URL.
        
        
        Contact
        =======
        
        .. image:: http://www.redturtle.it/redturtle_banner.png
        
        * | Andrew Mleczko <``andrew.mleczko at redturtle.net``>
          | **RedTurtle Technology**, http://www.redturtle.net/
        
        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 from ``js.bootstrap`` and ``.need`` it
        where you want these resources to be included on a page::
        
          >>> from js.bootstrap import bootstrap
          >>> bootstrap.need()
        
        If you want gradients and drop-shadows on your buttons, menus and panels,
        you can include the bootstrap_theme css::
        
          >>> from js.bootstrap import bootstrap_theme
          >>> bootstrap_theme.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/css/bootstrap-theme.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>
        
        CHANGES
        *******
        
        3.0.0.2 (2013-12-14)
        ====================
        
        - include missing font's in manifest [dnozay]
        
        
        3.0.0.1 (2013-10-01)
        ====================
        
        - include missing theme.css [dairiki]
        
        
        3.0 (2013-09-30)
        ================
        
        - update to bootstrap 3.0 [Christian Klinger]
        
        
        2.3.2 (2013-08-02)
        ==================
        
        - updated to bootstrap 2.3.2 [tmassman]
        
        
        2.3.1 (2013-03-08)
        ==================
        
        - Upgrade to bootstrap 2.3.1 [disko]
        
        
        2.3.0 (2013-02-26)
        ==================
        
        - Upgraded to bootstrap 2.3.0 [amleczko]
        
        
        2.2.2 (2012-12-11)
        ==================
        
        - Upgrade to bootstrap 2.2.2 [disko]
        
        
        2.1.6 (2012-10-25)
        ==================
        
        - Upgrade to bootstrap 2.1.1 [disko]
        
        
        2.1.5 (2012-08-22)
        ==================
        
        - pin to boostrap 2.1 [amleczko]
        
        2.1.3.1 (2012-05-23)
        ====================
        
        - fix problem with readme.rst and manifest.ini [amleczko]
        
        2.1.3 (2012-05-19)
        ==================
        
        - Update to bootstrap 2.0.3 [amleczko]
        
        2.1.1 (2012-03-01)
        ==================
        
        - Pin to bootstrap version 2.0.1 [amleczko]
        
        2.1 (2012-02-01)
        ================
        
        - add also bootstrap images [amleczko]
        
        2.0 (2012-02-01)
        ================
        
        - update to twitter bootstrap 2.0 [amleczko]
        
        1.4 (09-11-2011)
        ================
        
        - update to twitter bootstrap 1.4 [amleczko]
        
        1.3.2 (30-09-2011)
        ==================
        
        - update bootstrap.css to proper 1.3.0 version [amleczko]
        
        1.3.1 (29-09-2011)
        ==================
        
        - fix javascript dependency problems [amleczko]
        
        1.3.0 (28-09-2011)
        ==================
        
        - Initial release - using bootstrap 1.3.0 [amleczko]
        
Keywords: fanstatic twitter bootstrap redturtle
Platform: UNKNOWN
