検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 190 for new (0.090 sec.)
Djangoにおけるパスワード管理 — Django 4.0.6 ドキュメント 5206
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ault storage algorithm. Using scrypt with Django ¶ New in Django 4.0. scrypt is similar to PBKDF2 and bcr ... quires OpenSSL 1.1+. Increasing the salt entropy ¶ New in Django 3.2. Most password hashes include a salt ... his in a file like myproject/hashers.py . Add your new hasher as the first entry in PASSWORD_HASHERS : PA ... ry_cost == 2 ** memory_cost_commandline . scrypt ¶ New in Django 4.0. scrypt has four attributes that can ...
https://man.plustar.jp/django/topics/auth/passwords.html - [similar]
django.utils.html — Django 4.0.6 ドキュメント 5163
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... mark_safe from django.utils.text import normalize_newlines # Configuration for urlize() function. TRAILI ... ebreaks ( value , autoescape = False ): """Convert newlines into <p> and <br>s.""" value = normalize_newl ... tr ( value ) while "<" in value and ">" in value : new_value = _strip_once ( value ) if value . count ( " ... <" ) == new_value . count ( "<" ): # _strip_once wasn't able t ...
https://man.plustar.jp/django/_modules/django/utils/html.html - [similar]
Django の admin サイト — Django 4.0.6 ドキュメント 5163
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e is_staff attribute set to True . Finally, determine which of your application's models should be editab ... leAdmin ( admin . ModelAdmin ): raw_id_fields = ( "newspaper" ,) raw_id_fields Input ウィジェットには、 F ... h spaces was added. ModelAdmin. search_help_text ¶ New in Django 4.0. Set search_help_text to specify a d ... rmset_kwargs ( request , obj , inline , prefix ) ¶ New in Django 4.0. A hook for customizing the keyword ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
データベース — Django 4.0.6 ドキュメント 5163
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s database small. The development server creates a new thread for each request it handles, negating the e ... he correct values, Django won't set them for every new connection, which improves performance slightly. Y ... ase user with ALTER ROLE . Django will work just fine without this optimization, but each new connection ... s that use the LIKE operator in their SQL, as is done with the contains and startswith lookup types. Migr ...
https://man.plustar.jp/django/ref/databases.html - [similar]
クエリー式 — Django 4.0.6 ドキュメント 5163
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... hairs 50 >>> company . chairs_needed 70 # Create a new company using expressions. >>> company = Company . ... one might do something like this: # Tintin filed a news story! reporter = Reporters . objects . get ( nam ... ate an encapsulated SQL expression; in this case, one which instructs the database to increment the datab ... he field and describe the operation. To access the new value saved this way, the object must be reloaded: ...
https://man.plustar.jp/django/ref/models/expressions.html - [similar]
Django 1.0.1 リリースノート — Django 4.0.6 ドキュメント 5163
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... go 1.0 codebase. As such, Django 1.0.1 contains no new features (and, pursuant to our compatibility polic ... corrections to existing documents and expanded and new documentation. 目次 Django 1.0.1 リリースノート Fi ...
https://man.plustar.jp/django/releases/1.0.1.html - [similar]
Django 1.4.21 release notes — Django 4.0.6 ドキュメント 5163
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... versions of Django, the session backends created a new empty record in the session storage anytime reques ... This could allow an attacker to easily create many new session records simply by sending repeated request ... ader injection possibility since validators accept newlines in input ¶ Some of Django's built-in validato ... ( EmailValidator , most seriously) didn't prohibit newline characters (due to the usage of $ instead of \ ...
https://man.plustar.jp/django/releases/1.4.21.html - [similar]
Django 1.7.9 release notes — Django 4.0.6 ドキュメント 5163
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... versions of Django, the session backends created a new empty record in the session storage anytime reques ... This could allow an attacker to easily create many new session records simply by sending repeated request ... ader injection possibility since validators accept newlines in input ¶ Some of Django's built-in validato ... ( EmailValidator , most seriously) didn't prohibit newline characters (due to the usage of $ instead of \ ...
https://man.plustar.jp/django/releases/1.7.9.html - [similar]
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 5163
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... get ( username = 'john' ) >>> u . set_password ( 'new password' ) >>> u . save () Django admin がインスト ... perm ( 'myapp.change_blogpost' ) # False # Request new instance of User # Be aware that user.refresh_from ... go.contrib.auth admin, update the session with the new password hash so that a user changing their own pa ... request and the updated user object from which the new session hash will be derived and updates the sessi ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
How to create custom template tags and filters — Django 4.0.6 ドキュメント 5130
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... scaping. This is necessary when you're introducing new HTML markup into the result. You want to mark the ... rked as such. Also, if your template tag creates a new context for performing some sub-rendering, set the ... mport Context def render ( self , context ): # ... new_context = Context ({ 'var' : obj }, autoescape = c ... ontext . autoescape ) # ... Do something with new_context ... This is not a very common situation, b ...
https://man.plustar.jp/django/howto/custom-template-tags.html - [similar]