2012-09-26 05:13:19 +02:00
|
|
|
%div
|
2012-12-19 18:14:05 +01:00
|
|
|
- unless params[:to]
|
|
|
|
%p.slead
|
|
|
|
Fill input field with commit id like
|
|
|
|
%code.label_branch 4eedf23
|
|
|
|
or branch/tag name like
|
|
|
|
%code.label_branch master
|
|
|
|
and press compare button for commits list, code diff.
|
2012-09-26 05:13:19 +02:00
|
|
|
|
2012-12-19 18:14:05 +01:00
|
|
|
%br
|
2012-09-26 05:13:19 +02:00
|
|
|
|
|
|
|
= form_tag project_compare_index_path(@project), method: :post do
|
|
|
|
.clearfix
|
2012-12-19 18:14:05 +01:00
|
|
|
.pull-left
|
|
|
|
- if params[:to] && params[:from]
|
|
|
|
= link_to 'switch', {from: params[:to], to: params[:from]}, {class: 'commits-compare-switch has_tooltip', title: 'Switch base of comparison'}
|
|
|
|
= text_field_tag :from, params[:from], placeholder: "master", class: "xlarge"
|
|
|
|
= "..."
|
|
|
|
= text_field_tag :to, params[:to], placeholder: "aa8b4ef", class: "xlarge"
|
|
|
|
.pull-left
|
|
|
|
|
2013-01-29 21:18:19 +01:00
|
|
|
= submit_tag "Compare", class: "btn btn-primary wide commits-compare-btn"
|
2012-09-26 05:13:19 +02:00
|
|
|
- if @refs_are_same
|
|
|
|
.alert
|
|
|
|
%span Refs are the same
|
|
|
|
|
2012-12-20 14:39:39 +01:00
|
|
|
|
2012-12-19 18:14:05 +01:00
|
|
|
|
2012-09-26 05:13:19 +02:00
|
|
|
:javascript
|
|
|
|
$(function() {
|
2013-01-04 17:50:31 +01:00
|
|
|
var availableTags = #{@project.repository.ref_names.to_json};
|
2012-09-26 05:13:19 +02:00
|
|
|
|
|
|
|
$("#from, #to").autocomplete({
|
|
|
|
source: availableTags,
|
|
|
|
minLength: 1
|
|
|
|
});
|
|
|
|
|
|
|
|
disableButtonIfEmptyField('#to', '.commits-compare-btn');
|
|
|
|
});
|