-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
David Cramer
authored and
David Cramer
committed
Oct 1, 2009
1 parent
db534b4
commit 5c8a9fb
Showing
7 changed files
with
73 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
Coffin.egg-info | ||
/dist | ||
.*.swp | ||
/docs/_build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
========================== | ||
:mod:`coffin.contrib.auth` | ||
========================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
===================== | ||
:mod:`coffin.contrib` | ||
===================== | ||
|
||
Coffin includes replacements for several Django contrib modules. | ||
|
||
To use this, simply change your import line from:: | ||
|
||
from django.contrib.<module> | ||
|
||
To:: | ||
|
||
from coffin.contrib.<module> | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
auth | ||
markup | ||
syndication |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
============================ | ||
:mod:`coffin.contrib.markup` | ||
============================ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
================================= | ||
:mod:`coffin.contrib.syndication` | ||
================================= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
Installation | ||
============ | ||
|
||
Install the package through PyPi:: | ||
|
||
easy_install Coffin | ||
|
||
Or alternatively, get the source:: | ||
|
||
git clone git://github.com/dcramer/coffin.git | ||
cd coffin | ||
python setup.py install | ||
|
||
Once installed, you will need to add Coffin to several places throughout your projects. | ||
|
||
First, open up ``settings.py`` and add Coffin to your ``INSTALLED_APPS``:: | ||
|
||
INSTALLED_APPS = ( | ||
'coffin', | ||
... | ||
) | ||
|
||
The easiest way to enable Jinja2, rather than Django, is to change your import paths. For example, if we're using the ``render_to_response`` shortcut, we simply need to tweak our import line:: | ||
|
||
from django.shortcuts import render_to_response | ||
|
||
To the following:: | ||
|
||
from coffin.shortcuts import render_to_response | ||
|
||
Coffin includes drop in replacements for the following Django modules: | ||
|
||
* :mod:`django.shortcuts` | ||
* :mod:`django.views.generic.simple` | ||
* :mod:`django.contrib.auth` | ||
* :mod:`django.contrib.markup` | ||
* :mod:`django.contrib.syndication` | ||
* :mod:`django.template` |