検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 137 for content (0.039 sec.)
ミドルウェア — Django 4.0.6 ドキュメント 7456
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » ミドル ... he no_append_slash() decorator was added. Sets the Content-Length header for non-streaming responses. CommonM ... e django.middleware.gzip.GZipMiddleware compresses content for browsers that understand GZip compression (all ... ompression happens afterward. It will NOT compress content if any of the following are true: The content body ...
https://man.plustar.jp/django/ref/middleware.html - [similar]
Porting your apps from Django 0.96 to 1.0 — Django 4.0.6 ドキュメント 7336
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » Portin ... ake the following changes: Old (0.96) New (1.0) f['content'] f.read() f['filename'] f.name f['content-type'] ... f.content_type Work with file fields using the new API ¶ The ... is called myfile : Old (0.96) New (1.0) myfile.get_content_filename() myfile.content.path myfile.get_content_ ...
https://man.plustar.jp/django/releases/1.0-porting-guide.html - [similar]
The staticfiles app — Django 4.0.6 ドキュメント 7204
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... c-tab-unix").on("click", function() { $("section.c-content-unix").show(); $("section.c-content-win").hide(); ... .c-tab-win").on("click", function() { $("section.c-content-win").show(); $("section.c-content-unix").hide(); ... jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » The st ... it handles by appending the MD5 hash of the file's content to the filename. For example, the file css/styles. ...
https://man.plustar.jp/django/ref/contrib/staticfiles.html - [similar]
Django 1.5 release notes — Django 4.0.6 ドキュメント 7048
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » Django ... s was unreliable: any middleware that accessed the content attribute would consume the iterator prematurely. ... HttpResponse class. This class exposes a streaming_content attribute which is an iterator. Since StreamingHtt ... pResponse does not have a content attribute, middleware that needs access to the res ...
https://man.plustar.jp/django/releases/1.5.html - [similar]
ミドルウェア (Middleware) — Django 4.0.6 ドキュメント 7048
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » ミドル ... ¶ HttpResponse とは違い、 StreamingHttpResponse は content 属性を持ちません。そのため、ミドルウェアはもはや、 ... すべてのレスポンスが content 属性を持っていることを前提にすることができなくなり ... ます。したがって、content にアクセスする必要がある場合には、レスポンスオブジ ...
https://man.plustar.jp/django/topics/http/middleware.html - [similar]
File オブジェクト — Django 4.0.6 ドキュメント 7000
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » File オ ... この属性をサブクラスで扱う場合には注意が必要です。 ContentFile や FieldFile など File のサブクラスは、この属性 ... gh to require multiple chunks to access all of its content give some chunk_size . close () [ソース] ¶ Close t ... s , readable() , writable() , and seekable() . The ContentFile class ¶ class ContentFile ( content , name = N ...
https://man.plustar.jp/django/ref/files/file.html - [similar]
メールを送信する — Django 4.0.6 ドキュメント 6880
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » メール ... t/alternative email with message as the text/plain content type and html_message as the text/html content typ ... se can be either MIMEBase instances, or (filename, content, mimetype) triples. headers : メッセージに追加する ... l probably want to override this method to put the content you want into the MIME object. recipients() は、 t ...
https://man.plustar.jp/django/topics/email.html - [similar]
How to create CSV output — Django 4.0.6 ドキュメント 6832
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » How to ... appropriate CSV header. response = HttpResponse ( content_type = 'text/csv' , headers = { 'Content-Dispositi ... 現れてしまう恐れがあります。 レスポンスには、追加の Content-Disposition ヘッダに CSV のファイル名を設定すること ... e ( ( writer . writerow ( row ) for row in rows ), content_type = "text/csv" , headers = { 'Content-Dispositi ...
https://man.plustar.jp/django/howto/outputting-csv.html - [similar]
django.core.files.base — Django 4.0.6 ドキュメント 6796
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules up django.core.files.base のソー ... elf ): self . file . close () [ドキュメント] class ContentFile ( File ): """ A File-like object that takes ju ... st raw content, rather than an actual file. """ def __init__ ( se ... lf , content , name = None ): stream_class = StringIO if isinst ...
https://man.plustar.jp/django/_modules/django/core/files/base.html - [similar]
The flatpages app — Django 4.0.6 ドキュメント 6796
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » The fl ... tpages" application. It lets you store "flat" HTML content in a database and handles the management for you v ... API. A flatpage is a object with a URL, title and content. Use it for one-off, special-case pages, such as " ... an be associated with one, or multiple, sites. The content field may optionally be left blank if you prefer t ...
https://man.plustar.jp/django/ref/contrib/flatpages.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT