Do not transform commentator's displayed name in lower case when posting comment.
--- a/src/cm/client.py Fri Jan 27 11:45:19 2012 +0100
+++ b/src/cm/client.py Thu Mar 15 11:19:48 2012 +0100
@@ -102,7 +102,9 @@
name = request.POST.get('name', None)
email = request.POST.get('email', None)
if name != None :
- name = name.lower().strip()
+ # GIB: Is there any good reasons to transform the name into lower case?
+ #name = name.lower().strip()
+ name = name.strip()
if email != None :
email = email.lower().strip()