検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 111 for input (0.047 sec.)
Django 1.8.3 リリースノート — Django 4.0.6 ドキュメント 6347
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... on possibility since validators accept newlines in input ¶ Some of Django's built-in validators ( EmailVali ... rm fields which use these validators all strip the input, so the possibility of newlines entering your data ... extremely slow to evaluate against certain invalid inputs. This regular expression has been simplified and ... n in the unordered_list template filter on certain inputs ( #25031 ). Fixed a regression in URLValidator th ...
https://man.plustar.jp/django/releases/1.8.3.html - [similar]
How to implement a custom template backend — Django 4.0.6 ドキュメント 6297
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ne from django.template.backends.utils import csrf_input_lazy , csrf_token_lazy import foobar class FooBar ... : context [ 'request' ] = request context [ 'csrf_input' ] = csrf_input_lazy ( request ) context [ 'csrf_t ...
https://man.plustar.jp/django/howto/custom-template-backend.html - [similar]
Generic editing ビュー — Django 4.0.6 ドキュメント 6297
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... thod = "post" > {% csrf_token %} {{ form.as_p }} < input type = "submit" value = "Send message" > </ form > ... thod = "post" > {% csrf_token %} {{ form.as_p }} < input type = "submit" value = "Save" > </ form > class d ... thod = "post" > {% csrf_token %} {{ form.as_p }} < input type = "submit" value = "Update" > </ form > class ... nt to delete " {{ object }} "? </ p > {{ form }} < input type = "submit" value = "Confirm" > </ form > clas ...
https://man.plustar.jp/django/ref/class-based-views/generic-editing.html - [similar]
django.utils.http — Django 4.0.6 ドキュメント 6246
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... "" Same as parse_http_date, but return None if the input is invalid. """ try : return parse_http_date ( dat ... base 36 string to an int. Raise ValueError if the input won't fit into an int. """ # To prevent overconsum ... er) if len ( s ) > 13 : raise ValueError ( "Base36 input too large" ) return int ( s , 36 ) [ドキュメント] ... 0 : raise ValueError ( "Negative base36 conversion input." ) if i < 36 : return char_set [ i ] b36 = "" whi ...
https://man.plustar.jp/django/_modules/django/utils/http.html - [similar]
Unicode data — Django 4.0.6 ドキュメント 6246
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... strings_only=False, errors='strict') converts its input to a string. The encoding parameter specifies the ... , Django uses this internally when processing form input data, which might not be UTF-8 encoded.) The strin ... force_str() . Call it as early as possible on any input data that might be either a string or a bytestring ...
https://man.plustar.jp/django/ref/unicode.html - [similar]
Django 1.4.21 release notes — Django 4.0.6 ドキュメント 6246
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... on possibility since validators accept newlines in input ¶ Some of Django's built-in validators ( EmailVali ... on possibility since validators accept newlines in input 前のトピックへ Django 1.4.22 release notes 次のトピ ...
https://man.plustar.jp/django/releases/1.4.21.html - [similar]
django.utils.encoding — Django 4.0.6 ドキュメント 6145
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... objects. """ if isinstance ( s , Promise ): # The input is the result of a gettext_lazy() call. return s r ... objects. """ if isinstance ( s , Promise ): # The input is the result of a gettext_lazy() call. return s r ... ion 3.1 of RFC 3987, slightly simplified since the input is assumed to be a string rather than an arbitrary ...
https://man.plustar.jp/django/_modules/django/utils/encoding.html - [similar]
GeoDjango Forms API — Django 4.0.6 ドキュメント 6145
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... or database, the field will automatically convert input values into that SRID. geom_type ¶ Field. geom_typ ... splay_raw ¶ Boolean value specifying if a textarea input showing the serialized representation of the curre ...
https://man.plustar.jp/django/ref/contrib/gis/forms-api.html - [similar]
django.core.validators — Django 4.0.6 ドキュメント 6094
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... f __call__ ( self , value ): """ Validate that the input contains (or does *not* contain, if inverse_match ... s = self . regex . search ( str ( value )) invalid_input = regex_matches if self . inverse_match else not r ... egex_matches if invalid_input : raise ValidationError ( self . message , code = ... ble class DecimalValidator : """ Validate that the input does not exceed the maximum number of digits expec ...
https://man.plustar.jp/django/_modules/django/core/validators.html - [similar]
How to create custom template tags and filters — Django 4.0.6 ドキュメント 6094
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... a filter that adds the string xx to the end of any input. Since this introduces no dangerous HTML character ... nabled, Django will escape the output whenever the input is not already marked as "safe". By default, is_sa ... in the result. For example, removing a > from the input might turn <a> into <a , which would need to be es ... sn't escaped further, so you'll need to handle the input yourself. To mark the output as a safe string, use ...
https://man.plustar.jp/django/howto/custom-template-tags.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT