Changeset 8
- Timestamp:
- 01/03/07 12:26:42 (5 years ago)
- Files:
-
- trunk/djangoid (modified) (1 prop)
- trunk/djangoid/AUTHORS (added)
- trunk/djangoid/COPYING (added)
- trunk/djangoid/README (added)
- trunk/djangoid/__init__.py (modified) (1 diff)
- trunk/djangoid/fix_headers.sh (added)
- trunk/djangoid/header.gpl (added)
- trunk/djangoid/manage.py (modified) (1 diff)
- trunk/djangoid/openid (modified) (1 prop)
- trunk/djangoid/openid/server (modified) (1 prop)
- trunk/djangoid/openid/store (modified) (1 prop)
- trunk/djangoid/server (modified) (1 prop)
- trunk/djangoid/server/__init__.py (modified) (1 diff)
- trunk/djangoid/server/djangoidstore.py (modified) (1 diff)
- trunk/djangoid/server/models.py (modified) (1 diff)
- trunk/djangoid/server/views.py (modified) (1 diff)
- trunk/djangoid/settings.py (modified) (1 diff)
- trunk/djangoid/templates/users (modified) (1 prop)
- trunk/djangoid/urls.py (modified) (1 diff)
- trunk/djangoid/users (modified) (1 prop)
- trunk/djangoid/users/__init__.py (modified) (1 diff)
- trunk/djangoid/users/models.py (modified) (1 diff)
- trunk/djangoid/users/views.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/djangoid
- Property svn:ignore set to
db.dat
*.pyc
*.bak
- Property svn:ignore set to
trunk/djangoid/__init__.py
r2 r8 1 #Djangoid - Django-based OpenID server/provider 2 #Copyright (C) 2006 Nicolas Trangez <ikke nicolast be> 3 # 4 #This program is free software; you can redistribute it and/or modify 5 #it under the terms of the GNU General Public License as published by 6 #the Free Software Foundation; either version 2 of the License. 7 # 8 #This program is distributed in the hope that it will be useful, 9 #but WITHOUT ANY WARRANTY; without even the implied warranty of 10 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 #GNU General Public License for more details. 12 # 13 #You should have received a copy of the GNU General Public License 14 #along with this program; if not, write to the Free Software 15 #Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 # 17 #EOL trunk/djangoid/manage.py
r2 r8 1 #Djangoid - Django-based OpenID server/provider 2 #Copyright (C) 2006 Nicolas Trangez <ikke nicolast be> 3 # 4 #This program is free software; you can redistribute it and/or modify 5 #it under the terms of the GNU General Public License as published by 6 #the Free Software Foundation; either version 2 of the License. 7 # 8 #This program is distributed in the hope that it will be useful, 9 #but WITHOUT ANY WARRANTY; without even the implied warranty of 10 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 #GNU General Public License for more details. 12 # 13 #You should have received a copy of the GNU General Public License 14 #along with this program; if not, write to the Free Software 15 #Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 # 17 #EOL 1 18 #!/usr/bin/env python 2 19 from django.core.management import execute_manager trunk/djangoid/openid
- Property svn:ignore set to
*.pyc
*.bak
- Property svn:ignore set to
trunk/djangoid/openid/server
- Property svn:ignore set to
*.pyc
*.bak
- Property svn:ignore set to
trunk/djangoid/openid/store
- Property svn:ignore set to
*.pyc
*.bak
- Property svn:ignore set to
trunk/djangoid/server
- Property svn:ignore set to
*.pyc
*.bak
- Property svn:ignore set to
trunk/djangoid/server/__init__.py
r2 r8 1 #Djangoid - Django-based OpenID server/provider 2 #Copyright (C) 2006 Nicolas Trangez <ikke nicolast be> 3 # 4 #This program is free software; you can redistribute it and/or modify 5 #it under the terms of the GNU General Public License as published by 6 #the Free Software Foundation; either version 2 of the License. 7 # 8 #This program is distributed in the hope that it will be useful, 9 #but WITHOUT ANY WARRANTY; without even the implied warranty of 10 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 #GNU General Public License for more details. 12 # 13 #You should have received a copy of the GNU General Public License 14 #along with this program; if not, write to the Free Software 15 #Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 # 17 #EOL trunk/djangoid/server/djangoidstore.py
r2 r8 1 #Djangoid - Django-based OpenID server/provider 2 #Copyright (C) 2006 Nicolas Trangez <ikke nicolast be> 3 # 4 #This program is free software; you can redistribute it and/or modify 5 #it under the terms of the GNU General Public License as published by 6 #the Free Software Foundation; either version 2 of the License. 7 # 8 #This program is distributed in the hope that it will be useful, 9 #but WITHOUT ANY WARRANTY; without even the implied warranty of 10 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 #GNU General Public License for more details. 12 # 13 #You should have received a copy of the GNU General Public License 14 #along with this program; if not, write to the Free Software 15 #Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 # 17 #EOL 1 18 import time, base64 2 19 from djangoid.server.models import OidStoreNonce, OidStoreAssociation, OidStoreSetting trunk/djangoid/server/models.py
r6 r8 1 #Djangoid - Django-based OpenID server/provider 2 #Copyright (C) 2006 Nicolas Trangez <ikke nicolast be> 3 # 4 #This program is free software; you can redistribute it and/or modify 5 #it under the terms of the GNU General Public License as published by 6 #the Free Software Foundation; either version 2 of the License. 7 # 8 #This program is distributed in the hope that it will be useful, 9 #but WITHOUT ANY WARRANTY; without even the implied warranty of 10 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 #GNU General Public License for more details. 12 # 13 #You should have received a copy of the GNU General Public License 14 #along with this program; if not, write to the Free Software 15 #Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 # 17 #EOL 1 18 from django.db import models 2 19 trunk/djangoid/server/views.py
r6 r8 1 #Djangoid - Django-based OpenID server/provider 2 #Copyright (C) 2006 Nicolas Trangez <ikke nicolast be> 3 # 4 #This program is free software; you can redistribute it and/or modify 5 #it under the terms of the GNU General Public License as published by 6 #the Free Software Foundation; either version 2 of the License. 7 # 8 #This program is distributed in the hope that it will be useful, 9 #but WITHOUT ANY WARRANTY; without even the implied warranty of 10 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 #GNU General Public License for more details. 12 # 13 #You should have received a copy of the GNU General Public License 14 #along with this program; if not, write to the Free Software 15 #Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 # 17 #EOL 1 18 from django.http import HttpResponse, HttpResponseRedirect 2 19 from openid.server import server trunk/djangoid/settings.py
r5 r8 1 #Djangoid - Django-based OpenID server/provider 2 #Copyright (C) 2006 Nicolas Trangez <ikke nicolast be> 3 # 4 #This program is free software; you can redistribute it and/or modify 5 #it under the terms of the GNU General Public License as published by 6 #the Free Software Foundation; either version 2 of the License. 7 # 8 #This program is distributed in the hope that it will be useful, 9 #but WITHOUT ANY WARRANTY; without even the implied warranty of 10 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 #GNU General Public License for more details. 12 # 13 #You should have received a copy of the GNU General Public License 14 #along with this program; if not, write to the Free Software 15 #Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 # 17 #EOL 1 18 # Django settings for djangoid project. 2 19 trunk/djangoid/templates/users
- Property svn:ignore set to
*.bak
- Property svn:ignore set to
trunk/djangoid/urls.py
r6 r8 1 #Djangoid - Django-based OpenID server/provider 2 #Copyright (C) 2006 Nicolas Trangez <ikke nicolast be> 3 # 4 #This program is free software; you can redistribute it and/or modify 5 #it under the terms of the GNU General Public License as published by 6 #the Free Software Foundation; either version 2 of the License. 7 # 8 #This program is distributed in the hope that it will be useful, 9 #but WITHOUT ANY WARRANTY; without even the implied warranty of 10 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 #GNU General Public License for more details. 12 # 13 #You should have received a copy of the GNU General Public License 14 #along with this program; if not, write to the Free Software 15 #Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 # 17 #EOL 1 18 from django.conf.urls.defaults import * 2 19 trunk/djangoid/users
- Property svn:ignore set to
*.pyc
*.bak
- Property svn:ignore set to
trunk/djangoid/users/__init__.py
r2 r8 1 #Djangoid - Django-based OpenID server/provider 2 #Copyright (C) 2006 Nicolas Trangez <ikke nicolast be> 3 # 4 #This program is free software; you can redistribute it and/or modify 5 #it under the terms of the GNU General Public License as published by 6 #the Free Software Foundation; either version 2 of the License. 7 # 8 #This program is distributed in the hope that it will be useful, 9 #but WITHOUT ANY WARRANTY; without even the implied warranty of 10 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 #GNU General Public License for more details. 12 # 13 #You should have received a copy of the GNU General Public License 14 #along with this program; if not, write to the Free Software 15 #Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 # 17 #EOL trunk/djangoid/users/models.py
r6 r8 1 #Djangoid - Django-based OpenID server/provider 2 #Copyright (C) 2006 Nicolas Trangez <ikke nicolast be> 3 # 4 #This program is free software; you can redistribute it and/or modify 5 #it under the terms of the GNU General Public License as published by 6 #the Free Software Foundation; either version 2 of the License. 7 # 8 #This program is distributed in the hope that it will be useful, 9 #but WITHOUT ANY WARRANTY; without even the implied warranty of 10 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 #GNU General Public License for more details. 12 # 13 #You should have received a copy of the GNU General Public License 14 #along with this program; if not, write to the Free Software 15 #Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 # 17 #EOL 1 18 from django.db import models 2 19 from django.contrib import auth trunk/djangoid/users/views.py
r6 r8 1 #Djangoid - Django-based OpenID server/provider 2 #Copyright (C) 2006 Nicolas Trangez <ikke nicolast be> 3 # 4 #This program is free software; you can redistribute it and/or modify 5 #it under the terms of the GNU General Public License as published by 6 #the Free Software Foundation; either version 2 of the License. 7 # 8 #This program is distributed in the hope that it will be useful, 9 #but WITHOUT ANY WARRANTY; without even the implied warranty of 10 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 #GNU General Public License for more details. 12 # 13 #You should have received a copy of the GNU General Public License 14 #along with this program; if not, write to the Free Software 15 #Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 # 17 #EOL 1 18 from django.shortcuts import render_to_response 2 19 from django.http import HttpResponse
