[GeoNode-users] Problems to change Geonode database name
Ariel Nunez
ingenieroariel at gmail.com
Wed May 27 06:53:10 PDT 2015
Also, make sure to look for a local_settings.py symlink in the folder where
geonode is installed (you can find this folder by doing: python -c "import
geonode;print geonode.__file__" )
-a
On Wed, May 27, 2015 at 8:01 AM, Simone Dalmasso <simone.dalmasso at gmail.com>
wrote:
> There could be two reasons for this:
> - the local_settings contain a syntax error and geonode is ignoring them
> - the local_settings are not readable by geonode, but if you installed it
> with apt-get (and you are editing /etc/geonode/local_settings.py) then is
> not the case
>
> 2015-05-27 14:57 GMT+02:00 Davi Custodio <davicustodio at gmail.com>:
>
>> Simone, how do I force Django to respect the new local_settings settings?
>>
>> On Wed, May 27, 2015 at 9:56 AM, Davi Custodio <davicustodio at gmail.com>
>> wrote:
>>
>>> I forgot to put the setting of my local_settings.py:
>>>
>>>
>>> DATABASE_ENGINE = 'postgresql_psycopg2'
>>> DATABASE_NAME = 'cnpm_geonode'
>>> DATABASE_USER = 'geonode'
>>> DATABASE_PASSWORD = '*****'
>>> DATABASE_HOST = 'jatoba.cnpm.embrapa.br'
>>> DATABASE_PORT = '5432'
>>>
>>> DATABASES = {
>>> 'default': {
>>> 'ENGINE': 'django.db.backends.postgresql_psycopg2',
>>> 'NAME': DATABASE_NAME,
>>> 'USER': DATABASE_USER,
>>> 'PASSWORD': DATABASE_PASSWORD,
>>> 'HOST': DATABASE_HOST,
>>> 'PORT': DATABASE_PORT,
>>> },
>>> 'datastore': {
>>> 'ENGINE': 'django.contrib.gis.db.backends.postgis',
>>> 'NAME': 'cnpm_geonode_data',
>>> 'USER': DATABASE_USER,
>>> 'PASSWORD': DATABASE_PASSWORD,
>>> 'HOST': DATABASE_HOST,
>>> 'PORT': DATABASE_PORT,
>>> }
>>> }
>>>
>>> On Wed, May 27, 2015 at 9:50 AM, Davi Custodio <davicustodio at gmail.com>
>>> wrote:
>>>
>>>> Hello. I have problem in GeoNode 2.4 to rename the GeoNode database. I
>>>> need to change the names of "GeoNode" and "geonode_data" because I am
>>>> centralizing the databases of various GeoNode servers in the same instance
>>>> of PostgreSQL.
>>>> I changed the names in local_settings.py, and then restarted the
>>>> apache, and I received an error to Django still trying to find a database
>>>> with old name "GeoNode".
>>>> Besides local_settings.py, there is another location that I should
>>>> change the database name?
>>>> Below the full log.
>>>>
>>>> Davi.
>>>>
>>>>
>>>>
>>>>
>>>> OperationalError at /
>>>>
>>>> FATAL: database "geonode" does not exist
>>>>
>>>> Request Method:GETRequest URL:http://muchita.cnpm.embrapa.br/Django
>>>> Version:1.6.1Exception Type:OperationalErrorException Value:
>>>>
>>>> FATAL: database "geonode" does not exist
>>>>
>>>> Exception Location:/usr/lib/python2.7/dist-packages/psycopg2/__init__.py
>>>> in connect, line 179Python Executable:/usr/bin/pythonPython Version:
>>>> 2.7.6Python Path:
>>>>
>>>> ['/usr/lib/python2.7',
>>>> '/usr/lib/python2.7/plat-x86_64-linux-gnu',
>>>> '/usr/lib/python2.7/lib-tk',
>>>> '/usr/lib/python2.7/lib-old',
>>>> '/usr/lib/python2.7/lib-dynload',
>>>> '/usr/local/lib/python2.7/dist-packages',
>>>> '/usr/lib/python2.7/dist-packages',
>>>> '/usr/lib/python2.7/dist-packages/PILcompat',
>>>> '/usr/lib/pymodules/python2.7',
>>>> '/var/www']
>>>>
>>>> Server time:Qua, 27 Mai 2015 07:36:18 -0500
>>>> Traceback Switch to copy-and-paste view
>>>> <http://muchita.cnpm.embrapa.br/#>
>>>>
>>>> - /usr/lib/python2.7/dist-packages/django/core/handlers/base.py in
>>>> get_response
>>>> 1.
>>>>
>>>> response = response.render()
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/template/response.py in
>>>> render
>>>> 1.
>>>>
>>>> self.content = self.rendered_content
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/template/response.py in
>>>> rendered_content
>>>> 1.
>>>>
>>>> context = self.resolve_context(self.context_data)
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/template/response.py in
>>>> resolve_context
>>>> 1.
>>>>
>>>> return RequestContext(self._request, context, current_app=self._current_app)
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/template/context.py in
>>>> __init__
>>>> 1.
>>>>
>>>> self.update(processor(request))
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> -
>>>> /usr/local/lib/python2.7/dist-packages/geonode/context_processors.py
>>>> in resource_urls
>>>> 1.
>>>>
>>>> site = Site.objects.get_current()
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/contrib/sites/models.py
>>>> in get_current
>>>> 1.
>>>>
>>>> current_site = self.get(pk=sid)
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/db/models/manager.py in
>>>> get
>>>> 1.
>>>>
>>>> return self.get_queryset().get(*args, **kwargs)
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/db/models/query.py in get
>>>> 1.
>>>>
>>>> num = len(clone)
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/db/models/query.py in
>>>> __len__
>>>> 1.
>>>>
>>>> self._fetch_all()
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/db/models/query.py in
>>>> _fetch_all
>>>> 1.
>>>>
>>>> self._result_cache = list(self.iterator())
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/db/models/query.py in
>>>> iterator
>>>> 1.
>>>>
>>>> for row in compiler.results_iter():
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/db/models/sql/compiler.py
>>>> in results_iter
>>>> 1.
>>>>
>>>> for rows in self.execute_sql(MULTI):
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/db/models/sql/compiler.py
>>>> in execute_sql
>>>> 1.
>>>>
>>>> cursor = self.connection.cursor()
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/db/backends/__init__.py
>>>> in cursor
>>>> 1.
>>>>
>>>> cursor = self.make_debug_cursor(self._cursor())
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/db/backends/__init__.py
>>>> in _cursor
>>>> 1.
>>>>
>>>> self.ensure_connection()
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/db/backends/__init__.py
>>>> in ensure_connection
>>>> 1.
>>>>
>>>> self.connect()
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/db/utils.py in __exit__
>>>> 1.
>>>>
>>>> six.reraise(dj_exc_type, dj_exc_value, traceback)
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/db/backends/__init__.py
>>>> in ensure_connection
>>>> 1.
>>>>
>>>> self.connect()
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/django/db/backends/__init__.py
>>>> in connect
>>>> 1.
>>>>
>>>> self.connection = self.get_new_connection(conn_params)
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> -
>>>> /usr/lib/python2.7/dist-packages/django/db/backends/postgresql_psycopg2/base.py
>>>> in get_new_connection
>>>> 1.
>>>>
>>>> return Database.connect(**conn_params)
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>> - /usr/lib/python2.7/dist-packages/psycopg2/__init__.py in connect
>>>> 1.
>>>>
>>>> connection_factory=connection_factory, async=async)
>>>>
>>>> ...
>>>> ▶ Local vars <http://muchita.cnpm.embrapa.br/#>
>>>>
>>>> Request informationGET
>>>>
>>>> No GET data
>>>> POST
>>>>
>>>> No POST data
>>>> FILES
>>>>
>>>> No FILES data
>>>> COOKIESVariableValue__utmz
>>>>
>>>> '128008848.1432729377.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)'
>>>>
>>>> ys-user
>>>>
>>>> 'o%3Ausername%3Ds%253Aadmin%5Ename%3Ds%253Aadmin%5Esurname%3Ds%253Aadmin%5Erole%3Ds%253AAdministrator'
>>>>
>>>> _ga
>>>>
>>>> 'GA1.2.1150756117.1398259583'
>>>>
>>>> __gads
>>>>
>>>> 'ID=d961b8788d34039d:T=1413485184:S=ALNI_MaiaRd8gEEukW6akCBPz27sqFOcgQ'
>>>>
>>>> csrftoken
>>>>
>>>> 'GsCa0yBBEsMMf6hw6knF1r4qHcfafmXb'
>>>>
>>>> s_getNewRepeat
>>>>
>>>> '1423508214723-Repeat'
>>>>
>>>> ys-alreadyShowMessage
>>>>
>>>> 'b%3A1'
>>>>
>>>> __utma
>>>>
>>>> '128008848.1150756117.1398259583.1432729377.1432729377.1'
>>>>
>>>> __utmb
>>>>
>>>> '128008848.1.10.1432729377'
>>>>
>>>> __utmc
>>>>
>>>> '128008848'
>>>>
>>>> s_fid
>>>>
>>>> '691159BDD05014BE-21BD7FC62185D9C7'
>>>>
>>>> METAVariableValuemod_wsgi.listener_port
>>>>
>>>> '80'
>>>>
>>>> HTTP_COOKIE
>>>>
>>>> '__gads=ID=d961b8788d34039d:T=1413485184:S=ALNI_MaiaRd8gEEukW6akCBPz27sqFOcgQ; __utmz=237664978.1423046483.18.3.utmccn=(referral)|utmcsr=google.com.br|utmcct=/|utmcmd=referral; __utma=237664978.1207420118.1398169929.1423046483.1423244128.19; s_fid=691159BDD05014BE-21BD7FC62185D9C7; s_getNewRepeat=1423508214723-Repeat; __utma=218996109.1150756117.1398259583.1432299746.1432304989.52; __utmz=218996109.1432304989.52.23.utmcsr=chorao.cnpm.embrapa.br:9081|utmccn=(referral)|utmcmd=referral|utmcct=/; _ga=GA1.2.1150756117.1398259583; csrftoken=GsCa0yBBEsMMf6hw6knF1r4qHcfafmXb; __utma=128008848.1150756117.1398259583.1432729377.1432729377.1; __utmb=128008848.1.10.1432729377; __utmc=128008848; __utmz=128008848.1432729377.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ys-alreadyShowMessage=b%3A1; ys-user=o%3Ausername%3Ds%253Aadmin%5Ename%3Ds%253Aadmin%5Esurname%3Ds%253Aadmin%5Erole%3Ds%253AAdministrator'
>>>>
>>>> mod_wsgi.listener_host
>>>>
>>>> ''
>>>>
>>>> CONTEXT_DOCUMENT_ROOT
>>>>
>>>> '/var/www'
>>>>
>>>> SERVER_SOFTWARE
>>>>
>>>> 'Apache/2.4.7 (Ubuntu)'
>>>>
>>>> SCRIPT_NAME
>>>>
>>>> u''
>>>>
>>>> mod_wsgi.enable_sendfile
>>>>
>>>> '0'
>>>>
>>>> mod_wsgi.handler_script
>>>>
>>>> ''
>>>>
>>>> SERVER_SIGNATURE
>>>>
>>>> '<address>Apache/2.4.7 (Ubuntu) Server at muchita.cnpm.embrapa.br Port 80</address>\n'
>>>>
>>>> REQUEST_METHOD
>>>>
>>>> 'GET'
>>>>
>>>> PATH_INFO
>>>>
>>>> u'/'
>>>>
>>>> SERVER_PROTOCOL
>>>>
>>>> 'HTTP/1.1'
>>>>
>>>> QUERY_STRING
>>>>
>>>> ''
>>>>
>>>> HTTP_USER_AGENT
>>>>
>>>> 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.65 Safari/537.36'
>>>>
>>>> HTTP_CONNECTION
>>>>
>>>> 'keep-alive'
>>>>
>>>> SERVER_NAME
>>>>
>>>> 'muchita.cnpm.embrapa.br'
>>>>
>>>> REMOTE_ADDR
>>>>
>>>> '10.157.20.55'
>>>>
>>>> mod_wsgi.queue_start
>>>>
>>>> '1432730176843671'
>>>>
>>>> mod_wsgi.request_handler
>>>>
>>>> 'wsgi-script'
>>>>
>>>> wsgi.url_scheme
>>>>
>>>> 'http'
>>>>
>>>> PATH_TRANSLATED
>>>>
>>>> '/var/www/geonode/wsgi/geonode.wsgi/'
>>>>
>>>> SERVER_PORT
>>>>
>>>> '80'
>>>>
>>>> wsgi.multiprocess
>>>>
>>>> True
>>>>
>>>> mod_wsgi.input_chunked
>>>>
>>>> '0'
>>>>
>>>> SERVER_ADDR
>>>>
>>>> '192.168.10.10'
>>>>
>>>> DOCUMENT_ROOT
>>>>
>>>> '/var/www'
>>>>
>>>> mod_wsgi.process_group
>>>>
>>>> 'geonode'
>>>>
>>>> HTTP_PRAGMA
>>>>
>>>> 'no-cache'
>>>>
>>>> SCRIPT_FILENAME
>>>>
>>>> '/var/www/geonode/wsgi/geonode.wsgi'
>>>>
>>>> SERVER_ADMIN
>>>>
>>>> 'webmaster at localhost'
>>>>
>>>> wsgi.input
>>>>
>>>> <mod_wsgi.Input object at 0x7fe089acf530>
>>>>
>>>> HTTP_HOST
>>>>
>>>> 'muchita.cnpm.embrapa.br'
>>>>
>>>> CONTEXT_PREFIX
>>>>
>>>> ''
>>>>
>>>> wsgi.multithread
>>>>
>>>> True
>>>>
>>>> mod_wsgi.callable_object
>>>>
>>>> 'application'
>>>>
>>>> HTTP_CACHE_CONTROL
>>>>
>>>> 'no-cache'
>>>>
>>>> REQUEST_URI
>>>>
>>>> '/'
>>>>
>>>> HTTP_ACCEPT
>>>>
>>>> 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8'
>>>>
>>>> wsgi.version
>>>>
>>>> (1, 0)
>>>>
>>>> GATEWAY_INTERFACE
>>>>
>>>> 'CGI/1.1'
>>>>
>>>> wsgi.run_once
>>>>
>>>> False
>>>>
>>>> wsgi.errors
>>>>
>>>> <mod_wsgi.Log object at 0x7fe0899a1f70>
>>>>
>>>> REMOTE_PORT
>>>>
>>>> '51799'
>>>>
>>>> HTTP_ACCEPT_LANGUAGE
>>>>
>>>> 'pt-PT,pt;q=0.8,pt-BR;q=0.6,en-US;q=0.4,en;q=0.2'
>>>>
>>>> REQUEST_SCHEME
>>>>
>>>> 'http'
>>>>
>>>> mod_wsgi.version
>>>>
>>>> (3, 4)
>>>>
>>>> mod_wsgi.application_group
>>>>
>>>> 'aguai.cnpm.embrapa.br|'
>>>>
>>>> mod_wsgi.script_reloading
>>>>
>>>> '1'
>>>>
>>>> wsgi.file_wrapper
>>>>
>>>> ''
>>>>
>>>> CSRF_COOKIE
>>>>
>>>> u'GsCa0yBBEsMMf6hw6knF1r4qHcfafmXb'
>>>>
>>>> HTTP_ACCEPT_ENCODING
>>>>
>>>> 'gzip, deflate, sdch'
>>>>
>>>> SettingsUsing settings module geonode.settingsSettingValue
>>>> CASCADE_WORKSPACE
>>>>
>>>> 'geonode'
>>>>
>>>> ACCOUNT_USER_DISPLAY
>>>>
>>>> ''
>>>>
>>>> DATABASES
>>>>
>>>> {'datastore': {'ATOMIC_REQUESTS': False,
>>>> 'AUTOCOMMIT': True,
>>>> 'CONN_MAX_AGE': 0,
>>>> 'ENGINE': 'django.contrib.gis.db.backends.postgis',
>>>> 'HOST': 'jatoba.cnpm.embrapa.br',
>>>> 'NAME': 'geonode_data',
>>>> 'OPTIONS': {},
>>>> 'PASSWORD': u'********************',
>>>> 'PORT': '5432',
>>>> 'TEST_CHARSET': None,
>>>> 'TEST_COLLATION': None,
>>>> 'TEST_MIRROR': None,
>>>> 'TEST_NAME': None,
>>>> 'TIME_ZONE': 'America/Chicago',
>>>> 'USER': 'geonode'},
>>>> 'default': {'ATOMIC_REQUESTS': False,
>>>> 'AUTOCOMMIT': True,
>>>> 'CONN_MAX_AGE': 0,
>>>> 'ENGINE': 'django.db.backends.postgresql_psycopg2',
>>>> 'HOST': 'jatoba.cnpm.embrapa.br',
>>>> 'NAME': 'geonode',
>>>> 'OPTIONS': {},
>>>> 'PASSWORD': u'********************',
>>>> 'PORT': '5432',
>>>> 'TEST_CHARSET': None,
>>>> 'TEST_COLLATION': None,
>>>> 'TEST_MIRROR': None,
>>>> 'TEST_NAME': None,
>>>> 'TIME_ZONE': 'America/Chicago',
>>>> 'USER': 'geonode'}}
>>>>
>>>> GOOGLE_API_KEY
>>>>
>>>> u'********************'
>>>>
>>>> CELERY_CREATE_MISSING_QUEUES
>>>>
>>>> True
>>>>
>>>> CSRF_COOKIE_SECURE
>>>>
>>>> False
>>>>
>>>> CELERY_DEFAULT_QUEUE
>>>>
>>>> 'default'
>>>>
>>>> UPLOADER
>>>>
>>>> {'BACKEND': 'geonode.rest',
>>>> 'OPTIONS': {'GEOGIG_ENABLED': False, 'TIME_ENABLED': False}}
>>>>
>>>> LANGUAGE_CODE
>>>>
>>>> 'pt-br'
>>>>
>>>> LICENSES
>>>>
>>>> {'DETAIL': 'above', 'ENABLED': True, 'METADATA': 'verbose'}
>>>>
>>>> MANAGERS
>>>>
>>>> ()
>>>>
>>>> DOWNLOAD_FORMATS_METADATA
>>>>
>>>> ['Atom', 'DIF', 'Dublin Core', 'ebRIM', 'FGDC', 'ISO']
>>>>
>>>> BROKER_URL
>>>>
>>>> 'django://'
>>>>
>>>> DEFAULT_CHARSET
>>>>
>>>> 'utf-8'
>>>>
>>>> IGNORABLE_404_URLS
>>>>
>>>> ()
>>>>
>>>> CELERY_DEFAULT_EXCHANGE_TYPE
>>>>
>>>> 'direct'
>>>>
>>>> SESSION_SERIALIZER
>>>>
>>>> 'django.contrib.sessions.serializers.PickleSerializer'
>>>>
>>>> DEFAULT_MAP_CENTER
>>>>
>>>> (0, 0)
>>>>
>>>> ACCOUNT_EMAIL_CONFIRMATION_EXPIRE_DAYS
>>>>
>>>> 3
>>>>
>>>> USE_THOUSAND_SEPARATOR
>>>>
>>>> False
>>>>
>>>> ACCOUNT_EMAIL_CONFIRMATION_AUTHENTICATED_REDIRECT_URL
>>>>
>>>> None
>>>>
>>>> ACCOUNT_INVITE_USER_URL
>>>>
>>>> u'account_invite_user'
>>>>
>>>> REGISTRATION_OPEN
>>>>
>>>> False
>>>>
>>>> ALLOWED_HOSTS
>>>>
>>>> ['muchita.cnpm.embrapa.br', 'localhost']
>>>>
>>>> EMAIL_HOST
>>>>
>>>> 'localhost'
>>>>
>>>> DOWNLOAD_FORMATS_RASTER
>>>>
>>>> ['JPEG',
>>>> 'PDF',
>>>> 'PNG',
>>>> 'ArcGrid',
>>>> 'GeoTIFF',
>>>> 'Gtopo30',
>>>> 'ImageMosaic',
>>>> 'KML',
>>>> 'View in Google Earth',
>>>> 'Tiles']
>>>>
>>>> AUTH_EXEMPT_URLS
>>>>
>>>> ()
>>>>
>>>> WSGI_APPLICATION
>>>>
>>>> None
>>>>
>>>> EMAIL_SUBJECT_PREFIX
>>>>
>>>> '[Django] '
>>>>
>>>> SEND_BROKEN_LINK_EMAILS
>>>>
>>>> False
>>>>
>>>> TEMPLATE_STRING_IF_INVALID
>>>>
>>>> ''
>>>>
>>>> STATICFILES_FINDERS
>>>>
>>>> ('django.contrib.staticfiles.finders.FileSystemFinder',
>>>> 'django.contrib.staticfiles.finders.AppDirectoriesFinder')
>>>>
>>>> NOTIFICATION_QUEUE_ALL
>>>>
>>>> False
>>>>
>>>> SESSION_CACHE_ALIAS
>>>>
>>>> 'default'
>>>>
>>>> CELERY_IMPORTS
>>>>
>>>> ('geonode.tasks.deletion', 'geonode.tasks.update', 'geonode.tasks.email')
>>>>
>>>> SESSION_COOKIE_DOMAIN
>>>>
>>>> None
>>>>
>>>> SESSION_COOKIE_NAME
>>>>
>>>> 'sessionid'
>>>>
>>>> ADMIN_FOR
>>>>
>>>> ()
>>>>
>>>> TIME_INPUT_FORMATS
>>>>
>>>> ('%H:%M:%S', '%H:%M:%S.%f', '%H:%M')
>>>>
>>>> ACCOUNT_USE_AUTH_AUTHENTICATE
>>>>
>>>> False
>>>>
>>>> X_FRAME_OPTIONS
>>>>
>>>> 'SAMEORIGIN'
>>>>
>>>> FILE_UPLOAD_PERMISSIONS
>>>>
>>>> None
>>>>
>>>> ACCOUNT_TIMEZONES
>>>>
>>>> [('Africa/Abidjan', 'Africa/Abidjan'),
>>>> ('Africa/Accra', 'Africa/Accra'),
>>>> ('Africa/Addis_Ababa', 'Africa/Addis_Ababa'),
>>>> ('Africa/Algiers', 'Africa/Algiers'),
>>>> ('Africa/Asmara', 'Africa/Asmara'),
>>>> ('Africa/Asmera', 'Africa/Asmera'),
>>>> ('Africa/Bamako', 'Africa/Bamako'),
>>>> ('Africa/Bangui', 'Africa/Bangui'),
>>>> ('Africa/Banjul', 'Africa/Banjul'),
>>>> ('Africa/Bissau', 'Africa/Bissau'),
>>>> ('Africa/Blantyre', 'Africa/Blantyre'),
>>>> ('Africa/Brazzaville', 'Africa/Brazzaville'),
>>>> ('Africa/Bujumbura', 'Africa/Bujumbura'),
>>>> ('Africa/Cairo', 'Africa/Cairo'),
>>>> ('Africa/Casablanca', 'Africa/Casablanca'),
>>>> ('Africa/Ceuta', 'Africa/Ceuta'),
>>>> ('Africa/Conakry', 'Africa/Conakry'),
>>>> ('Africa/Dakar', 'Africa/Dakar'),
>>>> ('Africa/Dar_es_Salaam', 'Africa/Dar_es_Salaam'),
>>>> ('Africa/Djibouti', 'Africa/Djibouti'),
>>>> ('Africa/Douala', 'Africa/Douala'),
>>>> ('Africa/El_Aaiun', 'Africa/El_Aaiun'),
>>>> ('Africa/Freetown', 'Africa/Freetown'),
>>>> ('Africa/Gaborone', 'Africa/Gaborone'),
>>>> ('Africa/Harare', 'Africa/Harare'),
>>>> ('Africa/Johannesburg', 'Africa/Johannesburg'),
>>>> ('Africa/Juba', 'Africa/Juba'),
>>>> ('Africa/Kampala', 'Africa/Kampala'),
>>>> ('Africa/Khartoum', 'Africa/Khartoum'),
>>>> ('Africa/Kigali', 'Africa/Kigali'),
>>>> ('Africa/Kinshasa', 'Africa/Kinshasa'),
>>>> ('Africa/Lagos', 'Africa/Lagos'),
>>>> ('Africa/Libreville', 'Africa/Libreville'),
>>>> ('Africa/Lome', 'Africa/Lome'),
>>>> ('Africa/Luanda', 'Africa/Luanda'),
>>>> ('Africa/Lubumbashi', 'Africa/Lubumbashi'),
>>>> ('Africa/Lusaka', 'Africa/Lusaka'),
>>>> ('Africa/Malabo', 'Africa/Malabo'),
>>>> ('Africa/Maputo', 'Africa/Maputo'),
>>>> ('Africa/Maseru', 'Africa/Maseru'),
>>>> ('Africa/Mbabane', 'Africa/Mbabane'),
>>>> ('Africa/Mogadishu', 'Africa/Mogadishu'),
>>>> ('Africa/Monrovia', 'Africa/Monrovia'),
>>>> ('Africa/Nairobi', 'Africa/Nairobi'),
>>>> ('Africa/Ndjamena', 'Africa/Ndjamena'),
>>>> ('Africa/Niamey', 'Africa/Niamey'),
>>>> ('Africa/Nouakchott', 'Africa/Nouakchott'),
>>>> ('Africa/Ouagadougou', 'Africa/Ouagadougou'),
>>>> ('Africa/Porto-Novo', 'Africa/Porto-Novo'),
>>>> ('Africa/Sao_Tome', 'Africa/Sao_Tome'),
>>>> ('Africa/Timbuktu', 'Africa/Timbuktu'),
>>>> ('Africa/Tripoli', 'Africa/Tripoli'),
>>>> ('Africa/Tunis', 'Africa/Tunis'),
>>>> ('Africa/Windhoek', 'Africa/Windhoek'),
>>>> ('America/Adak', 'America/Adak'),
>>>> ('America/Anchorage', 'America/Anchorage'),
>>>> ('America/Anguilla', 'America/Anguilla'),
>>>> ('America/Antigua', 'America/Antigua'),
>>>> ('America/Araguaina', 'America/Araguaina'),
>>>> ('America/Argentina/Buenos_Aires', 'America/Argentina/Buenos_Aires'),
>>>> ('America/Argentina/Catamarca', 'America/Argentina/Catamarca'),
>>>> ('America/Argentina/ComodRivadavia', 'America/Argentina/ComodRivadavia'),
>>>> ('America/Argentina/Cordoba', 'America/Argentina/Cordoba'),
>>>> ('America/Argentina/Jujuy', 'America/Argentina/Jujuy'),
>>>> ('America/Argentina/La_Rioja', 'America/Argentina/La_Rioja'),
>>>> ('America/Argentina/Mendoza', 'America/Argentina/Mendoza'),
>>>> ('America/Argentina/Rio_Gallegos', 'America/Argentina/Rio_Gallegos'),
>>>> ('America/Argentina/Salta', 'America/Argentina/Salta'),
>>>> ('America/Argentina/San_Juan', 'America/Argentina/San_Juan'),
>>>> ('America/Argentina/San_Luis', 'America/Argentina/San_Luis'),
>>>> ('America/Argentina/Tucuman', 'America/Argentina/Tucuman'),
>>>> ('America/Argentina/Ushuaia', 'America/Argentina/Ushuaia'),
>>>> ('America/Aruba', 'America/Aruba'),
>>>> ('America/Asuncion', 'America/Asuncion'),
>>>> ('America/Atikokan', 'America/Atikokan'),
>>>> ('America/Atka', 'America/Atka'),
>>>> ('America/Bahia', 'America/Bahia'),
>>>> ('America/Bahia_Banderas', 'America/Bahia_Banderas'),
>>>> ('America/Barbados', 'America/Barbados'),
>>>> ('America/Belem', 'America/Belem'),
>>>> ('America/Belize', 'America/Belize'),
>>>> ('America/Blanc-Sablon', 'America/Blanc-Sablon'),
>>>> ('America/Boa_Vista', 'America/Boa_Vista'),
>>>> ('America/Bogota', 'America/Bogota'),
>>>> ('America/Boise', 'America/Boise'),
>>>> ('America/Buenos_Aires', 'America/Buenos_Aires'),
>>>> ('America/Cambridge_Bay', 'America/Cambridge_Bay'),
>>>> ('America/Campo_Grande', 'America/Campo_Grande'),
>>>> ('America/Cancun', 'America/Cancun'),
>>>> ('America/Caracas', 'America/Caracas'),
>>>> ('America/Catamarca', 'America/Catamarca'),
>>>> ('America/Cayenne', 'America/Cayenne'),
>>>> ('America/Cayman', 'America/Cayman'),
>>>> ('America/Chicago', 'America/Chicago'),
>>>> ('America/Chihuahua', 'America/Chihuahua'),
>>>> ('America/Coral_Harbour', 'America/Coral_Harbour'),
>>>> ('America/Cordoba', 'America/Cordoba'),
>>>> ('America/Costa_Rica', 'America/Costa_Rica'),
>>>> ('America/Creston', 'America/Creston'),
>>>> ('America/Cuiaba', 'America/Cuiaba'),
>>>> ('America/Curacao', 'America/Curacao'),
>>>> ('America/Danmarkshavn', 'America/Danmarkshavn'),
>>>> ('America/Dawson', 'America/Dawson'),
>>>> ('America/Dawson_Creek', 'America/Dawson_Creek'),
>>>> ('America/Denver', 'America/Denver'),
>>>> ('America/Detroit', 'America/Detroit'),
>>>> ('America/Dominica', 'America/Dominica'),
>>>> ('America/Edmonton', 'America/Edmonton'),
>>>> ('America/Eirunepe', 'America/Eirunepe'),
>>>> ('America/El_Salvador', 'America/El_Salvador'),
>>>> ('America/Ensenada', 'America/Ensenada'),
>>>> ('America/Fort_Wayne', 'America/Fort_Wayne'),
>>>> ('America/Fortaleza', 'America/Fortaleza'),
>>>> ('America/Glace_Bay', 'America/Glace_Bay'),
>>>> ('America/Godthab', 'America/Godthab'),
>>>> ('America/Goose_Bay', 'America/Goose_Bay'),
>>>> ('America/Grand_Turk', 'America/Grand_Turk'),
>>>> ('America/Grenada', 'America/Grenada'),
>>>> ('America/Guadeloupe', 'America/Guadeloupe'),
>>>> ('America/Guatemala', 'America/Guatemala'),
>>>> ('America/Guayaquil', 'America/Guayaquil'),
>>>> ('America/Guyana', 'America/Guyana'),
>>>> ('America/Halifax', 'America/Halifax'),
>>>> ('America/Havana', 'America/Havana'),
>>>> ('America/Hermosillo', 'America/Hermosillo'),
>>>> ('America/Indiana/Indianapolis', 'America/Indiana/Indianapolis'),
>>>> ('America/Indiana/Knox', 'America/Indiana/Knox'),
>>>> ('America/Indiana/Marengo', 'America/Indiana/Marengo'),
>>>> ('America/Indiana/Petersburg', 'America/Indiana/Petersburg'),
>>>> ('America/Indiana/Tell_City', 'America/Indiana/Tell_City'),
>>>> ('America/Indiana/Vevay', 'America/Indiana/Vevay'),
>>>> ('America/Indiana/Vincennes', 'America/Indiana/Vincennes'),
>>>> ('America/Indiana/Winamac', 'America/Indiana/Winamac'),
>>>> ('America/Indianapolis', 'America/Indianapolis'),
>>>> ('America/Inuvik', 'America/Inuvik'),
>>>> ('America/Iqaluit', 'America/Iqaluit'),
>>>> ('America/Jamaica', 'America/Jamaica'),
>>>> ('America/Jujuy', 'America/Jujuy'),
>>>> ('America/Juneau', 'America/Juneau'),
>>>> ('America/Kentucky/Louisville', 'America/Kentucky/Louisville'),
>>>> ('America/Kentucky/Monticello', 'America/Kentucky/Monticello'),
>>>> ('America/Knox_IN', 'America/Knox_IN'),
>>>> ('America/Kralendijk', 'America/Kralendijk'),
>>>> ('America/La_Paz', 'America/La_Paz'),
>>>> ('America/Lima', 'America/Lima'),
>>>> ('America/Los_Angeles', 'America/Los_Angeles'),
>>>> ('America/Louisville', 'America/Louisville'),
>>>> ('America/Lower_Princes', 'America/Lower_Princes'),
>>>> ('America/Maceio', 'America/Maceio'),
>>>> ('America/Managua', 'America/Managua'),
>>>> ('America/Manaus', 'America/Manaus'),
>>>> ('America/Marigot', 'America/Marigot'),
>>>> ('America/Martinique', 'America/Martinique'),
>>>> ('America/Matamoros', 'America/Matamoros'),
>>>> ('America/Mazatlan', 'America/Mazatlan'),
>>>> ('America/Mendoza', 'America/Mendoza'),
>>>> ('America/Menominee', 'America/Menominee'),
>>>> ('America/Merida', 'America/Merida'),
>>>> ('America/Metlakatla', 'America/Metlakatla'),
>>>> ('America/Mexico_City', 'America/Mexico_City'),
>>>> ('America/Miquelon', 'America/Miquelon'),
>>>> ('America/Moncton', 'America/Moncton'),
>>>> ('America/Monterrey', 'America/Monterrey'),
>>>> ('America/Montevideo', 'America/Montevideo'),
>>>> ('America/Montreal', 'America/Montreal'),
>>>> ('America/Montserrat', 'America/Montserrat'),
>>>> ('America/Nassau', 'America/Nassau'),
>>>> ('America/New_York', 'America/New_York'),
>>>> ('America/Nipigon', 'America/Nipigon'),
>>>> ('America/Nome', 'America/Nome'),
>>>> ('America/Noronha', 'America/Noronha'),
>>>> ('America/North_Dakota/Beulah', 'America/North_Dakota/Beulah'),
>>>> ('America/North_Dakota/Center', 'America/North_Dakota/Center'),
>>>> ('America/North_Dakota/New_Salem', 'America/North_Dakota/New_Salem'),
>>>> ('America/Ojinaga', 'America/Ojinaga'),
>>>> ('America/Panama', 'America/Panama'),
>>>> ('America/Pangnirtung', 'America/Pangnirtung'),
>>>> ('America/Paramaribo', 'America/Paramaribo'),
>>>> ('America/Phoenix', 'America/Phoenix'),
>>>> ('America/Port-au-Prince', 'America/Port-au-Prince'),
>>>> ('America/Port_of_Spain', 'America/Port_of_Spain'),
>>>> ('America/Porto_Acre', 'America/Porto_Acre'),
>>>> ('America/Porto_Velho', 'America/Porto_Velho'),
>>>> ('America/Puerto_Rico', 'America/Puerto_Rico'),
>>>> ('America/Rainy_River', 'America/Rainy_River'),
>>>> ('America/Rankin_Inlet', 'America/Rankin_Inlet'),
>>>> ('America/Recife', 'America/Recife'),
>>>> ('America/Regina', 'America/Regina'),
>>>> ('America/Resolute', 'America/Resolute'),
>>>> ('America/Rio_Branco', 'America/Rio_Branco'),
>>>> ('America/Rosario', 'America/Rosario'),
>>>> ('America/Santa_Isabel', 'America/Santa_Isabel'),
>>>> ('America/Santarem', 'America/Santarem'),
>>>> ('America/Santiago', 'America/Santiago'),
>>>> ('America/Santo_Domingo', 'America/Santo_Domingo'),
>>>> ('America/Sao_Paulo', 'America/Sao_Paulo'),
>>>> ('America/Scoresbysund', 'America/Scoresbysund'),
>>>> ('America/Shiprock', 'America/Shiprock'),
>>>> ('America/Sitka', 'America/Sitka'),
>>>> ('America/St_Barthelemy', 'America/St_Barthelemy'),
>>>> ('America/St_Johns', 'America/St_Johns'),
>>>> ('America/St_Kitts', 'America/St_Kitts'),
>>>> ('America/St_Lucia', 'America/St_Lucia'),
>>>> ('America/St_Thomas', 'America/St_Thomas'),
>>>> ('America/St_Vincent', 'America/St_Vincent'),
>>>> ('America/Swift_Current', 'America/Swift_Current'),
>>>> ('America/Tegucigalpa', 'America/Tegucigalpa'),
>>>> ('America/Thule', 'America/Thule'),
>>>> ('America/Thunder_Bay', 'America/Thunder_Bay'),
>>>> ('America/Tijuana', 'America/Tijuana'),
>>>> ('America/Toronto', 'America/Toronto'),
>>>> ('America/Tortola', 'America/Tortola'),
>>>> ('America/Vancouver', 'America/Vancouver'),
>>>> ('America/Virgin', 'America/Virgin'),
>>>> ('America/Whitehorse', 'America/Whitehorse'),
>>>> ('America/Winnipeg', 'America/Winnipeg'),
>>>> ('America/Yakutat', 'America/Yakutat'),
>>>> ('America/Yellowknife', 'America/Yellowknife'),
>>>> ('Antarctica/Casey', 'Antarctica/Casey'),
>>>> ('Antarctica/Davis', 'Antarctica/Davis'),
>>>> ('Antarctica/DumontDUrville', 'Antarctica/DumontDUrville'),
>>>> ('Antarctica/Macquarie', 'Antarctica/Macquarie'),
>>>> ('Antarctica/Mawson', 'Antarctica/Mawson'),
>>>> ('Antarctica/McMurdo', 'Antarctica/McMurdo'),
>>>> ('Antarctica/Palmer', 'Antarctica/Palmer'),
>>>> ('Antarctica/Rothera', 'Antarctica/Rothera'),
>>>> ('Antarctica/South_Pole', 'Antarctica/South_Pole'),
>>>> ('Antarctica/Syowa', 'Antarctica/Syowa'),
>>>> ('Antarctica/Vostok', 'Antarctica/Vostok'),
>>>> ('Arctic/Longyearbyen', 'Arctic/Longyearbyen'),
>>>> ('Asia/Aden', 'Asia/Aden'),
>>>> ('Asia/Almaty', 'Asia/Almaty'),
>>>> ('Asia/Amman', 'Asia/Amman'),
>>>> ('Asia/Anadyr', 'Asia/Anadyr'),
>>>> ('Asia/Aqtau', 'Asia/Aqtau'),
>>>> ('Asia/Aqtobe', 'Asia/Aqtobe'),
>>>> ('Asia/Ashgabat', 'Asia/Ashgabat'),
>>>> ('Asia/Ashkhabad', 'Asia/Ashkhabad'),
>>>> ('Asia/Baghdad', 'Asia/Baghdad'),
>>>> ('Asia/Bahrain', 'Asia/Bahrain'),
>>>> ('Asia/Baku', 'Asia/Baku'),
>>>> ('Asia/Bangkok', 'Asia/Bangkok'),
>>>> ('Asia/Beirut', 'Asia/Beirut'),
>>>> ('Asia/Bishkek', 'Asia/Bishkek'),
>>>> ('Asia/Brunei', 'Asia/Brunei'),
>>>> ('Asia/Calcutta', 'Asia/Calcutta'),
>>>> ('Asia/Choibalsan', 'Asia/Choibalsan'),
>>>> ('Asia/Chongqing', 'Asia/Chongqing'),
>>>> ('Asia/Chungking', 'Asia/Chungking'),
>>>> ('Asia/Colombo', 'Asia/Colombo'),
>>>> ('Asia/Dacca', 'Asia/Dacca'),
>>>> ('Asia/Damascus', 'Asia/Damascus'),
>>>> ('Asia/Dhaka', 'Asia/Dhaka'),
>>>> ('Asia/Dili', 'Asia/Dili'),
>>>> ('Asia/Dubai', 'Asia/Dubai'),
>>>> ('Asia/Dushanbe', 'Asia/Dushanbe'),
>>>> ('Asia/Gaza', 'Asia/Gaza'),
>>>> ('Asia/Harbin', 'Asia/Harbin'),
>>>> ('Asia/Hebron', 'Asia/Hebron'),
>>>> ('Asia/Ho_Chi_Minh', 'Asia/Ho_Chi_Minh'),
>>>> ('Asia/Hong_Kong', 'Asia/Hong_Kong'),
>>>> ('Asia/Hovd', 'Asia/Hovd'),
>>>> ('Asia/Irkutsk', 'Asia/Irkutsk'),
>>>> ('Asia/Istanbul', 'Asia/Istanbul'),
>>>> ('Asia/Jakarta', 'Asia/Jakarta'),
>>>> ('Asia/Jayapura', 'Asia/Jayapura'),
>>>> ('Asia/Jerusalem', 'Asia/Jerusalem'),
>>>> ('Asia/Kabul', 'Asia/Kabul'),
>>>> ('Asia/Kamchatka', 'Asia/Kamchatka'),
>>>> ('Asia/Karachi', 'Asia/Karachi'),
>>>> ('Asia/Kashgar', 'Asia/Kashgar'),
>>>> ('Asia/Kathmandu', 'Asia/Kathmandu'),
>>>> ('Asia/Katmandu', 'Asia/Katmandu'),
>>>> ('Asia/Kolkata', 'Asia/Kolkata'),
>>>> ('Asia/Krasnoyarsk', 'Asia/Krasnoyarsk'),
>>>> ('Asia/Kuala_Lumpur', 'Asia/Kuala_Lumpur'),
>>>> ('Asia/Kuching', 'Asia/Kuching'),
>>>> ('Asia/Kuwait', 'Asia/Kuwait'),
>>>> ('Asia/Macao', 'Asia/Macao'),
>>>> ('Asia/Macau', 'Asia/Macau'),
>>>> ('Asia/Magadan', 'Asia/Magadan'),
>>>> ('Asia/Makassar', 'Asia/Makassar'),
>>>> ('Asia/Manila', 'Asia/Manila'),
>>>> ('Asia/Muscat', 'Asia/Muscat'),
>>>> ('Asia/Nicosia', 'Asia/Nicosia'),
>>>> ('Asia/Novokuznetsk', 'Asia/Novokuznetsk'),
>>>> ('Asia/Novosibirsk', 'Asia/Novosibirsk'),
>>>> ('Asia/Omsk', 'Asia/Omsk'),
>>>> ('Asia/Oral', 'Asia/Oral'),
>>>> ('Asia/Phnom_Penh', 'Asia/Phnom_Penh'),
>>>> ('Asia/Pontianak', 'Asia/Pontianak'),
>>>> ('Asia/Pyongyang', 'Asia/Pyongyang'),
>>>> ('Asia/Qatar', 'Asia/Qatar'),
>>>> ('Asia/Qyzylorda', 'Asia/Qyzylorda'),
>>>> ('Asia/Rangoon', 'Asia/Rangoon'),
>>>> ('Asia/Riyadh', 'Asia/Riyadh'),
>>>> ('Asia/Saigon', 'Asia/Saigon'),
>>>> ('Asia/Sakhalin', 'Asia/Sakhalin'),
>>>> ('Asia/Samarkand', 'Asia/Samarkand'),
>>>> ('Asia/Seoul', 'Asia/Seoul'),
>>>> ('Asia/Shanghai', 'Asia/Shanghai'),
>>>> ('Asia/Singapore', 'Asia/Singapore'),
>>>> ('Asia/Taipei', 'Asia/Taipei'),
>>>> ('Asia/Tashkent', 'Asia/Tashkent'),
>>>> ('Asia/Tbilisi', 'Asia/Tbilisi'),
>>>> ('Asia/Tehran', 'Asia/Tehran'),
>>>> ('Asia/Tel_Aviv', 'Asia/Tel_Aviv'),
>>>> ('Asia/Thimbu', 'Asia/Thimbu'),
>>>> ('Asia/Thimphu', 'Asia/Thimphu'),
>>>> ('Asia/Tokyo', 'Asia/Tokyo'),
>>>> ('Asia/Ujung_Pandang', 'Asia/Ujung_Pandang'),
>>>> ('Asia/Ulaanbaatar', 'Asia/Ulaanbaatar'),
>>>> ('Asia/Ulan_Bator', 'Asia/Ulan_Bator'),
>>>> ('Asia/Urumqi', 'Asia/Urumqi'),
>>>> ('Asia/Vientiane', 'Asia/Vientiane'),
>>>> ('Asia/Vladivostok', 'Asia/Vladivostok'),
>>>> ('Asia/Yakutsk', 'Asia/Yakutsk'),
>>>> ('Asia/Yekaterinburg', 'Asia/Yekaterinburg'),
>>>> ('Asia/Yerevan', 'Asia/Yerevan'),
>>>> ('Atlantic/Azores', 'Atlantic/Azores'),
>>>> ('Atlantic/Bermuda', 'Atlantic/Bermuda'),
>>>> ('Atlantic/Canary', 'Atlantic/Canary'),
>>>> ('Atlantic/Cape_Verde', 'Atlantic/Cape_Verde'),
>>>> ('Atlantic/Faeroe', 'Atlantic/Faeroe'),
>>>> ('Atlantic/Faroe', 'Atlantic/Faroe'),
>>>> ('Atlantic/Jan_Mayen', 'Atlantic/Jan_Mayen'),
>>>> ('Atlantic/Madeira', 'Atlantic/Madeira'),
>>>> ('Atlantic/Reykjavik', 'Atlantic/Reykjavik'),
>>>> ('Atlantic/South_Georgia', 'Atlantic/South_Georgia'),
>>>> ('Atlantic/St_Helena', 'Atlantic/St_Helena'),
>>>> ('Atlantic/Stanley', 'Atlantic/Stanley'),
>>>> ('Australia/ACT', 'Australia/ACT'),
>>>> ('Australia/Adelaide', 'Australia/Adelaide'),
>>>> ('Australia/Brisbane', 'Australia/Brisbane'),
>>>> ('Australia/Broken_Hill', 'Australia/Broken_Hill'),
>>>> ('Australia/Canberra', 'Australia/Canberra'),
>>>> ('Australia/Currie', 'Australia/Currie'),
>>>> ('Australia/Darwin', 'Australia/Darwin'),
>>>> ('Australia/Eucla', 'Australia/Eucla'),
>>>> ('Australia/Hobart', 'Australia/Hobart'),
>>>> ('Australia/LHI', 'Australia/LHI'),
>>>> ('Australia/Lindeman', 'Australia/Lindeman'),
>>>> ('Australia/Lord_Howe', 'Australia/Lord_Howe'),
>>>> ('Australia/Melbourne', 'Australia/Melbourne'),
>>>> ('Australia/NSW', 'Australia/NSW'),
>>>> ('Australia/North', 'Australia/North'),
>>>> ('Australia/Perth', 'Australia/Perth'),
>>>> ('Australia/Queensland', 'Australia/Queensland'),
>>>> ('Australia/South', 'Australia/South'),
>>>> ('Australia/Sydney', 'Australia/Sydney'),
>>>> ('Australia/Tasmania', 'Australia/Tasmania'),
>>>> ('Australia/Victoria', 'Australia/Victoria'),
>>>> ('Australia/West', 'Australia/West'),
>>>> ('Australia/Yancowinna', 'Australia/Yancowinna'),
>>>> ('Brazil/Acre', 'Brazil/Acre'),
>>>> ('Brazil/DeNoronha', 'Brazil/DeNoronha'),
>>>> ('Brazil/East', 'Brazil/East'),
>>>> ('Brazil/West', 'Brazil/West'),
>>>> ('CET', 'CET'),
>>>> ('CST6CDT', 'CST6CDT'),
>>>> ('Canada/Atlantic', 'Canada/Atlantic'),
>>>> ('Canada/Central', 'Canada/Central'),
>>>> ('Canada/East-Saskatchewan', 'Canada/East-Saskatchewan'),
>>>> ('Canada/Eastern', 'Canada/Eastern'),
>>>> ('Canada/Mountain', 'Canada/Mountain'),
>>>> ('Canada/Newfoundland', 'Canada/Newfoundland'),
>>>> ('Canada/Pacific', 'Canada/Pacific'),
>>>> ('Canada/Saskatchewan', 'Canada/Saskatchewan'),
>>>> ('Canada/Yukon', 'Canada/Yukon'),
>>>> ('Chile/Continental', 'Chile/Continental'),
>>>> ('Chile/EasterIsland', 'Chile/EasterIsland'),
>>>> ('Cuba', 'Cuba'),
>>>> ('EET', 'EET'),
>>>> ('EST', 'EST'),
>>>> ('EST5EDT', 'EST5EDT'),
>>>> ('Egypt', 'Egypt'),
>>>> ('Eire', 'Eire'),
>>>> ('Etc/GMT', 'Etc/GMT'),
>>>> ('Etc/GMT+0', 'Etc/GMT+0'),
>>>> ('Etc/GMT+1', 'Etc/GMT+1'),
>>>> ('Etc/GMT+10', 'Etc/GMT+10'),
>>>> ('Etc/GMT+11', 'Etc/GMT+11'),
>>>> ('Etc/GMT+12', 'Etc/GMT+12'),
>>>> ('Etc/GMT+2', 'Etc/GMT+2'),
>>>> ('Etc/GMT+3', 'Etc/GMT+3'),
>>>> ('Etc/GMT+4', 'Etc/GMT+4'),
>>>> ('Etc/GMT+5', 'Etc/GMT+5'),
>>>> ('Etc/GMT+6', 'Etc/GMT+6'),
>>>> ('Etc/GMT+7', 'Etc/GMT+7'),
>>>> ('Etc/GMT+8', 'Etc/GMT+8'),
>>>> ('Etc/GMT+9', 'Etc/GMT+9'),
>>>> ('Etc/GMT-0', 'Etc/GMT-0'),
>>>> ('Etc/GMT-1', 'Etc/GMT-1'),
>>>> ('Etc/GMT-10', 'Etc/GMT-10'),
>>>> ('Etc/GMT-11', 'Etc/GMT-11'),
>>>> ('Etc/GMT-12', 'Etc/GMT-12'),
>>>> ('Etc/GMT-13', 'Etc/GMT-13'),
>>>> ('Etc/GMT-14', 'Etc/GMT-14'),
>>>> ('Etc/GMT-2', 'Etc/GMT-2'),
>>>> ('Etc/GMT-3', 'Etc/GMT-3'),
>>>> ('Etc/GMT-4', 'Etc/GMT-4'),
>>>> ('Etc/GMT-5', 'Etc/GMT-5'),
>>>> ('Etc/GMT-6', 'Etc/GMT-6'),
>>>> ('Etc/GMT-7', 'Etc/GMT-7'),
>>>> ('Etc/GMT-8', 'Etc/GMT-8'),
>>>> ('Etc/GMT-9', 'Etc/GMT-9'),
>>>> ('Etc/GMT0', 'Etc/GMT0'),
>>>> ('Etc/Greenwich', 'Etc/Greenwich'),
>>>> ('Etc/UCT', 'Etc/UCT'),
>>>> ('Etc/UTC', 'Etc/UTC'),
>>>> ('Etc/Universal', 'Etc/Universal'),
>>>> ('Etc/Zulu', 'Etc/Zulu'),
>>>> ('Europe/Amsterdam', 'Europe/Amsterdam'),
>>>> ('Europe/Andorra', 'Europe/Andorra'),
>>>> ('Europe/Athens', 'Europe/Athens'),
>>>> ('Europe/Belfast', 'Europe/Belfast'),
>>>> ('Europe/Belgrade', 'Europe/Belgrade'),
>>>> ('Europe/Berlin', 'Europe/Berlin'),
>>>> ('Europe/Bratislava', 'Europe/Bratislava'),
>>>> ('Europe/Brussels', 'Europe/Brussels'),
>>>> ('Europe/Bucharest', 'Europe/Bucharest'),
>>>> ('Europe/Budapest', 'Europe/Budapest'),
>>>> ('Europe/Chisinau', 'Europe/Chisinau'),
>>>> ('Europe/Copenhagen', 'Europe/Copenhagen'),
>>>> ('Europe/Dublin', 'Europe/Dublin'),
>>>> ('Europe/Gibraltar', 'Europe/Gibraltar'),
>>>> ('Europe/Guernsey', 'Europe/Guernsey'),
>>>> ('Europe/Helsinki', 'Europe/Helsinki'),
>>>> ('Europe/Isle_of_Man', 'Europe/Isle_of_Man'),
>>>> ('Europe/Istanbul', 'Europe/Istanbul'),
>>>> ('Europe/Jersey', 'Europe/Jersey'),
>>>> ('Europe/Kaliningrad', 'Europe/Kaliningrad'),
>>>> ('Europe/Kiev', 'Europe/Kiev'),
>>>> ('Europe/Lisbon', 'Europe/Lisbon'),
>>>> ('Europe/Ljubljana', 'Europe/Ljubljana'),
>>>> ('Europe/London', 'Europe/London'),
>>>> ('Europe/Luxembourg', 'Europe/Luxembourg'),
>>>> ('Europe/Madrid', 'Europe/Madrid'),
>>>> ('Europe/Malta', 'Europe/Malta'),
>>>> ('Europe/Mariehamn', 'Europe/Mariehamn'),
>>>> ('Europe/Minsk', 'Europe/Minsk'),
>>>> ('Europe/Monaco', 'Europe/Monaco'),
>>>> ('Europe/Moscow', 'Europe/Moscow'),
>>>> ('Europe/Nicosia', 'Europe/Nicosia'),
>>>> ('Europe/Oslo', 'Europe/Oslo'),
>>>> ('Europe/Paris', 'Europe/Paris'),
>>>> ('Europe/Podgorica', 'Europe/Podgorica'),
>>>> ('Europe/Prague', 'Europe/Prague'),
>>>> ('Europe/Riga', 'Europe/Riga'),
>>>> ('Europe/Rome', 'Europe/Rome'),
>>>> ('Europe/Samara', 'Europe/Samara'),
>>>> ('Europe/San_Marino', 'Europe/San_Marino'),
>>>> ('Europe/Sarajevo', 'Europe/Sarajevo'),
>>>> ('Europe/Simferopol', 'Europe/Simferopol'),
>>>> ('Europe/Skopje', 'Europe/Skopje'),
>>>> ('Europe/Sofia', 'Europe/Sofia'),
>>>> ('Europe/Stockholm', 'Europe/Stockholm'),
>>>> ('Europe/Tallinn', 'Europe/Tallinn'),
>>>> ('Europe/Tirane', 'Europe/Tirane'),
>>>> ('Europe/Tiraspol', 'Europe/Tiraspol'),
>>>> ('Europe/Uzhgorod', 'Europe/Uzhgorod'),
>>>> ('Europe/Vaduz', 'Europe/Vaduz'),
>>>> ('Europe/Vatican', 'Europe/Vatican'),
>>>> ('Europe/Vienna', 'Europe/Vienna'),
>>>> ('Europe/Vilnius', 'Europe/Vilnius'),
>>>> ('Europe/Volgograd', 'Europe/Volgograd'),
>>>> ('Europe/Warsaw', 'Europe/Warsaw'),
>>>> ('Europe/Zagreb', 'Europe/Zagreb'),
>>>> ('Europe/Zaporozhye', 'Europe/Zaporozhye'),
>>>> ('Europe/Zurich', 'Europe/Zurich'),
>>>> ('GB', 'GB'),
>>>> ('GB-Eire', 'GB-Eire'),
>>>> ('GMT', 'GMT'),
>>>> ('GMT+0', 'GMT+0'),
>>>> ('GMT-0', 'GMT-0'),
>>>> ('GMT0', 'GMT0'),
>>>> ('Greenwich', 'Greenwich'),
>>>> ('HST', 'HST'),
>>>> ('Hongkong', 'Hongkong'),
>>>> ('Iceland', 'Iceland'),
>>>> ('Indian/Antananarivo', 'Indian/Antananarivo'),
>>>> ('Indian/Chagos', 'Indian/Chagos'),
>>>> ('Indian/Christmas', 'Indian/Christmas'),
>>>> ('Indian/Cocos', 'Indian/Cocos'),
>>>> ('Indian/Comoro', 'Indian/Comoro'),
>>>> ('Indian/Kerguelen', 'Indian/Kerguelen'),
>>>> ('Indian/Mahe', 'Indian/Mahe'),
>>>> ('Indian/Maldives', 'Indian/Maldives'),
>>>> ('Indian/Mauritius', 'Indian/Mauritius'),
>>>> ('Indian/Mayotte', 'Indian/Mayotte'),
>>>> ('Indian/Reunion', 'Indian/Reunion'),
>>>> ('Iran', 'Iran'),
>>>> ('Israel', 'Israel'),
>>>> ('Jamaica', 'Jamaica'),
>>>> ('Japan', 'Japan'),
>>>> ('Kwajalein', 'Kwajalein'),
>>>> ('Libya', 'Libya'),
>>>> ('MET', 'MET'),
>>>> ('MST', 'MST'),
>>>> ('MST7MDT', 'MST7MDT'),
>>>> ('Mexico/BajaNorte', 'Mexico/BajaNorte'),
>>>> ('Mexico/BajaSur', 'Mexico/BajaSur'),
>>>> ('Mexico/General', 'Mexico/General'),
>>>> ('NZ', 'NZ'),
>>>> ('NZ-CHAT', 'NZ-CHAT'),
>>>> ('Navajo', 'Navajo'),
>>>> ('PRC', 'PRC'),
>>>> ('PST8PDT', 'PST8PDT'),
>>>> ('Pacific/Apia', 'Pacific/Apia'),
>>>> ('Pacific/Auckland', 'Pacific/Auckland'),
>>>> ('Pacific/Chatham', 'Pacific/Chatham'),
>>>> ('Pacific/Chuuk', 'Pacific/Chuuk'),
>>>> ('Pacific/Easter', 'Pacific/Easter'),
>>>> ('Pacific/Efate', 'Pacific/Efate'),
>>>> ('Pacific/Enderbury', 'Pacific/Enderbury'),
>>>> ('Pacific/Fakaofo', 'Pacific/Fakaofo'),
>>>> ('Pacific/Fiji', 'Pacific/Fiji'),
>>>> ('Pacific/Funafuti', 'Pacific/Funafuti'),
>>>> ('Pacific/Galapagos', 'Pacific/Galapagos'),
>>>> ('Pacific/Gambier', 'Pacific/Gambier'),
>>>> ('Pacific/Guadalcanal', 'Pacific/Guadalcanal'),
>>>> ('Pacific/Guam', 'Pacific/Guam'),
>>>> ('Pacific/Honolulu', 'Pacific/Honolulu'),
>>>> ('Pacific/Johnston', 'Pacific/Johnston'),
>>>> ('Pacific/Kiritimati', 'Pacific/Kiritimati'),
>>>> ('Pacific/Kosrae', 'Pacific/Kosrae'),
>>>> ('Pacific/Kwajalein', 'Pacific/Kwajalein'),
>>>> ('Pacific/Majuro', 'Pacific/Majuro'),
>>>> ('Pacific/Marquesas', 'Pacific/Marquesas'),
>>>> ('Pacific/Midway', 'Pacific/Midway'),
>>>> ('Pacific/Nauru', 'Pacific/Nauru'),
>>>> ('Pacific/Niue', 'Pacific/Niue'),
>>>> ('Pacific/Norfolk', 'Pacific/Norfolk'),
>>>> ('Pacific/Noumea', 'Pacific/Noumea'),
>>>> ('Pacific/Pago_Pago', 'Pacific/Pago_Pago'),
>>>> ('Pacific/Palau', 'Pacific/Palau'),
>>>> ('Pacific/Pitcairn', 'Pacific/Pitcairn'),
>>>> ('Pacific/Pohnpei', 'Pacific/Pohnpei'),
>>>> ('Pacific/Ponape', 'Pacific/Ponape'),
>>>> ('Pacific/Port_Moresby', 'Pacific/Port_Moresby'),
>>>> ('Pacific/Rarotonga', 'Pacific/Rarotonga'),
>>>> ('Pacific/Saipan', 'Pacific/Saipan'),
>>>> ('Pacific/Samoa', 'Pacific/Samoa'),
>>>> ('Pacific/Tahiti', 'Pacific/Tahiti'),
>>>> ('Pacific/Tarawa', 'Pacific/Tarawa'),
>>>> ('Pacific/Tongatapu', 'Pacific/Tongatapu'),
>>>> ('Pacific/Truk', 'Pacific/Truk'),
>>>> ('Pacific/Wake', 'Pacific/Wake'),
>>>> ('Pacific/Wallis', 'Pacific/Wallis'),
>>>> ('Pacific/Yap', 'Pacific/Yap'),
>>>> ('Poland', 'Poland'),
>>>> ('Portugal', 'Portugal'),
>>>> ('ROC', 'ROC'),
>>>> ('ROK', 'ROK'),
>>>> ('Singapore', 'Singapore'),
>>>> ('Turkey', 'Turkey'),
>>>> ('UCT', 'UCT'),
>>>> ('US/Alaska', 'US/Alaska'),
>>>> ('US/Aleutian', 'US/Aleutian'),
>>>> ('US/Arizona', 'US/Arizona'),
>>>> ('US/Central', 'US/Central'),
>>>> ('US/East-Indiana', 'US/East-Indiana'),
>>>> ('US/Eastern', 'US/Eastern'),
>>>> ('US/Hawaii', 'US/Hawaii'),
>>>> ('US/Indiana-Starke', 'US/Indiana-Starke'),
>>>> ('US/Michigan', 'US/Michigan'),
>>>> ('US/Mountain', 'US/Mountain'),
>>>> ('US/Pacific', 'US/Pacific'),
>>>> ('US/Pacific-New', 'US/Pacific-New'),
>>>> ('US/Samoa', 'US/Samoa'),
>>>> ('UTC', 'UTC'),
>>>> ('Universal', 'Universal'),
>>>> ('W-SU', 'W-SU'),
>>>> ('WET', 'WET'),
>>>> ('Zulu', 'Zulu')]
>>>>
>>>> FILE_UPLOAD_HANDLERS
>>>>
>>>> ('django.core.files.uploadhandler.MemoryFileUploadHandler',
>>>> 'django.core.files.uploadhandler.TemporaryFileUploadHandler')
>>>>
>>>> DEFAULT_CONTENT_TYPE
>>>>
>>>> 'text/html'
>>>>
>>>> DEBUG_STATIC
>>>>
>>>> False
>>>>
>>>> ACCOUNT_APPROVAL_REQUIRED
>>>>
>>>> False
>>>>
>>>> APPEND_SLASH
>>>>
>>>> True
>>>>
>>>> FIRST_DAY_OF_WEEK
>>>>
>>>> 0
>>>>
>>>> DATABASE_ROUTERS
>>>>
>>>> []
>>>>
>>>> DEFAULT_TABLESPACE
>>>>
>>>> ''
>>>>
>>>> YEAR_MONTH_FORMAT
>>>>
>>>> 'F Y'
>>>>
>>>> STATICFILES_STORAGE
>>>>
>>>> 'django.contrib.staticfiles.storage.StaticFilesStorage'
>>>>
>>>> CACHES
>>>>
>>>> {'default': {'BACKEND': 'django.core.cache.backends.dummy.DummyCache'}}
>>>>
>>>> DEFAULT_ANONYMOUS_DOWNLOAD_PERMISSION
>>>>
>>>> True
>>>>
>>>> CKAN_ORIGINS
>>>>
>>>> [{'css_class': 'hdx',
>>>> 'label': 'Humanitarian Data Exchange (HDX)',
>>>> 'url': 'https://data.hdx.rwlabs.org/dataset/new?title={name}&dataset_date={date}¬es={abstract}&caveats={caveats}'}]
>>>>
>>>> ACCOUNT_EMAIL_CONFIRMATION_EMAIL
>>>>
>>>> False
>>>>
>>>> SERVER_EMAIL
>>>>
>>>> 'root at localhost'
>>>>
>>>> SESSION_COOKIE_PATH
>>>>
>>>> '/'
>>>>
>>>> USE_X_FORWARDED_HOST
>>>>
>>>> False
>>>>
>>>> ACCOUNT_OPEN_SIGNUP
>>>>
>>>> True
>>>>
>>>> ROOT_URLCONF
>>>>
>>>> 'geonode.urls'
>>>>
>>>> CATALOGUE
>>>>
>>>> {'default': {'ENGINE': 'geonode.catalogue.backends.pycsw_local',
>>>> 'URL': 'http://muchita.cnpm.embrapa.br/catalogue/csw'}}
>>>>
>>>> MISSING_THUMBNAIL
>>>>
>>>> 'geonode/img/missing_thumb.png'
>>>>
>>>> FILE_UPLOAD_TEMP_DIR
>>>>
>>>> None
>>>>
>>>> MIDDLEWARE_CLASSES
>>>>
>>>> ('django.middleware.common.CommonMiddleware',
>>>> 'django.contrib.sessions.middleware.SessionMiddleware',
>>>> 'django.contrib.messages.middleware.MessageMiddleware',
>>>> 'django.middleware.locale.LocaleMiddleware',
>>>> 'pagination.middleware.PaginationMiddleware',
>>>> 'django.middleware.csrf.CsrfViewMiddleware',
>>>> 'django.contrib.auth.middleware.AuthenticationMiddleware',
>>>> 'django.middleware.clickjacking.XFrameOptionsMiddleware')
>>>>
>>>> USE_I18N
>>>>
>>>> True
>>>>
>>>> THOUSAND_SEPARATOR
>>>>
>>>> ','
>>>>
>>>> SECRET_KEY
>>>>
>>>> u'********************'
>>>>
>>>> MODELTRANSLATION_FALLBACK_LANGUAGES
>>>>
>>>> ('en',)
>>>>
>>>> LANGUAGE_COOKIE_NAME
>>>>
>>>> 'django_language'
>>>>
>>>> ACCOUNT_REMEMBER_ME_EXPIRY
>>>>
>>>> 315360000
>>>>
>>>> ACCOUNT_PASSWORD_CHANGE_REDIRECT_URL
>>>>
>>>> u'********************'
>>>>
>>>> ACCOUNT_EMAIL_UNIQUE
>>>>
>>>> True
>>>>
>>>> TRANSACTIONS_MANAGED
>>>>
>>>> False
>>>>
>>>> LOGGING_CONFIG
>>>>
>>>> 'django.utils.log.dictConfig'
>>>>
>>>> TEMPLATE_LOADERS
>>>>
>>>> ('django.template.loaders.filesystem.Loader',
>>>> 'django.template.loaders.app_directories.Loader')
>>>>
>>>> FORCE_SCRIPT_NAME
>>>>
>>>> None
>>>>
>>>> TASTYPIE_DEFAULT_FORMATS
>>>>
>>>> ['json']
>>>>
>>>> TEMPLATE_DEBUG
>>>>
>>>> True
>>>>
>>>> AUTO_GENERATE_AVATAR_SIZES
>>>>
>>>> (20, 32, 80, 100, 140, 200)
>>>>
>>>> CSRF_COOKIE_NAME
>>>>
>>>> 'csrftoken'
>>>>
>>>> CELERY_DEFAULT_EXCHANGE
>>>>
>>>> 'default'
>>>>
>>>> CELERY_DEFAULT_ROUTING_KEY
>>>>
>>>> u'********************'
>>>>
>>>> ACCOUNT_LOGIN_REDIRECT_URL
>>>>
>>>> u'/'
>>>>
>>>> CELERY_ALWAYS_EAGER
>>>>
>>>> True
>>>>
>>>> MODIFY_TOPICCATEGORY
>>>>
>>>> False
>>>>
>>>> SIGNING_BACKEND
>>>>
>>>> 'django.core.signing.TimestampSigner'
>>>>
>>>> SESSION_COOKIE_SECURE
>>>>
>>>> False
>>>>
>>>> ACCOUNT_LOGIN_URL
>>>>
>>>> u'account_login'
>>>>
>>>> CACHE_TIME
>>>>
>>>> 0
>>>>
>>>> PYCSW
>>>>
>>>> {'CONFIGURATION': {'metadata:inspire': {'conformity_service': 'notEvaluated',
>>>> 'contact_email': 'Email Address',
>>>> 'contact_name': 'Organization Name',
>>>> 'date': 'YYYY-MM-DD',
>>>> 'default_language': 'eng',
>>>> 'enabled': 'true',
>>>> 'gemet_keywords': 'Utility and governmental services',
>>>> 'languages_supported': 'eng,gre',
>>>> 'temp_extent': 'YYYY-MM-DD/YYYY-MM-DD'},
>>>> 'metadata:main': {'contact_address': 'Mailing Address',
>>>> 'contact_city': 'City',
>>>> 'contact_country': 'Country',
>>>> 'contact_email': 'Email Address',
>>>> 'contact_fax': '+xx-xxx-xxx-xxxx',
>>>> 'contact_hours': 'Hours of Service',
>>>> 'contact_instructions': 'During hours of service. Off on weekends.',
>>>> 'contact_name': 'Lastname, Firstname',
>>>> 'contact_phone': '+xx-xxx-xxx-xxxx',
>>>> 'contact_position': 'Position Title',
>>>> 'contact_postalcode': 'Zip or Postal Code',
>>>> 'contact_role': 'pointOfContact',
>>>> 'contact_stateorprovince': 'Administrative Area',
>>>> 'contact_url': 'Contact URL',
>>>> 'identification_abstract': 'GeoNode is an open source platform that facilitates the creation, sharing, and collaborative use of geospatial data',
>>>> 'identification_accessconstraints': 'None',
>>>> 'identification_fees': 'None',
>>>> 'identification_keywords': 'sdi,catalogue,discovery,metadata,GeoNode',
>>>> 'identification_keywords_type': 'theme',
>>>> 'identification_title': 'GeoNode Catalogue',
>>>> 'provider_name': 'Organization Name',
>>>> 'provider_url': 'http://localhost:8000/'}}}
>>>>
>>>> CSRF_COOKIE_DOMAIN
>>>>
>>>> None
>>>>
>>>> FILE_CHARSET
>>>>
>>>> 'utf-8'
>>>>
>>>> DEBUG
>>>>
>>>> True
>>>>
>>>> SESSION_FILE_PATH
>>>>
>>>> None
>>>>
>>>> DEFAULT_FILE_STORAGE
>>>>
>>>> 'django.core.files.storage.FileSystemStorage'
>>>>
>>>> INSTALLED_APPS
>>>>
>>>> ('django.contrib.auth',
>>>> 'django.contrib.contenttypes',
>>>> 'django.contrib.sessions',
>>>> 'django.contrib.sites',
>>>> 'django.contrib.admin',
>>>> 'django.contrib.sitemaps',
>>>> 'django.contrib.staticfiles',
>>>> 'django.contrib.messages',
>>>> 'django.contrib.humanize',
>>>> 'django.contrib.gis',
>>>> 'pagination',
>>>> 'taggit',
>>>> 'friendlytagloader',
>>>> 'geoexplorer',
>>>> 'leaflet',
>>>> 'django_extensions',
>>>> 'autocomplete_light',
>>>> 'mptt',
>>>> 'modeltranslation',
>>>> 'djcelery',
>>>> 'pinax_theme_bootstrap_account',
>>>> 'pinax_theme_bootstrap',
>>>> 'django_forms_bootstrap',
>>>> 'account',
>>>> 'avatar',
>>>> 'dialogos',
>>>> 'agon_ratings',
>>>> 'announcements',
>>>> 'actstream',
>>>> 'user_messages',
>>>> 'tastypie',
>>>> 'polymorphic',
>>>> 'guardian',
>>>> 'geonode.people',
>>>> 'geonode.base',
>>>> 'geonode.layers',
>>>> 'geonode.maps',
>>>> 'geonode.proxy',
>>>> 'geonode.security',
>>>> 'geonode.social',
>>>> 'geonode.catalogue',
>>>> 'geonode.documents',
>>>> 'geonode.api',
>>>> 'geonode.groups',
>>>> 'geonode.services',
>>>> 'geonode.geoserver',
>>>> 'geonode.upload',
>>>> 'geonode.tasks')
>>>>
>>>> LANGUAGES_BIDI
>>>>
>>>> ('he', 'ar', 'fa', 'ur')
>>>>
>>>> USE_L10N
>>>>
>>>> False
>>>>
>>>> DATABASE_ENGINE
>>>>
>>>> 'postgresql_psycopg2'
>>>>
>>>> STATIC_ROOT
>>>>
>>>> '/var/www/geonode/static/'
>>>>
>>>> STATICFILES_DIRS
>>>>
>>>> ['/etc/geonode/media', '/usr/local/lib/python2.7/dist-packages/geonode/static']
>>>>
>>>> DATABASE_NAME
>>>>
>>>> 'geonode'
>>>>
>>>> LEAFLET_CONFIG
>>>>
>>>> {'PLUGINS': {u'ALL': {u'css': [u'/static/leaflet/draw/leaflet.draw.css',
>>>> '/static/lib/css/leaflet.fullscreen.css'],
>>>> u'js': [u'/static/leaflet/draw/leaflet.draw.js',
>>>> u'/static/leaflet/leaflet.extras.js',
>>>> u'/static/leaflet/leaflet.forms.js',
>>>> '/static/lib/js/Leaflet.fullscreen.min.js',
>>>> '/static/lib/js/esri-leaflet.js']},
>>>> u'__default__': {u'css': ['/static/lib/css/leaflet.fullscreen.css'],
>>>> u'js': ['/static/lib/js/Leaflet.fullscreen.min.js',
>>>> '/static/lib/js/esri-leaflet.js']},
>>>> u'__is_normalized__': True,
>>>> 'esri-leaflet': {'auto-include': True,
>>>> u'css': [],
>>>> 'js': ['/static/lib/js/esri-leaflet.js']},
>>>> u'forms': {u'auto-include': False,
>>>> u'css': [u'/static/leaflet/draw/leaflet.draw.css'],
>>>> u'js': [u'/static/leaflet/draw/leaflet.draw.js',
>>>> u'/static/leaflet/leaflet.extras.js',
>>>> u'/static/leaflet/leaflet.forms.js']},
>>>> 'leaflet-fullscreen': {'auto-include': True,
>>>> 'css': ['/static/lib/css/leaflet.fullscreen.css'],
>>>> 'js': ['/static/lib/js/Leaflet.fullscreen.min.js']}},
>>>> 'TILES': [('Watercolor',
>>>> 'http://{s}.tile.stamen.com/watercolor/{z}/{x}/{y}.png <http://tile.stamen.com/watercolor/%7Bz%7D/%7Bx%7D/%7By%7D.png>',
>>>> 'Map tiles by <a href="http://stamen.com">Stamen Design</a>, <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a> — Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>'),
>>>> ('Toner Lite',
>>>> 'http://{s}.tile.stamen.com/toner-lite/{z}/{x}/{y}.png <http://tile.stamen.com/toner-lite/%7Bz%7D/%7Bx%7D/%7By%7D.png>',
>>>> 'Map tiles by <a href="http://stamen.com">Stamen Design</a>, <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a> — Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>')]}
>>>>
>>>> DOWNLOAD_FORMATS_VECTOR
>>>>
>>>> ['JPEG',
>>>> 'PDF',
>>>> 'PNG',
>>>> 'Zipped Shapefile',
>>>> 'GML 2.0',
>>>> 'GML 3.1.1',
>>>> 'CSV',
>>>> 'Excel',
>>>> 'GeoJSON',
>>>> 'KML',
>>>> 'View in Google Earth',
>>>> 'Tiles']
>>>>
>>>> PREPEND_WWW
>>>>
>>>> False
>>>>
>>>> SECURE_PROXY_SSL_HEADER
>>>>
>>>> None
>>>>
>>>> SOCIAL_ORIGINS
>>>>
>>>> [{'css_class': 'email',
>>>> 'label': 'Email',
>>>> 'url': 'mailto:?subject={name}&body={url}'},
>>>> {'css_class': 'fb',
>>>> 'label': 'Facebook',
>>>> 'url': 'http://www.facebook.com/sharer.php?u={url}'},
>>>> {'css_class': 'tw',
>>>> 'label': 'Twitter',
>>>> 'url': 'https://twitter.com/share?url={url}'},
>>>> {'css_class': 'gp',
>>>> 'label': 'Google +',
>>>> 'url': 'https://plus.google.com/share?url={url}'}]
>>>>
>>>> ACCOUNT_PASSWORD_RESET_REDIRECT_URL
>>>>
>>>> u'********************'
>>>>
>>>> SESSION_COOKIE_HTTPONLY
>>>>
>>>> True
>>>>
>>>> DATABASE_PORT
>>>>
>>>> '5432'
>>>>
>>>> DEBUG_PROPAGATE_EXCEPTIONS
>>>>
>>>> False
>>>>
>>>> DEFAULT_ANONYMOUS_VIEW_PERMISSION
>>>>
>>>> True
>>>>
>>>> MEDIA_URL
>>>>
>>>> '/uploaded/'
>>>>
>>>> MONTH_DAY_FORMAT
>>>>
>>>> 'F j'
>>>>
>>>> ACCOUNT_EMAIL_CONFIRMATION_ANONYMOUS_REDIRECT_URL
>>>>
>>>> u'account_login'
>>>>
>>>> LOGIN_URL
>>>>
>>>> '/account/login/'
>>>>
>>>> SESSION_EXPIRE_AT_BROWSER_CLOSE
>>>>
>>>> False
>>>>
>>>> OGP_URL
>>>>
>>>> 'http://geodata.tufts.edu/solr/select'
>>>>
>>>> CELERY_EAGER_PROPAGATES_EXCEPTIONS
>>>>
>>>> True
>>>>
>>>> TIME_FORMAT
>>>>
>>>> 'P'
>>>>
>>>> CELERY_IGNORE_RESULT
>>>>
>>>> True
>>>>
>>>> SERVICE_UPDATE_INTERVAL
>>>>
>>>> 0
>>>>
>>>> AUTH_USER_MODEL
>>>>
>>>> 'people.Profile'
>>>>
>>>> DATE_INPUT_FORMATS
>>>>
>>>> ('%Y-%m-%d',
>>>> '%m/%d/%Y',
>>>> '%m/%d/%y',
>>>> '%b %d %Y',
>>>> '%b %d, %Y',
>>>> '%d %b %Y',
>>>> '%d %b, %Y',
>>>> '%B %d %Y',
>>>> '%B %d, %Y',
>>>> '%d %B %Y',
>>>> '%d %B, %Y')
>>>>
>>>> ACCOUNT_LOGOUT_REDIRECT_URL
>>>>
>>>> u'/'
>>>>
>>>> HAYSTACK_SEARCH
>>>>
>>>> False
>>>>
>>>> AUTHENTICATION_BACKENDS
>>>>
>>>> ('django.contrib.auth.backends.ModelBackend',
>>>> 'guardian.backends.ObjectPermissionBackend')
>>>>
>>>> EMAIL_HOST_PASSWORD
>>>>
>>>> u'********************'
>>>>
>>>> CELERY_DISABLE_RATE_LIMITS
>>>>
>>>> True
>>>>
>>>> PASSWORD_RESET_TIMEOUT_DAYS
>>>>
>>>> u'********************'
>>>>
>>>> CACHE_MIDDLEWARE_ALIAS
>>>>
>>>> 'default'
>>>>
>>>> SESSION_SAVE_EVERY_REQUEST
>>>>
>>>> False
>>>>
>>>> NUMBER_GROUPING
>>>>
>>>> 0
>>>>
>>>> SHORT_DATETIME_FORMAT
>>>>
>>>> 'm/d/Y P'
>>>>
>>>> SESSION_ENGINE
>>>>
>>>> 'django.contrib.sessions.backends.db'
>>>>
>>>> CELERY_RESULT_BACKEND
>>>>
>>>> None
>>>>
>>>> ACCOUNT_DELETION_MARK_CALLBACK
>>>>
>>>> ''
>>>>
>>>> CSRF_COOKIE_PATH
>>>>
>>>> '/'
>>>>
>>>> LOGIN_REDIRECT_URL
>>>>
>>>> '/accounts/profile/'
>>>>
>>>> SITEURL
>>>>
>>>> 'http://muchita.cnpm.embrapa.br/'
>>>>
>>>> PROJECT_ROOT
>>>>
>>>> '/usr/local/lib/python2.7/dist-packages/geonode'
>>>>
>>>> ACCOUNT_DELETION_EXPUNGE_HOURS
>>>>
>>>> 48
>>>>
>>>> GEONODE_ROOT
>>>>
>>>> '/usr/local/lib/python2.7/dist-packages/geonode'
>>>>
>>>> DECIMAL_SEPARATOR
>>>>
>>>> '.'
>>>>
>>>> CSRF_FAILURE_VIEW
>>>>
>>>> 'django.views.csrf.csrf_failure'
>>>>
>>>> CELERY_SEND_EVENTS
>>>>
>>>> False
>>>>
>>>> NOSE_ARGS
>>>>
>>>> ['--nocapture', '--detailed-errors']
>>>>
>>>> LOCALE_PATHS
>>>>
>>>> ('/usr/local/lib/python2.7/dist-packages/geonode/locale',)
>>>>
>>>> THEME_ACCOUNT_CONTACT_EMAIL
>>>>
>>>> 'admin at example.com'
>>>>
>>>> PASSWORD_HASHERS
>>>>
>>>> u'********************'
>>>>
>>>> PROXY_ALLOWED_HOSTS
>>>>
>>>> ()
>>>>
>>>> MESSAGE_STORAGE
>>>>
>>>> 'django.contrib.messages.storage.fallback.FallbackStorage'
>>>>
>>>> USE_QUEUE
>>>>
>>>> False
>>>>
>>>> COMMENTS_ALLOW_PROFANITIES
>>>>
>>>> False
>>>>
>>>> LOGOUT_URL
>>>>
>>>> '/account/logout/'
>>>>
>>>> MAP_BASELAYERS
>>>>
>>>> [{'source': {'ptype': 'gxp_wmscsource',
>>>> 'restUrl': '/gs/rest',
>>>> 'url': 'http://muchita.cnpm.embrapa.br/geoserver/wms'}},
>>>> {'source': {'ptype': 'gxp_wmscsource',
>>>> 'restUrl': '/gs/rest',
>>>> 'url': 'http://muchita.cnpm.embrapa.br/geoserver/wms'}},
>>>> {'args': ['No background'],
>>>> 'fixed': True,
>>>> 'group': 'background',
>>>> 'source': {'ptype': 'gxp_olsource'},
>>>> 'type': 'OpenLayers.Layer',
>>>> 'visibility': False},
>>>> {'args': ['OpenStreetMap'],
>>>> 'fixed': True,
>>>> 'group': 'background',
>>>> 'source': {'ptype': 'gxp_olsource'},
>>>> 'type': 'OpenLayers.Layer.OSM',
>>>> 'visibility': False},
>>>> {'group': 'background',
>>>> 'name': 'osm',
>>>> 'source': {'ptype': 'gxp_mapquestsource'},
>>>> 'visibility': True},
>>>> {'group': 'background',
>>>> 'name': 'naip',
>>>> 'source': {'ptype': 'gxp_mapquestsource'},
>>>> 'visibility': False},
>>>> {'fixed': True,
>>>> 'group': 'background',
>>>> 'name': 'AerialWithLabels',
>>>> 'source': {'ptype': 'gxp_bingsource'},
>>>> 'visibility': False},
>>>> {'source': {'ptype': 'gxp_mapboxsource'}}]
>>>>
>>>> EMAIL_USE_TLS
>>>>
>>>> False
>>>>
>>>> ACCOUNT_LANGUAGES
>>>>
>>>> [('en', u'English'),
>>>> ('es', u'espa\xf1ol'),
>>>> ('it', u'italiano'),
>>>> ('fr', u'fran\xe7ais'),
>>>> ('de', u'Deutsch'),
>>>> ('el', u'\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac'),
>>>> ('id', u'Bahasa Indonesia'),
>>>> ('zh-cn', u'\u7b80\u4f53\u4e2d\u6587'),
>>>> ('ja', u'\u65e5\u672c\u8a9e'),
>>>> ('fa', u'\u0641\u0627\u0631\u0633\u06cc'),
>>>> ('ar', u'\u0627\u0644\u0639\u0631\u0628\u064a\u0651\u0629'),
>>>> ('bn', u'\u09ac\u09be\u0982\u09b2\u09be'),
>>>> ('ne', u'\u0928\u0947\u092a\u093e\u0932\u0940'),
>>>> ('sq', u'shqip'),
>>>> ('af', u'Afrikaans'),
>>>> ('sw', u'Kiswahili'),
>>>> ('pt', u'Portugu\xeas'),
>>>> ('pt-br', u'Portugu\xeas Brasileiro'),
>>>> ('ru', u'\u0420\u0443\u0441\u0441\u043a\u0438\u0439'),
>>>> ('vi', u'Ti\xea\u0301ng Vi\xea\u0323t'),
>>>> ('ko', u'\ud55c\uad6d\uc5b4'),
>>>> ('am', 'Amharic'),
>>>> ('km', u'Khmer'),
>>>> ('pl', u'polski'),
>>>> ('sv', u'svenska'),
>>>> ('th', u'\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22'),
>>>> ('uk', u'\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430'),
>>>> ('si', 'sinhala'),
>>>> ('ta', u'tamil'),
>>>> ('tl', 'tagalog')]
>>>>
>>>> FIXTURE_DIRS
>>>>
>>>> ()
>>>>
>>>> ABSOLUTE_URL_OVERRIDES
>>>>
>>>> {}
>>>>
>>>> DATE_FORMAT
>>>>
>>>> 'N j, Y'
>>>>
>>>> OGC_SERVER
>>>>
>>>> {'default': {'BACKEND': 'geonode.geoserver',
>>>> 'BACKEND_WRITE_ENABLED': True,
>>>> 'DATASTORE': 'datastore',
>>>> 'GEOGIG_DATASTORE_DIR': '',
>>>> 'GEOGIG_ENABLED': False,
>>>> 'GEONODE_SECURITY_ENABLED': True,
>>>> 'LOCATION': 'http://localhost:8080/geoserver/',
>>>> 'LOG_FILE': '/usr/share/geoserver/data/logs/geoserver.log',
>>>> 'MAPFISH_PRINT_ENABLED': True,
>>>> 'PASSWORD': u'********************',
>>>> 'PRINT_NG_ENABLED': True,
>>>> 'PUBLIC_LOCATION': 'http://muchita.cnpm.embrapa.br/geoserver/',
>>>> 'USER': 'admin',
>>>> 'WMST_ENABLED': False,
>>>> 'WPS_ENABLED': True}}
>>>>
>>>> SKIP_PERMS_FILTER
>>>>
>>>> False
>>>>
>>>> ACCOUNT_NOTIFY_ON_PASSWORD_CHANGE
>>>>
>>>> u'********************'
>>>>
>>>> MEDIA_ROOT
>>>>
>>>> '/var/www/geonode/uploaded'
>>>>
>>>> AGON_RATINGS_CATEGORY_CHOICES
>>>>
>>>> {'documents.Document': {'document': 'How good is this document?'},
>>>> 'layers.Layer': {'layer': 'How good is this layer?'},
>>>> 'maps.Map': {'map': 'How good is this map?'}}
>>>>
>>>> DATABASE_HOST
>>>>
>>>> 'jatoba.cnpm.embrapa.br'
>>>>
>>>> DEFAULT_EXCEPTION_REPORTER_FILTER
>>>>
>>>> 'django.views.debug.SafeExceptionReporterFilter'
>>>>
>>>> ADMINS
>>>>
>>>> ()
>>>>
>>>> FORMAT_MODULE_PATH
>>>>
>>>> None
>>>>
>>>> DEFAULT_FROM_EMAIL
>>>>
>>>> 'webmaster at localhost'
>>>>
>>>> GEONODE_APPS
>>>>
>>>> ('geonode.people',
>>>> 'geonode.base',
>>>> 'geonode.layers',
>>>> 'geonode.maps',
>>>> 'geonode.proxy',
>>>> 'geonode.security',
>>>> 'geonode.social',
>>>> 'geonode.catalogue',
>>>> 'geonode.documents',
>>>> 'geonode.api',
>>>> 'geonode.groups',
>>>> 'geonode.services',
>>>> 'geonode.geoserver',
>>>> 'geonode.upload',
>>>> 'geonode.tasks')
>>>>
>>>> GEOSERVER_URL
>>>>
>>>> 'http://muchita.cnpm.embrapa.br/geoserver/'
>>>>
>>>> DATETIME_FORMAT
>>>>
>>>> 'N j, Y, P'
>>>>
>>>> TEMPLATE_DIRS
>>>>
>>>> ('/etc/geonode/templates',
>>>> '/usr/local/lib/python2.7/dist-packages/geonode/templates')
>>>>
>>>> ALLOWED_DOCUMENT_TYPES
>>>>
>>>> ['doc',
>>>> 'docx',
>>>> 'gif',
>>>> 'jpg',
>>>> 'jpeg',
>>>> 'ods',
>>>> 'odt',
>>>> 'odp',
>>>> 'pdf',
>>>> 'png',
>>>> 'ppt',
>>>> 'pptx',
>>>> 'rar',
>>>> 'tif',
>>>> 'tiff',
>>>> 'txt',
>>>> 'xls',
>>>> 'xlsx',
>>>> 'xml',
>>>> 'zip',
>>>> 'gz']
>>>>
>>>> NOTIFICATION_LANGUAGE_MODULE
>>>>
>>>> 'account.Account'
>>>>
>>>> ACCOUNT_DELETION_EXPUNGE_CALLBACK
>>>>
>>>> ''
>>>>
>>>> RESOURCE_PUBLISHING
>>>>
>>>> False
>>>>
>>>> ACCOUNT_HOOKSET
>>>>
>>>> <account.hooks.AccountDefaultHookSet object at 0x7fe06f67d210>
>>>>
>>>> PROXY_URL
>>>>
>>>> '/proxy/?url='
>>>>
>>>> SITE_ID
>>>>
>>>> 1
>>>>
>>>> DISALLOWED_USER_AGENTS
>>>>
>>>> ()
>>>>
>>>> ALLOWED_INCLUDE_ROOTS
>>>>
>>>> ()
>>>>
>>>> API_LIMIT_PER_PAGE
>>>>
>>>> u'********************'
>>>>
>>>> ACCOUNT_SETTINGS_REDIRECT_URL
>>>>
>>>> u'account_settings'
>>>>
>>>> EXTRA_LANG_INFO
>>>>
>>>> {'am': {'bidi': False,
>>>> 'code': 'am',
>>>> 'name': 'Amharic',
>>>> 'name_local': 'Amharic'},
>>>> 'si': {'bidi': False,
>>>> 'code': 'si',
>>>> 'name': 'Sinhala',
>>>> 'name_local': 'sinhala'},
>>>> 'ta': {'bidi': False, 'code': 'ta', 'name': 'Tamil', 'name_local': u'tamil'},
>>>> 'tl': {'bidi': False,
>>>> 'code': 'tl',
>>>> 'name': 'Tagalog',
>>>> 'name_local': 'tagalog'}}
>>>>
>>>> LOGGING
>>>>
>>>> {'disable_existing_loggers': True,
>>>> 'filters': {'require_debug_false': {'()': 'django.utils.log.RequireDebugFalse'}},
>>>> 'formatters': {'simple': {'format': '%(message)s'},
>>>> 'verbose': {'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'}},
>>>> 'handlers': {'console': {'class': 'logging.StreamHandler',
>>>> 'formatter': 'simple',
>>>> 'level': 'ERROR'},
>>>> 'mail_admins': {'class': 'django.utils.log.AdminEmailHandler',
>>>> 'filters': ['require_debug_false'],
>>>> 'level': 'ERROR'},
>>>> 'null': {'class': 'django.utils.log.NullHandler',
>>>> 'level': 'ERROR'}},
>>>> 'loggers': {'django': {'handlers': ['console'], 'level': 'ERROR'},
>>>> 'geonode': {'handlers': ['console'], 'level': 'ERROR'},
>>>> 'gsconfig.catalog': {'handlers': ['console'], 'level': 'ERROR'},
>>>> 'owslib': {'handlers': ['console'], 'level': 'ERROR'},
>>>> 'pycsw': {'handlers': ['console'], 'level': 'ERROR'}},
>>>> 'version': 1}
>>>>
>>>> SHORT_DATE_FORMAT
>>>>
>>>> 'm/d/Y'
>>>>
>>>> DATABASE_USER
>>>>
>>>> 'geonode'
>>>>
>>>> TEST_RUNNER
>>>>
>>>> 'django_nose.NoseTestSuiteRunner'
>>>>
>>>> ACTSTREAM_SETTINGS
>>>>
>>>> {'FETCH_RELATIONS': True,
>>>> 'GFK_FETCH_DEPTH': 1,
>>>> 'MODELS': ('people.Profile',
>>>> 'layers.layer',
>>>> 'maps.map',
>>>> 'dialogos.comment',
>>>> 'documents.document',
>>>> 'services.service'),
>>>> 'USE_JSONFIELD': True,
>>>> 'USE_PREFETCH': False}
>>>>
>>>> MODELTRANSLATION_LANGUAGES
>>>>
>>>> ['en']
>>>>
>>>> HAYSTACK_FACET_COUNTS
>>>>
>>>> False
>>>>
>>>> CACHE_MIDDLEWARE_KEY_PREFIX
>>>>
>>>> u'********************'
>>>>
>>>> DEFAULT_WORKSPACE
>>>>
>>>> 'geonode'
>>>>
>>>> TIME_ZONE
>>>>
>>>> 'America/Chicago'
>>>>
>>>> FILE_UPLOAD_MAX_MEMORY_SIZE
>>>>
>>>> 2621440
>>>>
>>>> LOCAL_GEOSERVER
>>>>
>>>> {'source': {'ptype': 'gxp_wmscsource',
>>>> 'restUrl': '/gs/rest',
>>>> 'url': 'http://muchita.cnpm.embrapa.br/geoserver/wms'}}
>>>>
>>>> EMAIL_BACKEND
>>>>
>>>> 'django.core.mail.backends.smtp.EmailBackend'
>>>>
>>>> ANONYMOUS_USER_ID
>>>>
>>>> -1
>>>>
>>>> POSTGIS_VERSION
>>>>
>>>> (2, 1, 0)
>>>>
>>>> DEFAULT_MAP_ZOOM
>>>>
>>>> 0
>>>>
>>>> TEMPLATE_CONTEXT_PROCESSORS
>>>>
>>>> ('django.contrib.auth.context_processors.auth',
>>>> 'django.core.context_processors.debug',
>>>> 'django.core.context_processors.i18n',
>>>> 'django.core.context_processors.tz',
>>>> 'django.core.context_processors.media',
>>>> 'django.core.context_processors.static',
>>>> 'django.core.context_processors.request',
>>>> 'django.contrib.messages.context_processors.messages',
>>>> 'account.context_processors.account',
>>>> 'geonode.context_processors.resource_urls',
>>>> 'geonode.geoserver.context_processors.geoserver_urls')
>>>>
>>>> CELERY_QUEUES
>>>>
>>>> [<unbound Queue 'default' -> <unbound Exchange ''(direct)> -> default>,
>>>> <unbound Queue 'cleanup' -> <unbound Exchange ''(direct)> -> cleanup>,
>>>> <unbound Queue 'update' -> <unbound Exchange ''(direct)> -> update>,
>>>> <unbound Queue 'email' -> <unbound Exchange ''(direct)> -> email>]
>>>>
>>>> LOCKDOWN_GEONODE
>>>>
>>>> False
>>>>
>>>> SESSION_COOKIE_AGE
>>>>
>>>> 1209600
>>>>
>>>> SETTINGS_MODULE
>>>>
>>>> 'geonode.settings'
>>>>
>>>> GUARDIAN_GET_INIT_ANONYMOUS_USER
>>>>
>>>> 'geonode.people.models.get_anonymous_user_instance'
>>>>
>>>> USE_ETAGS
>>>>
>>>> False
>>>>
>>>> SOCIAL_BUTTONS
>>>>
>>>> True
>>>>
>>>> LANGUAGES
>>>>
>>>> (('en', 'English'),
>>>> ('es', 'Espa\xc3\xb1ol'),
>>>> ('it', 'Italiano'),
>>>> ('fr', 'Fran\xc3\xa7ais'),
>>>> ('de', 'Deutsch'),
>>>> ('el', '\xce\x95\xce\xbb\xce\xbb\xce\xb7\xce\xbd\xce\xb9\xce\xba\xce\xac'),
>>>> ('id', 'Bahasa Indonesia'),
>>>> ('zh-cn', '\xe4\xb8\xad\xe6\x96\x87'),
>>>> ('ja', '\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e'),
>>>> ('fa', 'Persian'),
>>>> ('ar', 'Arabic'),
>>>> ('bn', 'Bengali'),
>>>> ('ne', 'Nepali'),
>>>> ('sq', 'Albanian'),
>>>> ('af', 'Afrikaans'),
>>>> ('sw', 'Swahili'),
>>>> ('pt', 'Portuguese'),
>>>> ('pt-br', 'Portugu\xc3\xaas Brasil'),
>>>> ('ru', 'Russian'),
>>>> ('vi', 'Vietnamese'),
>>>> ('ko', '\xed\x95\x9c\xea\xb5\xad\xec\x96\xb4'),
>>>> ('am', 'Amharic'),
>>>> ('km', 'Khmer'),
>>>> ('pl', 'Polish'),
>>>> ('sv', 'Swedish'),
>>>> ('th', 'Thai'),
>>>> ('uk', 'Ukranian'),
>>>> ('si', 'Sinhala'),
>>>> ('ta', 'Tamil'),
>>>> ('tl', 'Tagalog'))
>>>>
>>>> CELERY_TASK_RESULT_EXPIRES
>>>>
>>>> 1
>>>>
>>>> DEFAULT_INDEX_TABLESPACE
>>>>
>>>> ''
>>>>
>>>> INTERNAL_IPS
>>>>
>>>> ()
>>>>
>>>> STATIC_URL
>>>>
>>>> '/static/'
>>>>
>>>> EMAIL_PORT
>>>>
>>>> 25
>>>>
>>>> LAYER_PREVIEW_LIBRARY
>>>>
>>>> 'geoext'
>>>>
>>>> USE_TZ
>>>>
>>>> False
>>>>
>>>> DEFAULT_SEARCH_SIZE
>>>>
>>>> 10
>>>>
>>>> CLIENT_RESULTS_LIMIT
>>>>
>>>> 100
>>>>
>>>> MODELTRANSLATION_DEFAULT_LANGUAGE
>>>>
>>>> 'en'
>>>>
>>>> ACCOUNT_SIGNUP_REDIRECT_URL
>>>>
>>>> u'/'
>>>>
>>>> DOCUMENT_TYPE_MAP
>>>>
>>>> {'doc': 'text',
>>>> 'docx': 'text',
>>>> 'gif': 'image',
>>>> 'gz': 'archive',
>>>> 'jpeg': 'image',
>>>> 'jpg': 'image',
>>>> 'log': 'text',
>>>> 'odp': 'presentation',
>>>> 'ods': 'text',
>>>> 'odt': 'text',
>>>> 'pdf': 'presentation',
>>>> 'png': 'image',
>>>> 'ppt': 'presentation',
>>>> 'pptx': 'presentation',
>>>> 'rar': 'archive',
>>>> 'tif': 'image',
>>>> 'tiff': 'image',
>>>> 'txt': 'text',
>>>> 'xls': 'text',
>>>> 'xlsx': 'text',
>>>> 'xml': 'text',
>>>> 'zip': 'archive'}
>>>>
>>>> CACHE_MIDDLEWARE_SECONDS
>>>>
>>>> 600
>>>>
>>>> SITENAME
>>>>
>>>> 'GeoNode'
>>>>
>>>> ACCOUNT_CREATE_ON_SAVE
>>>>
>>>> True
>>>>
>>>> CSRF_COOKIE_HTTPONLY
>>>>
>>>> False
>>>>
>>>> DATETIME_INPUT_FORMATS
>>>>
>>>> ('%Y-%m-%d %H:%M:%S',
>>>> '%Y-%m-%d %H:%M:%S.%f',
>>>> '%Y-%m-%d %H:%M',
>>>> '%Y-%m-%d',
>>>> '%m/%d/%Y %H:%M:%S',
>>>> '%m/%d/%Y %H:%M:%S.%f',
>>>> '%m/%d/%Y %H:%M',
>>>> '%m/%d/%Y',
>>>> '%m/%d/%y %H:%M:%S',
>>>> '%m/%d/%y %H:%M:%S.%f',
>>>> '%m/%d/%y %H:%M',
>>>> '%m/%d/%y')
>>>>
>>>> ACCOUNT_EMAIL_CONFIRMATION_REQUIRED
>>>>
>>>> False
>>>>
>>>> DATABASE_PASSWORD
>>>>
>>>> u'********************'
>>>>
>>>> PROFANITIES_LIST
>>>>
>>>> u'********************'
>>>>
>>>> EMAIL_HOST_USER
>>>>
>>>> ''
>>>>
>>>> MAX_DOCUMENT_SIZE
>>>>
>>>> 2
>>>>
>>>> You're seeing this error because you have DEBUG = True in your Django
>>>> settings file. Change that to False, and Django will display a
>>>> standard 500 page.
>>>>
>>>> --
>>>> Davi de O. Custódio
>>>>
>>>
>>>
>>>
>>> --
>>> Davi de O. Custódio
>>>
>>
>>
>>
>> --
>> Davi de O. Custódio
>>
>> _______________________________________________
>> geonode-users mailing list
>> geonode-users at lists.osgeo.org
>> http://lists.osgeo.org/cgi-bin/mailman/listinfo/geonode-users
>>
>>
>
>
> --
> Simone
>
> _______________________________________________
> geonode-users mailing list
> geonode-users at lists.osgeo.org
> http://lists.osgeo.org/cgi-bin/mailman/listinfo/geonode-users
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/geonode-users/attachments/20150527/d0a4c979/attachment-0001.html>
More information about the geonode-users
mailing list