Skip to main content

Site-wide adds a definition or a link for specialized terms.

Project description

Site-wide adds a definition or a link for specialized terms.

Requirements

Mandatory

Optional

  • django-ckeditor (tested with 3.6.2.1) to type the definition in a beautiful GUI;

  • django-reversion (tested with 1.6.0) to recover changes and deletions;

  • django-CMS (tested with 2.3), because django-terms has an apphook and a menu.

Installation

  1. pip install django-terms;

  2. Add 'terms', to your INSTALLED_APPS;

  3. Add terms to your urls:
    • add url(r'^terms/', include('cmsplugin_poll.urls')), to your urls.py;

    • or, if you are using django-CMS, add a page and use the apphook and menu.

Usage

  1. Add some terms in the admin;

  2. Choose how django-terms should apply to your website: Global use (recommended to give django-terms a try) or Local use (recommended for production).

The added terms should now be automatically linked to their definitions.

Global use

A middleware is available to automatically add links on all your website. It is not recommended to use it, since it will add links in all your applications, including django.contrib.admin. But since it only requires one line of change, it is a perfect way to start using django-terms.

  1. Just add 'terms.middleware.TermsMiddleware', to your MIDDLEWARE_CLASSES.

Local use

A template filter is available to add links only on desired parts of your website.

  1. Choose one of your existing templates;

  2. Add {% load terms %} to the beginning of the file (just after {% extends '[file]' %} if you have one);

  3. Use the filter replace_terms like every normal filter.

Example:

{% extends 'base.html' %}
{% load terms %}

{% block article_header %}
  {{ article.header|replace_terms }}
{% endblock %}
{% block article_content %}
  {% filter replace_terms %}
    {{ article.section1 }}
    {{ article.section2 }}
  {% endfilter %}
{% endblock %}

Settings

Common settings

TERMS_ADDITIONAL_IGNORED_TAGS

Default: () A list or tuple of HTML tags (expressed as strings) ignored by django-terms. This setting extends TERMS_IGNORED_TAGS (see Advanced settings)

TERMS_IGNORED_CLASSES

Default: () A list or tuple of HTML classes (expressed as strings) ignored by django-terms.

TERMS_IGNORED_IDS

Default: () A list or tuple of HTML IDs (expressed as strings) ignored by django-terms.

TERMS_REPLACE_FIRST_ONLY

Default: True If set to True, add a link only on the first occurrence of each term.

Advanced settings

TERMS_IGNORED_TAGS

Default: see settings.py A list or tuple of HTML tags (expressed as strings) ignored by django-terms. This is already set, so you should use TERMS_ADDITIONAL_IGNORED_TAGS (see Common settings) if you do not want to break the default behavior.

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

django-terms-0.2.1.tar.gz (6.9 kB view hashes)

Uploaded Source

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