head 1.3; access; symbols pkgsrc-2013Q2:1.3.0.10 pkgsrc-2013Q2-base:1.3 pkgsrc-2012Q4:1.3.0.8 pkgsrc-2012Q4-base:1.3 pkgsrc-2011Q4:1.3.0.6 pkgsrc-2011Q4-base:1.3 pkgsrc-2011Q2:1.3.0.4 pkgsrc-2011Q2-base:1.3 pkgsrc-2009Q4:1.3.0.2 pkgsrc-2009Q4-base:1.3 pkgsrc-2009Q3:1.2.0.2 pkgsrc-2009Q3-base:1.2 pkgsrc-2009Q2:1.1.0.2 pkgsrc-2009Q2-base:1.1; locks; strict; comment @# @; 1.3 date 2009.10.19.11.31.05; author joerg; state dead; branches; next 1.2; 1.2 date 2009.07.29.11.02.08; author joerg; state Exp; branches; next 1.1; 1.1 date 2009.04.14.09.14.25; author joerg; state Exp; branches 1.1.2.1; next ; 1.1.2.1 date 2009.07.29.20.36.04; author tron; state Exp; branches; next ; desc @@ 1.3 log @Update to Django 1.1: - Support for aggregates and query expression in the ORM - Suport for unamanged models and proxy models - Support for deffered fields - Mark individual fields as editable in the admin; support for custom actions - Better support for Last-Modified/ETag - Improved GIS support - {% for %} now has an {% empty %} to simplify handling empty lists - Various smaller improvements @ text @$NetBSD: patch-ab,v 1.2 2009/07/29 11:02:08 joerg Exp $ --- django/db/backends/sqlite3/base.py.orig 2009-04-11 22:01:24.000000000 +0200 +++ django/db/backends/sqlite3/base.py @@@@ -13,18 +13,11 @@@@ from django.db.backends.sqlite3.introspe from django.utils.safestring import SafeString try: - try: - from sqlite3 import dbapi2 as Database - except ImportError, e1: - from pysqlite2 import dbapi2 as Database + from pysqlite2 import dbapi2 as Database except ImportError, exc: import sys from django.core.exceptions import ImproperlyConfigured - if sys.version_info < (2, 5, 0): - module = 'pysqlite2' - else: - module = 'sqlite3' - exc = e1 + module = 'pysqlite2' raise ImproperlyConfigured, "Error loading %s module: %s" % (module, exc) try: @ 1.2 log @Update to Django 1.0.3: - various bugfix - correctly validate file names for the admin media when using the development server @ text @d1 1 a1 1 $NetBSD: patch-ab,v 1.1 2009/04/14 09:14:25 joerg Exp $ @ 1.1 log @Fix sqlite option for Python 2.5 and higher, we always want to use the newer external py-sqlite package for that. Bump revision. @ text @d1 1 a1 1 $NetBSD$ d5 2 a6 2 @@@@ -12,18 +12,11 @@@@ from django.db.backends.sqlite3.creation from django.db.backends.sqlite3.introspection import DatabaseIntrospection @ 1.1.2.1 log @Pullup ticket #2845 - requested by joerg py-django: security update Revisions pulled up: - www/py-django/Makefile 1.19 - www/py-django/PLIST 1.11 - www/py-django/distinfo 1.10 - www/py-django/patches/patch-aa delete - www/py-django/patches/patch-ab 1.2 --- Module Name: pkgsrc Committed By: joerg Date: Wed Jul 29 11:02:08 UTC 2009 Modified Files: pkgsrc/www/py-django: Makefile PLIST distinfo pkgsrc/www/py-django/patches: patch-ab Removed Files: pkgsrc/www/py-django/patches: patch-aa Log Message: Update to Django 1.0.3: - various bugfix - correctly validate file names for the admin media when using the development server @ text @d5 2 a6 2 @@@@ -13,18 +13,11 @@@@ from django.db.backends.sqlite3.introspe from django.utils.safestring import SafeString @