Metadata-Version: 1.0
Name: django-dbpreferences
Version: 0.4.4.1012
Summary: With django-dbpreferences you can store app/user settings into the database.
Home-page: http://code.google.com/p/django-dbpreferences/
Author: Jens Diemer
Author-email: django-dbpreferences@jensdiemer.de
License: UNKNOWN
Description: -----------
        description
        -----------
        
        With django-dbpreferences you can store some app/user preferences into the database.
        
        A django app defines a form with initial values. The form cleaned data dict would
        be stored serialized into the database. The app can easy get the current preference
        dict and the user can easy edit the values in the django admin panel.
        
        With `UserSettings <https://code.google.com/p/django-dbpreferences/wiki/UserSettings>`_ you can
        store some settings per user.
        
        More Information and examples can be found here:
        
        * `https://code.google.com/p/django-dbpreferences/w/list <https://code.google.com/p/django-dbpreferences/w/list>`_
        
        -------
        history
        -------
        
        * v0.4.4
        
            * Add south support (if installed)
        
            * tests can be run with ``./setup.py test``
        
            * add german translations
        
        * v0.4.3
        
            * Bugfix: `For 'UserSettings' object has no attribute 'get_settings' <https://github.com/jedie/django-dbpreferences/issues/1>`_
        
        * v0.4.2
        
            * Bugfix: Add templates to pypi package
        
        * v0.4.1
        
            * Bugfix with BooleanField
        
        * v0.4.0
        
            * NEW: Use initial data, if not exist in saved preferences. So it’s easier to add new preferences values.
        
        * v0.3.8
        
            * Bugfix in error message for not existing keys
        
        * v0.3.7
        
            * Change version scheme and add last git commit date to version string
        
        * v0.3.6
        
            * Display current value on ValidationError
        
        * v0.3.5
        
            * Updates for django v1.2 API changes
        
        * v0.3.4
        
            * Bugfix if help_text contains non ascii characters and html code
        
        * v0.3.3
        
            * validate preferences with model validation
        
            * clean preferences in get_preferences()
        
        * v0.3.2
        
            * some bugfixes
        
        * v0.3.1
        
            * Bugfix if DictField can be null / ``DictFormField(required=False)`` 
        
        * v0.3.0
        
            * separate field stuff from models.py into fields.py, so its usable in other projects, too.
        
            * Use own dict class for serialize/deserialize
        
            * Update unittest for new django admin url prefix
        
        * v0.2.0
        
            * Add `UserSettings <https://code.google.com/p/django-dbpreferences/wiki/UserSettings>`_, see: `http://www.jensdiemer.de/_command/118/blog/detail/64/ <http://www.jensdiemer.de/_command/118/blog/detail/64/>`_ (de)
        
        * v0.1.0
        
            * first version cut out from PyLucid CMS – `http://www.pylucid.org <http://www.pylucid.org>`_
        
        -----------
        pip upgrade
        -----------
        
        To do a pip upgrade in a virtual environment, run this:
        
        ::
        
            ~$ cd /YourVirtualEnv/bin
            ~/YourVirtualEnv/bin$ source activate
            (YourVirtualEnv)~/YourVirtualEnv/bin$ pip install --upgrade --verbose --editable=git+git://github.com/jedie/django-dbpreferences.git#egg=django-dbpreferences
        
        The example used git readonly clone url. If you use subversion do this:
        
        ::
        
            (YourVirtualEnv)~/YourVirtualEnv/bin$ pip install --upgrade --verbose --editable=http://svn.github.com/jedie/django-dbpreferences.git#egg=django-dbpreferences
        
        If you have git write access, use this:
        
        ::
        
            (YourVirtualEnv)~/YourVirtualEnv/bin$ pip install --upgrade --verbose --editable=git+git@github.com:jedie/django-dbpreferences.git#egg=django-dbpreferences
        
        ----------------
        fast repo update
        ----------------
        
        To made a fast repository update, you can run this simple shell script:
        
        ::
        
            ~$ cd /path/to/django-dbpreferences
            /path/to/django-dbpreferences$ ./update.sh
        
        the update script runs “git pull origin master” or “svn update”.
        
        --------
        donation
        --------
        
        If you like it, send some `Bitcoins <http://www.bitcoin.org/>`_ to `1HLNVtZFwdHLavRKdUebTGHVn8A7e6Dgne <https://blockexplorer.com/address/1HLNVtZFwdHLavRKdUebTGHVn8A7e6Dgne>`_ ;)
        
        -----
        links
        -----
        
        +------------+------------------------------------------------------+
        | homepage   | `http://code.google.com/p/django-dbpreferences/`_    |
        +------------+------------------------------------------------------+
        | Sourcecode | `http://github.com/jedie/django-dbpreferences`_      |
        +------------+------------------------------------------------------+
        | PyPi       | `http://pypi.python.org/pypi/django-dbpreferences/`_ |
        +------------+------------------------------------------------------+
        | IRC        | `#pylucid on freenode.net`_                          |
        +------------+------------------------------------------------------+
        
        .. _http://code.google.com/p/django-dbpreferences/: http://code.google.com/p/django-dbpreferences/
        .. _http://github.com/jedie/django-dbpreferences: http://github.com/jedie/django-dbpreferences
        .. _http://pypi.python.org/pypi/django-dbpreferences/: http://pypi.python.org/pypi/django-dbpreferences/
        .. _#pylucid on freenode.net: http://www.pylucid.org/permalink/304/irc-channel
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Programming Language :: Python
Classifier: Framework :: Django
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Documentation
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Classifier: Operating System :: OS Independent
