Skip to main content

Style Plugin for django CMS

Project description

Aldryn Style provides a plugin that wraps other plugins in CSS styling, by placing a class name on a containing element.

Installation

This plugin requires django CMS 2.4 or higher to be properly installed.

  • Within your virtualenv run pip install aldryn-style

  • Add 'aldryn_style' to your INSTALLED_APPS setting.

  • Run manage.py migrate aldryn_style.

Usage

You can define styles and tag-types in your settings.py:

# define this lambda if it isn't already defined in your settings...
_ = lambda s: s

ALDRYN_STYLE_CLASS_NAMES = (
    ('info', _('info')),
    ('new', _('new')),
    ('hint', _('hint')),
)

ALDRYN_STYLE_ALLOWED_TAGS = [
    'div', 'p', 'span', 'article', 'section', 'header', 'footer',
]

By default, if ALDRYN_STYLE_ALLOWED_TAGS is not supplied, or contains an empty list, then it will default to the following list for backwards compatibility with previous versions:

ALDRYN_STYLE_ALLOWED_TAGS = [
    'div', 'article', 'section', 'p', 'span',
    'h1', 'h2', 'h3', 'h4', 'h5', 'h6',
    'header', 'footer',
]

NOTICE:

All tags included in this list should be "paired tags" that require a
closing tag. It does not make sense to attempt to use 'button', 'input',
'img', or other self-closing tag in this setting.

Also, the developer is advised to choose the tag-types wisely to avoid HTML
validation issues and/or unintentional security vulnerabilities. For
example, the 'script' tag should never be allowed in
``ALDRYN_STYLE_ALLOWED_TAGS`` (though, we do not prevent this). If you have
an application where you find yourself wishing to do this, please see
djangocms-snippet or aldryn-snippet as an alternative, but note these
projects also come with appropriate security warnings.

After that you can place any number of other plugins inside this style plugin. It will create a div (or other tag-type) with a class that was prior selected around the contained plugins.

Translations

If you want to help translate the plugin please do it on Transifex:

https://www.transifex.com/projects/p/django-cms/resource/aldryn-style/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aldryn-style-1.1.4.tar.gz (19.9 kB view details)

Uploaded Source

File details

Details for the file aldryn-style-1.1.4.tar.gz.

File metadata

File hashes

Hashes for aldryn-style-1.1.4.tar.gz
Algorithm Hash digest
SHA256 cdf4bccf5be924ee59bcd481a1ee59392f8a3a39b98c1d6861bc9da517c31629
MD5 e0de4d11842b5ddb05108f49e54343db
BLAKE2b-256 1c739010c113b9068577d4085b55d8e1cf710d16683bef69a58d02f294a92463

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page