Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Wordpress and Django: best buddies — The Usware Blog - Django Web Development
-
sunlightlabs/django-wordpress - GitHub
-
Setting up nginx to reduce load and memory usage for your ...
-
Slicehost Forum - nginx apache wsgi django -virtualhosts ...
-
AJAX in Django with jQuery | webcloud
-
Infrastructure for Modern Web Sites « random($foo)
-
Python Package Index : dse 2.0.0-BETA5
-
Hyde - A Python Static Website Generator
I should use this thing to make a very simple personal website. -
charles leifer | Writing a custom field in Django
-
How to Log Exceptions in Django - The Matt Logs
import traceback class WsgiLogErrors(object): def process_exception(self, request, exception): tb_text = traceback.format_exc() url = request.build_absolute_uri() request.META['wsgi.errors'].write(url + '\n' + str(tb_text) + '\n') -
Django snippets: Auto Logout Middleware
-
Changing variable names with Python for loops - Stack Overflow
good example of for loops with dynamic variable names in it -
Django Managed Stack | Stackable
-
Popular dog names and breeds - L.A.'s Top Dogs - Los Angeles Times
-
How to Install Python, SVN, Django, OSQA on your Web Hosting Server — Tech Geek Guy
-
Mimsy: Replicating Django’s admin form pop-ups
-
jbalogh/django-nose - GitHub
-
Hus to Know?: Setting up Nose for Django and Hudson
TEST_RUNNER = 'myapp.test.nose_utils.MyTestSuiteRunner' # Without the --exe, Nose will ignore executable tests.py files. # We need the --cover-package to force it to look only in the current directory. # The --nocapture allows us to see what's going on at stdout and use pdb for breaking checking.# Set --testmatch to look for files that start only with tests. NOSE_ARGS = ( '--exe', '--cover-package=myapp', '--nocapture', '--testmatch=^test') HUDSON_NOSE_ARGS = ('--with-xunit', '--xunit-file=xmlrunner/nosetests.xml', '--with-xcoverage', '--xcoverage-file=coverage.xml') NOSE_ARGS = NOSE_ARGS + HUDSON_NOSE_ARGS -
Setting up a python CI server with Hudson | Rhonabwy
-
Celery - The Distributed Task Queue
-
Build a Django Stack / Other Help Resources / FAQs - Opscode Support
-
Python Package Index : django-celery 2.2.4
-
Fun with API's -- FRAPI and django-tastypie
-
Django settings template / unfoldthat.com
-
Python virtualenv quickstart with Django | Bradley Wright