検索

phrase: max: clip:
target: order:
Results of 191 - 200 of about 312 for use (0.059 sec.)
Django 1.7.3 release notes — Django 4.0.6 ドキュメント 4142
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... d prepending HTTP_ . For instance, a header X-Auth-User would become HTTP_X_AUTH_USER in the WSGI environ ... dashes and headers containing underscores: X-Auth-User and X-Auth_User both become HTTP_X_AUTH_USER . Th ... is means that if a header is used in a security-sensitive way (for instance, passin ... oxy carefully strips any incoming value for X-Auth-User , an attacker may be able to provide an X-Auth_Us ...
https://man.plustar.jp/django/releases/1.7.3.html - [similar]
Django 1.9.2 リリースノート — Django 4.0.6 ドキュメント 4142
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ompatible change that hopefully doesn't affect any users. Security issue: User with "change" but not "add ... ModelAdmin 's with save_as=True ¶ If a ModelAdmin uses save_as=True (not the default), the admin provide ... ssion from raising a "Permission Denied" error for users without the "add" permission. Backwards incompat ... files now have some invalid Python syntax. This causes difficulties for packaging systems that unconditi ...
https://man.plustar.jp/django/releases/1.9.2.html - [similar]
Django 1.9.3 リリースノート — Django 4.0.6 ドキュメント 4142
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 12: Malicious redirect and possible XSS attack via user-supplied redirect URLs containing basic auth ¶ Dj ... ango relies on user input in some cases (e.g. django.contrib.auth.vie ... ws.login() and i18n ) to redirect the user to an "on success" URL. The security check for th ... xample.com , but redirecting to this URL sends the user to attacker.com . Also, if a developer relies on ...
https://man.plustar.jp/django/releases/1.9.3.html - [similar]
Django の認証方法のカスタマイズ — Django 4.0.6 ドキュメント 4142
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... デルに組み込むことができるでしょう。 あなたは標準の User モデルを 拡張 、もしくは完全にカスタマイズしたモデ ... asic authentication backend that checks the Django users database and queries the built-in permissions. I ... te limiting mechanism in a custom auth backend, or use the mechanisms provided by most web servers. AUTHE ... ドの実装 ¶ 認証バックエンドは2つの必須メソッド: get_user(user_id) と authenticate(request, **credentials) ...
https://man.plustar.jp/django/topics/auth/customizing.html - [similar]
モデル — Django 4.0.6 ドキュメント 4142
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... explicitly specify the foreign keys Django should use for the relationship using ManyToManyField.through ... . Now that you have set up your ManyToManyField to use your intermediary model ( Membership , in this cas ... go Starr>, <Person: Paul McCartney>]> You can also use add() , create() , or set() to create relationship ... erson: Paul McCartney>]> The clear() method can be used to remove all many-to-many relationships for an i ...
https://man.plustar.jp/django/topics/db/models.html - [similar]
国際化とローカル化 — Django 4.0.6 ドキュメント 4142
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 式の設定がされるべきかを指定できるようにします。 It uses these hooks to localize web apps for particular u ... n をご覧ください。 警告 翻訳と表示形式は、それぞれ USE_I18N と USE_L10N 設定によって制御されますが、どちら ...
https://man.plustar.jp/django/topics/i18n/index.html - [similar]
django.contrib.gis.measure — Django 4.0.6 ドキュメント 4105
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .nz> # All rights reserved. # # Redistribution and use in source and binary forms, with or without modifi ... Distance nor the names of its contributors may be used # to endorse or promote products derived from thi ... UREMENT OF SUBSTITUTE GOODS OR SERVICES; # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEV ... ER CAUSED AND ON # ANY THEORY OF LIABILITY, WHETHER IN CONT ...
https://man.plustar.jp/django/_modules/django/contrib/gis/measure.html - [similar]
django.utils.http — Django 4.0.6 ドキュメント 4105
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ode as original_urlencode from urllib.parse import uses_params from django.utils.datastructures import Mu ... M:SS GMT'. """ return formatdate ( epoch_seconds , usegmt = True ) def parse_http_date ( date ): """ Pars ... even if only the first one is still in widespread use. Return an integer expressed in seconds since the ... ate ) except Exception : pass # Base 36 functions: useful for generating compact URLs [ドキュメント] def ...
https://man.plustar.jp/django/_modules/django/utils/http.html - [similar]
How to create custom model fields — Django 4.0.6 ドキュメント 4105
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... h = south self . west = west # ... (other possibly useful methods omitted) ... これはDjangoの仕様を使って ... o reconstruct that state. Pay extra attention if you set new default values for arguments in the Field su ... As always, you should document your field type, so users will know what it is. In addition to providing a ... docstring for it, which is useful for developers, you can also allow users of the ...
https://man.plustar.jp/django/howto/custom-model-fields.html - [similar]
How to override templates — Django 4.0.6 ドキュメント 4105
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... of one of your project's apps, it's more common to use the first method and put template overrides in a p ... mplement the entire template. For example, you can use this technique to add a custom logo to the admin/b ... ates a file at templates/admin/base_site.html that uses the configured project-level templates directory ... om admin/base_site.html . This technique works because the template loader does not consider the already ...
https://man.plustar.jp/django/howto/overriding-templates.html - [similar]