Skip to main content

A Mezzanine app to integrate dpaste, a Django pastebin.

Project description

MezzPaste is a Mezzanine app that integrates the Django pastebin dpaste into the Mezzanine framework.

Usage

First install the package and dependencies using pip:

pip install mezzanine-dpaste

Add the packages to your INSTALLED_APPS, it is important to list mezzpaste above the dpaste app:

INSTALLED_APPS = (
    # ...

    'mptt',
    'mezzpaste',
    'dpaste',
)

Include the dpaste.urls in your Mezzanine project’s urls.py, above mezzanine.urls:

urlpatterns += patterns('',
    ("^pastes/", include('dpaste.urls.dpaste')),
    ("^", include("mezzanine.urls")),
)

Add a cron job to purge expired pastes:

30 * * * * /path/to/virtualenv/bin/python /path/to/project/manage.py cleanup_snippets > /dev/null

To enable syntax highlighting, generate a pygments CSS file and include it in your base.html:

pygmentize -S default -f html -a highlight > pygments.css

You can specify the CSS class used by the templates via the MEZZPASTE_PYGMENTS_CSS setting:

MEZZPASTE_PYGMENTS_CSS = 'codehilite'

If you want to include a link in a Navigation menu, create a Page in Mezzanine with the same URL as the mezzpaste URL you added to your project’s urls.py.

For additional configuration settings, see the dpaste Documentation.

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

mezzanine-dpaste-2.1.1.tar.gz (19.1 kB view details)

Uploaded Source

File details

Details for the file mezzanine-dpaste-2.1.1.tar.gz.

File metadata

File hashes

Hashes for mezzanine-dpaste-2.1.1.tar.gz
Algorithm Hash digest
SHA256 b2a963ec62610ac74d7357ab9eaa0c10eadb7e5da1e5e4873586870a4bbcd959
MD5 08356695573ee20c5bbe93a033cc88ac
BLAKE2b-256 2dafb2da6708c2b5d23aa9ece51c396b11d657ccfdc88fbf07dd99e03b53096a

See more details on using hashes here.

Supported by

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