検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 166 for setting (0.066 sec.)
Signals — Django 4.0.6 ドキュメント 6315
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ith a modified set of INSTALLED_APPS (such as when settings are overridden) and such signals should be connec ... t signals ¶ Signals only sent when running tests . setting_changed ¶ django.test.signals. setting_changed ¶ T ... his signal is sent when the value of a setting is changed through the django.test.TestCase.settin ... gs() context manager or the django.test.override_settings() decorator/context manager. It's actually sent t ...
https://man.plustar.jp/django/ref/signals.html - [similar]
クロスサイトリクエストフォージェリ (CSRF) 対策 — Django 4.0.6 ドキュメント 6269
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... [name=csrfmiddlewaretoken]' ). value ; </ script > Setting the token on the AJAX request ¶ Finally, you'll ne ... s condition. To do this, set the CSRF_FAILURE_VIEW setting. CSRF failures are logged as warnings to the djang ... inst the current host and the CSRF_TRUSTED_ORIGINS setting. This provides protection against cross-subdomain ... able enough under HTTP.) If the CSRF_COOKIE_DOMAIN setting is set, the referer is compared against it. You ca ...
https://man.plustar.jp/django/ref/csrf.html - [similar]
LayerMapping data import utility — Django 4.0.6 ドキュメント 6212
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... using too much memory, set DEBUG to False in your settings. When DEBUG is set to True , Django automatically ... _on_success' (default) or 'autocommit' . transform Setting this to False will disable coordinate transformati ... om their original state in the data source. unique Setting this to the name, or a tuple of names, from the gi ... cessed, however, this default may be overridden by setting this keyword with an integer for the desired inter ...
https://man.plustar.jp/django/ref/contrib/gis/layermapping.html - [similar]
Writing documentation — Django 4.0.6 ドキュメント 6156
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... elpful as: Add :mod:`django.contrib.auth` to your :setting:`INSTALLED_APPS`... This is because Sphinx will ge ... ドキュメントではいくつかの追加拡張を利用しています: Settings: .. setting :: INSTALLED_APPS To link to a settin ... g, use :setting:`INSTALLED_APPS` . Template tags: .. templatetag : ... consider this hypothetical example: First, the ref/settings.txt document could have an overall layout like th ...
https://man.plustar.jp/django/internals/contributing/writing-documentation.html - [similar]
Django 1.5.3 release notes — Django 4.0.6 ドキュメント 6110
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t was possible to bypass the ALLOWED_INCLUDE_ROOTS setting used for security with the ssi template tag by spe ... To facilitate this, Django 1.5.3 introduces a new setting, SESSION_SERIALIZER , to customize the session ser ... lization format. For backwards compatibility, this setting defaults to using pickle . While JSON serializatio ...
https://man.plustar.jp/django/releases/1.5.3.html - [similar]
Django 3.0 リリースノート — Django 4.0.6 ドキュメント 6110
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... for the furlong unit in Distance . The GEOIP_PATH setting now supports pathlib.Path . The GeoIP2 class now a ... e widget used when ordering forms via can_order by setting the ordering_widget attribute or overriding get_or ... GUAGE_COOKIE_SAMESITE , and LANGUAGE_COOKIE_SECURE settings to set the HttpOnly , SameSite , and Secure flags ... on language cookies. The default values of these settings preserve the previous behavior. Added support and ...
https://man.plustar.jp/django/releases/3.0.html - [similar]
Django 3.2 release notes — Django 4.0.6 ドキュメント 6110
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... y can now be controlled via the DEFAULT_AUTO_FIELD setting and AppConfig.default_auto_field attribute. No mor ... l provide a warning if you do not have an explicit setting for DEFAULT_AUTO_FIELD . When changing the value o ... a dark theme that is enabled according to browser settings. See Theming support for more details. ModelAdmin ... new ExclusionConstraint.opclasses attribute allows setting PostgreSQL operator classes. The new JSONBAgg.orde ...
https://man.plustar.jp/django/releases/3.2.html - [similar]
データベース — Django 4.0.6 ドキュメント 6053
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... test release is recommended. PostgreSQL connection settings ¶ See HOST for details. To connect using a servic ... part of your database configuration in DATABASES : settings.py ¶ DATABASES = { 'default' : { 'ENGINE' : 'djan ... SE_TZ is False , the value of the global TIME_ZONE setting. If these parameters already have the correct valu ... rver-side cursors for a connection in DATABASES by setting DISABLE_SERVER_SIDE_CURSORS to True . To benefit f ...
https://man.plustar.jp/django/ref/databases.html - [similar]
Django 0.96 リリースノート — Django 4.0.6 ドキュメント 6053
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... o. To use this backend, change the DATABASE_ENGINE setting in your Django settings file from this: DATABASE_E ... that some features, like the new DATABASE_OPTIONS setting (see the databases documentation for details), are ... r ( text__contains = ' \\ ' ) Removed ENABLE_PSYCO setting ¶ The ENABLE_PSYCO setting no longer exists. If yo ... ur settings file includes ENABLE_PSYCO it will have no effect ...
https://man.plustar.jp/django/releases/0.96.html - [similar]
The flatpages app — Django 4.0.6 ドキュメント 6008
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ding 'django.contrib.sites' to your INSTALLED_APPS setting, if it's not already in there. Also make sure you' ... ve correctly set SITE_ID to the ID of the site the settings file represents. This will usually be 1 (i.e. SIT ... 'django.contrib.flatpages' to your INSTALLED_APPS setting. Then either: Add an entry in your URLconf. For ex ... are.FlatpageFallbackMiddleware' to your MIDDLEWARE setting. Run the command manage.py migrate . How it works ...
https://man.plustar.jp/django/ref/contrib/flatpages.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT