Skip to main content

Provides a way to integrate a protected sphinx based documentation within your django app.

Project description

=====================================
Django-documentation
=====================================

This `Django <http://djangoproject.com>`_ app has for purpose to integrate
protected sphinx based documentation .


Installation
============

Depedencies
~~~~~~~~~~~

django-documentation depends on `Sphinx <http://sphinx.pocoo.org>`_

Installing django-simple-feedback
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Install into your python path using pip::

pip install django-documentation
pip install -e git+git://github.com/Narsil/django-documentation.git#egg=django-documentation

Add *'documentation'* to your INSTALLED_APPS in settings.py::

INSTALLED_APPS = (
...
'documentation',
)

Add *'(r'^docs/', include('documentation.urls')'* to your urls::

urlpatterns = patterns( '',
....
(r'^docs/', include('documentation.urls'),
)

Settings
~~~~~~~~

Set up where is your documentation, and a function that has a user for argument
and returns **True** if user is allowed to see the doc. If you plan on using
``lambda user: True``, then you probably should not be using this app, as
staticfiles would be better suited for this task. ::

DOCUMENTATION_ROOT = '/path/to/docs/'
DOCUMENTATION_ACCESS_FUNCTION = lambda user: user.is_staff

The DOCUMENATION_ROOT is the root of your sphinx doc where the Makefile exists, if you html docs is
placed somewhere else than ``DOCUMENTATION_ROOT + '_build/html/'`` then you
can override it with::

DOCUMENTATION_HTML_ROOT = '/my/other/location/

Note that django-documentation serves the content via x-sendfile when DEBUG
is False, otherwise it uses
`django.views.static.serve <https://docs.djangoproject.com/en/dev/howto/static-files/#django.views.static.serve>`_
To override use ::

DOCUMENTATION_XSENDFILE = True

django-documentation also comes with a command goodies ::

./manage.py makedoc

to generate the 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

django-documentation-1.1.tar.gz (6.1 kB view details)

Uploaded Source

File details

Details for the file django-documentation-1.1.tar.gz.

File metadata

File hashes

Hashes for django-documentation-1.1.tar.gz
Algorithm Hash digest
SHA256 4da3ddf19ce5f987fd483a1d7277c09faf02686d5a73c6f16c910f9df8e23624
MD5 55f15c4a34b8c246b3709383298a15a4
BLAKE2b-256 62e2490b52d6751538017edf7bfa8fd13edf37f0ac01a8a348654a3b0dcc2e78

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