検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 58 for permission (0.057 sec.)
Django 2.1.8 リリースノート — Django 4.0.6 ドキュメント 7757
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... from being editable if the user only has the view permission ( #30289 ). 目次 Django 2.1.8 リリースノート Bugfi ... fixes , ドキュメント , through , 検索 , クイック , permission クイック検索 Last update: 2022年6月01日 « previous ...
https://man.plustar.jp/django/releases/2.1.8.html - [similar]
Django 3.1.1 release notes — Django 4.0.6 ドキュメント 7757
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... and several bugs in 3.1. CVE-2020-24583: Incorrect permissions on intermediate-level directories on Python 3.7+ ... ¶ On Python 3.7+, FILE_UPLOAD_DIRECTORY_PERMISSIONS mode was not applied to intermediate-level direct ... gement command. You should review and manually fix permissions on existing intermediate-level directories. CVE-2 ... 020-24584: Permission escalation in intermediate-level directories of th ...
https://man.plustar.jp/django/releases/3.1.1.html - [similar]
索引 — Django 4.0.6 ドキュメント 7552
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... r の属性) (RegexValidator の属性) codename (models.Permission の属性) coerce (TypedChoiceField の属性) Collate ( ... 属性) (HttpRequest の属性) (LogEntry の属性) (models.Permission の属性) (UploadedFile の属性) content_type_extra ( ... 属性) default_manager_name (Options の属性) default_permissions (Options の属性) default_related_name (Options の ... age_not_found() (django.views モジュール) defaults.permission_denied() (django.views モジュール) defaults.server ...
https://man.plustar.jp/django/genindex.html - [similar]
システムチェックフレームワーク — Django 4.0.6 ドキュメント 7552
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... admin.E129 : <modeladmin> must define a has_<foo>_permission() method for the <action> action. admin.E130 : __n ... NAME_FIELD , but it is not unique. auth.E005 : The permission codenamed <codename> clashes with a builtin permis ... sion for model <model> . auth.E006 : The permission codenamed <codename> is duplicated for model <mode ... el> must be at most 244 characters for its builtin permission names to be at most 255 characters. auth.E008 : Th ...
https://man.plustar.jp/django/ref/checks.html - [similar]
Django オブジェクトのシリアル化 — Django 4.0.6 ドキュメント 7552
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ittle bit differently: <object pk="27" model="auth.permission"> <!-- ... --> <field to="contenttypes.contenttype ... </object> In this example we specify that the auth.Permission object with the PK 27 has a foreign key to the con ... he auth.User model has such a relation to the auth.Permission model: <object pk="1" model="auth.user"> <!-- ... ... --> <field to="auth.permission" name="user_permissions" rel="ManyToManyRel"> <obj ...
https://man.plustar.jp/django/topics/serialization.html - [similar]
Django 2.2.16 release notes — Django 4.0.6 ドキュメント 7479
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ata loss bugs in 2.2.15. CVE-2020-24583: Incorrect permissions on intermediate-level directories on Python 3.7+ ... ¶ On Python 3.7+, FILE_UPLOAD_DIRECTORY_PERMISSIONS mode was not applied to intermediate-level direct ... gement command. You should review and manually fix permissions on existing intermediate-level directories. CVE-2 ... 020-24584: Permission escalation in intermediate-level directories of th ...
https://man.plustar.jp/django/releases/2.2.16.html - [similar]
Django 3.0.10 release notes — Django 4.0.6 ドキュメント 7479
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... data loss bugs in 3.0.9. CVE-2020-24583: Incorrect permissions on intermediate-level directories on Python 3.7+ ... ¶ On Python 3.7+, FILE_UPLOAD_DIRECTORY_PERMISSIONS mode was not applied to intermediate-level direct ... gement command. You should review and manually fix permissions on existing intermediate-level directories. CVE-2 ... 020-24584: Permission escalation in intermediate-level directories of th ...
https://man.plustar.jp/django/releases/3.0.10.html - [similar]
Built-in Views — Django 4.0.6 ドキュメント 7421
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rmation. The 403 (HTTP Forbidden) view ¶ defaults. permission_denied ( request , exception , template_name = '40 ... l, by default, call the view django.views.defaults.permission_denied . This view loads and renders the template ... ion that triggered the view. django.views.defaults.permission_denied is triggered by a PermissionDenied exceptio ... code like this: from django.core.exceptions import PermissionDenied def edit ( request , pk ): if not request . ...
https://man.plustar.jp/django/ref/views.html - [similar]
Django 1.8 リリースノート — Django 4.0.6 ドキュメント 7421
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... go.contrib.admin ¶ ModelAdmin now has a has_module_permission() method to allow limiting access to the module on ... to the admin site by overriding only AdminSite.has_permission() and AdminSite.login_form . The base.html templat ... e user-specific header. A new context variable has_permission , which gets its value from has_permission() , ind ... ontrib.auth ¶ Authorization backends can now raise PermissionDenied in has_perm() and has_module_perms() to shor ...
https://man.plustar.jp/django/releases/1.8.html - [similar]
ビューを記述する — Django 4.0.6 ドキュメント 7421
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... : handler500 = 'mysite.views.my_custom_error_view' permission_denied() ビューは handler403 でオーバーライドされま ... す: handler403 = 'mysite.views.my_custom_permission_denied_view' bad_request() ビューは handler400 でオ ... 外を起こします。 from django.core.exceptions import PermissionDenied from django.http import HttpResponse from dj ... nse ( 'Error handler content' , status = 403 ) def permission_denied_view ( request ): raise PermissionDenied ur ...
https://man.plustar.jp/django/topics/http/views.html - [similar]
PREV 1 2 3 4 5 6 NEXT