You've already forked baupm-core
Compare commits
6 Commits
dev-defaul
...
0.2.2
| Author | SHA1 | Date | |
|---|---|---|---|
| a2766c70cd | |||
| 286c29ce44 | |||
| 4cd0396c95 | |||
| 1c4ebe2d22 | |||
| 6452e561ef | |||
| a191db0455 |
9
app/controllers/healthcheck_controller.rb
Normal file
9
app/controllers/healthcheck_controller.rb
Normal file
@@ -0,0 +1,9 @@
|
||||
class ManifestController < ApplicationController
|
||||
unloadable
|
||||
|
||||
skip_before_action :check_if_login_required
|
||||
|
||||
def index
|
||||
render :layout => false, :action => 'index'
|
||||
end
|
||||
end
|
||||
1
app/views/healthcheck/index.html.erb
Normal file
1
app/views/healthcheck/index.html.erb
Normal file
@@ -0,0 +1 @@
|
||||
OK
|
||||
88
app/views/queries/_query_form.html.erb
Normal file
88
app/views/queries/_query_form.html.erb
Normal file
@@ -0,0 +1,88 @@
|
||||
<%= hidden_field_tag 'set_filter', '1' %>
|
||||
<%= hidden_field_tag 'type', @query.type, :disabled => true, :id => 'query_type' %>
|
||||
<%= query_hidden_sort_tag(@query) %>
|
||||
|
||||
<div id="query_form_with_buttons" class="hide-when-print">
|
||||
<div id="query_form_content">
|
||||
<fieldset id="filters" class="collapsible <%= @query.new_record? ? "" : "collapsed" %>">
|
||||
<legend onclick="toggleFieldset(this);" class="icon icon-<%= @query.new_record? ? "expanded" : "collapsed" %>"><%= l(:label_filter_plural) %></legend>
|
||||
<div style="<%= @query.new_record? ? "" : "display: none;" %>">
|
||||
<%= render :partial => 'queries/filters', :locals => {:query => @query} %>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<% if @query.available_columns.any? %>
|
||||
<fieldset id="options" class="collapsible collapsed">
|
||||
<legend onclick="toggleFieldset(this);" class="icon icon-collapsed"><%= l(:label_options) %></legend>
|
||||
<div class="hidden">
|
||||
<% if @query.available_display_types.size > 1 %>
|
||||
<div>
|
||||
<span class="field"><label for='display_type'><%= l(:label_display_type) %></label></span>
|
||||
<%= available_display_types_tags(@query) %>
|
||||
</div>
|
||||
<% end %>
|
||||
<table id="list-definition" class="<%= 'hidden' if (@query.display_type != 'list') %>">
|
||||
<% if @query.available_columns.any? %>
|
||||
<tr>
|
||||
<td class="field"><%= l(:field_column_names) %></td>
|
||||
<td><%= render_query_columns_selection(@query) %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
<% if @query.groupable_columns.any? %>
|
||||
<tr>
|
||||
<td class="field"><label for='group_by'><%= l(:field_group_by) %></label></td>
|
||||
<td><%= group_by_column_select_tag(@query) %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
<% if @query.available_block_columns.any? %>
|
||||
<tr>
|
||||
<td class="field"><%= l(:button_show) %></td>
|
||||
<td><%= available_block_columns_tags(@query) %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
<% if @query.available_totalable_columns.any? %>
|
||||
<tr>
|
||||
<td><%= l(:label_total_plural) %></td>
|
||||
<td><%= available_totalable_columns_tags(@query) %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</table>
|
||||
</div>
|
||||
</fieldset>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
<p class="buttons">
|
||||
<%= link_to_function l(:button_apply), '$("#query_form").submit()', :class => 'icon icon-checked' %>
|
||||
<%= link_to l(:button_clear), { :set_filter => 1, :sort => '', :project_id => @project }, :class => 'icon icon-reload' %>
|
||||
<% if @query.new_record? %>
|
||||
<% if User.current.allowed_to?(:save_queries, @project, :global => true) %>
|
||||
<%= link_to_function l(:button_save_object, object_name: l(:label_query)),
|
||||
"$('#query_type').prop('disabled',false);$('#query_form').attr('action', '#{ @project ? new_project_query_path(@project) : new_query_path }').submit()",
|
||||
:class => 'icon icon-save' %>
|
||||
<% end %>
|
||||
<% else %>
|
||||
<% if @query.editable_by?(User.current) %>
|
||||
<% redirect_params = (controller_name == 'admin' && action_name == 'projects') ? {:admin_projects => 1} : {} %>
|
||||
<%= link_to l(:button_edit_object, object_name: l(:label_query)), edit_query_path(@query, redirect_params), :class => 'icon icon-edit' %>
|
||||
<%= delete_link query_path(@query, redirect_params), {}, l(:button_delete_object, object_name: l(:label_query)) %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<%= error_messages_for @query %>
|
||||
|
||||
<%= javascript_tag do %>
|
||||
$(function ($) {
|
||||
$('input[name=display_type]').change(function (e) {
|
||||
if ($("#display_type_list").is(':checked')) {
|
||||
$('table#list-definition').show();
|
||||
} else {
|
||||
$('table#list-definition').hide();
|
||||
}
|
||||
|
||||
})
|
||||
});
|
||||
|
||||
<% end %>
|
||||
@@ -197,3 +197,21 @@ de:
|
||||
label_fieldset_default_state: Fieldset Default Status
|
||||
label_fieldset_state_all_expended: Alle ausklappen
|
||||
label_fieldset_state_all_collapsed: Alle einklappen
|
||||
|
||||
# Plugin EasyGantt
|
||||
button_project_menu_easy_gantt: Gantt-Plan
|
||||
easy_gantt_toolbar:
|
||||
day: Tage
|
||||
month: Monate
|
||||
week: Wochen
|
||||
quarter: Quartal
|
||||
year: Jahre
|
||||
easy_gantt:
|
||||
buton_create_baseline: Basispläne
|
||||
button_critical_path: Kritischer Weg
|
||||
button:
|
||||
quarter_zoom: Quartale
|
||||
year_zoom: Jahre
|
||||
easy_printable_templates_categories:
|
||||
easy_gantt: Gantt-Plan
|
||||
label_easy_gantt: Gantt-Plan
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
if Redmine::Plugin.installed? :baupm_core
|
||||
RedmineApp::Application.routes.draw do
|
||||
get '/manifest.json', :controller => 'manifest', :action => 'index', :as => 'manifest_json'
|
||||
get '/_healthcheck', :controller => 'healthcheck', :action => 'index', :as => 'healthcheck'
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user