from django.db import models
class OpenIdNonce(models.Model):
server_url = models.URLField()
timestamp = models.IntegerField()
salt = models.CharField( max_length=50 )
def __unicode__(self):
return "Nonce: %s" % self.nonce
class Meta:
app_label = 'forum'
class OpenIdAssociation(models.Model):
server_url = models.TextField(max_length=2047)
handle = models.CharField(max_length=255)
secret = models.TextField(max_length=255) # Stored base64 encoded
issued = models.IntegerField()
lifetime = models.IntegerField()
assoc_type = models.TextField(max_length=64)
def __unicode__(self):
return "Association: %s, %s" % (self.server_url, self.handle)
class Meta:
app_label = 'forum'
-
Giuseppe Terrasi authored
Initial release based on svn rev 1272 with no changes
795d73a4