検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 187 for request (0.083 sec.)
テストツール — Django 4.0.6 ドキュメント 5813
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e, this will send a User-Agent HTTP header in each request: >>> c = Client ( HTTP_USER_AGENT = 'Mozilla/5.0' ... rialization that's described in post() . The raise_request_exception argument allows controlling whether or n ... ot exceptions raised during the request should also be raised in the test. Defaults to Tru ... ay to test code paths that use the django.http.HttpRequest.accepts() method. CGI の仕様 **extra で送信されるヘ ...
https://man.plustar.jp/django/topics/testing/tools.html - [similar]
Django のセキュリティポリシー — Django 4.0.6 ドキュメント 5769
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n Moderate : Cross site scripting (XSS) Cross site request forgery (CSRF) Denial-of-service attacks Broken au ... these types of entities to the notification list. Requesting notifications ¶ If you believe that you, or an ... Please use the subject line "Security notification request". Your request must include the following informat ... isted above. A detailed explanation of why you are requesting security notifications. Again, please keep in m ...
https://man.plustar.jp/django/internals/security.html - [similar]
テンプレート — Django 4.0.6 ドキュメント 5769
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... render() for rendering a template. django.template.RequestContext is a subclass of Context that stores the cu ... rrent HttpRequest and runs template context processors. The common A ... data is passed in a plain dict and the current HttpRequest is passed separately if needed. ローダー ¶ テンプレ ... トプロセッサ ¶ コンテキストプロセッサは、現在の HttpRequest を引数としておけとり、データの dict をレンダリング ...
https://man.plustar.jp/django/topics/templates.html - [similar]
How to implement a custom template backend — Django 4.0.6 ドキュメント 5703
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... te = template def render ( self , context = None , request = None ): if context is None : context = {} if req ... uest is not None : context [ 'request' ] = request context [ 'csrf_input' ] = csrf_input ... _lazy ( request ) context [ 'csrf_token' ] = csrf_token_lazy ( req ...
https://man.plustar.jp/django/howto/custom-template-backend.html - [similar]
django.urls utility functions — Django 4.0.6 ドキュメント 5703
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... mple: from django.urls import reverse def myview ( request ): return HttpResponseRedirect ( reverse ( 'arch-s ... import Http404 , HttpResponseRedirect def myview ( request ): next = request . META . get ( 'HTTP_REFERER' , ... ponse = HttpResponseRedirect ( next ) # modify the request and response as required, e.g. change locale # and ... args = resolve ( urlparse ( next )[ 2 ]) kwargs [ 'request' ] = request try : view ( * args , ** kwargs ) exc ...
https://man.plustar.jp/django/ref/urlresolvers.html - [similar]
django.urls functions for use in URLconfs — Django 4.0.6 ドキュメント 5703
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ype conversion. When a route ends with $ the whole requested URL, matching against path_info , must match the ... hat should be called if the HTTP client has sent a request that caused an error condition and a response with ... 400. By default, this is django.views.defaults.bad_request() . If you implement a custom view, be sure it acc ... epts request and exception arguments and returns an HttpRespons ...
https://man.plustar.jp/django/ref/urls.html - [similar]
URL ディスパッチャ — Django 4.0.6 ドキュメント 5670
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... の値は ROOT_URLCONF に設定されています。ただし、 HttpRequest オブジェクトに urlconf という属性が設定されていた場 ... order, and stops at the first one that matches the requested URL, matching against path_info . Once one of th ... The view gets passed the following arguments: HttpRequest のインスタンス。 If the matched URL pattern contai ... r example, it's articles , not /articles . Example requests: A request to /articles/2005/03/ would match the ...
https://man.plustar.jp/django/topics/http/urls.html - [similar]
Submitting patches — Django 4.0.6 ドキュメント 5637
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rred way to provide the patch is using GitHub pull requests without a Trac ticket. See the Working with Git a ... nd GitHub for more details on how to use pull requests. "Claiming" tickets ¶ In an open-source project w ... bmit changes." 注釈 The Django software foundation requests that anyone contributing more than a trivial patc ... rovide regular updates, and you don't respond to a request for a progress report, your claim on the ticket ma ...
https://man.plustar.jp/django/internals/contributing/writing-code/submitting-pat... - [similar]
How to authenticate using REMOTE_USER — Django 4.0.6 ドキュメント 5593
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n. In Django, REMOTE_USER is made available in the request.META attribute. Django can be configured to make u ... kend' , ] この設定を行うと RemoteUserMiddleware は request.META['REMOTE_USER'] 内の username を検索し、 Remot ... e をサブクラス化して、クラスの header 属性を適切な request.META のキー名に設定してください: from django.contr ... TTP ヘッダの X-Auth-User と X-Auth_User は両方とも request.META のキー HTTP_X_AUTH_USER に正規化されてしまうの ...
https://man.plustar.jp/django/howto/auth-remote-user.html - [similar]
Django 1.8.15 リリースノート — Django 4.0.6 ドキュメント 5593
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ing to a bypass of CSRF protection. The parser for request.COOKIES is simplified to better match the behavior ... of browsers and to mitigate this attack. request.COOKIES may now contain cookies that are invalid a ... e , COOKIES , cookies , up , トピック , previous , request クイック検索 Last update: 2022年6月01日 « previous ...
https://man.plustar.jp/django/releases/1.8.15.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT