Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-openid-auth
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
django-openid-auth
Commits
cf6ba431
Commit
cf6ba431
authored
Nov 24, 2015
by
Usman Khalid
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2 from edx/django1.8-upgrade
Django1.8 upgrade
parents
5cb37e85
dbf4c9b7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
django_openid_auth/migrations/0001_initial.py
+1
-1
django_openid_auth/models.py
+1
-1
setup.py
+1
-2
No files found.
django_openid_auth/migrations/0001_initial.py
View file @
cf6ba431
...
@@ -43,7 +43,7 @@ class Migration(migrations.Migration):
...
@@ -43,7 +43,7 @@ class Migration(migrations.Migration):
name
=
'UserOpenID'
,
name
=
'UserOpenID'
,
fields
=
[
fields
=
[
(
'id'
,
models
.
AutoField
(
verbose_name
=
'ID'
,
serialize
=
False
,
auto_created
=
True
,
primary_key
=
True
)),
(
'id'
,
models
.
AutoField
(
verbose_name
=
'ID'
,
serialize
=
False
,
auto_created
=
True
,
primary_key
=
True
)),
(
'claimed_id'
,
models
.
TextField
(
unique
=
True
,
max_length
=
2047
)),
(
'claimed_id'
,
models
.
TextField
(
max_length
=
2047
)),
(
'display_id'
,
models
.
TextField
(
max_length
=
2047
)),
(
'display_id'
,
models
.
TextField
(
max_length
=
2047
)),
(
'user'
,
models
.
ForeignKey
(
to
=
settings
.
AUTH_USER_MODEL
)),
(
'user'
,
models
.
ForeignKey
(
to
=
settings
.
AUTH_USER_MODEL
)),
],
],
...
...
django_openid_auth/models.py
View file @
cf6ba431
...
@@ -57,7 +57,7 @@ class Association(models.Model):
...
@@ -57,7 +57,7 @@ class Association(models.Model):
class
UserOpenID
(
models
.
Model
):
class
UserOpenID
(
models
.
Model
):
user
=
models
.
ForeignKey
(
settings
.
AUTH_USER_MODEL
)
user
=
models
.
ForeignKey
(
settings
.
AUTH_USER_MODEL
)
claimed_id
=
models
.
TextField
(
max_length
=
2047
,
unique
=
True
)
claimed_id
=
models
.
TextField
(
max_length
=
2047
)
display_id
=
models
.
TextField
(
max_length
=
2047
)
display_id
=
models
.
TextField
(
max_length
=
2047
)
class
Meta
:
class
Meta
:
...
...
setup.py
View file @
cf6ba431
...
@@ -43,7 +43,7 @@ from setuptools import find_packages, setup
...
@@ -43,7 +43,7 @@ from setuptools import find_packages, setup
description
,
long_description
=
__doc__
.
split
(
'
\n\n
'
,
1
)
description
,
long_description
=
__doc__
.
split
(
'
\n\n
'
,
1
)
VERSION
=
'0.
7
'
VERSION
=
'0.
8
'
setup
(
setup
(
name
=
'django-openid-auth'
,
name
=
'django-openid-auth'
,
...
@@ -53,7 +53,6 @@ setup(
...
@@ -53,7 +53,6 @@ setup(
install_requires
=
[
install_requires
=
[
'django>=1.5'
,
'django>=1.5'
,
'python-openid>=2.2.0'
,
'python-openid>=2.2.0'
,
'south'
,
],
],
package_data
=
{
package_data
=
{
'django_openid_auth'
:
[
'templates/openid/*.html'
],
'django_openid_auth'
:
[
'templates/openid/*.html'
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment