##// END OF EJS Templates
Fixed 'export to' links positioning on wiki page....
Fixed 'export to' links positioning on wiki page. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1023 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r979:e69631f26c46
r1010:3ff95e403134
Show More
entry.rhtml
20 lines | 549 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Text files can now be viewed online when browsing the repository....
r518 <h2><%= render :partial => 'navigation', :locals => { :path => @path, :kind => 'file', :revision => @rev } %></h2>
Jean-Philippe Lang
Application layout refactored....
r736 <div class="autoscroll">
<table class="filecontent CodeRay">
Jean-Philippe Lang
Text files can now be viewed online when browsing the repository....
r518 <tbody>
<% line_num = 1 %>
Jean-Philippe Lang
Default encodings for repository files can now be set in application settings (Admin -> Settings -> Repositories encodings)....
r803 <% syntax_highlight(@path, to_utf8(@content)).each_line do |line| %>
Jean-Philippe Lang
Text files can now be viewed online when browsing the repository....
r518 <tr>
<th class="line-num"><%= line_num %></th>
Jean-Philippe Lang
Added syntax highlightment for repository files (using CodeRay)....
r638 <td class="line-code"><pre><%= line %></pre></td>
Jean-Philippe Lang
Text files can now be viewed online when browsing the repository....
r518 </tr>
<% line_num += 1 %>
<% end %>
Jean-Philippe Lang
Fixed: missing body closing tag in repository annotate and entry views....
r979 </tbody>
Jean-Philippe Lang
Text files can now be viewed online when browsing the repository....
r518 </table>
Jean-Philippe Lang
Application layout refactored....
r736 </div>
Jean-Philippe Lang
Text files can now be viewed online when browsing the repository....
r518
<% content_for :header_tags do %>
<%= stylesheet_link_tag "scm" %>
<% end %>