##// END OF EJS Templates
scm: git: show only filename and filesize if setting of reporting last commit is disable (#8365, #7047)....
scm: git: show only filename and filesize if setting of reporting last commit is disable (#8365, #7047). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5775 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r5179:4ab4c2189025
r5655:d65c3d438d28
Show More
_date_range.rhtml
33 lines | 2.0 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Makes tickets and timelogs filters collapsible (UI)....
r2777 <fieldset id="date-range" class="collapsible">
<legend onclick="toggleFieldset(this);"><%= l(:label_date_range) %></legend>
<div>
Jean-Philippe Lang
Add predefined date ranges to the time report in the same way as the details view (closes #972). It nows defaults to 'All time'....
r1303 <p>
Jean-Philippe Lang
Disable unused fields when switching the period type....
r5179 <%= radio_button_tag 'period_type', '1', !@free_period, :onclick => 'Form.Element.disable("from");Form.Element.disable("to");Form.Element.enable("period");' %>
Jean-Philippe Lang
Add predefined date ranges to the time report in the same way as the details view (closes #972). It nows defaults to 'All time'....
r1303 <%= select_tag 'period', options_for_period_select(params[:period]),
Jean-Philippe Lang
Changed timelogs filters to use non-AJAX requests (#1965)....
r5177 :onchange => 'this.form.submit();',
Jean-Philippe Lang
Disable unused fields when switching the period type....
r5179 :onfocus => '$("period_type_1").checked = true;',
:disabled => @free_period %>
Jean-Philippe Lang
Add predefined date ranges to the time report in the same way as the details view (closes #972). It nows defaults to 'All time'....
r1303 </p>
<p>
Jean-Philippe Lang
Disable unused fields when switching the period type....
r5179 <%= radio_button_tag 'period_type', '2', @free_period, :onclick => 'Form.Element.enable("from");Form.Element.enable("to");Form.Element.disable("period");' %>
Jean-Philippe Lang
Fix date range filter js behaviour and css fix for IE....
r1324 <span onclick="$('period_type_2').checked = true;">
Jean-Philippe Lang
Disable unused fields when switching the period type....
r5179 <%= l(:label_date_from_to, :start => (text_field_tag('from', @from, :size => 10, :disabled => !@free_period) + calendar_for('from')),
:end => (text_field_tag('to', @to, :size => 10, :disabled => !@free_period) + calendar_for('to'))) %>
Jean-Philippe Lang
Fix date range filter js behaviour and css fix for IE....
r1324 </span>
Jean-Philippe Lang
Add predefined date ranges to the time report in the same way as the details view (closes #972). It nows defaults to 'All time'....
r1303 </p>
Jean-Philippe Lang
Makes tickets and timelogs filters collapsible (UI)....
r2777 </div>
Jean-Philippe Lang
Add predefined date ranges to the time report in the same way as the details view (closes #972). It nows defaults to 'All time'....
r1303 </fieldset>
Jean-Philippe Lang
Makes tickets and timelogs filters collapsible (UI)....
r2777 <p class="buttons">
Jean-Philippe Lang
Changed timelogs filters to use non-AJAX requests (#1965)....
r5177 <%= link_to_function l(:button_apply), '$("query_form").submit()', :class => 'icon icon-checked' %>
<%= link_to l(:button_clear), {:controller => controller_name, :action => action_name, :project_id => @project, :issue_id => @issue}, :class => 'icon icon-reload' %>
Jean-Philippe Lang
Makes tickets and timelogs filters collapsible (UI)....
r2777 </p>
Jean-Philippe Lang
Various timelog report enhancements:...
r1311
<div class="tabs">
<% url_params = @free_period ? { :from => @from, :to => @to } : { :period => params[:period] } %>
<ul>
Eric Davis
Refactor: rename TimelogController#details to #index...
r4121 <li><%= link_to(l(:label_details), url_params.merge({:controller => 'timelog', :action => 'index', :project_id => @project, :issue_id => @issue }),
:class => (@controller.action_name == 'index' ? 'selected' : nil)) %></li>
Eric Davis
Refactor: extract TimelogController#report to a new controller class...
r4118 <li><%= link_to(l(:label_report), url_params.merge({:controller => 'time_entry_reports', :action => 'report', :project_id => @project, :issue_id => @issue}),
Jean-Philippe Lang
Various timelog report enhancements:...
r1311 :class => (@controller.action_name == 'report' ? 'selected' : nil)) %></li>
</ul>
</div>