検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 387 for This (0.076 sec.)
Django 1.2.5 release notes — Django 4.0.6 ドキュメント 6082
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ngo 1.2.5 release notes ¶ Django 1.2.5 へようこそ! This is the fifth "bugfix" release in the Django 1.2 se ... of a browser, the only way that a custom header of this nature can be added is with XMLHttpRequest. Theref ... e custom HTTP headers on a request to any website. This can allow a forged request to appear to be an AJAX ... uests. Michael Koziarski of the Rails team brought this to our attention, and we were able to produce a pr ...
https://man.plustar.jp/django/releases/1.2.5.html - [similar]
リクエストとレスポンスのオブジェクト — Django 4.0.6 ドキュメント 6038
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... body ¶ The raw HTTP request body as a bytestring. This is useful for processing data in different ways th ... th, no matter what web server is being used. Using this instead of path can make your code easier to move ... DEFAULT_CHARSET setting is used). You can write to this attribute to change the encoding used when accessi ... raw or non-form data posted in the request, access this through the HttpRequest.body attribute instead. It ...
https://man.plustar.jp/django/ref/request-response.html - [similar]
複数のデータベース — Django 4.0.6 ドキュメント 6038
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ry can be left blank if it will not be used. To do this, you must set up DATABASE_ROUTERS for all of your ... base to control the database used. An exception to this rule is the makemigrations command. It validates t ... e prevented, or None if the router has no opinion. This is purely a validation operation, used by foreign ... hods, or managers. You should only rely on _meta . This method can also be used to determine the availabil ...
https://man.plustar.jp/django/topics/db/multi-db.html - [similar]
Date-based mixins — Django 4.0.6 ドキュメント 6012
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ) format to use when parsing the year. By default, this is '%Y' . year ¶ Optional The value for the year, ... default. get_year () ¶ Returns the year for which this view will display data, as a string. Tries the fol ... the first day of the year after the date provided. This function can also return None or raise an Http404 ... he first day of the year before the date provided. This function can also return None or raise an Http404 ...
https://man.plustar.jp/django/ref/class-based-views/mixins-date-based.html - [similar]
Django 0.96 リリースノート — Django 4.0.6 ドキュメント 5943
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tly unable to upgrade your copy of MySQLdb to meet this requirement, a separate, backwards-compatible back ... lled "mysql_old", has been added to Django. To use this backend, change the DATABASE_ENGINE setting in you ... r Django settings file from this: DATABASE_ENGINE = "mysql" to this: DATABASE_ENGIN ... , The "mysql_old" backend is provided only to ease this transition, and is considered deprecated; aside fr ...
https://man.plustar.jp/django/releases/0.96.html - [similar]
翻訳 — Django 4.0.6 ドキュメント 5943
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... は GNU gettext ツー ルキットに依存しています。 Once this is done, Django takes care of translating web apps ... the function gettext() . It's convention to import this as a shorter alias, _ , to save typing. 注釈 Pytho ... ence. Explicitly importing gettext() as _() avoids this problem. _ として別名をつけられる関数は? ( makemes ... ." ) return HttpResponse ( output ) You could code this without using the alias. This example is identical ...
https://man.plustar.jp/django/topics/i18n/translation.html - [similar]
Djangoにおけるパスワード管理 — Django 4.0.6 ドキュメント 5899
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... password attribute of a User object is a string in this format: <algorithm>$<iterations>$<salt>$<hash> これ ... o the following: Install the argon2-cffi library . This can be done by running python -m pip install djang ... PasswordHasher' , ] Keep and/or add any entries in this list if you need Django to upgrade passwords . Usi ... hm, do the following: Install the bcrypt library . This can be done by running python -m pip install djang ...
https://man.plustar.jp/django/topics/auth/passwords.html - [similar]
Coding style — Django 4.0.6 ドキュメント 5734
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... hould be formatted using the black auto-formatter. This will be run by pre-commit if that is configured. T ... follow PEP 8 . Use flake8 to check for problems in this area. Note that our setup.cfg file contains some e ... is harder to read. We allow up to 88 characters as this is the line length used by black . This check is i ... de the ticket number at the end of a sentence like this: def test_foo (): """ A test docstring looks like ...
https://man.plustar.jp/django/internals/contributing/writing-code/coding-style.h... - [similar]
クエリー式 — Django 4.0.6 ドキュメント 5682
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... equired operation at the database level. Let's try this with an example. Normally, one might do something ... like this: # Tintin filed a news story! reporter = Reporters ... ators to create an encapsulated SQL expression; in this case, one which instructs the database to incremen ... cribe the operation. To access the new value saved this way, the object must be reloaded: reporter = Repor ...
https://man.plustar.jp/django/ref/models/expressions.html - [similar]
The Django template language: for Python programmers — Django 4.0.6 ドキュメン... 5682
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Django template language: for Python programmers ¶ This document explains the Django template system from ... ne ¶ If you are using the DjangoTemplates backend, this probably isn't the documentation you're looking fo ... tag modules to register with the template engine. This is used to add new libraries or provide alternate ... ined, the first one will be used. class Template ¶ This class lives at django.template.Template . The cons ...
https://man.plustar.jp/django/ref/templates/api.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT