[Python-modules-commits] [python-django-extensions] branch upstream updated (cd6e080 -> 6c5a19a)

Brian May bam at moszumanska.debian.org
Tue Jul 4 22:05:21 UTC 2017


This is an automated email from the git hooks/post-receive script.

bam pushed a change to branch upstream
in repository python-django-extensions.

      from  cd6e080   Import python-django-extensions_1.6.7.orig.tar.gz
      adds  6c5a19a   Import python-django-extensions_1.7.4.orig.tar.gz

No new revisions were added by this update.

Summary of changes:
 .pre-commit-config.yaml                            |  31 +++
 .travis.yml                                        |  60 ++---
 CHANGELOG.md                                       |  76 +++++-
 Makefile                                           |   2 +-
 README.rst                                         |  16 +-
 django_extensions/__init__.py                      |   4 +-
 django_extensions/admin/__init__.py                |  38 +--
 django_extensions/admin/filter.py                  |   6 +-
 django_extensions/admin/widgets.py                 |   7 +-
 django_extensions/compat.py                        | 214 +---------------
 django_extensions/conf/app_template/forms.py.tmpl  |   2 +-
 django_extensions/conf/app_template/urls.py.tmpl   |   5 +-
 .../management/commands/sample.py.tmpl             |   5 +-
 .../templatetags/sample.py.tmpl                    |   1 -
 django_extensions/db/__init__.py                   |   1 -
 django_extensions/db/fields/__init__.py            |  96 +-------
 django_extensions/db/fields/encrypted.py           |  37 +--
 django_extensions/db/fields/json.py                |  75 +++---
 django_extensions/db/models.py                     |  20 +-
 django_extensions/jobs/__init__.py                 |   1 -
 django_extensions/jobs/daily/__init__.py           |   1 -
 django_extensions/jobs/daily/cache_cleanup.py      |  10 +-
 django_extensions/jobs/daily/daily_cleanup.py      |   9 +-
 django_extensions/jobs/hourly/__init__.py          |   1 -
 django_extensions/jobs/minutely/__init__.py        |   1 -
 django_extensions/jobs/monthly/__init__.py         |   1 -
 django_extensions/jobs/weekly/__init__.py          |   1 -
 django_extensions/jobs/yearly/__init__.py          |   1 -
 django_extensions/logging/__init__.py              |   1 -
 django_extensions/logging/filters.py               |   2 +-
 django_extensions/management/__init__.py           |   1 -
 django_extensions/management/base.py               |   2 +-
 django_extensions/management/color.py              |  15 +-
 django_extensions/management/commands/__init__.py  |   1 -
 .../management/commands/admin_generator.py         |  66 ++---
 django_extensions/management/commands/clean_pyc.py |   5 +-
 .../management/commands/clear_cache.py             |   2 +-
 .../management/commands/compile_pyc.py             |   5 +-
 .../management/commands/create_app.py              |  39 +--
 .../management/commands/create_command.py          |  54 ++--
 .../management/commands/create_jobs.py             |  12 +-
 .../management/commands/create_template_tags.py    |  12 +-
 .../management/commands/describe_form.py           |  15 +-
 .../management/commands/drop_test_database.py      |  18 +-
 .../management/commands/dumpscript.py              |  96 ++------
 .../management/commands/export_emails.py           |   8 +-
 .../management/commands/find_template.py           |  13 +-
 .../management/commands/generate_secret_key.py     |   5 +-
 .../management/commands/graph_models.py            |  20 +-
 .../management/commands/mail_debug.py              |   6 +-
 django_extensions/management/commands/notes.py     |   7 +-
 django_extensions/management/commands/passwd.py    |  24 +-
 .../management/commands/pipchecker.py              |   6 +-
 .../management/commands/print_settings.py          |  20 +-
 .../management/commands/print_user_for_session.py  |  28 +--
 django_extensions/management/commands/reset_db.py  |  31 ++-
 django_extensions/management/commands/runjob.py    |  27 +-
 django_extensions/management/commands/runjobs.py   |  40 ++-
 .../management/commands/runprofileserver.py        |  59 +----
 django_extensions/management/commands/runscript.py |  72 +++---
 .../management/commands/runserver_plus.py          | 273 ++++++++++-----------
 .../management/commands/set_default_site.py        |   6 +-
 .../management/commands/set_fake_emails.py         |   8 +-
 .../management/commands/set_fake_passwords.py      |   9 +-
 .../management/commands/shell_plus.py              |  45 ++--
 .../management/commands/show_template_tags.py      |  11 +-
 .../management/commands/show_templatetags.py       |   2 +-
 django_extensions/management/commands/show_urls.py |  13 +-
 django_extensions/management/commands/sqlcreate.py |   8 +-
 django_extensions/management/commands/sqldiff.py   |  70 ++----
 django_extensions/management/commands/sqldsn.py    |   7 +-
 django_extensions/management/commands/sync_s3.py   |   8 +-
 django_extensions/management/commands/syncdata.py  |  32 +--
 .../management/commands/unreferenced_files.py      |  16 +-
 .../management/commands/update_permissions.py      |  34 +--
 .../management/commands/validate_templates.py      |  27 +-
 .../management/email_notifications.py              |   5 +-
 django_extensions/management/jobs.py               |   5 +-
 django_extensions/management/modelviz.py           |  41 +---
 django_extensions/management/mysql.py              |   2 +-
 django_extensions/management/notebook_extension.py |   2 +-
 django_extensions/management/shells.py             |  55 ++---
 django_extensions/management/signals.py            |   2 +-
 django_extensions/management/technical_response.py |   2 +-
 django_extensions/management/utils.py              |   2 +-
 django_extensions/models.py                        |   1 -
 django_extensions/mongodb/__init__.py              |   1 -
 django_extensions/mongodb/fields/__init__.py       |   2 +-
 django_extensions/mongodb/fields/encrypted.py      |   2 +-
 django_extensions/mongodb/fields/json.py           |  11 +-
 django_extensions/mongodb/models.py                |  18 +-
 django_extensions/settings.py                      |   2 +-
 django_extensions/south_migrations/0001_empty.py   |  17 --
 django_extensions/south_migrations/__init__.py     |   1 -
 .../django_extensions/css/jquery.autocomplete.css  |   2 +-
 .../static/django_extensions/js/jquery.bgiframe.js |  39 +++
 .../django_extensions/js/jquery.bgiframe.min.js    |  10 -
 django_extensions/templatetags/__init__.py         |   1 -
 django_extensions/templatetags/highlighting.py     |  11 +-
 django_extensions/templatetags/indent_text.py      |   5 +-
 django_extensions/templatetags/syntax_color.py     |   2 +-
 django_extensions/templatetags/truncate_letters.py |  13 +-
 django_extensions/templatetags/widont.py           |  17 +-
 django_extensions/utils/__init__.py                |   1 -
 django_extensions/utils/deprecation.py             |   8 +
 django_extensions/utils/dia2django.py              |   2 +-
 django_extensions/utils/text.py                    |  11 +-
 django_extensions/utils/validatingtemplatetags.py  |  51 ++--
 django_extensions/validators.py                    |   2 +-
 docs/admin_extensions.rst                          |   2 +-
 docs/command_extensions.rst                        |   7 +-
 docs/conf.py                                       |   4 +-
 docs/creating_release.txt                          |   1 -
 docs/field_extensions.rst                          |   3 +
 docs/index.rst                                     |   2 +-
 docs/runprofileserver.rst                          |  10 +-
 docs/runscript.rst                                 |  11 +-
 docs/runserver_plus.rst                            |  46 ++--
 docs/shell_plus.rst                                |  28 ++-
 docs/validate_templates.rst                        |  12 +-
 setup.cfg                                          |   4 +-
 setup.py                                           |  14 +-
 tests/__init__.py                                  |  11 +-
 tests/management/__init__.py                       |   1 -
 tests/management/commands/__init__.py              |   1 -
 tests/management/commands/error_raising_command.py |   2 +-
 tests/management/test_modelviz.py                  |  28 +++
 tests/test_autoslug_fields.py                      |  18 +-
 tests/test_clean_pyc.py                            |   2 +-
 tests/test_color.py                                |  23 ++
 tests/test_compat.py                               |  25 ++
 tests/test_compile_pyc.py                          |   2 +-
 ...est_find_template.py => test_create_command.py} |   8 +-
 tests/test_dumpscript.py                           |   2 +-
 tests/test_encrypted_fields.py                     |   7 +-
 tests/test_find_template.py                        |   2 +-
 tests/test_json_field.py                           |  86 ++++++-
 tests/test_management_command.py                   |  99 +++++++-
 tests/test_models.py                               |   2 +-
 tests/test_randomchar_field.py                     |   2 +-
 tests/test_runscript.py                            |   9 +-
 tests/test_shortuuid_field.py                      |   2 +-
 tests/test_template_rendering.py                   |  16 ++
 tests/test_templatetags.py                         |  11 +-
 tests/test_timestamped_model.py                    |   2 +-
 tests/test_uuid_field.py                           |   2 +-
 tests/testapp/__init__.py                          |   3 +-
 tests/testapp/apps.py                              |  11 +-
 tests/testapp/models.py                            |   2 +-
 tests/testapp/scripts/__init__.py                  |   1 -
 tests/testapp/scripts/sample_script.py             |   2 +-
 tests/testapp/settings.py                          |  22 +-
 tests/testapp/urls.py                              |  27 +-
 .../testapp_with_no_models_file/__init__.py        |   0
 tests/testapp_with_no_models_file/admin.py         |   7 +
 tox.ini                                            |  14 +-
 156 files changed, 1413 insertions(+), 1532 deletions(-)
 create mode 100644 .pre-commit-config.yaml
 delete mode 100644 django_extensions/south_migrations/0001_empty.py
 delete mode 100644 django_extensions/south_migrations/__init__.py
 create mode 100644 django_extensions/static/django_extensions/js/jquery.bgiframe.js
 delete mode 100644 django_extensions/static/django_extensions/js/jquery.bgiframe.min.js
 create mode 100644 django_extensions/utils/deprecation.py
 create mode 100644 tests/management/test_modelviz.py
 create mode 100644 tests/test_color.py
 create mode 100644 tests/test_compat.py
 copy tests/{test_find_template.py => test_create_command.py} (72%)
 create mode 100644 tests/test_template_rendering.py
 copy django_extensions/conf/app_template/__init__.py.tmpl => tests/testapp_with_no_models_file/__init__.py (100%)
 create mode 100644 tests/testapp_with_no_models_file/admin.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-django-extensions.git



More information about the Python-modules-commits mailing list