検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 119 for URLs (0.052 sec.)
django.utils.http — Django 4.0.6 ドキュメント 6745
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... # Base 36 functions: useful for generating compact URLs [ドキュメント] def base36_to_int ( s ): """ Conver ... char_set [ n ] + b36 return b36 [ドキュメント] def urlsafe_base64_encode ( s ): """ Encode a bytestring to ... a base64 string for use in URLs. Strip any trailing equal signs. """ return base64 ... . urlsafe_b64encode ( s ) . rstrip ( b " \n =" ) . decode ...
https://man.plustar.jp/django/_modules/django/utils/http.html - [similar]
The flatpages app — Django 4.0.6 ドキュメント 6745
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... h ( 'pages/' , include ( 'django.contrib.flatpages.urls' )), ] or: Add 'django.contrib.flatpages.middlewar ... h ( 'pages/' , include ( 'django.contrib.flatpages.urls' )), ] You can also set it up as a "catchall" patt ... a limited set of known pages and to hard code the urls, so you can reference them with the url template t ... Django database API . Check for duplicate flatpage URLs. If you add or modify flatpages via your own code, ...
https://man.plustar.jp/django/ref/contrib/flatpages.html - [similar]
Django 1.8.10 リリースノート — Django 4.0.6 ドキュメント 6745
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... and possible XSS attack via user-supplied redirect URLs containing basic auth ¶ Django relies on user inpu ... django.utils.http.is_safe_url() ) considered some URLs with basic authentication credentials "safe" when ... ttp://mysite.example.com , but redirecting to this URL sends the user to attacker.com . Also, if a develop ... 5 ). Reallowed dashes in top-level domain names of URLs checked by URLValidator to fix a regression in Dja ...
https://man.plustar.jp/django/releases/1.8.10.html - [similar]
Django 1.3.4 release notes — Django 4.0.6 ドキュメント 6683
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... end-user-written applications -- make use of full URLs, including domain name, which are generated from t ... set mechanism -- to generate and display arbitrary URLs to users. To remedy this, the parsing in HttpReque ... tes , header , Host , parsing , username , which , URLs , users , such クイック検索 Last update: 2022年6月 ...
https://man.plustar.jp/django/releases/1.3.4.html - [similar]
索引 — Django 4.0.6 ドキュメント 6558
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... conf.settings.configure() 組み込み関数 django.conf.urls モジュール django.conf.urls.i18n モジュール django ... ango.test.utils.isolate_apps() 組み込み関数 django.urls モジュール django.urls.conf モジュール django.util ... ransaction モジュール) get_script_prefix() (django.urls モジュール) get_search_fields() (ModelAdmin のメソ ... ュール) (lookups.RegisterLookupMixin のメソッド) get_urls() (ModelAdmin のメソッド) get_user() (django.contr ...
https://man.plustar.jp/django/genindex.html - [similar]
Base views — Django 4.0.6 ドキュメント 6558
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ): return HttpResponse ( 'Hello, World!' ) Example urls.py : from django.urls import path from myapp.views ... le . objects . all ()[: 5 ] return context Example urls.py : from django.urls import path from myapp.views ... . get_redirect_url ( * args , ** kwargs ) Example urls.py : from django.urls import path from django.view ...
https://man.plustar.jp/django/ref/class-based-views/base.html - [similar]
Django 1.9.3 リリースノート — Django 4.0.6 ドキュメント 6558
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... and possible XSS attack via user-supplied redirect URLs containing basic auth ¶ Django relies on user inpu ... django.utils.http.is_safe_url() ) considered some URLs with basic authentication credentials "safe" when ... ttp://mysite.example.com , but redirecting to this URL sends the user to attacker.com . Also, if a develop ... 9 ). Reallowed dashes in top-level domain names of URLs checked by URLValidator to fix a regression in Dja ...
https://man.plustar.jp/django/releases/1.9.3.html - [similar]
Django 1.9 リリースノート — Django 4.0.6 ドキュメント 6496
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... of which support them. Consequently, the expected URLs passed to assertRedirects should generally no long ... er include the scheme and domain part of the URLs. For example, self.assertRedirects(response, 'http ... aScript that used that value to construct absolute URLs have been moved to CSS for easier customization. T ... patterns in the tutorial are changed from: mysite/urls.py ¶ urlpatterns = [ url ( r '^polls/' , include ( ...
https://man.plustar.jp/django/releases/1.9.html - [similar]
クラスベースのビューでフォームを扱う — Django 4.0.6 ドキュメント 6434
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dels.py ¶ from django.db import models from django.urls import reverse class Author ( models . Model ): na ... ジックを書く必要はありません: views.py ¶ from django.urls import reverse_lazy from django.views.generic.edit ... o use reverse_lazy() instead of reverse() , as the urls are not loaded when the file is imported. The fiel ... Finally, we hook these new views into the URLconf: urls.py ¶ from django.urls import path from myapp.views ...
https://man.plustar.jp/django/topics/class-based-views/generic-editing.html - [similar]
Generic display ビュー — Django 4.0.6 ドキュメント 6372
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... now' ] = timezone . now () return context 例 myapp/urls.py : from django.urls import path from article.vie ... now' ] = timezone . now () return context 例 myapp/urls.py : from django.urls import path from article.vie ...
https://man.plustar.jp/django/ref/class-based-views/generic-display.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT