معرفی شرکت ها


django-dbpreferences-0.6.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

With django-dbpreferences you can store app/user settings into the database.
ویژگی مقدار
سیستم عامل -
نام فایل django-dbpreferences-0.6.0
نام django-dbpreferences
نسخه کتابخانه 0.6.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Jens Diemer
ایمیل نویسنده django-dbpreferences@jensdiemer.de
آدرس صفحه اصلی http://code.google.com/p/django-dbpreferences/
آدرس اینترنتی https://pypi.org/project/django-dbpreferences/
مجوز -
----------- description ----------- With django-dbpreferences you can store some app/user preferences into the database. +-----------------------------------+----------------------------------------------------------+ | |Build Status on travis-ci.org| | `travis-ci.org/jedie/django-dbpreferences`_ | +-----------------------------------+----------------------------------------------------------+ | |Coverage Status on coveralls.io| | `coveralls.io/r/jedie/django-dbpreferences`_ | +-----------------------------------+----------------------------------------------------------+ | |Status on landscape.io| | `landscape.io/github/jedie/django-dbpreferences/master`_ | +-----------------------------------+----------------------------------------------------------+ .. |Build Status on travis-ci.org| image:: https://travis-ci.org/jedie/django-dbpreferences.svg .. _travis-ci.org/jedie/django-dbpreferences: https://travis-ci.org/jedie/django-dbpreferences/ .. |Coverage Status on coveralls.io| image:: https://coveralls.io/repos/jedie/django-dbpreferences/badge.svg .. _coveralls.io/r/jedie/django-dbpreferences: https://coveralls.io/r/jedie/django-dbpreferences .. |Status on landscape.io| image:: https://landscape.io/github/jedie/django-dbpreferences/master/landscape.svg .. _landscape.io/github/jedie/django-dbpreferences/master: https://landscape.io/github/jedie/django-dbpreferences/master 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>`_ --------- unittests --------- There exist different ways to run unittests, e.g.: :: .../django-dbpreferences $ ./setup.py test .../django-dbpreferences $ ./manage.py test .../django-dbpreferences $ ./runtests.sh Run specific tests, e.g.: :: .../django-dbpreferences $ ./setup.py test tests.test_dbpreferences.TestDBPref .../django-dbpreferences $ ./manage.py test tests.test_dbpreferences.TestDBPref .../django-dbpreferences $ ./runtests.sh tests.test_dbpreferences.TestDBPref -------------------- Django compatibility -------------------- +--------------+----------------+----------+ | django-tools | django version | python | +==============+================+==========+ | v0.6.0 | 1.6 - 1.8 | 2.7, 3,4 | +--------------+----------------+----------+ | v0.5.0 | <=1.6 | 2 only | +--------------+----------------+----------+ | v0.4.5 | <=1.4 | 2 only | +--------------+----------------+----------+ (version combination will be tested via travis-ci) ------- history ------- * v0.6.0 - 11.08.2015 - `compare v0.5.0...v0.6.0 <https://github.com/jedie/django-dbpreferences/compare/v0.5.0...v0.6.0>`_ * Bugfixes and compatibility with Python 2 and 3, Django 1.6-1.8 * **data_eval** rewrite using ast module * **dbpreferences.fields.DictField** was renamed to **DictModelField** * v0.5.0 - 12.02.2015 - `compare v0.4.5...v0.5.0 <https://github.com/jedie/django-dbpreferences/compare/v0.4.5...v0.5.0>`_ * Changes for django 1.6 support * v0.4.5 - 03.08.2012 - `compare v0.4.4...v0.4.5 <https://github.com/jedie/django-dbpreferences/compare/v0.4.4...v0.4.5>`_ * Add cache for preferences access (used `LocalSyncCache from django-tools <https://github.com/jedie/django-tools#local-sync-cache>`_ if installed) * v0.4.4 - 03.08.2012 - `compare v0.4.3...v0.4.4 <https://github.com/jedie/django-dbpreferences/compare/v0.4.3...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`_, 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 -------- donation -------- If you like it, send some `Bitcoins <http://www.bitcoin.org/>`_ to `1HLNVtZFwdHLavRKdUebTGHVn8A7e6Dgne <https://blockexplorer.com/address/1HLNVtZFwdHLavRKdUebTGHVn8A7e6Dgne>`_ ;) ----- links ----- +----------+------------------------------------------------------+ | homepage | `http://github.com/jedie/django-dbpreferences`_ | +----------+------------------------------------------------------+ | PyPi | `http://pypi.python.org/pypi/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/ contact ======= Come into the conversation, besides the github communication features: +---------+--------------------------------------------------------+ | Forum | `http://www.pylucid.org/en/forum/10/`_ | +---------+--------------------------------------------------------+ | IRC | #pylucid on freenode.net (Yes, the PyLucid channel...) | +---------+--------------------------------------------------------+ | webchat | `http://webchat.freenode.net/?channels=pylucid`_ | +---------+--------------------------------------------------------+ .. _http://www.pylucid.org/en/forum/10/: http://www.pylucid.org/en/forum/10/ .. _http://webchat.freenode.net/?channels=pylucid: http://webchat.freenode.net/?channels=pylucid


نحوه نصب


نصب پکیج whl django-dbpreferences-0.6.0:

    pip install django-dbpreferences-0.6.0.whl


نصب پکیج tar.gz django-dbpreferences-0.6.0:

    pip install django-dbpreferences-0.6.0.tar.gz