検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 216 for contrib (0.073 sec.)
設定 — Django 4.0.6 ドキュメント 6351
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... で利用できる設定とそのデフォルト値をリストしました。contrib アプリで提供される設定のリストは、core の設定のトピ ... tead of in a cookie. It requires the use of django.contrib.sessions . Storing the CSRF token in a cookie (Dja ... ue too. For example, you can't include both django.contrib.auth and myproject.auth . However, you can relabel ... ou are using any other session backend than django.contrib.sessions.backends.cache , or are using the default ...
https://man.plustar.jp/django/ref/settings.html - [similar]
How to authenticate using REMOTE_USER — Django 4.0.6 ドキュメント 6320
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... re , and RemoteUserBackend classes found in django.contrib.auth . 設定 ¶ 最初に次のように MIDDLEWARE 設定に d ... jango.contrib.auth.middleware.RemoteUserMiddleware を加える必要が ... あります。これは django.contrib.auth.middleware.AuthenticationMiddleware の 後に 追 ... 加してください: MIDDLEWARE = [ '...' , 'django.contrib.auth.middleware.AuthenticationMiddleware' , 'djang ...
https://man.plustar.jp/django/howto/auth-remote-user.html - [similar]
contenttypes フレームワーク — Django 4.0.6 ドキュメント 6257
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... on is the ContentType model, which lives at django.contrib.contenttypes.models.ContentType . Instances of Con ... LED_APPS list, you can enable it by adding 'django.contrib.contenttypes' to your INSTALLED_APPS setting. It's ... rt of the application's Python import path; django.contrib.contenttypes , for example, becomes an app_label o ... manage.py migrate to install it, the model django.contrib.sites.models.Site will be installed into your data ...
https://man.plustar.jp/django/ref/contrib/contenttypes.html - [similar]
Django 1.11 リリースノート — Django 4.0.6 ドキュメント 6257
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ドを参照することができます。 マイナーな機能 ¶ django.contrib.admin ¶ ModelAdmin.date_hierarchy はリレーションシ ... よってオーバーライドできるようになりました。 django.contrib.auth ¶ PBKDF2 パスワードハッシュに対するデフォルト ... ポート時に呼ぶことができるようになりました。 django.contrib.contenttypes ¶ When stale content types are detect ... migrate rather than in a separate command). django.contrib.gis ¶ 新たな GEOSGeometry.from_gml() と OGRGeometr ...
https://man.plustar.jp/django/releases/1.11.html - [similar]
Django 1.5.2 release notes — Django 4.0.6 ドキュメント 6194
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... go relies on user input in some cases (e.g. django.contrib.auth.views.login() , django.contrib.comments , and ... nore JavaScript there. XSS vulnerability in django.contrib.admin ¶ If a URLField is used in Django 1.5, it di ... (#20157 and #20257). Fixed a regression in django.contrib.gis in the Google Map output on Python 3 (#20773). ... t_many() method on Python 3 (#20722). Fixed django.contrib.humanize translation syntax errors. Affected langu ...
https://man.plustar.jp/django/releases/1.5.2.html - [similar]
Full text search — Django 4.0.6 ドキュメント 6162
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... text search ¶ The database functions in the django.contrib.postgres.search module ease the use of PostgreSQL' ... and the vector. To use the search lookup, 'django.contrib.postgres' must be in your INSTALLED_APPS . SearchV ... both fields, use a SearchVector : >>> from django.contrib.postgres.search import SearchVector >>> Entry . ob ... differences and syntax. Examples: >>> from django.contrib.postgres.search import SearchQuery >>> SearchQuery ...
https://man.plustar.jp/django/ref/contrib/postgres/search.html - [similar]
システムチェックフレームワーク — Django 4.0.6 ドキュメント 6099
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s and handler registrations. sites : Checks django.contrib.sites configuration. staticfiles : Checks django.c ... ort in historical migrations. fields.W904 : django.contrib.postgres.fields.JSONField is deprecated. Support f ... eared in Django 3.1 and 3.2 . fields.E904 : django.contrib.postgres.fields.JSONField is removed except for su ... nerable to attack. security.W010 : You have django.contrib.sessions in your INSTALLED_APPS but you have not s ...
https://man.plustar.jp/django/ref/checks.html - [similar]
Django 1.5 release notes — Django 4.0.6 ドキュメント 6099
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... hat wanted to use Django's auth framework ( django.contrib.auth ) were forced to use Django's definition of a ... sable apps as well as a step-by-step guide for new contributors in Writing your first patch for Django . マイ ... to present pretty error pages to the user. django.contrib.auth provides a new signal that is emitted wheneve ... been in Python versions < 2.7. The API for django.contrib.admin.ModelAdmin.message_user() method has been mo ...
https://man.plustar.jp/django/releases/1.5.html - [similar]
How to manage static files (e.g. images, JavaScript, CSS) — Django 4.0.6 ドキュ... 6036
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 的ファイルの管理を簡単にするために、Django は django.contrib.staticfiles を提供しています。 このページでは、こう ... 仕方について説明します。 静的ファイルの設定 ¶ django.contrib.staticfiles が設定ファイルの INSTALLED_APPS に含ま ... 的ファイルを配信する必要があります。 開発中に django.contrib.staticfiles を使用する場合には、 DEBUG を True に設 ... すれば、自動的に設定が行われます。(詳しくは、 django.contrib.staticfiles.views.serve() を参照) ただし、この方法 ...
https://man.plustar.jp/django/howto/static-files/index.html - [similar]
django-admin と manage.py — Django 4.0.6 ドキュメント 5847
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... he type that defines the method. If you're dumping contrib.auth Permission objects or contrib.contenttypes Co ... pps listed in INSTALLED_APPS . For example, django.contrib.postgres adds recognition for several PostgreSQL-s ... みからなる文字列も使用できます。 If the staticfiles contrib app is enabled (default in new projects) the runse ... ¶ Some commands are only available when the django.contrib application that implements them has been enabled ...
https://man.plustar.jp/django/ref/django-admin.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT