検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 187 for request (0.082 sec.)
Django 1.4.4 release notes — Django 4.0.6 ドキュメント 5209
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t list of valid host/domain names for this site. A request with a Host header not matching an entry in this l ... ist will raise SuspiciousOperation if request.get_host() is called. For full details see the doc ... Prevented transaction state from leaking from one request to the next (#19707). Changed an SQL command synta ...
https://man.plustar.jp/django/releases/1.4.4.html - [similar]
タイムゾーン — Django 4.0.6 ドキュメント 5209
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... get_response = get_response def __call__ ( self , request ): tzname = request . session . get ( 'django_time ... ezone . deactivate () return self . get_response ( request ) カレントタイムゾーンをセットできるビューを作成し ... York' : 'America/New_York' , } def set_timezone ( request ): if request . method == 'POST' : request . sessi ... on [ 'django_timezone' ] = request . POST [ 'timezone' ] return redirect ( '/' ) else ...
https://man.plustar.jp/django/topics/i18n/timezones.html - [similar]
Django 1.4.11 release notes — Django 4.0.6 ドキュメント 5176
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... and Django's own processing consists of matching a requested URL against those patterns to determine the appr ... g framework and a system for preventing cross-site request forgery (CSRF) attacks . The CSRF-protection syste ... cookie which must be sent by the client on future requests and, in forms, a hidden value which must be submi ... unauthenticated) clients. When the first anonymous request to a given page is by a client which did not have ...
https://man.plustar.jp/django/releases/1.4.11.html - [similar]
Django 1.5.6 release notes — Django 4.0.6 ドキュメント 5176
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... and Django's own processing consists of matching a requested URL against those patterns to determine the appr ... g framework and a system for preventing cross-site request forgery (CSRF) attacks . The CSRF-protection syste ... cookie which must be sent by the client on future requests and, in forms, a hidden value which must be submi ... unauthenticated) clients. When the first anonymous request to a given page is by a client which did not have ...
https://man.plustar.jp/django/releases/1.5.6.html - [similar]
データベースのトランザクション — Django 4.0.6 ドキュメント 5176
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... の動作を有効化したい各データベースの設定で、 ATOMIC_REQUESTS を True にセットしてください。 これは、次のように ... レートレスポンスのレンダリングを実行します。 ATOMIC_REQUESTS が有効な場合、ビューがトランザクション内で実行する ... のを防ぐことができます。 non_atomic_requests ( using = None ) [ソース] ¶ このデコレータは、与え ... られたビューのために ATOMIC_REQUESTS を無効化します。 from django.db import transactio ...
https://man.plustar.jp/django/topics/db/transactions.html - [similar]
Django のローカライズ — Django 4.0.6 ドキュメント 5144
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n, or -- in case the language doesn't exist yet -- request a new language team by clicking on the "Request la ... nator who is responsible to review your membership request. You can also contact the team coordinator to clar ...
https://man.plustar.jp/django/internals/contributing/localizing.html - [similar]
Django 1.3 release notes — Django 4.0.6 ドキュメント 5144
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... y been on resolving smaller, long-standing feature requests, but that hasn't prevented a few fairly significa ... y, cache key creation has been updated to take the request query string into account on GET requests. Finally ... n on adding lots of smaller, long standing feature requests. These include: Improved tools for accessing and ... the current Site object in the sites framework . A RequestFactory for mocking requests in tests. A new test a ...
https://man.plustar.jp/django/releases/1.3.html - [similar]
Django 1.2.5 release notes — Django 4.0.6 ドキュメント 5100
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rds incompatible changes ¶ CSRF exception for AJAX requests ¶ Django includes a CSRF-protection mechanism, wh ... .5, our CSRF protection made an exception for AJAX requests, on the following basis: Many AJAX toolkits add a ... n X-Requested-With header when using XMLHttpRequest. Browsers ... have strict same-origin policies regarding XMLHttpRequest. In the context of a browser, the only way that a ...
https://man.plustar.jp/django/releases/1.2.5.html - [similar]
Django 2.1.5 リリースノート — Django 4.0.6 ドキュメント 5100
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nger displayed in the default 404 template and the request_path context variable is now quoted to fix the iss ... 2.1.4 (which enabled keep-alive connections) where request body data isn't properly consumed for such connect ...
https://man.plustar.jp/django/releases/2.1.5.html - [similar]
ページネーション — Django 4.0.6 ドキュメント 5100
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... der from myapp.models import Contact def listing ( request ): contact_list = Contact . objects . all () pagin ... , 25 ) # Show 25 contacts per page. page_number = request . GET . get ( 'page' ) page_obj = paginator . get_ ... page ( page_number ) return render ( request , 'list.html' , { 'page_obj' : page_obj }) In the ...
https://man.plustar.jp/django/topics/pagination.html - [similar]