検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 238 for Data (0.071 sec.)
Installing Geospatial libraries — Django 4.0.6 ドキュメント 6152
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Lite only) 8.x, 7.x, 6.x, 5.x, 4.x GDAL Geospatial Data Abstraction Library はい 3.3, 3.2, 3.1, 3.0, 2.4, ... e used independently of Django. In other words, no database or settings file required -- import them as no ... ven order. If using MySQL or Oracle as the spatial database, only GEOS is required. 注釈 On Linux platform ... PROJ ¶ PROJ is a library for converting geospatial data to different coordinate reference systems. First, ...
https://man.plustar.jp/django/ref/contrib/gis/install/geolibs.html - [similar]
Django 1.3 release notes — Django 4.0.6 ドキュメント 6111
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... bclassed and overridden to provide common views of data without having to write too much code. Analogs of ... hange the template that is used, or put additional data into the context. However, you can't (easily) modi ... ay that Django 1.2 introduced support for multiple database connections, Django 1.3 allows you to use the ... ngo test suite with runtests.py when using spatial database backends . MEDIA_URL and STATIC_URL must end i ...
https://man.plustar.jp/django/releases/1.3.html - [similar]
OGR Inspection — Django 4.0.6 ドキュメント 6080
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... next » OGR Inspection ¶ ogrinspect ¶ ogrinspect ( data_source , model_name , ** kwargs ) mapping ¶ mappin ... g ( data_source , geom_name = 'geom' , layer_key = 0 , mult ... ion ogrinspect mapping 前のトピックへ LayerMapping data import utility 次のトピックへ GeoJSON Serializer 関 ... 連キーワード OGR , Inspection , ogrinspect , geom , data , mapping , トピック , up , next , previous クイッ ...
https://man.plustar.jp/django/ref/contrib/gis/ogrinspect.html - [similar]
Django 1.4 release notes — Django 4.0.6 ドキュメント 6080
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... UPDATE support , the ability to bulk insert large datasets for improved performance, and QuerySet.prefetc ... ngo stores date and time information in UTC in the database, uses time-zone-aware datetime objects interna ... ers around the world. Storing datetimes in UTC for database portability and interoperability. (This argume ... ith time zone information in Django 1.3.) Avoiding data corruption problems around DST transitions. Time z ...
https://man.plustar.jp/django/releases/1.4.html - [similar]
Django 1.7 release notes — Django 4.0.6 ドキュメント 6040
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n be run on any development, staging or production database. Migrations are covered in their own documenta ... umentation for details. The allow_syncdb method on database routers is now called allow_migrate , but stil ... (nothing more than renaming is required). initial_data fixtures are no longer loaded for apps with migrat ... ions; if you want to load initial data for an app, we suggest you create a migration for ...
https://man.plustar.jp/django/releases/1.7.html - [similar]
Simple mixins — Django 4.0.6 ドキュメント 5999
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... { 'title' : 'Custom Title' }) メソッド get_context_data ( ** kwargs ) ¶ Returns a dictionary representing ... e returned context. Example usage: def get_context_data ( self , ** kwargs ): context = super () . get_con ... text_data ( ** kwargs ) context [ 'number' ] = random . rand ... iable that points to the View instance. Use alters_data where appropriate Note that having the view instan ...
https://man.plustar.jp/django/ref/class-based-views/mixins-simple.html - [similar]
django.contrib.postgres — Django 4.0.6 ドキュメント 5968
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... mber of features which are not shared by the other databases Django supports. This optional module contain ... nd form fields for a number of PostgreSQL specific data types. 注釈 Django is, and will continue to be, a ... ble applications for the Django community to write database-agnostic code where practical. However, we rec ... al world projects written using Django need not be database-agnostic. In fact, once a project reaches a gi ...
https://man.plustar.jp/django/ref/contrib/postgres/index.html - [similar]
Django 2.2 リリースノート — Django 4.0.6 ドキュメント 5968
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... and UniqueConstraint classes enable adding custom database constraints. Constraints are added to models u ... reating B-Tree , hash , and SP-GiST indexes in the database. BrinIndex now has the autosummarize parameter ... ( Index.condition ). Added the NullIf and Reverse database functions, as well as many math database funct ... ameter of QuerySet.bulk_create() to True tells the database to ignore failure to insert rows that fail uni ...
https://man.plustar.jp/django/releases/2.2.html - [similar]
リクエストとレスポンスのオブジェクト — Django 4.0.6 ドキュメント 5887
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ody as a bytestring. This is useful for processing data in different ways than conventional HTML forms: bi ... XML payload etc. For processing conventional form data, use HttpRequest.POST . You can also read from an ... of these I/O stream methods will produce a RawPostDataException . HttpRequest. path ¶ A string representi ... he current encoding used to decode form submission data (or None , which means the DEFAULT_CHARSET setting ...
https://man.plustar.jp/django/ref/request-response.html - [similar]
How to manage error reporting — Django 4.0.6 ドキュメント 5856
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Filtering error reports ¶ 警告 Filtering sensitive data is a hard problem, and it's nearly impossible to g ... uarantee that sensitive data won't leak into an error report. Therefore, error ... is responsible for compiling the exception report data, and formatting it as text or HTML appropriately. ... EPORTER_FILTER when preparing the exception report data.) Your custom reporter class needs to inherit from ...
https://man.plustar.jp/django/howto/error-reporting.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT