検索

phrase: max: clip:
target: order:
Results of 141 - 150 of about 171 for we (0.086 sec.)
条件付きビュー — Django 4.0.6 ドキュメント 4988
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... eady seen. This is commonly used when retrieving a web page (using an HTTP GET request) to avoid sending ... for something the client has already retrieved. However, the same headers can be used for all HTTP meth ... nt will send you, so be prepared to handle both. However, sometimes only one value is easy to compute an ... ( etag_func ) last_modified ( last_modified_func ) We could write the earlier example, which only uses a ...
https://man.plustar.jp/django/topics/conditional-view-processing.html - [similar]
メールを送信する — Django 4.0.6 ドキュメント 4988
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... edirect ( '/contact/thanks/' ) else : # In reality we'd use a form class # to get proper validation erro ... use it like this: message . attach_file ( '/images/weather_map.png' ) For MIME types starting with text/ ... lready open so send_messages() doesn't close it. # We need to manually close the connection. connection ...
https://man.plustar.jp/django/topics/email.html - [similar]
django.utils.html — Django 4.0.6 ドキュメント 4932
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e return value @keep_lazy_text def strip_spaces_between_tags ( value ): """Return the given HTML with sp ... aces between tags removed.""" return re . sub ( r ">\s+<" , " ... m_punctuation ( lead , middle , trail ) # Make URL we want to point to. url = None nofollow_attr = ' rel ... ="nofollow"' if nofollow else "" if simple_url_re . match ( middle ): url = ...
https://man.plustar.jp/django/_modules/django/utils/html.html - [similar]
How to manage error reporting — Django 4.0.6 ドキュメント 4932
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ョンの詳細が悪意あるユーザーに漏れるのを防ぎます。 However, running with DEBUG set to False means you'll n ... , Django will send email from root @ localhost . However, some mail providers reject all email from this ... are usually people typing in broken URLs or broken web bots. It also ignores 404s when the referer is eq ... requested URL, since this behavior is from broken web bots too. 注釈 BrokenLinkEmailsMiddleware must ap ...
https://man.plustar.jp/django/howto/error-reporting.html - [similar]
contenttypes フレームワーク — Django 4.0.6 ドキュメント 4932
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... track all of the models installed in your Django-powered project, providing a high-level, generic interf ... f ContentType for a particular model. Relations between your models and ContentType can also be used to ... enable "generic" relationships between an instance of one of your models and instances ... esented by this ContentType instance. For example, we could look up the ContentType for the User model: ...
https://man.plustar.jp/django/ref/contrib/contenttypes.html - [similar]
GeoDjango Database API — Django 4.0.6 ドキュメント 4932
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... l geometries available in modern MySQL versions. However, the spatial functions are not as rich as other ... y be passed in using the GEOSGeometry object, WKT (Well Known Text [1] ), HEXEWKB (PostGIS specific -- a ... manager method like filter() , exclude() , etc. However, the lookup types unique to GeoDjango are only ... graphic distance queries are performed with. [3] However, these queries may take a long time, as great-c ...
https://man.plustar.jp/django/ref/contrib/gis/db-api.html - [similar]
GeoDjango Installation — Django 4.0.6 ドキュメント 4932
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... an immediate response, someone will attempt to answer your question as soon as they see it. Ask your qu ... he directory where the libraries built from source were installed. In general, the library path may be s ... ary path is set correctly and geospatial libraries were built perfectly. The binutils package may be ins ... ages provided by the Python Software Foundation, however, this is not required. Python ¶ Although macOS ...
https://man.plustar.jp/django/ref/contrib/gis/install/index.html - [similar]
django-admin と manage.py — Django 4.0.6 ドキュメント 4932
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... jango-admin diffsettings ¶ Displays differences between the current settings file and Django's default s ... ettings that don't appear in the defaults are followed by "###" . For example, the default settings don' ... t define ROOT_URLCONF , so ROOT_URLCONF is followed by "###" in the output of diffsettings . --all ¶ ... ault settings are prefixed with a minus sign, followed by the changed setting prefixed with a plus sign. ...
https://man.plustar.jp/django/ref/django-admin.html - [similar]
非同期サポート — Django 4.0.6 ドキュメント 4932
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... empt to minimize the number of context-switches between sync and async. If you have an ASGI server, but ... ust once, before it enters the middleware stack. However, if you put synchronous middleware between an A ... hout generating SynchronousOnlyOperation errors; however, you also won't be able to await asynchronous A ... d sync_to_async() . They are used to transition between the calling styles while preserving compatibilit ...
https://man.plustar.jp/django/topics/async.html - [similar]
Django の認証方法のカスタマイズ — Django 4.0.6 ドキュメント 4932
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... th backend, or use the mechanisms provided by most web servers. AUTHENTICATION_BACKENDS への順番は処理に ... n unusable password, as if set_unusable_password() were used. check_password ( raw_password ) ¶ 与えられ ... ult user, you can install Django's UserManager ; however, if your user model defines different fields, y ... _email ( email ) ¶ Normalizes email addresses by lowercasing the domain portion of the email address. ge ...
https://man.plustar.jp/django/topics/auth/customizing.html - [similar]