# HG changeset patch # User Marcin Kuzminski # Date 1282836566 -7200 # Node ID dccf4b2226ec66c90a4be1ac27993883cf1530c6 # Parent 17d5028e055ca643b13ff7b0482e7d3cef749e49# Parent 570b9e82cbacb1d9886ce701e0bcf9eff3550832 merged with init scripts diff -r 17d5028e055c -r dccf4b2226ec pylons_app/controllers/summary.py --- a/pylons_app/controllers/summary.py Thu Aug 26 17:28:11 2010 +0200 +++ b/pylons_app/controllers/summary.py Thu Aug 26 17:29:26 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: diff -r 17d5028e055c -r dccf4b2226ec pylons_app/public/css/style.css --- a/pylons_app/public/css/style.css Thu Aug 26 17:28:11 2010 +0200 +++ b/pylons_app/public/css/style.css Thu Aug 26 17:29:26 2010 +0200 @@ -1039,8 +1039,8 @@ #content div.box div.message { - margin: 0 0 10px 0; - padding: 0; + margin: 0 0 0px 0; + padding: 0 0 10px 0; clear: both; overflow: hidden; } @@ -3438,12 +3438,14 @@ div#legend_container table td{ border: none !important; - padding: 2px !important; + padding: 0px !important; + height: 20px !important; } div#legend_choices table td{ border: none !important; padding: 0px !important; + height: 20px !important; } div#legend_choices{ diff -r 17d5028e055c -r dccf4b2226ec pylons_app/templates/changelog/changelog.html --- a/pylons_app/templates/changelog/changelog.html Thu Aug 26 17:28:11 2010 +0200 +++ b/pylons_app/templates/changelog/changelog.html Thu Aug 26 17:29:26 2010 +0200 @@ -1,3 +1,5 @@ +## -*- coding: utf-8 -*- + <%inherit file="/base/base.html"/> <%def name="title()"> @@ -59,7 +61,7 @@ ${h.email_or_none(cs.author)}
- ${h.link_to(h.wrap_paragraphs(cs.message), + ${h.link_to(h.wrap_paragraphs(cs.message.decode('utf-8','replace')), h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
@@ -76,7 +78,7 @@ %endif %for p_cs in reversed(cs.parents):
${_('Parent')} ${p_cs.revision}: ${h.link_to(p_cs.raw_id, - h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)} + h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message.decode('utf-8','replace'))}
%endfor diff -r 17d5028e055c -r dccf4b2226ec pylons_app/templates/summary/summary.html --- a/pylons_app/templates/summary/summary.html Thu Aug 26 17:28:11 2010 +0200 +++ b/pylons_app/templates/summary/summary.html Thu Aug 26 17:29:26 2010 +0200 @@ -154,12 +154,17 @@ var inputs = choiceContainer.getElementsByTagName("input"); for(var i=0; i 0){