検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 481 for To (0.059 sec.)
システムチェックフレームワーク — Django 4.0.6 ドキュメント 5461
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... クフレームワーク ¶ The system check framework is a set of static checks for validating Django projects. It ... detects common problems and provides hints for how to fix them. The framework is extensible so you can e ... asily add your own checks. For details on how to add your own checks and integrate them with Django ... 's system checks, see the System check topic guide . APIリファレンス ¶ CheckMessage ¶ class ...
https://man.plustar.jp/django/ref/checks.html - [similar]
Django 1.9 リリースノート — Django 4.0.6 ドキュメント 5461
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 。 既存のプロジェクトをアップデートするときは、 How to upgrade Django to a newer version ガイドに従ってく ... み合わせるのも簡単です。検証は1つ以上の検証器 (validator) で実行され、新しい AUTH_PASSWORD_VALIDATORS 設定 ... ワードが許可されます。そのため、 AUTH_PASSWORD_VALIDATORS を設定しなければ、何も変更する必要はありません。 ... 、たとえば次のように設定します。 AUTH_PASSWORD_VALIDATORS = [ { 'NAME' : 'django.contrib.auth.password_val ...
https://man.plustar.jp/django/releases/1.9.html - [similar]
Django Utils — Django 4.0.6 ドキュメント 5356
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ent covers all stable modules in django.utils . Most of the modules in django.utils are designed for int ... he Vary header of responses. It includes functions to patch the header of response objects directly and ... decorators that change functions to do that header-patching ... header defines which headers a cache should take into account when building its cache key. Requests with ...
https://man.plustar.jp/django/ref/utils.html - [similar]
Django 3.1 release notes — Django 4.0.6 ドキュメント 5348
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Django 3.1 release notes ¶ August 4, 2020 Welcome to Django 3.1! These release notes cover the new feat ... as some backwards incompatible changes you'll want to be aware of when upgrading from Django 3.0 or earl ... . 既存のプロジェクトをアップデートするときは、 How to upgrade Django to a newer version ガイドに従ってく ... nous middleware Asynchronous tests and test client To get started with async views, you need to declare ...
https://man.plustar.jp/django/releases/3.1.html - [similar]
Django オブジェクトのシリアル化 — Django 4.0.6 ドキュメント 5348
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ides a mechanism for "translating" Django models into other formats. Usually these other formats will be ... ta over a wire, but it's possible for a serializer to handle any format (text-based or not). 参考 If you ... just want to get some data from your tables into a serialized f ... xml" , SomeModel . objects . all ()) The arguments to the serialize function are the format to serialize ...
https://man.plustar.jp/django/topics/serialization.html - [similar]
Unit tests — Django 4.0.6 ドキュメント 5332
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... es with a test suite of its own, in the tests directory of the code base. It's our policy to make sure a ... all times. We appreciate any and all contributions to the test suite! The Django tests all use the testi ... e テストを書いて実行する for an explanation of how to write new tests. Running the unit tests ¶ Quicksta ... rtual environment. If you're not familiar with how to do that, read our contributing tutorial . Next, cl ...
https://man.plustar.jp/django/internals/contributing/writing-code/unit-tests.htm... - [similar]
テストツール — Django 4.0.6 ドキュメント 5332
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ass that acts as a dummy web browser, allowing you to test your views and interact with your Django-powe ... に使います。 Use in-browser frameworks like Selenium to test rendered HTML and the behavior of web pages, ... テストを組み合わせて行うべきです。 概要と簡単な例 ¶ To use the test client, instantiate django.test.Clien ... se . status_code 200 >>> response = c . get ( '/customer/details/' ) >>> response . content b'<!DOCTYPE ...
https://man.plustar.jp/django/topics/testing/tools.html - [similar]
Django 1.1 リリースノート — Django 4.0.6 ドキュメント 5300
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ode you develop against Django 1.0 should continue to work against 1.1 unchanged. However, we do sometim ... ackwards-incompatible changes if they're necessary to resolve bugs, and there are a handful of such (min ... etween Django 1.0 and Django 1.1. Before upgrading to Django 1.1 you should double-check that the follow ... act you, and upgrade your code if they do. Changes to constraint names ¶ Django 1.1 modifies the method ...
https://man.plustar.jp/django/releases/1.1.html - [similar]
How to create custom template tags and filters — Django 4.0.6 ドキュメント 5292
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nts | Index | Modules « previous | up | next » How to create custom template tags and filters ¶ Django の ... せずに、タグを登録できるようになります。 背景 For a ton of examples, read the source code for Django's de ... lue ): # Only one argument. """Converts a string into all lowercase""" return value . lower () 独自のフィ ... ter() は 3 つのキーワード引数 ( is_safe 、 needs_autoescape 、 expects_localtime ) を受け入れます。これら ...
https://man.plustar.jp/django/howto/custom-template-tags.html - [similar]
contenttypes フレームワーク — Django 4.0.6 ドキュメント 5292
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... king with your models. オーバービュー ¶ At the heart of the contenttypes application is the ContentType ... tentType . Instances of ContentType represent and store information about the models installed in your p ... roject, and new instances of ContentType are automatically created whenever new models are installed ... jects from those models. ContentType also has a custom manager that adds methods for working with Conten ...
https://man.plustar.jp/django/ref/contrib/contenttypes.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT