検索

phrase: max: clip:
target: order:
Results of 171 - 180 of about 481 for To (0.273 sec.)
ロギング — Django 4.0.6 ドキュメント 4383
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dules « previous | up | next » ロギング ¶ 参考 How to configure and use logging Django logging reference ... in their code as a quick and convenient debugging tool. Using the logging framework is only a little mo ... o uses and extends Python's builtin logging module to perform system logging. This module is discussed i ... フォーマッタ ロガー ¶ A logger is the entry point into the logging system. Each logger is a named bucket ...
https://man.plustar.jp/django/topics/logging.html - [similar]
暗号署名 — Django 4.0.6 ドキュメント 4367
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 名 ¶ The golden rule of web application security is to never trust data from untrusted sources. Sometimes ... it can be useful to pass data through an untrusted medium. Cryptograph ... 。 Generating "recover my account" URLs for sending to users who have lost their password. Ensuring data ... stored in hidden form fields has not been tampered wit ...
https://man.plustar.jp/django/topics/signing.html - [similar]
django.utils.functional — Django 4.0.6 ドキュメント 4343
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s.functional のソースコード import copy import itertools import operator from functools import total_ord ... s [ドキュメント] class cached_property : """ Decorator that converts a method with a single self argumen ... t into a property cached on the instance. A cached proper ... ty can be made out of an existing method: (e.g. ``url = cached_propert ...
https://man.plustar.jp/django/_modules/django/utils/functional.html - [similar]
django.utils.text — Django 4.0.6 ドキュメント 4327
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... y have lines longer than ``width``. """ def _generator (): for line in text . splitlines ( True ): # Tru ... h ) if line : yield line return "" . join ( _generator ()) class Truncator ( SimpleLazyObject ): """ An ... object used to truncate text, either by characters or words. """ ... f truncate is None : truncate = pgettext ( "String to return when truncating text" , " %(truncated_text) ...
https://man.plustar.jp/django/_modules/django/utils/text.html - [similar]
Model index reference — Django 4.0.6 ドキュメント 4327
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s.indexes , but for convenience they're imported into django.db.models . The standard convention is to u ... se from django.db import models and refer to the indexes as models.<IndexClass> . Index options ... , name = 'calc_idx' ) creates an index on the result of multiplying fields height and weight and the wei ... ght rounded to the nearest integer. Index.name is required when u ...
https://man.plustar.jp/django/ref/models/indexes.html - [similar]
Django 1.9.2 リリースノート — Django 4.0.6 ドキュメント 4327
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... the admin provides an option when editing objects to "Save as new". A regression in Django 1.9 prevente ... e addition of some Django template language syntax to the default app template in Django 1.9 means those ... tems that unconditionally byte-compile *.py files. To remedy this, a .py-tpl suffix is now used for the ... manage.py . Please file a ticket if you have a custom project template containing .py-tpl files and fin ...
https://man.plustar.jp/django/releases/1.9.2.html - [similar]
django.contrib.auth — Django 4.0.6 ドキュメント 4311
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... an log in. Authentication backends aren't required to check for the is_active flag but the default backe ... kend or AllowAllUsersRemoteUserBackend if you want to allow inactive users to login. In this case, you'l ... l also want to customize the AuthenticationForm used by the Login ... get_user_permissions ( obj = None ) ¶ Returns a set of permission strings that the user has directly. I ...
https://man.plustar.jp/django/ref/contrib/auth.html - [similar]
Django 1.3.6 release notes — Django 4.0.6 ドキュメント 4311
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ader poisoning ¶ Some parts of Django -- independent of end-user-written applications -- make use of ful ... or some time contained notes advising users on how to configure web servers to ensure that only valid Ho ... Django application. However, it has been reported to us that even with the recommended web server confi ... s available for tricking many common web servers into supplying the application with an incorrect and po ...
https://man.plustar.jp/django/releases/1.3.6.html - [similar]
メールを送信する — Django 4.0.6 ドキュメント 4311
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ight wrappers over it. These wrappers are provided to make sending email extra quick, to help test email ... sending during development, and to provide support for platforms that can't use SMTP. ... , 'Here is the message.' , 'from@example.com' , [ 'to@example.com' ], fail_silently = False , ) 設定内の ... recipient_list の各メンバーは、メールメッセージの "To:" フィールドで他の受信者を見ることができます。 fai ...
https://man.plustar.jp/django/topics/email.html - [similar]
django.apps.config — Django 4.0.6 ドキュメント 4303
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ngo.apps.config のソースコード import inspect import os import warnings from importlib import import_mod ... self , app_name , app_module ): # Full Python path to the application e.g. 'django.contrib.admin'. self ... nit__.py'>. self . module = app_module # Reference to the Apps registry that holds this AppConfig. Set b ... ss, hence the test-and-set pattern. # Last component of the Python path to the application e.g. 'admin'. ...
https://man.plustar.jp/django/_modules/django/apps/config.html - [similar]