Add a generic method for getting a Keyname
This patch will make logic/key_name.py obsolete in the future when
everything is compliant with base.logic.
This also makes the naming of already compliant logic modules generic
and also fixes the _name field to be consistent with the naming in
key_name.py.
Note: This does not use Group/Sponsor, Group/School,
Group/Organisation or Group/Club.
Patch by: "Lennard de Rijk" <rijk0214@gmail.com>
Reviewed by: Sverre Rabbelier
""" This module contains useful utilities for GeoDjango."""# Importing the utilities that depend on GDAL, if available.from django.contrib.gis.gdal import HAS_GDALif HAS_GDAL: from django.contrib.gis.utils.ogrinfo import ogrinfo, sample from django.contrib.gis.utils.ogrinspect import mapping, ogrinspect from django.contrib.gis.utils.srs import add_postgis_srs try: # LayerMapping requires DJANGO_SETTINGS_MODULE to be set, # so this needs to be in try/except. from django.contrib.gis.utils.layermapping import LayerMapping except: pass# Attempting to import the GeoIP class.try: from django.contrib.gis.utils.geoip import GeoIP, GeoIPException HAS_GEOIP = Trueexcept: HAS_GEOIP = Falsefrom django.contrib.gis.utils.wkt import precision_wkt