検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 168 for path (0.077 sec.)
django.core.files.uploadhandler — Django 4.0.6 ドキュメント 5546
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e" ): temp_location = self . file . temporary_file_path () try : self . file . close () os . remove ( temp ... = self . content_type_extra , ) def load_handler ( path , * args , ** kwargs ): """ Given a path to a hand ... andler object at 0x...> """ return import_string ( path )( * args , ** kwargs ) クイック検索 Last update: ...
https://man.plustar.jp/django/_modules/django/core/files/uploadhandler.html - [similar]
Installing SpatiaLite — Django 4.0.6 ドキュメント 5546
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... install spatialite in a location available in your PATH . For example: $ curl -O https://www.kyngchaos.com ... following to your settings.py : SPATIALITE_LIBRARY_PATH = '/Library/Frameworks/SQLite3.framework/SQLite3' ... following to your settings.py : SPATIALITE_LIBRARY_PATH = '/usr/local/lib/mod_spatialite.dylib' 目次 Insta ...
https://man.plustar.jp/django/ref/contrib/gis/install/spatialite.html - [similar]
Django 3.2 release notes — Django 4.0.6 ドキュメント 5546
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... made it possible to declare only the application's path in INSTALLED_APPS (e.g. 'django.contrib.admin' ) r ... ather than the app config's path (e.g. 'django.contrib.admin.apps.AdminConfig' ). I ... atialReference . The DataSource class now supports pathlib.Path . The LayerMapping class now supports path ... lib.Path . django.contrib.postgres ¶ The new ExclusionConst ...
https://man.plustar.jp/django/releases/3.2.html - [similar]
トラブルシューティング — Django 4.0.6 ドキュメント 5500
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ango-admin ¶ django-admin should be on your system path if you installed Django via pip . If it's not in y ... our path, ensure you have your virtual environment activate ... dmin , 実行 , 発生 , エラー , コマンド , command , path , 確認 , previous , up クイック検索 Last update: 2 ...
https://man.plustar.jp/django/faq/troubleshooting.html - [similar]
Django 1.4.11 release notes — Django 4.0.6 ドキュメント 5467
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... signature for reverse() is to pass a dotted Python path to the desired view. In this situation, Django wil ... l import the module indicated by that dotted path as part of generating the resulting URL. If such a ... an attacker to exist on the server's Python import path, which perform code execution with side effects on ... , reverse() will now only accept and import dotted paths based on the view-containing modules listed in th ...
https://man.plustar.jp/django/releases/1.4.11.html - [similar]
Django 1.5.6 release notes — Django 4.0.6 ドキュメント 5467
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... signature for reverse() is to pass a dotted Python path to the desired view. In this situation, Django wil ... l import the module indicated by that dotted path as part of generating the resulting URL. If such a ... an attacker to exist on the server's Python import path, which perform code execution with side effects on ... , reverse() will now only accept and import dotted paths based on the view-containing modules listed in th ...
https://man.plustar.jp/django/releases/1.5.6.html - [similar]
ビルトインのクラスベースのジェネリックビュー — Django 4.0.6 ドキュメント 5467
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... にフックさせます。 # urls.py from django.urls import path from books.views import PublisherListView urlpatte ... rns = [ path ( 'publishers/' , PublisherListView . as_view ()), ... 定した場合、テンプレートの場所は次のパスになります。/path/to/project/books/templates/books/publisher_list.ht ... あるとしましょう。 # urls.py from django.urls import path from books.views import PublisherBookListView urlp ...
https://man.plustar.jp/django/topics/class-based-views/generic-display.html - [similar]
Django Deprecation Timeline — Django 4.0.6 ドキュメント 5433
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s to be considered equal to relative ones when the path is identical will also be removed. Field.rel will ... The ability to reverse URLs using a dotted Python path will be removed. The ability to use a dotted Pytho ... n path for the LOGIN_URL and LOGIN_REDIRECT_URL settings ... be removed. django.utils.module_loading.import_by_path will be removed in favor of django.utils.module_lo ...
https://man.plustar.jp/django/internals/deprecation.html - [similar]
はじめての Django アプリ作成、その 4 — Django 4.0.6 ドキュメント 5433
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... を作成したことを思い出しましょう: polls/urls.py ¶ path ( '<int:question_id>/vote/' , views . vote , name ... 変更します: polls/urls.py ¶ from django.urls import path from . import views app_name = 'polls' urlpatterns ... = [ path ( '' , views . IndexView . as_view (), name = 'ind ... ex' ), path ( '<int:pk>/' , views . DetailView . as_view (), n ...
https://man.plustar.jp/django/intro/tutorial04.html - [similar]
クラスベースのビューでフォームを扱う — Django 4.0.6 ドキュメント 5433
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nto the URLconf: urls.py ¶ from django.urls import path from myapp.views import AuthorCreateView , AuthorD ... eleteView , AuthorUpdateView urlpatterns = [ # ... path ( 'author/add/' , AuthorCreateView . as_view (), n ... ame = 'author-add' ), path ( 'author/<int:pk>/' , AuthorUpdateView . as_view ... (), name = 'author-update' ), path ( 'author/<int:pk>/delete/' , AuthorDeleteView . a ...
https://man.plustar.jp/django/topics/class-based-views/generic-editing.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT