# HG changeset patch # User Andrew Shadura # Date 2015-03-20 11:55:39 # Node ID 963e0e2f2a35fc7f198bc19ed8ff010a1fd71114 # Parent b08aab61c41d60562f0033f927cf32c8e024e24b template: remove unneeded
 from revision links, use CSS instead

diff --git a/kallithea/public/css/style.css b/kallithea/public/css/style.css
--- a/kallithea/public/css/style.css
+++ b/kallithea/public/css/style.css
@@ -2667,6 +2667,14 @@ BIN_FILENODE = 6
     text-decoration: none;
 }
 
+#repos_list_wrap .revision-link,
+#shortlog_data .revision-link {
+    font-weight: normal !important;
+    font-family: monospace;
+    font-size: 12px;
+    color: #577632;
+}
+
 .revision-link {
     color: #3F6F9F;
     font-weight: bold !important;
diff --git a/kallithea/templates/changelog/changelog_summary_data.html b/kallithea/templates/changelog/changelog_summary_data.html
--- a/kallithea/templates/changelog/changelog_summary_data.html
+++ b/kallithea/templates/changelog/changelog_summary_data.html
@@ -39,7 +39,7 @@
               %endif
         
         
-            
${h.show_id(cs)}
+ ${h.show_id(cs)} ${h.urlify_commit(h.chop_at(cs.message,'\n'),c.repo_name, h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))} diff --git a/kallithea/templates/data_table/_dt_elements.html b/kallithea/templates/data_table/_dt_elements.html --- a/kallithea/templates/data_table/_dt_elements.html +++ b/kallithea/templates/data_table/_dt_elements.html @@ -95,7 +95,7 @@ <%def name="revision(name,rev,tip,author,last_msg)">
%if rev >= 0: -
${'r%s:%s' % (rev,h.short_id(tip))}
+ ${'r%s:%s' % (rev,h.short_id(tip))} %else: ${_('No changesets yet')} %endif