Results of 21 - 30 of about 198 for file (0.047 sec.)
- Django 1.5.9 release notes — Django 4.0.6 ドキュメント 6220
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
URL relative to the domain and not to the scheme. File upload denial-of-service ¶ Before this release, Dj ...
ango's file upload handing in its default configuration may de ...
number of os.stat() system calls when a duplicate filename is uploaded. Since stat() may invoke IO, this ...
ven enough time, a user with the ability to upload files can cause poor performance in the upload handler, ...
-
https://man.plustar.jp/django/releases/1.5.9.html
- [similar]
- Django 1.7 release notes — Django 4.0.6 ドキュメント 6220
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
pdated, changed, and deleted by creating migration files that represent the model changes and which can be ...
our values allow any field to be serialized into a file, as well as allowing the field to be copied safely ...
current site on each request. django.contrib.staticfiles ¶ The static files storage classes may be subclas ...
to override the permissions that collected static files and directories receive by setting the file_permi ...
-
https://man.plustar.jp/django/releases/1.7.html
- [similar]
- Porting your apps from Django 0.96 to 1.0 — Django 4.0.6 ドキュメント 6156
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ll details. モデル ¶ Common changes to your models file: Rename maxlength to max_length ¶ Rename your maxl ...
dmin you'll move those declarations to an admin.py file; see the admin below for more details. 参考 A cont ...
y . カスタマイズ例 ¶ Below is an example models.py file with all the changes you'll need to make: Old (0.9 ...
with an admin.site.register() call in an admin.py file. Below are some more details on how to rewrite tha ...
-
https://man.plustar.jp/django/releases/1.0-porting-guide.html
- [similar]
- 索引 — Django 4.0.6 ドキュメント 6123
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
メソッド) (TemplateResponse のメソッド) __iter__() (File のメソッド) (HttpRequest のメソッド) (ModelChoiceI ...
efault_manager (Model の属性) _open() (django.core.files.storage モジュール) _save() (django.core.files.st ...
性) allow_empty_first_page (Paginator の属性) allow_files (FilePathField の属性) , [1] allow_folders (FileP ...
nager (django.contrib.sessions のクラス) base_url (FileSystemStorage の属性) base_widget (RangeWidget の属 ...
-
https://man.plustar.jp/django/genindex.html
- [similar]
- django-admin と manage.py — Django 4.0.6 ドキュメント 6123
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
le so that it points to your project's settings.py file. The django-admin script should be on your system ...
ages ¶ django-admin compilemessages ¶ Compiles .po files created by makemessages to .mo files for use with ...
y , -f ¶ Includes fuzzy translations into compiled files. 使い方の例: django - admin compilemessages -- lo ...
e backend using the information from your settings file. See Django's cache framework for more information ...
-
https://man.plustar.jp/django/ref/django-admin.html
- [similar]
- 翻訳 — Django 4.0.6 ドキュメント 6091
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
as the default translation method for a particular file. Without _() in the global namespace, the develope ...
age appears on the home page only # path/to/python/file.py:123 msgid "Welcome to my site." msgstr "" これは ...
acters end up in the corresponding entry in the PO file, which makes the translation process easier. For i ...
ntry "First sentence. Second paragraph." in the PO file, compared to "\n First sentence.\n Second paragrap ...
-
https://man.plustar.jp/django/topics/i18n/translation.html
- [similar]
- How is Django Formed? — Django 4.0.6 ドキュメント 6026
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
twine Access to Django's record on PyPI. Create a file with your credentials: ~/.pypirc ¶ [pypi] username ...
d Access to the djangoproject.com server to upload files. Access to the admin on djangoproject.com as a "S ...
lations.py fetch and then commit the changed/added files (both .po and .mo). Sometimes there are validatio ...
by running git clean -dfx . Run make -f extras/Makefile to generate the release packages. This will create ...
-
https://man.plustar.jp/django/internals/howto-release-django.html
- [similar]
- How to write a custom storage class — Django 4.0.6 ドキュメント 5822
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ください。 カスタムストレージシステムは django.core.files.storage.Storage のサブクラスでなければなりません。 ...
: from django.core.files.storage import Storage class MyStorage ( Storage ...
from django.conf import settings from django.core.files.storage import Storage class MyStorage ( Storage ...
tible クラスデコレータを使うことができます (それが FileSystemStorage で Django が使うものです)。 デフォルト ...
-
https://man.plustar.jp/django/howto/custom-file-storage.html
- [similar]
- How to configure and use logging — Django 4.0.6 ドキュメント 5822
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
our logs are sent to various destinations - to log files, external services, email and so on - with some a ...
r ¶ This example configures a single handler named file , that uses Python's FileHandler to save logs of l ...
evel DEBUG and higher to the file general.log (at the project root): LOGGING = { [ . ...
.. ] 'handlers' : { 'file' : { 'class' : 'logging.FileHandler' , 'filename' ...
-
https://man.plustar.jp/django/howto/logging.html
- [similar]
- Django 1.6.6 release notes — Django 4.0.6 ドキュメント 5822
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
URL relative to the domain and not to the scheme. File upload denial-of-service ¶ Before this release, Dj ...
ango's file upload handing in its default configuration may de ...
number of os.stat() system calls when a duplicate filename is uploaded. Since stat() may invoke IO, this ...
ven enough time, a user with the ability to upload files can cause poor performance in the upload handler, ...
-
https://man.plustar.jp/django/releases/1.6.6.html
- [similar]