##// END OF EJS Templates
Removed bigdecimal-segfault-fix.rb now that ruby is fixed (#7826)....
Removed bigdecimal-segfault-fix.rb now that ruby is fixed (#7826). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8788 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6434:d7e2b3251a6e
r8668:229b2f8d2af2
Show More
info.html.erb
15 lines | 498 B | text/plain | TextLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h2><%=l(:label_information_plural)%></h2>
Jean-Philippe Lang
Added translation support for project modules names and a few other strings....
r1137 <p><strong><%= Redmine::Info.versioned_name %></strong> (<%= @db_adapter_name %>)</p>
Jean-Philippe Lang
added some diagnostic information on admin/info...
r356
<table class="list">
Jean-Philippe Lang
Admin info cleanup....
r3086 <% @checklist.each do |label, result| %>
Toshi MARUYAMA
code clean up app/views/admin/info.rhtml....
r5442 <tr class="<%= cycle 'odd', 'even' %>">
<td><%= l(label) %></td>
<td width="30px"><%= image_tag((result ? 'true.png' : 'exclamation.png'),
:style => "vertical-align:bottom;") %></td>
</tr>
Jean-Philippe Lang
Admin info cleanup....
r3086 <% end %>
Jean-Philippe Lang
added some diagnostic information on admin/info...
r356 </table>
Jean-Philippe Lang
Basic plugin support....
r741
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_information_plural)) -%>