検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 170 for Http (0.081 sec.)
django.utils.html — Django 4.0.6 ドキュメント 5448
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ise , keep_lazy , keep_lazy_text from django.utils.http import RFC3986_GENDELIMS , RFC3986_SUBDELIMS from ... >"']+)""" ) simple_url_re = _lazy_re_compile ( r "^https?://\[?\w" , re . IGNORECASE ) simple_url_2_re = _ ... lazy_re_compile ( r "^www\.|^(?!http)\w[^@]+\.(com|edu|gov|int|mil|net|org)($|/.*)$" , ... # Tilde is part of RFC3986 Unreserved Characters # https://tools.ietf.org/html/rfc3986#section-2.3 # See a ...
https://man.plustar.jp/django/_modules/django/utils/html.html - [similar]
Django 1.5.2 release notes — Django 4.0.6 ドキュメント 5448
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ty checks for these redirects (namely django.utils.http.is_safe_url() ) didn't check if the scheme is http ...
https://man.plustar.jp/django/releases/1.5.2.html - [similar]
Django 1.6.5 release notes — Django 4.0.6 ドキュメント 5448
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ty checks for these redirects (namely django.utils.http.is_safe_url() ) did not correctly validate some ma ... lformed URLs, such as http:\\\\\\djangoproject.com , which are accepted by so ...
https://man.plustar.jp/django/releases/1.6.5.html - [similar]
Django 1.9 リリースノート — Django 4.0.6 ドキュメント 5448
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... low cross-origin unsafe requests (e.g. POST ) over HTTPS. データベースバックエンド ¶ PostgreSQL バックエン ... , and bulk_create() . Request と Response ¶ Unless HttpResponse.reason_phrase is explicitly set, it now is ... determined by the current value of HttpResponse.status_code . Modifying the value of statu ... of each middleware. Request middleware can now set HttpRequest.urlconf to None to revert any changes made ...
https://man.plustar.jp/django/releases/1.9.html - [similar]
Django 4.0 release notes — Django 4.0.6 ドキュメント 5448
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... TED_ORIGINS setting must include the scheme (e.g. 'http://' or 'https://' ) instead of only the hostname. ... re the dot. For example, change '.example.com' to 'https://*.example.com' . A system check detects any req ... t modern browsers don't honor the X-XSS-Protection HTTP header. You can use Content-Security-Policy withou ... d to lookup_spawns_duplicates() . The undocumented HttpRequest.get_raw_uri() method is removed. The HttpRe ...
https://man.plustar.jp/django/releases/4.0.html - [similar]
Django のショートカット関数 — Django 4.0.6 ドキュメント 5448
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ate with a given context dictionary and returns an HttpResponse object with that rendered text. Django doe ... +xml' ) This example is equivalent to: from django.http import HttpResponse from django.template import lo ... 'myapp/index.html' ) c = { 'foo' : 'bar' } return HttpResponse ( t . render ( c , request ), content_type ... rgs , permanent = False , ** kwargs ) ¶ Returns an HttpResponseRedirect to the appropriate URL for the arg ...
https://man.plustar.jp/django/topics/http/shortcuts.html - [similar]
How to create CSV output — Django 4.0.6 ドキュメント 5391
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... オブジェクトに対して働くことを利用します。Django の HttpResponse オブジェクトもまた、ファイルライクオブジェ ... のです。 以下に例を示します。 import csv from django.http import HttpResponse def some_view ( request ): # C ... reate the HttpResponse object with the appropriate CSV header. re ... sponse = HttpResponse ( content_type = 'text/csv' , headers = { ...
https://man.plustar.jp/django/howto/outputting-csv.html - [similar]
Django 1.1.4 リリースノート — Django 4.0.6 ドキュメント 5391
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... lkits add an X-Requested-With header when using XMLHttpRequest. Browsers have strict same-origin policies ... regarding XMLHttpRequest. In the context of a browser, the only way ... stom header of this nature can be added is with XMLHttpRequest. Therefore, for ease of use, we did not app ... ects which can allow an attacker to provide custom HTTP headers on a request to any website. This can allo ...
https://man.plustar.jp/django/releases/1.1.4.html - [similar]
Django 2.1 リリースノート — Django 4.0.6 ドキュメント 5391
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s prefetch_related() . Request と Response ¶ Added HttpRequest.get_full_path_info() . Added the samesite a ... rgument to HttpResponse.set_cookie() to allow setting the SameSite ... ow a required argument of private API django.utils.http.is_safe_url() . The multiple attribute rendered by ... r of the new ForcePolygonCW function. django.utils.http.cookie_date() is deprecated in favor of http_date( ...
https://man.plustar.jp/django/releases/2.1.html - [similar]
ミドルウェア (Middleware) — Django 4.0.6 ドキュメント 5391
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... view_func , view_args , view_kwargs ) ¶ request は HttpRequest クラスのオブジェクトです。 view_func は、直 ... ビューを呼び出す直前に呼び出されます。 None もしくは HttpResponse オブジェクトを返す必要があります。 None を ... ドルウェアを実行し、さらに適切なビューを実行します。 HttpResponse オブジェクトを返す場合、Django はわざわざ適 ... ーを呼び出すことはしません; レスポンスミドルウェアを HttpResponse に適用し、結果を返します。 注釈 ビューが実 ...
https://man.plustar.jp/django/topics/http/middleware.html - [similar]