検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 207 for User (0.028 sec.)
Django の認証方法のカスタマイズ — Django 4.0.6 ドキュメント 10381
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... デルに組み込むことができるでしょう。 あなたは標準の User モデルを 拡張 、もしくは完全にカスタマイズしたモデ ... asic authentication backend that checks the Django users database and queries the built-in permissions. It ... ドの実装 ¶ 認証バックエンドは2つの必須メソッド: get_user(user_id) と authenticate(request, **credentials) を ... た省略可能な authorization methods を持ちます。 get_user` メソッドは user_id -- ユーザー名、データベース上の ...
https://man.plustar.jp/django/topics/auth/customizing.html - [similar]
django.contrib.auth — Django 4.0.6 ドキュメント 10158
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 法の詳細は、 認証トピックガイド を参照してください。 User モデル ¶ class models. User ¶ フィールド ¶ class m ... odels. User User オブジェクトには、以下のフィールドがあります: ... username ¶ 必須です。150 文字以下です。英数字のほか、 _ ... roups ¶ Group への多対多のリレーションシップです。 user_permissions ¶ Permission への多対多のリレーションシ ...
https://man.plustar.jp/django/ref/contrib/auth.html - [similar]
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 9817
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 的に、これらの機能を合わせて認証システムと呼びます。 User オブジェクト ¶ User オブジェクトは、認証システムの ... 際などに利用されます。 Djangoの認証フレームワークにはUserクラスという、ただひとつのクラスのみが存在します。す ... なわち、 'superusers' または admin 'staff' ユーザは、Userオブジェクトと ... 異なるクラスではなく、特別な属性セットを持ったUserオブジェクトなのです。 デフォルトのユーザの主要な属性 ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
Testing GeoDjango apps — Django 4.0.6 ドキュメント 8456
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... are some additional notes and settings for PostGIS users. PostGIS ¶ 設定 ¶ 注釈 The settings below have se ... o figure out what features are available. Advanced users wishing to prevent this additional query may set ... describes several methods to configure a database user with sufficient privileges to run tests for GeoDja ... ke in the instructions, then your testing database user only needs to have the ability to create databases ...
https://man.plustar.jp/django/ref/contrib/gis/testing.html - [similar]
Djangoにおけるパスワード管理 — Django 4.0.6 ドキュメント 8403
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 存システムを提供します。 The password attribute of a User object is a string in this format: <algorithm>$<it ... never to remove entries from this list. If you do, users using unmentioned algorithms won't be able to upg ... nstead of waiting for the upgrade to happen when a user logs in (which may never happen if a user doesn't ... he corresponding password hasher for checking if a user entered the correct password on login. We assume w ...
https://man.plustar.jp/django/topics/auth/passwords.html - [similar]
How to authenticate against Django's user database from Apache — Django 4.0.6 ... 8339
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | up | next » How to authenticate against Django's user database from Apache ¶ Since keeping multiple auth ... a files directly from Apache only to authenticated users. Authenticate access to a Subversion repository a ... gainst Django users with a certain permission. Allow certain users to ... with mod_dav . 注釈 If you have installed a custom user model and want to use this default auth handler, i ...
https://man.plustar.jp/django/howto/deployment/wsgi/apache-auth.html - [similar]
Django 1.6.10 release notes — Django 4.0.6 ドキュメント 7828
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... d prepending HTTP_ . For instance, a header X-Auth-User would become HTTP_X_AUTH_USER in the WSGI environ ... dashes and headers containing underscores: X-Auth-User and X-Auth_User both become HTTP_X_AUTH_USER . Thi ... oxy carefully strips any incoming value for X-Auth-User , an attacker may be able to provide an X-Auth_Use ... ring deployment. Mitigated possible XSS attack via user-supplied redirect URLs ¶ Django relies on user inp ...
https://man.plustar.jp/django/releases/1.6.10.html - [similar]
複数のデータベース — Django 4.0.6 ドキュメント 7679
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... lt PostgreSQL database and a MySQL database called users : DATABASES = { 'default' : { 'NAME' : 'app_data' ... , 'ENGINE' : 'django.db.backends.postgresql' , 'USER' : 'postgres_user' , 'PASSWORD' : 's3krit' }, 'use ... rs' : { 'NAME' : 'user_data' , 'ENGINE' : 'django.db.backends.mysql' , 'U ... SER' : 'mysql_user' , 'PASSWORD' : 'priv4te' } } If the concept of a ...
https://man.plustar.jp/django/topics/db/multi-db.html - [similar]
How to authenticate using REMOTE_USER — Django 4.0.6 ドキュメント 7647
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ous | up | next » How to authenticate using REMOTE_USER ¶ This document describes how to make use of exter ... tion sources (where the web server sets the REMOTE_USER environment variable) in your Django applications. ... are of authentication it typically sets the REMOTE_USER environment variable for use in the underlying app ... lication. In Django, REMOTE_USER is made available in the request.META attribute. D ...
https://man.plustar.jp/django/howto/auth-remote-user.html - [similar]
Model _meta API — Django 4.0.6 ドキュメント 7647
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... r of preference) the related_query_name set by the user, the related_name set by the user, or the name aut ... raised. >>> from django.contrib.auth.models import User # A field on the model >>> User . _meta . get_fiel ... d ( 'username' ) <django.db.models.fields.CharField: usernam ... del that has a relation with the current model >>> User . _meta . get_field ( 'logentry' ) <ManyToOneRel: ...
https://man.plustar.jp/django/ref/models/meta.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT