django-settings icon indicating copy to clipboard operation
django-settings copied to clipboard

Application to keep simple settings in database. Based on the contenttype framework.

Results 13 django-settings issues
Sort by recently updated
recently updated
newest added

Bumps [django](https://github.com/django/django) from 1.4 to 2.2.24. Commits 2da029d [2.2.x] Bumped version for 2.2.24 release. f27c38a [2.2.x] Fixed CVE-2021-33571 -- Prevented leading zeros in IPv4 addresses. 053cc95 [2.2.x] Fixed CVE-2021-33203 --...

dependencies

- Fix to repair #24 and make the package compatible with Django 1.9

If the default charset for mysql database is utf8mb4, migration will throw an error: ```Synchronizing apps without migrations: Creating tables... Creating table django_settings_setting Traceback (most recent call last): File "/home/onedollarclub/manage.py",...

- Use `post_migrate` signal instead of `post_syncdb` ([post_syncdb is deprecated since Django 1.7](https://docs.djangoproject.com/en/1.7/ref/signals/#post-syncdb)) - Update import of `GenericForeignKey` ([Moved in Django 1.7](https://docs.djangoproject.com/en/1.7/ref/contrib/contenttypes/#django.contrib.contenttypes.fields.GenericForeignKey)) - Use `Model._meta.model_name` ([Model._meta.module_name alias was removed in...

[HttpRequest.REQUEST](https://docs.djangoproject.com/en/1.7/ref/request-response/#django.http.HttpRequest.REQUEST) is deprecated since Django 1.7. Use [HttpRequest.GET](https://docs.djangoproject.com/en/dev/ref/request-response/#django.http.HttpRequest.GET) instead

``` python {% settings "post_limit" as post_limit %} ``` This hasn't worked. Now it should.

One can use DJANGO_SETTINGS_CACHE_KEYMAKER to override the KeyMaker class. The KeyMaker class supports both Python 2 and Python 3

django-settings-1.3.12.tar.gz from https://pypi.python.org/pypi/django-settings does not contains the template tag: settings_tag.py ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README.rst ├── django_settings │   ├── **init**.py │   ├── admin.py │   ├── api.py │  ...

**django_settings/models.py:5:** ``` RemovedInDjango19Warning: django.contrib.contenttypes.generic is deprecated and will be removed in Django 1.9. Its contents have been moved to the fields, forms, and admin submodules of django.contrib.contenttypes. from django.contrib.contenttypes import...

This removes an annoying deprecationwarning in django 1.8. I've also tested django 1.7 and 1.8, and the module works ok in both. If you please could merge this and send...