summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2009-02-26 09:28:33 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2009-02-26 09:28:33 +0000
commit4c28291a19714022a9c991984d14a26fb2413b06 (patch)
tree93213ac0ca9b9eb01a951ff5e82b6f27b3a0e5d6
parent589320337db0a242f8adb2150996f6d038aaf9ad (diff)
downloadredmine-4c28291a19714022a9c991984d14a26fb2413b06.tar.gz
redmine-4c28291a19714022a9c991984d14a26fb2413b06.zip
Clickable/linkable line #'s while browsing the repo or viewing a text file (#2835).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2527 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/views/common/_file.rhtml2
-rw-r--r--app/views/repositories/annotate.rhtml2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/common/_file.rhtml b/app/views/common/_file.rhtml
index 43f5c6c4b..599a17377 100644
--- a/app/views/common/_file.rhtml
+++ b/app/views/common/_file.rhtml
@@ -3,7 +3,7 @@
<tbody>
<% line_num = 1 %>
<% syntax_highlight(filename, to_utf8(content)).each_line do |line| %>
-<tr><th class="line-num" id="L<%= line_num %>"><%= line_num %></th><td class="line-code"><pre><%= line %></pre></td></tr>
+<tr><th class="line-num" id="L<%= line_num %>"><a href="#L<%= line_num %>"><%= line_num %></a></th><td class="line-code"><pre><%= line %></pre></td></tr>
<% line_num += 1 %>
<% end %>
</tbody>
diff --git a/app/views/repositories/annotate.rhtml b/app/views/repositories/annotate.rhtml
index 44b5a81a6..d0fb8cbf9 100644
--- a/app/views/repositories/annotate.rhtml
+++ b/app/views/repositories/annotate.rhtml
@@ -11,7 +11,7 @@
<% syntax_highlight(@path, to_utf8(@annotate.content)).each_line do |line| %>
<% revision = @annotate.revisions[line_num-1] %>
<tr class="bloc-<%= revision.nil? ? 0 : colors[revision.identifier || revision.revision] %>">
- <th class="line-num"><%= line_num %></th>
+ <th class="line-num" id="L<%= line_num %>"><a href="#L<%= line_num %>"><%= line_num %></a></th>
<td class="revision">
<%= (revision.identifier ? link_to(format_revision(revision.identifier), :action => 'revision', :id => @project, :rev => revision.identifier) : format_revision(revision.revision)) if revision %></td>
<td class="author"><%= h(revision.author.to_s.split('<').first) if revision %></td>