diff pylons_app/controllers/summary.py @ 459:cbfb853a0a4c

fixed bug when author had " in name, thus breaking the javascript data format small fix to css for commit messages, and fixed a bug when message had some special chars that caused unicodeDecode error
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 23 Aug 2010 21:39:17 +0200
parents 9a7ae16ff53e
children dee0e7eb0370
line wrap: on
line diff
--- a/pylons_app/controllers/summary.py	Sat Aug 21 18:33:13 2010 +0200
+++ b/pylons_app/controllers/summary.py	Mon Aug 23 21:39:17 2010 +0200
@@ -84,6 +84,7 @@
         
         def author_key_cleaner(k):
             k = person(k)
+            k = k.replace('"', "'") #for js data compatibilty
             return k
                 
         for cs in repo: