|
1 | NO CONTENT: new file 100644 |
@@ -20,7 +20,7 | |||
|
20 | 20 | /plugins/* |
|
21 | 21 | !/plugins/README |
|
22 | 22 | /public/dispatch.* |
|
23 | /public/plugin_assets | |
|
23 | /public/plugin_assets/* | |
|
24 | 24 | /public/themes/* |
|
25 | 25 | !/public/themes/alternate |
|
26 | 26 | !/public/themes/classic |
@@ -20,7 +20,7 lib/redmine/scm/adapters/mercurial/redminehelper.pyo | |||
|
20 | 20 | log/*.log* |
|
21 | 21 | log/mongrel_debug |
|
22 | 22 | public/dispatch.* |
|
23 | public/plugin_assets | |
|
23 | public/plugin_assets/* | |
|
24 | 24 | tmp/* |
|
25 | 25 | tmp/cache/* |
|
26 | 26 | tmp/pdf/* |
@@ -76,7 +76,7 class AdminController < ApplicationController | |||
|
76 | 76 | @checklist = [ |
|
77 | 77 | [:text_default_administrator_account_changed, User.default_admin_account_changed?], |
|
78 | 78 | [:text_file_repository_writable, File.writable?(Attachment.storage_path)], |
|
79 | [:text_plugin_assets_writable, File.writable?(Redmine::Plugin.public_directory)], | |
|
79 | ["#{l :text_plugin_assets_writable} (./public/plugin_assets)", File.writable?(Redmine::Plugin.public_directory)], | |
|
80 | 80 | [:text_rmagick_available, Object.const_defined?(:Magick)], |
|
81 | 81 | [:text_convert_available, Redmine::Thumbnail.convert_available?] |
|
82 | 82 | ] |
@@ -5,7 +5,7 | |||
|
5 | 5 | <table class="list"> |
|
6 | 6 | <% @checklist.each do |label, result| %> |
|
7 | 7 | <tr class="<%= cycle 'odd', 'even' %>"> |
|
8 | <td class="name"><%= l(label) %></td> | |
|
8 | <td class="name"><%= label.is_a?(Symbol) ? l(label) : label %></td> | |
|
9 | 9 | <td class="tick"><%= image_tag((result ? 'true.png' : 'exclamation.png'), |
|
10 | 10 | :style => "vertical-align:bottom;") %></td> |
|
11 | 11 | </tr> |
General Comments 0
You need to be logged in to leave comments.
Login now