検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 168 for path (0.030 sec.)
django.core.management.base — Django 4.0.6 ドキュメント 5274
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... _MODULE" ] = options . settings if options . pythonpath : sys . path . insert ( 0 , options . pythonpath ) ... rbosity" , "--traceback" , "--settings" , "--pythonpath" , "--no-color" , "--force-color" , "--skip-checks ... ironment changes requested by options like ``pythonpath``, and then calls the ``execute()`` method, passin ... parser = CommandParser ( prog = " %s %s " % ( os . path . basename ( prog_name ), subcommand ), descriptio ...
https://man.plustar.jp/django/_modules/django/core/management/base.html - [similar]
django.utils.html — Django 4.0.6 ドキュメント 5274
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Handle IDN before quoting. try : scheme , netloc , path , query , fragment = urlsplit ( url ) except Value ... care of quoting query = urlencode ( query_parts ) path = unquote_quote ( path ) fragment = unquote_quote ... fragment ) return urlunsplit (( scheme , netloc , path , query , fragment )) @keep_lazy_text def urlize ( ...
https://man.plustar.jp/django/_modules/django/utils/html.html - [similar]
Writing documentation — Django 4.0.6 ドキュメント 5240
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... that's a tilde) to get only the "last bit" of that path. So :mod:`~django.contrib.auth` will display a lin ... nment (i.e. a '$' prompt symbol, '/' as filesystem path components separator, etc.) The example above will ... g -o7 -zm1-9 -i0 -strip all ` find . -type f -not -path "./_build/*" -name "*.png" ` $ advpng -z4 ` find . ... -type f -not -path "./_build/*" -name "*.png" ` This is based on Opti ...
https://man.plustar.jp/django/internals/contributing/writing-documentation.html - [similar]
Django 1.8.1 リリースノート — Django 4.0.6 ドキュメント 5240
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ect to remove usage of referencing views by dotted path in django.conf.urls.url() which is deprecated in D ... on of MySQL databases ( #24595 ). Fixed JavaScript path of contrib.admin 's related field widget when usin ...
https://man.plustar.jp/django/releases/1.8.1.html - [similar]
Django 2.0 リリースノート — Django 4.0.6 ドキュメント 5240
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... RL ルーティングの構文の簡略化 ¶ 新しい django.urls.path() 関数を使うと、以前よりシンプルで読みやすい URL ル ... ews . year_archive ), 次のように書き換えられます。 path ( 'articles/<int:year>/' , views . year_archive ), ... です。 django.conf.urls.url() 関数は django.urls.re_path() から利用できるようになりました。差し迫った廃止は ... 、URLconf の中では from django.urls import include, path, re_path とインポートができます。 新しい構文と詳細 ...
https://man.plustar.jp/django/releases/2.0.html - [similar]
Django 3.2.1 release notes — Django 4.0.6 ドキュメント 5240
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... order to mitigate this risk, stricter basename and path sanitation is now applied. Bugfixes ¶ Corrected de ... S_DIRS setting with a list of 2-tuples of (prefix, path) ( #32665 ). Fixed a long standing bug involving q ...
https://man.plustar.jp/django/releases/3.2.1.html - [similar]
次のステップへ — Django 4.0.6 ドキュメント 5206
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ている部分を表示できます:   $ grep -r max_length /path/to/django/docs/ ...\> grep -r max_length \path\to\ ... って、ドキュメントを HTML に変換するだけです。 $ cd path/to/django/docs $ make html これを実行するには、 GN ... トディレクトリにあるバッチファイルを使用できます: cd path\to\django\docs make.bat html HTML ドキュメントが d ...
https://man.plustar.jp/django/intro/whatsnext.html - [similar]
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 5206
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s ?next= %s ' % ( settings . LOGIN_URL , request . path )) # ... もしくはエラーメッセージを出力します。 fr ... rom django.contrib.auth import views as auth_views path ( 'accounts/login/' , auth_views . LoginView . as_ ... return redirect ( '/login/?next= %s ' % request . path ) # ... user_passes_test ( test_func , login_url = ... RLconf に含めることです。たとえば: urlpatterns = [ path ( 'accounts/' , include ( 'django.contrib.auth.url ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
表示形式のローカル化 — Django 4.0.6 ドキュメント 5206
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... of the values. To use custom formats, specify the path where you'll place format files first. To do that, ... set your FORMAT_MODULE_PATH setting to the package where format files will exi ... st, for instance: FORMAT_MODULE_PATH = [ 'mysite.formats' , 'some_app.formats' , ] File ...
https://man.plustar.jp/django/topics/i18n/formatting.html - [similar]
Django の概要 — Django 4.0.6 ドキュメント 5172
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ます: mysite/news/urls.py ¶ from django.urls import path from . import views urlpatterns = [ path ( 'articl ... es/<int:year>/' , views . year_archive ), path ( 'articles/<int:year>/<int:month>/' , views . mon ... th_archive ), path ( 'articles/<int:year>/<int:month>/<int:pk>/' , vi ...
https://man.plustar.jp/django/intro/overview.html - [similar]