Metadata-Version: 1.1
Name: django-scspostgis
Version: 1.0
Summary: A PostGIS db backend that works with standard_conforming_strings.
Home-page: UNKNOWN
Author: Matthew Dapena-Tretter
Author-email: m@tthewwithanm.com
License: UNKNOWN
Description: A bug in Django 1.3’s PostGIS adapter makes it unusable when
        ``standard_conforming_string`` is enabled, which is the default for
        PostgreSQL 9.1.
        
        `A patch`_ is available, but those not inclined to run a patched version
        of Django can use this package instead. Just install it and then update
        your database settings:
        
        ::
        
            DATABASES = {
                'default': {
                    'ENGINE': 'scspostgis',
                    ...
                }
            }
        
        If you’re using `South`_, you’ll also need the following setting:
        
        ::
        
            SOUTH_DATABASE_ADAPTERS = {
                'default': 'south.db.postgresql_psycopg2',
            }
        
        If you upgrade to Django 1.4, you should uninstall ``scspostgis`` and
        use the standard ‘django.contrib.gis.db.backends.postgis’ engine.
        
        .. _A patch: https://code.djangoproject.com/ticket/16778
        .. _South: http://south.aeracode.org
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
