Metadata-Version: 1.1
Name: bottle-utils
Version: 0.3.1
Summary: Assortment of frequently used utilities for Bottle framework
Home-page: http://outernet-project.github.io/bottle-utils/
Author: Outernet Inc
Author-email: branko@outernet.is
License: BSD
Description: ============
        Bottle utils
        ============
        
        Assortment of frequently used utilities for Bottle.
        
        This package contains utilities for developing web sites and web applications
        using Bottle_ framework. It is divided into several modules of
        which the ``lazy`` module is not Bottle-specific.
        
        The bottle-utils are created from a bunch of unrelated modules we frequently
        used at Outernet_. Some of the modules have been tested fairly thoroughly, and
        some have been used only in a handful of projects. Therefore, not all modules
        are of high quality. You should conisder this package Alpha quality.
        
        Each module is packaged in a separate package under the same ``bottle_utils``
        namespace, and this package in particular is simply a placeholder that depends
        on all other packages for simpler installation.
        
        The packages are:
        
        - ``bottle-utils-common`` - Common functionalities shared by other packages
        - ``bottle-utils-ajax`` - Decorators for AJAX-specific handlers
        - ``bottle-utils-csrf`` - Decorators for CSRF protection
        - ``bottle-utils-flash`` - Plugin and methods for flash messaging
        - ``bottle-utils-html`` - Functions for use in HTML templates
        - ``bottle-utils-http`` - Decorators for managing HTTP reponse headers
        - ``bottle-utils-i18n`` - Support for internationalization
        - ``bottle-utils-lazy`` - Provides functionality for lazy evaluation of 
          callables
        - ``bottle-utils-meta`` - Classes for handling page/social metadata
        
        Installation
        ============
        
        Install using ``pip`` or ``easy_install``::
        
            pip install bottle-utils
        
            easy_install bottle-utils
        
        You can also install individual packages listed in the introduction.
        
        Documentation
        =============
        
        Detailed documentation is available online_.
        
        You can also generate offline documentation by cloning this repository and
        doing the following::
        
            cd /path/to/repo
            cd docs
            make html
        
        The ``docs/build/html`` directory should contain full HTML documentation. You
        can start from the ``index.html`` file.
        
        Bugs
        ====
        
        Please report all bugs to our `GitHub issue tracker`_.
        
        License
        =======
        
        This package is licensed under BSD license. See LICENSE_ for more
        info.
        
        .. _Bottle: http://bottlepy.org/
        .. _Outernet: https://www.outernet.is/
        .. _GitHub issue tracker: https://github.com/Outernet-Project/bottle-utils/issues
        .. _LICENSE: LICENSE
        .. _online: http://outernet-project.github.io/bottle-utils/
        
        
Keywords: bottle utils i18n http lazy csrf ajax
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Utilities
Classifier: Framework :: Bottle
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
