検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 170 for Http (0.039 sec.)
django.utils.http — Django 4.0.6 ドキュメント 7918
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... able of contents | Index | Modules up django.utils.http のソースコード import base64 import datetime impor ... s and iterators, when doseq=True, to # work around https://bugs.python.org/issue31706. query_val = [] for ... encode ( query_params , doseq ) [ドキュメント] def http_date ( epoch_seconds = None ): """ Format the time ... to match the RFC1123 date format as specified by HTTP RFC7231 section 7.1.1.1. `epoch_seconds` is a floa ...
https://man.plustar.jp/django/_modules/django/utils/http.html - [similar]
How to authenticate using REMOTE_USER — Django 4.0.6 ドキュメント 7207
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ださい。 認証メカニズムが REMOTE_USER 以外のカスタム HTTP ヘッダを使っている場合には、以下の例のように Remot ... aderMiddleware ( RemoteUserMiddleware ): header = 'HTTP_AUTHUSER' 警告 もし RemoteUserMiddleware のサブクラ ... スをカスタム HTTP ヘッダーとともに使う場合は、慎重になってください. ... てくるエンドユーザーを許可してはいけません。例えば、 HTTP ヘッダの X-Auth-User と X-Auth_User は両方とも req ...
https://man.plustar.jp/django/howto/auth-remote-user.html - [similar]
索引 — Django 4.0.6 ドキュメント 7061
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... uffle test コマンドラインオプション --sitemap-uses-http ping_google コマンドラインオプション --skip-checks ... elitem__() (backends.base.SessionBase のメソッド) (HttpResponse のメソッド) __eq__() (Model のメソッド) __ ... etitem__() (backends.base.SessionBase のメソッド) (HttpResponse のメソッド) (OGRGeometry のメソッド) (Quer ... メソッド) __hash__() (Model のメソッド) __init__() (HttpResponse のメソッド) (QueryDict のメソッド) (reques ...
https://man.plustar.jp/django/genindex.html - [similar]
TemplateResponse and SimpleTemplateResponse — Django 4.0.6 ドキュメント 7061
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... lateResponse and SimpleTemplateResponse ¶ Standard HttpResponse objects are static structures. They are pr ... ponse provides a way to do just that. Unlike basic HttpResponse objects, TemplateResponse objects retain t ... ct with the given template, context, content type, HTTP status, and charset. template A backend-dependent ... dictionary. content_type The value included in the HTTP Content-Type header, including the MIME type speci ...
https://man.plustar.jp/django/ref/template-response.html - [similar]
Pythonモジュール索引 — Django 4.0.6 ドキュメント 7004
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s.widgets Django's built-in form widgets. h django.http Classes dealing with HTTP requests and responses. ... GZipped content for performance. django.middleware.http Middleware handling advanced HTTP features. django ... mplate.response Classes dealing with lazy-rendered HTTP responses. django.test Testing tools for Django ap ... ango.utils.html HTML helper functions django.utils.http HTTP helper functions. (URL encoding, cookie handl ...
https://man.plustar.jp/django/py-modindex.html - [similar]
設定 — Django 4.0.6 ドキュメント 6914
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 見安全な設定の Web サーバでも晒される可能性が高い、 HTTP Host header 攻撃 を防ぐことができます。 このリスト ... ) が、このリストのどれとも一致しない場合、 django.http.HttpRequest.get_host() は SuspiciousOperation 例外 ... わっていなかった場合に、末尾に / を追加した URL への HTTP リダイレクトを発行します。ただし、リダイレクトする ... ease see the CSRF limitations section. CSRF_COOKIE_HTTPONLY ¶ デフォルト値: False Whether to use HttpOnly ...
https://man.plustar.jp/django/ref/settings.html - [similar]
django.utils.log — Django 4.0.6 ドキュメント 6813
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... This sends an email to the site admins on every # HTTP 500 error. Depending on DEBUG, all other log recor ... it should be the common case msg = self . style . HTTP_SUCCESS ( msg ) elif 100 <= status_code < 200 : ms ... g = self . style . HTTP_INFO ( msg ) elif status_code == 304 : msg = self ... . style . HTTP_NOT_MODIFIED ( msg ) elif 300 <= status_code < 400 ...
https://man.plustar.jp/django/_modules/django/utils/log.html - [similar]
Django の例外 — Django 4.0.6 ドキュメント 6756
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... l it is logged at the Error level and results in a HttpResponseBadRequest . See the logging documentation ... eaches the ASGI/WSGI handler level it results in a HttpResponseBadRequest . RequestAborted ¶ exception Req ... ] ¶ The RequestAborted exception is raised when an HTTP body being read in by the handler is cut off midst ... erver closes the connection. It is internal to the HTTP handler modules and you are unlikely to see it els ...
https://man.plustar.jp/django/ref/exceptions.html - [similar]
Django におけるセキュリティ — Django 4.0.6 ドキュメント 6655
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e secret, which is user specific (using a cookie). HTTPS で接続されている場合、 CsrfViewMiddleware は HTTP ... 一オリジンのURLにセットされているかをチェックします。HTTPSでは強化されたセキュリティを利用できるため、可能な ... り、サポートされたブラウザにはHSTSを使用するなどしてHTTPS接続を使用することが不可欠です。 どうしても必要とい ... このミドルウェアを使用することを強く推奨します。 SSL/HTTPS ¶ セキュリティの観点から、サイトを HTTPS の下でデ ...
https://man.plustar.jp/django/topics/security.html - [similar]
The sitemap framework — Django 4.0.6 ドキュメント 6553
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ood: '/foo/bar/' Bad: 'example.com/foo/bar/' Bad: 'https://example.com/foo/bar/' If location isn't provide ... ned by items() . To specify a protocol other than 'http' , use protocol . lastmod ¶ Optional. Either a met ... ¶ Optional. This attribute defines the protocol ( 'http' or 'https' ) of the URLs in the sitemap. If it is ... outside the context of a request, the default is 'http' . バージョン 4.0 で非推奨: The default protocol f ...
https://man.plustar.jp/django/ref/contrib/sitemaps.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT