Metadata-Version: 1.1
Name: django-timezone-field
Version: 1.1
Summary: A Django app providing database and form fields for pytz timezone objects.
Home-page: http://github.com/mfogel/django-timezone-field/
Author: Mike Fogel
Author-email: mike@fogel.ca
License: BSD
Description: django-timezone-field
        =====================
        
        .. image:: https://api.travis-ci.org/mfogel/django-timezone-field.png?branch=develop
           :target: https://travis-ci.org/mfogel/django-timezone-field
        
        .. image:: https://coveralls.io/repos/mfogel/django-timezone-field/badge.png?branch=develop
           :target: https://coveralls.io/r/mfogel/django-timezone-field
        
        .. image:: https://pypip.in/v/django-timezone-field/badge.png
           :target: https://crate.io/packages/django-timezone-field/
        
        .. image:: https://pypip.in/d/django-timezone-field/badge.png
           :target: https://crate.io/packages/django-timezone-field/
        
        A Django app providing database and form fields for `pytz`__ timezone objects.
        
        Examples
        --------
        
        Database Field
        ~~~~~~~~~~~~~~
        
        .. code:: python
        
            import pytz
            from django.db import models
            from timezone_field import TimeZoneField
        
            class MyModel(models.Model):
                timezone1 = TimeZoneField(default='Europe/London') # defaults supported
                timezone2 = TimeZoneField()
                timezone3 = TimeZoneField()
        
            my_inst = MyModel(
                timezone1='America/Los_Angeles',    # assignment of a string
                timezone2=pytz.timezone('Turkey'),  # assignment of a pytz.DstTzInfo
                timezone3=pytz.UTC,                 # assignment of pytz.UTC singleton
            )
            my_inst.full_clean()  # validates against pytz.common_timezones
            my_inst.save()        # values stored in DB as strings
        
            tz = my_inst.timezone1  # values retrieved as pytz objects
            repr(tz)                # "<DstTzInfo 'America/Los_Angeles' PST-1 day, 16:00:00 STD>"
        
        
        Form Field
        ~~~~~~~~~~
        
        .. code:: python
        
            from django import forms
            from timezone_field import TimeZoneFormField
        
            class MyForm(forms.Form):
                timezone = TimeZoneFormField()
        
            my_form = MyForm({
                'timezone': 'America/Los_Angeles',
            })
            my_form.full_clean()  # validates against pytz.common_timezones
        
            tz = my_form.cleaned_data['timezone']  # values retrieved as pytz objects
            repr(tz)                               # "<DstTzInfo 'America/Los_Angeles' PST-1 day, 16:00:00 STD>"
        
        
        Installation
        ------------
        
        #.  From `pypi`__ using `pip`__:
        
            .. code:: sh
        
                pip install django-timezone-field
        
        #.  Add `timezone_field` to your `settings.INSTALLED_APPS`__:
        
            .. code:: python
        
                INSTALLED_APPS = (
                    ...
                    'timezone_field',
                    ...
                )
        
        Changelog
        ------------
        
        *   1.1 (2014-10-05)
        
            *   Django 1.7 compatibility
            *   Changed format of `choices` kwarg to `[[<str>, <str>], ...]`,
                was previously `[[<pytz timezone>, <str>], ...]`.
                Old format is still deprecated but still accepted for now; support
                will be removed in a future release.
            *   Changed default list of accepted timezones from `pytz.all_timezones` to
                `pytz.common_timezones`. If you have timezones in your DB that are in
                `pytz.all_timezones` but not in `pytz.common_timezones`, this is a
                backward-incompatible change. Old behavior can be restored by
                specifying `choices=[(tz, tz) for tz in pytz.all_timezones]` in your
                model definition.
        
        *   1.0 (2013-08-04)
        
            *   Initial release as `timezone_field`.
        
        
        Running the Tests
        -----------------
        
        #.  Install `tox`__.
        
        #.  From the repository root, run
        
            .. code:: sh
        
                tox
        
            It's that simple.
        
        Found a Bug?
        ------------
        
        To file a bug or submit a patch, please head over to `django-timezone-field on github`__.
        
        Credits
        -------
        
        Originally adapted from `Brian Rosner's django-timezones`__. The full list of contributors is available on `github`__.
        
        
        __ http://pypi.python.org/pypi/pytz/
        __ http://pypi.python.org/pypi/django-timezone-field/
        __ http://www.pip-installer.org/
        __ https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps
        __ https://tox.readthedocs.org/
        __ https://github.com/mfogel/django-timezone-field/
        __ https://github.com/brosner/django-timezones/
        __ https://github.com/mfogel/django-timezone-field/graphs/contributors
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Utilities
Classifier: Framework :: Django
