Changeset 8

Show
Ignore:
Timestamp:
01/03/07 12:26:42 (5 years ago)
Author:
nicolast
Message:

svn:ignore's, licensing stuff, some doc files. Tagging as 0.0.1

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/djangoid

    • Property svn:ignore set to
      db.dat
      *.pyc
      *.bak
  • 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 
    118#!/usr/bin/env python 
    219from django.core.management import execute_manager 
  • trunk/djangoid/openid

    • Property svn:ignore set to
      *.pyc
      *.bak
  • trunk/djangoid/openid/server

    • Property svn:ignore set to
      *.pyc
      *.bak
  • trunk/djangoid/openid/store

    • Property svn:ignore set to
      *.pyc
      *.bak
  • trunk/djangoid/server

    • Property svn:ignore set to
      *.pyc
      *.bak
  • 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 
    118import time, base64 
    219from 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 
    118from django.db import models 
    219 
  • 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 
    118from django.http import HttpResponse, HttpResponseRedirect 
    219from 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 
    118# Django settings for djangoid project. 
    219 
  • trunk/djangoid/templates/users

    • Property svn:ignore set to
      *.bak
  • 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 
    118from django.conf.urls.defaults import * 
    219 
  • trunk/djangoid/users

    • Property svn:ignore set to
      *.pyc
      *.bak
  • 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 
    118from django.db import models 
    219from 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 
    118from django.shortcuts import render_to_response 
    219from django.http import HttpResponse