Merge branch 'master' into pylons0.10

* master:
  updated translations
  add support for non-url information
This commit is contained in:
Jan Dittberner 2010-06-04 00:35:58 +02:00
commit f2e90118f6
8 changed files with 102 additions and 39 deletions

View file

@ -45,7 +45,13 @@ License along with this program. If not, see
% else:
<tr class="url ${urlclass}">
<td>${h.literal(h.textile(row[4]))}</td>
<td>${h.link_to(h.truncate(row[3], length=120), row[3])}</td>
<td>
% if row[2].type == 'url':
${h.link_to(h.truncate(row[3], length=120), row[3])}
% else:
<tt>${row[3]}</tt>
% endif
</td>
</tr>
<%
if urlclass == 'odd':