検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 48 for pre (0.019 sec.)
Signals — Django 4.0.6 ドキュメント 16131
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... メント Home | Table of contents | Index | Modules « previous | up | next » Signals ¶ A list of all the sig ... a local function, it may be garbage collected. To prevent this, pass weak=False when you call the signal ... circular import dependencies and swappable models. pre_init ¶ django.db.models.signals. pre_init ¶ Whenev ... _date = timezone . now ()) The arguments sent to a pre_init handler would be: Argument 値 sender Question ...
https://man.plustar.jp/django/ref/signals.html - [similar]
Coding style — Django 4.0.6 ドキュメント 10981
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... メント Home | Table of contents | Index | Modules « previous | up | next » Coding style ¶ Please follow th ... andards when writing code for inclusion in Django. Pre-commit checks ¶ pre-commit is a framework for mana ... ging pre-commit hooks. These hooks help to identify simple ... number of CI runs. To use the tool, first install pre-commit and then the git hooks:   $ python -m pip ...
https://man.plustar.jp/django/internals/contributing/writing-code/coding-style.h... - [similar]
How is Django Formed? — Django 4.0.6 ドキュメント 10481
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... メント Home | Table of contents | Index | Modules « previous | up How is Django Formed? ¶ This document ex ... changes! The point here is to be descriptive, not prescriptive, so feel free to streamline or otherwise ... elease (e.g. 1.5) or a bugfix update (e.g. 1.5.1). Pre-releases: e.g. 1.6 alpha, beta, or rc. The short v ... steps involved is: If this is a security release, pre-notify the security distribution list one week bef ...
https://man.plustar.jp/django/internals/howto-release-django.html - [similar]
Signals — Django 4.0.6 ドキュメント 9148
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... メント Home | Table of contents | Index | Modules « previous | up | next » Signals ¶ Django includes a "si ... ome useful notifications: django.db.models.signals.pre_save & django.db.models.signals.post_save Sent bef ... save() method is called. django.db.models.signals.pre_delete & django.db.models.signals.post_delete Sent ... finished Sent when Django starts or finishes an HTTP request. See the built-in signal documentation for a ...
https://man.plustar.jp/django/topics/signals.html - [similar]
Django Deprecation Timeline — Django 4.0.6 ドキュメント 8815
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... メント Home | Table of contents | Index | Modules « previous | up | next » Django Deprecation Timeline ¶ T ... in a backward incompatible way, following their deprecation, as per the deprecation policy . More detail ... y. The USE_L10N setting will be removed. The USE_DEPRECATED_PYTZ transitional setting will be removed. Su ... ed.MemcachedCache will be removed. Support for the pre-Django 3.2 format of messages used by django.contr ...
https://man.plustar.jp/django/internals/deprecation.html - [similar]
Django 4.0 release notes — Django 4.0.6 ドキュメント 8572
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... メント Home | Table of contents | Index | Modules « previous | up | next » Django 4.0 release notes ¶ Dece ... ding from Django 3.2 or earlier. We've begun the deprecation process for some features . 既存のプロジェク ... default implementation. Support for pytz is now deprecated and will be removed in Django 5.0. zoneinfo i ... ive time for such an audit, the transitional USE_DEPRECATED_PYTZ setting allows continued use of pytz dur ...
https://man.plustar.jp/django/releases/4.0.html - [similar]
Django 1.11.5 リリースノート — Django 4.0.6 ドキュメント 7982
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... メント Home | Table of contents | Index | Modules « previous | up | next » Django 1.11.5 リリースノート ¶ ... ': False is in the OPTIONS part of DATABASES . The pre-1.11 naming scheme is now restored. Unfortunately, ... 8 to update sequence and trigger names to use the pre-1.11 naming scheme. Added POST request support to ... logged in the admin change history ( #27998 ) and prevented ManyToManyField initial data in model forms ...
https://man.plustar.jp/django/releases/1.11.5.html - [similar]
Advanced testing topics — Django 4.0.6 ドキュメント 7815
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... メント Home | Table of contents | Index | Modules « previous | up | next » Advanced testing topics ¶ The r ... ttings() or modify_settings() . This option may be preferable in standalone apps that can't package their ... cking ( ALLOWED_HOSTS = ['*'] ) when running tests prevents the test client from raising a helpful error ... vate API. It may be changed or removed without a deprecation period in the future, for instance to accomm ...
https://man.plustar.jp/django/topics/testing/advanced.html - [similar]
アプリケーション — Django 4.0.6 ドキュメント 7482
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... メント Home | Table of contents | Index | Modules « previous | up | next » アプリケーション ¶ Django には、 ... ALLED_APPS contains 'rock_n_roll' . If you need to prevent this, set default to False in the class defini ... port apps as django_apps Changed in Django 3.2: In previous versions, a default_app_config variable in th ... New in Django 3.2. Set this attribute to False to prevent Django from selecting a configuration class au ...
https://man.plustar.jp/django/ref/applications.html - [similar]
Related objects reference — Django 4.0.6 ドキュメント 7482
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... メント Home | Table of contents | Index | Modules « previous | up | next » Related objects reference ¶ cla ... sten to the m2m_changed signal, which will trigger pre_add and post_add actions. Using add() on a relatio ... odel instance is called instead. This triggers the pre_save and post_save signals and comes at the expens ... ve() on either end of the relationship. If you use prefetch_related() , the add() , remove() , clear() , ...
https://man.plustar.jp/django/ref/models/relations.html - [similar]
PREV 1 2 3 4 5 NEXT