معرفی شرکت ها


django-less-0.7.2


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Django template tags to compile LESS into CSS
ویژگی مقدار
سیستم عامل -
نام فایل django-less-0.7.2
نام django-less
نسخه کتابخانه 0.7.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Andrey Fedoseev
ایمیل نویسنده andrey.fedoseev@gmail.com
آدرس صفحه اصلی https://github.com/andreyfedoseev/django-less
آدرس اینترنتی https://pypi.org/project/django-less/
مجوز UNKNOWN
**THIS PACKAGE IS NOT MAINTAINED.** Please use `django-static-precompiler <https://github.com/andreyfedoseev/django-static-precompiler>`_ Django LESS =================== Django LESS provides template tags to compile LESS into CSS from templates. It works with both inline code and extenal files. Installation ************ 1. Add ``"less"`` to ``INSTALLED_APPS`` setting. 2. Make sure that you have ``lessc`` executable installed. See `LESS official site <http://lesscss.org>`_ for details. 3. Optionally, you can specify the full path to ``lessc`` executable with ``LESS_EXECUTABLE`` setting. By default it's set to ``lessc``. 4. In case you use Django’s staticfiles contrib app you have to add django-less’s file finder to the ``STATICFILES_FINDERS`` setting, for example : :: STATICFILES_FINDERS = ( 'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder', # other finders.. 'less.finders.LessFinder', ) Example Usage ************* Inline ------ :: {% load less %} <style> {% inlineless %} #header { h1 { font-size: 26px; font-weight: bold; } p { font-size: 12px; a { text-decoration: none; &:hover { border-width: 1px } } } } {% endless %} </style> renders to :: <style> #header h1 { font-size: 26px; font-weight: bold; } #header p { font-size: 12px; } #header p a { text-decoration: none; } #header p a:hover { border-width: 1px; } </style> External file ------------- :: {% load less %} <link rel="stylesheet" href="{{ STATIC_URL}}{% less "path/to/styles.less" %}" /> renders to :: <link rel="stylesheet" href="/media/LESS_CACHE/path/to/styles-91ce1f66f583.css" /> Note that by default compiled files are saved into ``LESS_CACHE`` folder under your ``STATIC_ROOT`` (or ``MEDIA_ROOT`` if you have no ``STATIC_ROOT`` in your settings). You can change this folder with ``LESS_ROOT`` and ``LESS_OUTPUT_DIR`` settings. Note that all relative URLs in your stylesheet are converted to absolute URLs using your ``STATIC_URL`` setting. Settings ******** ``LESS_EXECUTABLE`` Path to LESS compiler executable. Default: ``"lessc"``. ``LESS_OPTIONS`` Options sent to ``lessc``. Default: ``[]``. ``LESS_ROOT`` Controls the absolute file path that compiled files will be written to. Default: ``STATIC_ROOT``. ``LESS_OUTPUT_DIR`` Controls the directory inside ``LESS_ROOT`` that compiled files will be written to. Default: ``"LESS_CACHE"``. ``LESS_USE_CACHE`` Whether to use cache for inline styles. Default: ``True``. ``LESS_CACHE_TIMEOUT`` Cache timeout for inline styles (in seconds). Default: 30 days. ``LESS_MTIME_DELAY`` Cache timeout for reading the modification time of external stylesheets (in seconds). Default: 10 seconds. Changes ******* 0.7.2 ------ - Add LESS_OPTIONS config variable. - Use urlparse instead of posixpath to leave double slashes in urls. - Raise exception on compilation errors. 0.7.1 ------ - Use hashlib instead of django.utils.hashcompat which is deprecated in Django 1.5 - Add `shell=True` to Popen arguments when running on Windows. 0.7 ---- - Add staticfiles finder to serve compiled files in dev mode 0.6 ---- - Add LESS_ROOT setting 0.5.1 ----- - Fix unicodedecodeerror with non ascii in less file 0.5 ---- - Switch to staticfiles.finders when looking up the files in DEBUG mode. 0.4 ---- - Add support for lookup in STATICFILES_DIRS 0.3 ---- - Log LESS compilation errors - Fixed bug with paths on Windows 0.2 ---- - Use STATIC_ROOT / STATIC_URL settings when possible instead of MEDIA_ROOT / MEDIA_URL 0.1 ---- - Initial release


نحوه نصب


نصب پکیج whl django-less-0.7.2:

    pip install django-less-0.7.2.whl


نصب پکیج tar.gz django-less-0.7.2:

    pip install django-less-0.7.2.tar.gz