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
aa042568
Commit
aa042568
authored
Aug 10, 2010
by
James Henstridge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update copyright notices.
parent
c166b539
Show whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
23 additions
and
23 deletions
+23
-23
LICENSE.txt
+1
-1
django_openid_auth/__init__.py
+1
-1
django_openid_auth/admin.py
+1
-1
django_openid_auth/auth.py
+1
-1
django_openid_auth/forms.py
+1
-1
django_openid_auth/management/__init__.py
+1
-1
django_openid_auth/management/commands/__init__.py
+1
-1
django_openid_auth/management/commands/openid_cleanup.py
+1
-1
django_openid_auth/models.py
+1
-1
django_openid_auth/store.py
+1
-1
django_openid_auth/teams.py
+1
-1
django_openid_auth/tests/__init__.py
+1
-1
django_openid_auth/tests/test_auth.py
+1
-1
django_openid_auth/tests/test_store.py
+1
-1
django_openid_auth/tests/test_views.py
+1
-1
django_openid_auth/tests/urls.py
+1
-1
django_openid_auth/urls.py
+1
-1
django_openid_auth/views.py
+1
-1
example_consumer/__init__.py
+1
-1
example_consumer/settings.py
+1
-1
example_consumer/urls.py
+1
-1
example_consumer/views.py
+1
-1
setup.py
+1
-1
No files found.
LICENSE.txt
View file @
aa042568
Copyright (C) 2007 Simon Willison
Copyright (C) 2008-20
09
Canonical Ltd.
Copyright (C) 2008-20
10
Canonical Ltd.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
...
...
django_openid_auth/__init__.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2007 Simon Willison
# Copyright (C) 2008-20
09
Canonical Ltd.
# Copyright (C) 2008-20
10
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
django_openid_auth/admin.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2008-20
09
Canonical Ltd.
# Copyright (C) 2008-20
10
Canonical Ltd.
# Copyright (C) 2010 Dave Walker
#
# Redistribution and use in source and binary forms, with or without
...
...
django_openid_auth/auth.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2008-20
09
Canonical Ltd.
# Copyright (C) 2008-20
10
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
django_openid_auth/forms.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2007 Simon Willison
# Copyright (C) 2008-20
09
Canonical Ltd.
# Copyright (C) 2008-20
10
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
django_openid_auth/management/__init__.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2009 Canonical Ltd.
# Copyright (C) 2009
-2010
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
django_openid_auth/management/commands/__init__.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2009 Canonical Ltd.
# Copyright (C) 2009
-2010
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
django_openid_auth/management/commands/openid_cleanup.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2009 Canonical Ltd.
# Copyright (C) 2009
-2010
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
django_openid_auth/models.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2007 Simon Willison
# Copyright (C) 2008-20
09
Canonical Ltd.
# Copyright (C) 2008-20
10
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
django_openid_auth/store.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2007 Simon Willison
# Copyright (C) 2008-20
09
Canonical Ltd.
# Copyright (C) 2008-20
10
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
django_openid_auth/teams.py
View file @
aa042568
# Launchpad OpenID Teams Extension support for python-openid
#
# Copyright (C) 2008-20
09
Canonical Ltd.
# Copyright (C) 2008-20
10
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
django_openid_auth/tests/__init__.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2009 Canonical Ltd.
# Copyright (C) 2009
-2010
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
django_openid_auth/tests/test_auth.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 20
09
Canonical Ltd.
# Copyright (C) 20
10
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
django_openid_auth/tests/test_store.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2009 Canonical Ltd.
# Copyright (C) 2009
-2010
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
django_openid_auth/tests/test_views.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2009 Canonical Ltd.
# Copyright (C) 2009
-2010
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
django_openid_auth/tests/urls.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2009 Canonical Ltd.
# Copyright (C) 2009
-2010
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
django_openid_auth/urls.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2007 Simon Willison
# Copyright (C) 2008-20
09
Canonical Ltd.
# Copyright (C) 2008-20
10
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
django_openid_auth/views.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2007 Simon Willison
# Copyright (C) 2008-20
09
Canonical Ltd.
# Copyright (C) 2008-20
10
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
example_consumer/__init__.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2007 Simon Willison
# Copyright (C) 2008-20
09
Canonical Ltd.
# Copyright (C) 2008-20
10
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
example_consumer/settings.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2007 Simon Willison
# Copyright (C) 2008-20
09
Canonical Ltd.
# Copyright (C) 2008-20
10
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
example_consumer/urls.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2007 Simon Willison
# Copyright (C) 2008-20
09
Canonical Ltd.
# Copyright (C) 2008-20
10
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
example_consumer/views.py
View file @
aa042568
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2007 Simon Willison
# Copyright (C) 2008-20
09
Canonical Ltd.
# Copyright (C) 2008-20
10
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
setup.py
View file @
aa042568
#!/usr/bin/env python
# django-openid-auth - OpenID integration for django.contrib.auth
#
# Copyright (C) 2009 Canonical Ltd.
# Copyright (C) 2009
-2010
Canonical Ltd.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
...
...
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