検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 132 for based (0.039 sec.)
Django 1.5 release notes — Django 4.0.6 ドキュメント 8233
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ated with proxy models. New view variable in class-based views context ¶ In all generic class-based views ( ... or any class-based view inheriting from ContextMixin ), the context d ... appears during the same browser session. The cache-based session backend can store session data in a non-de ... the abstract class. Context in year archive class-based views ¶ For consistency with the other date-based ...
https://man.plustar.jp/django/releases/1.5.html - [similar]
GDAL API — Django 4.0.6 ドキュメント 7967
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... driver, but they will be of the same class as file-based raster sources. class GDALRaster ( ds_input , writ ... >> rst = GDALRaster ( rst_bytes ) >>> rst . is_vsi_based True >>> rst . name # Stored in a random path in t ... 10 , 'srid' : 4326 }) . driver . name 'MEM' A file based GeoTiff raster is created through the following ex ... d. Note that this includes the driver, so for file-based rasters the warp function will create a new raster ...
https://man.plustar.jp/django/ref/contrib/gis/gdal.html - [similar]
django.core.paginator — Django 4.0.6 ドキュメント 7870
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... _number ( self , number ): """Validate the given 1-based page number.""" try : if isinstance ( number , flo ... number ): """Return a Page object for the given 1-based page number.""" number = self . validate_number ( ... @property def page_range ( self ): """ Return a 1-based range of pages for iterating through within a temp ... , on_each_side = 3 , on_ends = 2 ): """ Return a 1-based range of pages with some values elided. If the pag ...
https://man.plustar.jp/django/_modules/django/core/paginator.html - [similar]
PostgreSQL specific model fields — Django 4.0.6 ドキュメント 7870
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... javascript' ) <QuerySet []> 注釈 PostgreSQL uses 1-based indexing for array fields when writing raw SQL. Ho ... wever these indexes and those used in slices use 0-based indexing to be consistent with Python. Slice trans ... ost>, <Post: Second post>]> 注釈 PostgreSQL uses 1-based indexing for array fields when writing raw SQL. Ho ... wever these slices and those used in indexes use 0-based indexing to be consistent with Python. Multidimens ...
https://man.plustar.jp/django/ref/contrib/postgres/fields.html - [similar]
Django's cache framework — Django 4.0.6 ドキュメント 7337
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ith "downstream" caches, such as Squid and browser-based caches. These are the types of caches that you don ... CHES . Memcached ¶ Memcached is an entirely memory-based cache server, originally developed to handle high ... ] } } A final point about Memcached is that memory-based caching has a disadvantage: because the cached dat ... or permanent data storage, so don't rely on memory-based caching as your only data storage. Without a doubt ...
https://man.plustar.jp/django/topics/cache.html - [similar]
Date-based mixins — Django 4.0.6 ドキュメント 7253
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ts | Index | Modules « previous | up | next » Date-based mixins ¶ 注釈 All the date formatting attributes i ... teTimeField in the QuerySet 's model that the date-based archive should use to determine the list of object ... urrent date/time. Returns allow_future by default. BaseDateListView ¶ class BaseDateListView ¶ A base class ... that provides common behavior for all date-based views. There won't normally be a reason to instant ...
https://man.plustar.jp/django/ref/class-based-views/mixins-date-based.html - [similar]
クロスサイトリクエストフォージェリ (CSRF) 対策 — Django 4.0.6 ドキュメント 6986
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ベースのビューを使っている場合は、 Decorating class-based views を参照してください。 拒否されたリクエスト ¶ ... csrf logger. How it works ¶ The CSRF protection is based on the following things: A CSRF cookie that is bas ... ベースのビューを使っている場合は、 Decorating class-based views を参照してください。 テスト ¶ The CsrfViewMi ... ¶ The examples below assume you are using function-based views. If you are working with class-based views, ...
https://man.plustar.jp/django/ref/csrf.html - [similar]
View decorators — Django 4.0.6 ドキュメント 6986
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ョンする for how to use these decorators with class-based views. Allowed HTTP methods ¶ The decorators in dj ... ators.http can be used to restrict access to views based on the request method. These decorators will retur ... ews.decorators.vary can be used to control caching based on specific request headers. vary_on_cookie ( func ...
https://man.plustar.jp/django/topics/http/decorators.html - [similar]
Django 1.4 release notes — Django 4.0.6 ドキュメント 6889
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ographic signing docs for more information. Cookie-based session backend ¶ Django 1.4 introduces a cookie-b ... fication before using this backend. See the cookie-based session backend docs for more information. New for ... mtools has been replaced with a new implementation based on the class-based views introduced in Django 1.3. ... ery previous step. Django 1.4 ships with a session-based storage backend and a cookie-based storage backend ...
https://man.plustar.jp/django/releases/1.4.html - [similar]
Advanced testing topics — Django 4.0.6 ドキュメント 6889
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... = my_view ( request ) # Use this syntax for class-based views. response = MyView . as_view ()( request ) s ... ods are still synchronous callables. Testing class-based views ¶ In order to test class-based views outside ... tiation. For example, assuming the following class-based view: views.py ¶ from django.views.generic import ... ort multitenancy or otherwise alter business logic based on the request's host and use custom host names in ...
https://man.plustar.jp/django/topics/testing/advanced.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT