##// END OF EJS Templates
Doc update before 0.7-rc1 release....
Doc update before 0.7-rc1 release. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1284 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1137:abb0b15407b3
r1269:60c12ca3ab75
Show More
info.rhtml
27 lines | 1.4 KiB | text/html+ruby | RhtmlLexer
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
Added translation support for project modules names and a few other strings....
r1137 <tr class="odd"><td><%= l(:text_default_administrator_account_changed) %></td><td><%= image_tag (@flags[:default_admin_changed] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %></td></tr>
<tr class="even"><td><%= l(:text_file_repository_writable) %></td><td><%= image_tag (@flags[:file_repository_writable] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %></td></tr>
<tr class="odd"><td><%= l(:text_rmagick_available) %></td><td><%= image_tag (@flags[:rmagick_available] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %></td></tr>
Jean-Philippe Lang
added some diagnostic information on admin/info...
r356 </table>
Jean-Philippe Lang
Basic plugin support....
r741
<% if @plugins.any? %>
&nbsp;
Jean-Philippe Lang
Added translation support for project modules names and a few other strings....
r1137 <h3 class="icon22 icon22-plugin"><%= l(:label_plugins) %></h3>
Jean-Philippe Lang
Basic plugin support....
r741 <table class="list">
Jean-Philippe Lang
Fixed: error on admin/info if there's more than 1 plugin installed....
r932 <% @plugins.keys.sort {|x,y| x.to_s <=> y.to_s}.each do |plugin| %>
Jean-Philippe Lang
Basic plugin support....
r741 <tr class="<%= cycle('odd', 'even') %>">
<td><%=h @plugins[plugin].name %></td>
<td><%=h @plugins[plugin].description %></td>
<td><%=h @plugins[plugin].author %></td>
<td><%=h @plugins[plugin].version %></td>
Jean-Philippe Lang
Added translation support for project modules names and a few other strings....
r1137 <td><%= link_to(l(:button_configure), :controller => 'settings', :action => 'plugin', :id => plugin.to_s) if @plugins[plugin].configurable? %></td>
Jean-Philippe Lang
Basic plugin support....
r741 </tr>
<% end %>
</table>
<% end %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_information_plural)) -%>