A collection of random Django utilities
Project description
Django Muckraking
=================
A collection of various Django utilities. It includes:
Middleware
----------
:code:`muckraking.middleware.SpacelessMiddleware`
Removes spaces and line breaks between html tags. Leaves <script> blocks intact
:code:`muckraking.middleware.LegacyURLRedirectMiddleware`
An apache-like approach to redirects.
Specify your redirects in settings.py like this::
LEGACY_URL_REDIRECTS = (
(r'^/about/news-events\.php(.+)?', '/news-events/$1',),
(r'^/about/(?!index\.php)', '/about/',),
)
Template Context Processors
---------------------------
:code:`muckraking.template.context_processors.debug_context`
Add a :code:`{{ DEBUG }}` variable Django templates. The value is a boolean
Standard Template Tags
----------------------
To use the following tags, add :code:`{% load muckraking_tags %}` to your template.
:code:`{% version_hash %}`
Outputs either the Git HEAD commit hash, or a hash of the atime value of the Django settings module. It first tries to output the Git commit hash. If unsuccessful, it falls back to the settings module file time hash.
:code:`{% git_commit_hash %}`
Outputs the commit hash of the HEAD commit in a git repo. Useful for cache-busting strings.
:code:`{% settings_file_time_hash %}`
Outputs a hash of the atime meta value of the Django settings module file. Useful for cache-busting strings.
Django CMS Template Tags
------------------------
To use the following tags, add :code:`{% load muckraking_cms_tags %}` to your template.
:code:`{% page_url_by_slug "foobar-page" %}`
Allows you to perform reverse lookups on pages by slug::
Management Commands
-------------------
import_redirects
Allows you to import a csv file of redirect urls into the redicet app::
./manage.py import_redirects ~/path/to/redirects.csv
=================
A collection of various Django utilities. It includes:
Middleware
----------
:code:`muckraking.middleware.SpacelessMiddleware`
Removes spaces and line breaks between html tags. Leaves <script> blocks intact
:code:`muckraking.middleware.LegacyURLRedirectMiddleware`
An apache-like approach to redirects.
Specify your redirects in settings.py like this::
LEGACY_URL_REDIRECTS = (
(r'^/about/news-events\.php(.+)?', '/news-events/$1',),
(r'^/about/(?!index\.php)', '/about/',),
)
Template Context Processors
---------------------------
:code:`muckraking.template.context_processors.debug_context`
Add a :code:`{{ DEBUG }}` variable Django templates. The value is a boolean
Standard Template Tags
----------------------
To use the following tags, add :code:`{% load muckraking_tags %}` to your template.
:code:`{% version_hash %}`
Outputs either the Git HEAD commit hash, or a hash of the atime value of the Django settings module. It first tries to output the Git commit hash. If unsuccessful, it falls back to the settings module file time hash.
:code:`{% git_commit_hash %}`
Outputs the commit hash of the HEAD commit in a git repo. Useful for cache-busting strings.
:code:`{% settings_file_time_hash %}`
Outputs a hash of the atime meta value of the Django settings module file. Useful for cache-busting strings.
Django CMS Template Tags
------------------------
To use the following tags, add :code:`{% load muckraking_cms_tags %}` to your template.
:code:`{% page_url_by_slug "foobar-page" %}`
Allows you to perform reverse lookups on pages by slug::
Management Commands
-------------------
import_redirects
Allows you to import a csv file of redirect urls into the redicet app::
./manage.py import_redirects ~/path/to/redirects.csv
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-muckraking-0.3.2.tar.gz
.
File metadata
- Download URL: django-muckraking-0.3.2.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1940aa60ec4ef8e847f167da9582300cd08a13201de38d3e8685e1f1377bea2 |
|
MD5 | 751d2dc86089e4285233623d8ed8d2a4 |
|
BLAKE2b-256 | f97dc91c9e5a58e9d8b0391b64a305808fcf28bd8912664604db09005e4e7192 |