Results of 1 - 10 of about 53 for regular (0.014 sec.)
- Conditional Expressions — Django 4.0.6 ドキュメント 12874
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
.db import models class Client ( models . Model ): REGULAR = 'R' GOLD = 'G' PLATINUM = 'P' ACCOUNT_TYPE_CHOIC ...
ES = [ ( REGULAR , 'Regular' ), ( GOLD , 'Gold' ), ( PLATINUM , 'Pl ...
h = 1 , choices = ACCOUNT_TYPE_CHOICES , default = REGULAR , ) When ¶ class When ( condition = None , then = ...
.. name = 'Jane Doe' , ... account_type = Client . REGULAR , ... registered_on = date . today () - timedelta ...
-
https://man.plustar.jp/django/ref/models/conditional-expressions.html
- [similar]
- Django 1.11.11 リリースノート — Django 4.0.6 ドキュメント 11728
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
o catastrophic backtracking vulnerabilities in two regular expressions. The urlize() function is used to impl ...
lters, which were thus vulnerable. The problematic regular expressions are replaced with parsing logic that b ...
to a catastrophic backtracking vulnerability in a regular expression. The chars() and words() methods are us ...
e thus vulnerable. The backtracking problem in the regular expression is fixed. 目次 Django 1.11.11 リリースノ ...
-
https://man.plustar.jp/django/releases/1.11.11.html
- [similar]
- Django 1.8.19 リリースノート — Django 4.0.6 ドキュメント 11728
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
to a catastrophic backtracking vulnerability in a regular expression. The urlize() function is used to imple ...
lters, which were thus vulnerable. The problematic regular expression is replaced with parsing logic that beh ...
to a catastrophic backtracking vulnerability in a regular expression. The chars() and words() methods are us ...
e thus vulnerable. The backtracking problem in the regular expression is fixed. 目次 Django 1.8.19 リリースノ ...
-
https://man.plustar.jp/django/releases/1.8.19.html
- [similar]
- Django 2.0.3 リリースノート — Django 4.0.6 ドキュメント 11044
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
o catastrophic backtracking vulnerabilities in two regular expressions. The urlize() function is used to impl ...
lters, which were thus vulnerable. The problematic regular expressions are replaced with parsing logic that b ...
to a catastrophic backtracking vulnerability in a regular expression. The chars() and words() methods are us ...
e thus vulnerable. The backtracking problem in the regular expression is fixed. Bugfixes ¶ Fixed a regression ...
-
https://man.plustar.jp/django/releases/2.0.3.html
- [similar]
- URL ディスパッチャ — Django 4.0.6 ドキュメント 9317
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ntained no named groups, then the matches from the regular expression are provided as positional arguments. T ...
yyyy:year>/' , views . year_archive ), ... ] Using regular expressions ¶ If the paths and converters syntax i ...
t for defining your URL patterns, you can also use regular expressions. To do so, use re_path() instead of pa ...
th() . In Python regular expressions, the syntax for named regular expressi ...
-
https://man.plustar.jp/django/topics/http/urls.html
- [similar]
- バリデータ — Django 4.0.6 ドキュメント 9198
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
xValidator searches the provided value for a given regular expression with re.search() . By default, raises a ...
Error is raised when a match is found. regex ¶ The regular expression pattern to search for within the provid ...
.search() . This may be a string or a pre-compiled regular expression created with re.compile() . Defaults to ...
す。 flags ¶ The regex flags used when compiling the regular expression string regex . If regex is a pre-compil ...
-
https://man.plustar.jp/django/ref/validators.html
- [similar]
- Django 1.8.3 リリースノート — Django 4.0.6 ドキュメント 9079
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
acters (due to the usage of $ instead of \Z in the regular expressions). If you use values with newlines in H ...
) function is now stricter as it validates using a regular expression instead of simply casting the value usi ...
bility in URL validation ¶ URLValidator included a regular expression that was extremely slow to evaluate aga ...
inst certain invalid inputs. This regular expression has been simplified and optimized. Bugf ...
-
https://man.plustar.jp/django/releases/1.8.3.html
- [similar]
- How to manage error reporting — Django 4.0.6 ドキュメント 8171
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
_404_URLS setting. It should be a list of compiled regular expression objects. For example: import re IGNORAB ...
ile ( r '^/robots\.txt$' ), ] (Note that these are regular expressions, so we put a backslash in front of per ...
variables ) ¶ If a function (either a view or any regular callback) in your code uses local variables suscep ...
stars ( ********** ). hidden_settings ¶ A compiled regular expression object used to match settings and reque ...
-
https://man.plustar.jp/django/howto/error-reporting.html
- [similar]
- GeoDjango Model API — Django 4.0.6 ドキュメント 8171
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ackend. Spatial Field Options ¶ In addition to the regular フィールドオプション available for Django model fi ...
ial indexes are created in a different manner than regular database indexes. Specifically, spatial indexes ar ...
cally created using a variant of the R-Tree, while regular database indexes typically use B-Trees. Geometry F ...
-
https://man.plustar.jp/django/ref/contrib/gis/model-api.html
- [similar]
- django.urls functions for use in URLconfs — Django 4.0.6 ドキュメント 8171
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
zy() (see URL パターンを翻訳する ) that contains a regular expression compatible with Python's re module. Str ...
sh. When a match is made, captured groups from the regular expression are passed to the view -- as named argu ...
d URL, matching against path_info , must match the regular expression pattern ( re.fullmatch() is used). The ...
-
https://man.plustar.jp/django/ref/urls.html
- [similar]