##// END OF EJS Templates
Added user status criteria in Redmine.pm...
Added user status criteria in Redmine.pm git-svn-id: http://redmine.rubyforge.org/svn/trunk@930 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r803:cdb2781b48f2
r917:f2a12d9eb5ae
Show More
entry.rhtml
25 lines | 645 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 <thead>
<tr>
Jean-Philippe Lang
Application layout refactored....
r736 <th colspan="2" class="filename"><%= @path %></th>
Jean-Philippe Lang
Text files can now be viewed online when browsing the repository....
r518 </tr>
</thead>
<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 %>
<tbody>
</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 %>