Author: leidel
Date: Sun Sep 7 15:23:37 2008
New Revision: 50
Modified:
trunk/README.rst
trunk/setup.py
Log:
modifications on the docs and version bump
Modified: trunk/README.rst
==============================================================================
--- trunk/README.rst (original)
+++ trunk/README.rst Sun Sep 7 15:23:37 2008
@@ -12,34 +12,34 @@
1. Follow the instructions in the INSTALL file
2. Edit the settings.py of your Django project:
- Add ``dbtemplates`` to the ``INSTALLED_APPS`` of your django project
-
- Check if ``django.contrib.sites`` and ``django.contrib.admin`` are in
- ``INSTALLED_APPS`` and add if necessary.
-
- It should look something like this::
-
- INSTALLED_APPS = (
- 'django.contrib.auth',
- 'django.contrib.contenttypes',
- 'django.contrib.sessions',
- 'django.contrib.sites',
- 'django.contrib.admin',
- 'django.contrib.flatpages',
- 'dbtemplates',
- 'myapp.blog',
- )
-
- Add ``dbtemplates.loader.load_template_source`` to the
- ``TEMPLATE_LOADERS`` list in the settings.py of your Django project
-
- It should look something like this::
-
- TEMPLATE_LOADERS = (
- 'django.template.loaders.filesystem.load_template_source',
- 'django.template.loaders.app_directories.load_template_source',
- 'dbtemplates.loader.load_template_source',
- )
+ Add ``dbtemplates`` to the ``INSTALLED_APPS`` of your django project
+
+ Check if ``django.contrib.sites`` and ``django.contrib.admin`` are in
+ ``INSTALLED_APPS`` and add if necessary.
+
+ It should look something like this::
+
+ INSTALLED_APPS = (
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.sites',
+ 'django.contrib.admin',
+ 'django.contrib.flatpages',
+ 'dbtemplates',
+ 'myapp.blog',
+ )
+
+ Add ``dbtemplates.loader.load_template_source`` to the
+ ``TEMPLATE_LOADERS`` list in the settings.py of your Django project
+
+ It should look something like this::
+
+ TEMPLATE_LOADERS = (
+ 'django.template.loaders.filesystem.load_template_source',
+ 'django.template.loaders.app_directories.load_template_source',
+ 'dbtemplates.loader.load_template_source',
+ )
3. Sync your database via shell (hint: "./manage.py syncdb" within project
dir)
4. Restart your Django server
@@ -47,9 +47,9 @@
with filename like identifiers, for example "blog/entry_list.html"
6. Use it with ``Flatpages``, ``Generic views`` and your own custom views
-What? Hm, doesn't work here. || Aaah nice, BUT...
-=================================================
+Support
+=======
Please leave your questions and messages on the designated Google Code
site:
- http://code.google.com/p/django-databasetemplateloader/
+http://code.google.com/p/django-databasetemplateloader/
Modified: trunk/setup.py
==============================================================================
--- trunk/setup.py (original)
+++ trunk/setup.py Sun Sep 7 15:23:37 2008
@@ -1,9 +1,10 @@
from distutils.core import setup
setup(
- name='dbtemplates',
- version='0.4.5',
+ name='django-dbtemplates',
+ version='0.4.6',
description='Template loader for database stored templates',
+ long_description=open('README.rst').read(),
author='Jannis Leidel',
author_email='[EMAIL PROTECTED]',
url='http://code.google.com/p/django-databasetemplateloader/',
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---