django-dynamic-preferences 1.16.0-1 source package in Ubuntu
Changelog
django-dynamic-preferences (1.16.0-1) unstable; urgency=medium * Team Upload * New upstream version 1.16.0 * use new dh-sequence-python3 * set Rules-Requires-Root: no [ Debian Janitor ] * Use secure URI in debian/watch. * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository, Repository-Browse. * Remove constraints unnecessary since buster: + Build-Depends: Drop versioned constraint on python3-django. * Update standards version to 4.6.1, no changes needed. -- Alexandre Detiste <email address hidden> Sun, 28 Jan 2024 17:10:06 +0100
Upload details
- Uploaded by:
- Debian Python Team
- Uploaded to:
- Sid
- Original maintainer:
- Debian Python Team
- Architectures:
- all
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Oracular | release | universe | misc | |
Noble | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
django-dynamic-preferences_1.16.0-1.dsc | 2.3 KiB | 9d4d4045cc0d155c7727b330017683423de5b000d016e9f497f919f07f5cebed |
django-dynamic-preferences_1.16.0.orig.tar.gz | 49.3 KiB | 0d3d456626244d0bdaf312c81f2b3e14bd16134e8fcf53a33fd12e5d0bdd88dd |
django-dynamic-preferences_1.16.0-1.debian.tar.xz | 3.1 KiB | ab5180418ccc6cc1afbc8b1bba1107316afc8b66cf5fa7a1e3a35020bc7f07a7 |
Available diffs
- diff from 1.10.1-1 to 1.16.0-1 (34.9 KiB)
No changes file available.
Binary packages built by this source
- python3-django-dynamic-preferences: Dynamic global and instance settings for your django project
Dynamic-
preferences is a Django app, BSD-licensed, designed to help you
manage your project settings. While most of the time, a settings.py file is
sufficient, there are some situations where you need something more flexible
such as:
.
* per-user settings (or, generally speaking, per instance settings)
* settings change without server restart
.
For per-instance settings, you could actually store them in some kind of
profile model. However, it means that every time you want to add a new
setting, you need to add a new column to the profile DB table. Not very
efficient.
.
Dynamic-preferences allow you to register settings (a.k.a. preferences) in
a declarative way. Preferences values are serialized before storage in
database, and automatically deserialized when you need them.
.
With dynamic-preferences, you can update settings on the fly, through
django's admin or custom forms, without restarting your application.