Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Accept Credit Cards in Django with Authorize.Net
-
Bootstrap your Django admin in 3 minutes - Python / Javascript / Django coding notes by Riccardo Forina
-
Django Class-Based-View Inspector -- Classy CBV
-
Django Class-Based-View Inspector -- Classy CBV
-
2degrees/django-recaptcha-field
-
2degrees/django-recaptcha-field
-
andybak/django-linkcheck
-
andybak/django-linkcheck
-
Backbone.js and Django : blog : Josh Bohde
-
Bootstrap your Django admin in 3 minutes - Python / Javascript / Django coding notes by Riccardo Forina
-
stackoverflow.com
-
stackoverflow.com
-
Writing custom django-admin commands | Django documentation | Django
-
Use the Django ORM in a standalone script (again) - Stack Overflow
-
Standalone Django scripts
-
tomchristie/django-vanilla-views
-
tomchristie/django-vanilla-views
-
django - How can I prevent a redirect loop using SSL with gunicorn/nginx? - Stack Overflow
-
Django 1.6 release notes | Django documentation | Django
-
Django 1.6 release notes | Django documentation | Django
-
Securing Django with SSL | Red Robot Studios
from django.conf import settings from django.http import HttpResponseRedirect def secure_required(view_func): """Decorator makes sure URL is accessed over https.""" def _wrapped_view_func(request, *args, **kwargs): if not request.is_secure(): if getattr(settings, 'HTTPS_SUPPORT', True): request_url = request.build_absolute_uri(request.get_full_path()) secure_url = request_url.replace('http://', 'https://') return HttpResponseRedirect(secure_url) return view_func(request, *args, **kwargs) return _wrapped_view_func -
charles leifer | Micawber, a python library for extracting rich content from URLs
-
charles leifer | Micawber, a python library for extracting rich content from URLs
-
Hello, Web App | Introduction to Web Development Book
-
Hello, Web App | Introduction to Web Development Book