Patch #14138
Output changeset comment in html title
Status: | Closed | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | - | % Done: | 0% | |
Category: | SCM | |||
Target version: | 2.4.0 |
Description
diff --git a/app/views/repositories/revision.html.erb b/app/views/repositories/revision.html.erb
--- a/app/views/repositories/revision.html.erb
+++ b/app/views/repositories/revision.html.erb
@@ -94,4 +94,8 @@
<%= stylesheet_link_tag "scm" %>
<% end %>
-<% html_title("#{l(:label_revision)} #{format_revision(@changeset)}") -%>
+<%
+ title = "#{l(:label_revision)} #{format_revision(@changeset)}"
+ title << " #{truncate(@changeset.comments, :length => 80)}"
+ html_title(title)
+ -%>
Associated revisions
add test of revision page title (#14138)
add changeset comment in revision page title (#14138)
History
#1
Updated by Toshi MARUYAMA over 9 years ago
- Subject changed from Output changeset title in html title to Output changeset commnet in html title
#2
Updated by Daniel Felix over 9 years ago
- Subject changed from Output changeset commnet in html title to Output changeset comment in html title
#3
Updated by Daniel Felix over 9 years ago
Hi Toshi,
I applied your change. But I can't recognize any change. Can you give me a hint where to look for a change?
Best regards,
Daniel
#5
Updated by Daniel Felix over 9 years ago
Ah thanks! Haven't noticed it as I tested it in IE10 with tabs.
Seems to work, no problems. For my instance.
#6
Updated by Toshi MARUYAMA over 9 years ago
- Status changed from New to Closed
- Target version set to 2.4.0
Committed in trunk r11909.