検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 78 for email (0.073 sec.)
Django 1.7.9 release notes — Django 4.0.6 ドキュメント 6474
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... in input ¶ Some of Django's built-in validators ( EmailValidator , most seriously) didn't prohibit newline ... f you use values with newlines in HTTP response or email headers, you can suffer from header injection atta ... itself isn't vulnerable because HttpResponse and the mail sending utilities in django.core.mail prohibit ne ... ed in Django, if you're creating HTTP responses or email messages in other ways, it's a good idea to ensure ...
https://man.plustar.jp/django/releases/1.7.9.html - [similar]
Django 1.8 リリースノート — Django 4.0.6 ドキュメント 6474
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... send_mail() that can be overridden to customize the mail to be sent. The max_length of Permission.name has ... hen getting the description of a table. E メール ¶ Email backends now support the context manager protocol ... for opening and closing connections. The SMTP email backend now supports keyfile and certfile authenti ... cation with the EMAIL_SSL_CERTFILE and EMAIL_SSL_KEYFILE settings. The S ...
https://man.plustar.jp/django/releases/1.8.html - [similar]
デプロイチェックリスト — Django 4.0.6 ドキュメント 6432
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... u'll avoid spurious errors in your Django logs (or emails if you have error reporting configured that way). ... ップの設定をしていなければ、今すぐに行ってください! EMAIL_BACKEND と関連する設定 ¶ あなたのサイトが E メール ... 。異なる送信者アドレスを使用するには、 DEFAULT_FROM_EMAIL と SERVER_EMAIL 設定を修正してください。 STATIC_RO ... 環境に合わせた設定 ALLOWED_HOSTS CACHES DATABASES EMAIL_BACKEND と関連する設定 STATIC_ROOT と STATIC_URL M ...
https://man.plustar.jp/django/howto/deployment/checklist.html - [similar]
Writing documentation — Django 4.0.6 ドキュメント 6432
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... in Python code and in the djangoproject.com logo. email -- no hyphen. HTTP -- the expected pronunciation i ... alse`` and a view raises an exception, Django will email these people with the full exception information. ... ember of the list should be a tuple of (Full name, email address). Example :: [('John', 'john@example.com') ... 'Mary', 'mary@example.com')] Note that Django will email *all* of these people whenever an error happens. S ...
https://man.plustar.jp/django/internals/contributing/writing-documentation.html - [similar]
Django 1.6.6 release notes — Django 4.0.6 ドキュメント 6391
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... with the admin is specified. Bugfixes ¶ Corrected email and URL validation to reject a trailing dash ( #22 ... r ( #20292 ). Restored bug fix for sending Unicode email with Python 2.6.5 and below ( #19107 ). Prevented ...
https://man.plustar.jp/django/releases/1.6.6.html - [similar]
Django 1.6 release notes — Django 4.0.6 ドキュメント 6391
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ps all PEP 249 exceptions. The default widgets for EmailField , URLField , IntegerField , FloatField and De ... the new type attributes available in HTML5 ( type='email' , type='url' , type='number' ). Note that due to ... this view, for example in a custom password_reset_email.html template, be sure to update your code. A temp ... s type='text' widgets might be now output as type='email' , type='url' or type='number' depending on their ...
https://man.plustar.jp/django/releases/1.6.html - [similar]
クラスベースのビューでフォームを扱う — Django 4.0.6 ドキュメント 6391
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... . CharField ( widget = forms . Textarea ) def send_email ( self ): # send email using the self.cleaned_data ... d. # It should return an HttpResponse. form . send_email () return super () . form_valid ( form ) メモ: For ...
https://man.plustar.jp/django/topics/class-based-views/generic-editing.html - [similar]
Generic editing ビュー — Django 4.0.6 ドキュメント 6350
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... . CharField ( widget = forms . Textarea ) def send_email ( self ): # send email using the self.cleaned_data ... d. # It should return an HttpResponse. form . send_email () return super () . form_valid ( form ) 例 myapp/ ...
https://man.plustar.jp/django/ref/class-based-views/generic-editing.html - [similar]
django.utils.html — Django 4.0.6 ドキュメント 6308
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... mething = True return lead , middle , trail def is_email_simple ( value ): """Return True if value looks li ... ke an email address.""" # An @ must be in the middle of the va ... unescape ( middle )) elif ":" not in middle and is_email_simple ( middle ): local , domain = middle . rspli ...
https://man.plustar.jp/django/_modules/django/utils/html.html - [similar]
フォームとフィールドの検証 — Django 4.0.6 ドキュメント 6308
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... forms from django.core.validators import validate_email class MultiEmailField ( forms . Field ): def to_py ... value ): """Check if value consists only of valid emails.""" # Use the parent's handling of required field ... s, etc. super () . validate ( value ) for email in value : validate_email ( email ) このフィールド ... ) message = forms . CharField () sender = forms . EmailField () recipients = MultiEmailField () cc_myself ...
https://man.plustar.jp/django/ref/forms/validation.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT