summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-08-15 20:20:18 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-08-15 20:20:18 +0000
commit889d50089d4d98db83ba5617b526da50107be661 (patch)
treed9bed99952fddce716e6d7acf189603358bb2021 /app/views
parenta5849ee044837be589e9aae554cf99a394b9b9af (diff)
downloadredmine-889d50089d4d98db83ba5617b526da50107be661.tar.gz
redmine-889d50089d4d98db83ba5617b526da50107be661.zip
Added syntax highlightment for repository files (using CodeRay).
Supported languages: c, ruby, rhtml, yaml, html, xml. git-svn-id: http://redmine.rubyforge.org/svn/trunk@644 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r--app/views/repositories/diff.rhtml12
-rw-r--r--app/views/repositories/entry.rhtml6
2 files changed, 9 insertions, 9 deletions
diff --git a/app/views/repositories/diff.rhtml b/app/views/repositories/diff.rhtml
index b1cfa8b44..86bde671f 100644
--- a/app/views/repositories/diff.rhtml
+++ b/app/views/repositories/diff.rhtml
@@ -14,7 +14,7 @@
<% cache(@cache_key) do %>
<% @diff.each do |table_file| %>
<% if @diff_type == 'sbs' %>
- <table class="list">
+ <table class="list CodeRay">
<thead>
<tr>
<th colspan="4" class="list-filename">
@@ -33,13 +33,13 @@
<%= table_file[key].nb_line_left %>
</th>
<td class="line-code <%= table_file[key].type_diff_left %>">
- <%= table_file[key].line_left %>
+ <pre><%= table_file[key].line_left %></pre>
</td>
<th class="line-num">
<%= table_file[key].nb_line_right %>
</th>
<td class="line-code <%= table_file[key].type_diff_right %>">
- <%= table_file[key].line_right %>
+ <pre><%= table_file[key].line_right %></pre>
</td>
</tr>
<% end %>
@@ -47,7 +47,7 @@
</table>
<% else %>
- <table class="list">
+ <table class="list CodeRay">
<thead>
<tr>
<th colspan="3" class="list-filename">
@@ -71,11 +71,11 @@
</th>
<% if table_file[key].line_left.empty? %>
<td class="line-code <%= table_file[key].type_diff_right %>">
- <%= table_file[key].line_right %>
+ <pre><%= table_file[key].line_right %></pre>
</td>
<% else %>
<td class="line-code <%= table_file[key].type_diff_left %>">
- <%= table_file[key].line_left %>
+ <pre><%= table_file[key].line_left %></pre>
</td>
<% end %>
</tr>
diff --git a/app/views/repositories/entry.rhtml b/app/views/repositories/entry.rhtml
index dfceac2ef..5ced710f5 100644
--- a/app/views/repositories/entry.rhtml
+++ b/app/views/repositories/entry.rhtml
@@ -1,6 +1,6 @@
<h2><%= render :partial => 'navigation', :locals => { :path => @path, :kind => 'file', :revision => @rev } %></h2>
-<table class="list">
+<table class="list CodeRay">
<thead>
<tr>
<th colspan="2" class="list-filename"><%= @path %></th>
@@ -8,10 +8,10 @@
</thead>
<tbody>
<% line_num = 1 %>
- <% @content.each_line do |line| %>
+ <% syntax_highlight(@path, @content).each_line do |line| %>
<tr>
<th class="line-num"><%= line_num %></th>
- <td class="line-code"><%= h(line).gsub(/\s/, '&nbsp;') %></td>
+ <td class="line-code"><pre><%= line %></pre></td>
</tr>
<% line_num += 1 %>
<% end %>