検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 138 for settings (0.036 sec.)
Django 3.1 release notes — Django 4.0.6 ドキュメント 6053
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ted as of this release . DEFAULT_HASHING_ALGORITHM settings ¶ The new DEFAULT_HASHING_ALGORITHM transitional s ... _substitute and SafeExceptionReporterFilter.hidden_settings attributes allow customization of sensitive settin ... ts DEFAULT_EXCEPTION_REPORTER_FILTER when applying settings filtering. The new DEFAULT_EXCEPTION_REPORTER allo ... UNCATE statements for tables which don't require resetting sequences. SQLite functions are now marked as deter ...
https://man.plustar.jp/django/releases/3.1.html - [similar]
Django 1.8 リリースノート — Django 4.0.6 ドキュメント 5957
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... -deploy option allows you to check your production settings file for ways to increase the security of your sit ... with the EMAIL_SSL_CERTFILE and EMAIL_SSL_KEYFILE settings. The SMTP EmailBackend now supports setting the ti ... attribute to test client responses. Added several settings that allow customization of test tablespace parame ... LE_MAXSIZE and DATAFILE_TMP_MAXSIZE . The override_settings() decorator can now affect the master router in DA ...
https://man.plustar.jp/django/releases/1.8.html - [similar]
django.contrib.messages.middleware — Django 4.0.6 ドキュメント 5909
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .middleware のソースコード from django.conf import settings from django.contrib.messages.storage import defaul ... ges . update ( response ) if unstored_messages and settings . DEBUG : raise ValueError ( "Not all temporary me ...
https://man.plustar.jp/django/_modules/django/contrib/messages/middleware.html - [similar]
はじめての Django アプリ作成、その2 — Django 4.0.6 ドキュメント 5909
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 進んでください。 Database の設定 ¶ それでは、 mysite/settings.py を開いてください。これは、 Django の設定を表現す ... ンタラクティブプロンプトで実行してください。 mysite/settings.py のデータベースユーザに 「データベース作成」の権 ... ばデータベースファイルが自動で生成されます。 mysite/settings.py を編集する際、 TIME_ZONE に自分のタイムゾーンも ... ecessary database tables according to the database settings in your mysite/settings.py file and the database m ...
https://man.plustar.jp/django/intro/tutorial02.html - [similar]
The staticfiles app — Django 4.0.6 ドキュメント 5909
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ow to deploy static files . 設定 ¶ See staticfiles settings for details on the following settings: STATIC_ROOT ... age argument. For example: from django.conf import settings from django.contrib.staticfiles.storage import ( M ... manifest_storage = StaticFilesStorage ( location = settings . BASE_DIR ) super () . __init__ ( * args , manife ... s automatically enabled by runserver (with a DEBUG setting set to True ). To use the view with a different loc ...
https://man.plustar.jp/django/ref/contrib/staticfiles.html - [similar]
Porting your apps from Django 0.96 to 1.0 — Django 4.0.6 ドキュメント 5909
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... into an ImportError when Django fails to find the settings module and a RuntimeError when you try to reconfig ... ure settings after having already used them. LOGIN_URL has move ... L constant moved from django.contrib.auth into the settings module. Instead of using from django.contrib.auth ... import LOGIN_URL refer to settings.LOGIN_URL . APPEND_SLASH behavior has been updated ...
https://man.plustar.jp/django/releases/1.0-porting-guide.html - [similar]
Django 1.9 リリースノート — Django 4.0.6 ドキュメント 5909
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ject containing a translations catalog, formatting settings, and a plural rule. get_language_info テンプレート ... nnect to the database using the password from your settings file (instead of requiring it to be manually enter ... have to adjust DatabaseCreation.get_test_db_clone_settings() . Default settings that were tuples are now list ... s ¶ The default settings in django.conf.global_settings were a combination ...
https://man.plustar.jp/django/releases/1.9.html - [similar]
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 5909
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... redirect to a login page: from django.conf import settings from django.shortcuts import redirect def my_view ... enticated : return redirect ( ' %s ?next= %s ' % ( settings . LOGIN_URL , request . path )) # ... もしくはエラ ... 処理を行います: もしユーザがログインしていなければ、 settings.LOGIN_URL にリダイレクトし、クエリ文字列に現在の絶 ... ): ... `login_url` のパラメータを定義しない場合、 settings.LOGIN_URL が設定されかつログイン用ビューが適切に配 ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
アプリケーション — Django 4.0.6 ドキュメント 5874
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ンを指します。プロジェクトの Python パッケージは主に settings モジュールで定義されますが、通常は他のファイルも含 ... ite プロジェクトディレクトリが作成され、その中には settings.py 、 urls.py 、 asgi.py 、 wsgi.py などのファイル ... nfig ): verbose_name = "Jazz Manouche" # anthology/settings.py INSTALLED_APPS = [ 'anthology.apps.JazzManouche ... base configuration is separate from the production settings, manage.py test would still execute some queries a ...
https://man.plustar.jp/django/ref/applications.html - [similar]
Django 1.4 documentation 5826
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... しょう: mysite / manage . py mysite / __init__ . py settings . py urls . py wsgi . py 自分のレイアウトと違う場合 ... port の際に 使用する名前です (例えば import mysite.settings ) 。 mysite/__init__.py : このディレクトリが Pytho ... トの パッケージの詳しい説明 を読んで下さい。) mysite/settings.py : Django プロジェクトの設定ファイルです。 設定の ... ls ... 0 errors found . Django version 1.4 , using settings 'mysite.settings' Development server is running at ...
https://man.plustar.jp/django/contents.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT