fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Cite base
[wolnelektury.git]
/
src
/
contact
/
models.py
diff --git
a/src/contact/models.py
b/src/contact/models.py
index
0ab8201
..
e44bd9b
100644
(file)
--- a/
src/contact/models.py
+++ b/
src/contact/models.py
@@
-2,7
+2,7
@@
import yaml
from hashlib import sha1
from django.db import models
import yaml
from hashlib import sha1
from django.db import models
-from django.utils.encoding import smart_
unicode
+from django.utils.encoding import smart_
text
from django.utils.translation import ugettext_lazy as _
from jsonfield import JSONField
from . import app_settings
from django.utils.translation import ugettext_lazy as _
from jsonfield import JSONField
from . import app_settings
@@
-20,7
+20,7
@@
class Contact(models.Model):
if type(value) in (tuple, list, dict):
value = yaml.safe_dump(value, allow_unicode=True, default_flow_style=False)
if for_html:
if type(value) in (tuple, list, dict):
value = yaml.safe_dump(value, allow_unicode=True, default_flow_style=False)
if for_html:
- value = smart_
unicode
(value).replace(u" ", unichr(160))
+ value = smart_
text
(value).replace(u" ", unichr(160))
return value
class Meta:
return value
class Meta:
@@
-28,11
+28,11
@@
class Contact(models.Model):
verbose_name = _('submitted form')
verbose_name_plural = _('submitted forms')
verbose_name = _('submitted form')
verbose_name_plural = _('submitted forms')
- def __
unicode
__(self):
- return
unicode
(self.created_at)
+ def __
str
__(self):
+ return
str
(self.created_at)
def digest(self):
def digest(self):
- serialized_body = ';'.join(sorted('%s:%s' % item for item in self.body.ite
rite
ms()))
+ serialized_body = ';'.join(sorted('%s:%s' % item for item in self.body.items()))
data = '%s%s%s%s%s' % (self.id, self.contact, serialized_body, self.ip, self.form_tag)
return sha1(data).hexdigest()
data = '%s%s%s%s%s' % (self.id, self.contact, serialized_body, self.ip, self.form_tag)
return sha1(data).hexdigest()