Metadata-Version: 1.1
Name: js.bootstrapdatepicker
Version: 1.1.3
Summary: Fanstatic packaging of bootstrap-datepicker.js.
Home-page: https://github.com/vangheem/js.bootstrapdatepicker
Author: Nathan Van Gheem
Author-email: vangheem@gmail.com
License: GPL
Download-URL: https://pypi.python.org/pypi/js.bootstrapdatepicker
Description: js.bootstrapdatepicker
        **********************
        
        This library packages `Bootstrap Datepicker`_ for `fanstatic`_. It is aware
        of different modes (normal, minified).
        
        .. _`fanstatic`: http://fanstatic.org
        .. _`Bootstrap Datepicker`: http://www.eyecon.ro/bootstrap-datepicker/
        
        This requires integration between your web framework and ``fanstatic``,
        and making sure that the original resources (shipped in the ``resources``
        directory in ``js.bootstrapdatepicker``) are published to some URL.
        
        How to use?
        ===========
        
        You can import the Bootstrap Datepicker from ``js.bootstrapdatepicker`` and
        ``need`` it where you want these resources to be included on a page::
        
          >>> from js.bootstrapdatepicker import bootstrapdatepicker
          >>> bootstrapdatepicker.need()
        
        
        Locales
        =======
        
        Also included are locales for the bootstrap datepicker.
        
        How to get the right locale for the current request depends on your web framework.
        In `Pyramid`_ you could e.g. do something like this::
        
          from js.bootstrapdatepicker import bootstrapdatepicker_locales
          from pyramid.i18n import get_locale_name
        
          locale_name = get_locale_name(request)
          if locale_name in bootstrapdatepicker_locales:
              bootstrapdatepicker_locales[locale_name].need()
        
        .. _`Pyramid`: http://www.pylonsproject.org
        
        CHANGES
        *******
        
        1.1.3 (2016-02-27)
        ==================
        
        - Now uses the more advanced and up to date version from http://eternicode.github.io/bootstrap-datepicker/ from 1.1.3 release.
        - Added minified JS version.
        - Added i18n JS files.
        
        1.0 (2012-09-25)
        ================
        
        - Initial release.
        
Keywords: fanstatic bootstrap date widget
Platform: UNKNOWN
