検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 145 for check (0.011 sec.)
How to authenticate against Django's user database from Apache — Django 4.0.6 ... 7151
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... UserScript directive tells mod_wsgi to execute the check_password function in specified wsgi script, passin ... site's authentication mechanisms by importing the check_password function: import os os . environ [ 'DJANG ... ' from django.contrib.auth.handlers.modwsgi import check_password from django.core.handlers.wsgi import WSG ... . from django.contrib.auth.handlers.modwsgi import check_password , groups_for_user Requests for /secret/ w ...
https://man.plustar.jp/django/howto/deployment/wsgi/apache-auth.html - [similar]
Django 1.7.1 release notes — Django 4.0.6 ドキュメント 7151
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Unicode characters ( #22882 ). Reinstated missing CHECK SQL clauses which were omitted on some backends wh ... ). Made the admindocs view to browse view details check if the view specified in the URL exists in the URL ... containing invalid content ( #23638 ). The system check framework now raises error models.E020 when the cl ... ass method Model.check() is unreachable ( #23615 ). Made the Oracle test ...
https://man.plustar.jp/django/releases/1.7.1.html - [similar]
django.utils.translation — Django 4.0.6 ドキュメント 6927
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... st" , "get_language_info" , "get_language_bidi" , "check_for_language" , "to_language" , "to_locale" , "tem ... n _trans . get_language_bidi () [ドキュメント] def check_for_language ( lang_code ): return _trans . check_ ... ュメント] def get_language_from_request ( request , check_path = False ): return _trans . get_language_from_ ... request ( request , check_path ) def get_language_from_path ( path ): return ...
https://man.plustar.jp/django/_modules/django/utils/translation.html - [similar]
Django 2.2 リリースノート — Django 4.0.6 ドキュメント 6774
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... . What's new in Django 2.2 ¶ Constraints ¶ The new CheckConstraint and UniqueConstraint classes enable addi ... ert rows that fail uniqueness constraints or other checks. The new ExtractIsoYear function extracts ISO-860 ... The new SimpleTestCase.assertURLEqual() assertion checks for a given URL, ignoring the ordering of the que ... blespaces. Deferrable database constraints are now checked at the end of each TestCase test on SQLite 3.20+ ...
https://man.plustar.jp/django/releases/2.2.html - [similar]
索引 — Django 4.0.6 ドキュメント 6703
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... オプション --buffer test コマンドラインオプション --check makemigrations コマンドラインオプション migrate コ ... --database changepassword コマンドラインオプション check コマンドラインオプション createcachetable コマンド ... ult diffsettings コマンドラインオプション --deploy check コマンドラインオプション --domain makemessages コマ ... startproject コマンドラインオプション --fail-level check コマンドラインオプション --failfast test コマンドラ ...
https://man.plustar.jp/django/genindex.html - [similar]
How is Django Formed? — Django 4.0.6 ドキュメント 6703
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... elease blockers are left for the upcoming release. Check with the other mergers to make sure they don't hav ... the release notes contain the correct date. Double-check that the release notes mention deprecation timelin ... tion any changes in Python version support. Double-check that the release notes index has a link to the not ... man _build/man/django-admin.1 # do a quick sanity check $ cp _build/man/django-admin.1 man/django-admin.1 ...
https://man.plustar.jp/django/internals/howto-release-django.html - [similar]
django.contrib.auth — Django 4.0.6 ドキュメント 6703
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... log in. Authentication backends aren't required to check for the is_active flag but the default backend ( M ... jects inactive users. Be aware that the permission-checking methods such as has_perm() and the authenticati ... に、パスワードは使用に適さないパスワードになります。 check_password ( raw_password ) ¶ 与えられた生の文字列が ... 字列を付けることと同じではありません。ユーザに対する check_password() は True を返しません。 User オブジェクト ...
https://man.plustar.jp/django/ref/contrib/auth.html - [similar]
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 6703
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ct_or_404 ( User , pk = user_id ) # any permission check will cache the current set of permissions user . h ... , ) user . user_permissions . add ( permission ) # Checking the cached permission set user . has_perm ( 'my ... な方法 ¶ The raw way to limit access to pages is to check request.user.is_authenticated and either redirect ... .user in the view directly. For example, this view checks to make sure the user has an email in the desired ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
django.core.signing — Django 4.0.6 ドキュメント 6620
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ash of "$first_component:$secret" signing.loads(s) checks the signature and returns the deserialized object ... save space, using the compress=True argument. This checks if compression actually helps and only applies co ... algorithm. If compress is True (not the default), check if compressing using zlib can save some space. Pre ... SON string. If compress is True (not the default), check if compressing using zlib can save some space. Pre ...
https://man.plustar.jp/django/_modules/django/core/signing.html - [similar]
django.dispatch.dispatcher — Django 4.0.6 ドキュメント 6549
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... from django.conf import settings # If DEBUG is on, check that we got a good receiver if settings . configur ... peError ( "Signal receivers must be callable." ) # Check for **kwargs if not func_accepts_kwargs ( receiver ... : ref = weakref . ref receiver_object = receiver # Check for bound methods if hasattr ( receiver , "__self_ ... of receivers to get resolved, live receivers. This checks for weak references and resolves them, then retur ...
https://man.plustar.jp/django/_modules/django/dispatch/dispatcher.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT