معرفی شرکت ها


Flask-Statics-Helper-1.0.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Provides Bootstrap3 and other static resources in a modular fashion.
ویژگی مقدار
سیستم عامل -
نام فایل Flask-Statics-Helper-1.0.0
نام Flask-Statics-Helper
نسخه کتابخانه 1.0.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده @Robpol86
ایمیل نویسنده robpol86@gmail.com
آدرس صفحه اصلی https://github.com/Robpol86/Flask-Statics-Helper
آدرس اینترنتی https://pypi.org/project/Flask-Statics-Helper/
مجوز MIT
Flask-Statics-Helper ==================== Provides Bootstrap3 and other static resources in a modular fashion. The main purpose of this extension is to "modularize" static resources (css and js files) on a per-template basis. In a large Flask application, all views/templates don't use the same static resource such as d3js. If only one view uses d3js out of five or more, there is no reason to have the d3js ``<script />`` tag included in all views. This extension also provides a base template to be extended by your Flask application's templates for Bootstrap3 (like other Bootstrap3 extensions such as `this <https://github.com/mbr/flask-bootstrap>`__ or `this <https://github.com/ryanolson/flask-bootstrap3>`__). - Python 2.6, 2.7, 3.3, and 3.4 supported on Linux and OS X. - Python 2.7, 3.3, and 3.4 supported on Windows (both 32 and 64 bit versions of Python). |Build Status Windows| |Build Status| |Coverage Status| |Latest Version| |Downloads| Quickstart ---------- Install: .. code:: bash pip install Flask-Statics-Helper Enable: .. code:: python # example.py from flask import Flask from flask.ext.statics import Statics app = Flask(__name__) Statics(app) Use with Bootstrap3 (automatically enables jQuery): .. code:: html+django {% extends 'flask_statics_helper/bootstrap.html' %} {% set STATICS_ENABLE_RESOURCE_CSSHAKE = True %} {% block title %}My Application{% endblock %} {% block navbar %} <div class="navbar navbar-inverse navbar-static-top" role="navigation"> <div class="container"> <div class="navbar-header"> <!-- navbar-header --> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="/">My Application</a> </div> <!-- /navbar-header --> <div class="collapse navbar-collapse"> <!-- navbar-collapse --> <ul class="nav navbar-nav"> <li><a href="/">Home</a></li> </ul> </div> <!-- /navbar-collapse --> </div> </div> {% endblock %} {% block container %} <div class="jumbotron"> <h2 class="shake shake-constantly">Hello World.</h2> </div> {% endblock %} Available Resources ------------------- - `Bootstrap <http://getbootstrap.com/>`__ 3.3.1 - `jQuery <http://jquery.com/>`__ 2.1.1 - `Angular JS <https://angularjs.org/>`__ 1.3.4 - `Bootstrap Growl <https://github.com/mouse0270/bootstrap-growl>`__ 2.0.0 - `Bootstrap X-Editable <http://vitalets.github.io/x-editable/>`__ 1.5.1 - `BootstrapValidator <http://bootstrapvalidator.com/>`__ 0.5.3 - `CSShake <https://github.com/elrumordelaluz/csshake>`__ (cloned July 9, 2014) - `D3 <http://d3js.org/>`__ 3.4.13 - `Data Tables <http://datatables.net/>`__ 1.10.4 - `Font Awesome <http://fortawesome.github.io/Font-Awesome/>`__ 4.2.0 - `WHHG Font <http://www.webhostinghub.com/glyphs/>`__ (cloned November 26, 2014) - `typeahead.js <https://github.com/twitter/typeahead.js>`__ 0.10.5 Configuration ------------- The only ``app.config`` specific setting is ``STATICS_MINIFY``. Everything else may be set to True either in individual templates (so that css/js is included only for that template) or you may set it to True in the ``app.config`` if you want the resource enabled for all templates for some reason or another. The following config settings are searched for in the Flask application’s configuration dictionary: - ``STATICS_MINIFY`` – Have minified resources selected instead of uncompressed resources. - ``STATICS_ENABLE_RESOURCE_ANGULARJS`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_BOOTSTRAP`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_BOOTSTRAP_EDITABLE`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_BOOTSTRAP_GROWL`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_BOOTSTRAP_TYPEAHEAD`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_BOOTSTRAP_VALIDATOR`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_CSSHAKE`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_D3`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_DATATABLES`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_FONT_AWESOME`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_JQUERY`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_WHHG_FONT`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_ANGULARJS_ANIMATE`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_ANGULARJS_COOKIES`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_ANGULARJS_CSP`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_ANGULARJS_LOADER`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_ANGULARJS_MESSAGES`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_ANGULARJS_MOCKS`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_ANGULARJS_RESOURCE`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_ANGULARJS_ROUTE`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_ANGULARJS_SANITIZE`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_ANGULARJS_SCENARIO`` – include resource in all templates. - ``STATICS_ENABLE_RESOURCE_ANGULARJS_TOUCH`` – include resource in all templates. Changelog --------- 1.0.0 ^^^^^ - Windows compatibility. - Updated Bootstrap to 3.3.1. - Updated Angular JS to 1.3.4. - Updated BootstrapValidator to 0.5.3. - Updated D3 to 3.4.13. - Updated Data Tables to 1.10.4. - Updated Font Awesome to 4.2.0. - Updated WHHG Font to latest as of November 26, 2014. 0.3.0 ^^^^^ - Replaced Bootstrap 3 Typeahead with Twitter typeahead.js. 0.2.0 ^^^^^ - Added BootstrapValidator resource. 0.1.1 ^^^^^ - Added Python 2.6 and 3.x support. 0.1.0 ^^^^^ - Initial release. .. |Build Status Windows| image:: https://img.shields.io/appveyor/ci/Robpol86/Flask-Statics-Helper.svg?style=flat-square :target: https://ci.appveyor.com/project/Robpol86/Flask-Statics-Helper .. |Build Status| image:: https://img.shields.io/travis/Robpol86/Flask-Statics-Helper/master.svg?style=flat-square :target: https://travis-ci.org/Robpol86/Flask-Statics-Helper .. |Coverage Status| image:: https://img.shields.io/codecov/c/github/Robpol86/Flask-Statics-Helper/master.svg?style=flat-square :target: https://codecov.io/github/Robpol86/Flask-Statics-Helper .. |Latest Version| image:: https://img.shields.io/pypi/v/Flask-Statics-Helper.svg?style=flat-square :target: https://pypi.python.org/pypi/Flask-Statics-Helper/ .. |Downloads| image:: https://img.shields.io/pypi/dm/Flask-Statics-Helper.svg?style=flat-square :target: https://pypi.python.org/pypi/Flask-Statics-Helper/


نحوه نصب


نصب پکیج whl Flask-Statics-Helper-1.0.0:

    pip install Flask-Statics-Helper-1.0.0.whl


نصب پکیج tar.gz Flask-Statics-Helper-1.0.0:

    pip install Flask-Statics-Helper-1.0.0.tar.gz