2013-02-04 22:46:31 -05:00
|
|
|
= render "head"
|
2013-07-15 08:03:56 -04:00
|
|
|
.project-network
|
2014-06-14 12:35:45 -04:00
|
|
|
.controls
|
|
|
|
= form_tag project_network_path(@project, @id), method: :get, class: 'form-inline network-form' do |f|
|
|
|
|
= text_field_tag :extended_sha1, @options[:extended_sha1], placeholder: "Input an extended SHA1 syntax", class: "search-input form-control input-mx-250"
|
|
|
|
= button_tag type: 'submit', class: 'btn btn-success' do
|
|
|
|
%i.icon-search
|
|
|
|
.inline.prepend-left-20
|
|
|
|
.checkbox.light
|
|
|
|
= label_tag :filter_ref do
|
|
|
|
= check_box_tag :filter_ref, 1, @options[:filter_ref]
|
|
|
|
%span Begin with the selected commit
|
|
|
|
|
2013-07-15 08:03:56 -04:00
|
|
|
.network-graph
|
2014-06-11 15:22:58 -04:00
|
|
|
= spinner nil, true
|
2012-12-04 18:57:21 -05:00
|
|
|
|
2011-11-13 06:58:45 -05:00
|
|
|
:javascript
|
2013-07-15 08:03:56 -04:00
|
|
|
new Network({
|
2013-06-11 02:54:01 -04:00
|
|
|
url: '#{project_network_path(@project, @ref, @options.merge(format: :json))}',
|
2013-05-02 07:36:53 -04:00
|
|
|
commit_url: '#{project_commit_path(@project, 'ae45ca32').gsub("ae45ca32", "%s")}',
|
|
|
|
ref: '#{@ref}',
|
|
|
|
commit_id: '#{@commit.id}'
|
2013-07-15 08:03:56 -04:00
|
|
|
})
|