debian-mirror-gitlab/app/views/projects/graphs/show.html.haml

42 lines
989 B
Text
Raw Normal View History

2015-09-25 12:07:36 +05:30
- page_title "Contributors", "Graphs"
= render "header_title"
2015-09-11 14:41:01 +05:30
.tree-ref-holder
= render 'shared/ref_switcher', destination: 'graphs'
2015-04-26 12:48:37 +05:30
= render 'head'
2015-09-11 14:41:01 +05:30
2014-09-02 18:07:02 +05:30
.loading-graph
.center
%h3.page-title
2015-04-26 12:48:37 +05:30
%i.fa.fa-spinner.fa-spin
2014-09-02 18:07:02 +05:30
Building repository graph.
2015-04-26 12:48:37 +05:30
%p.slead Please wait a moment, this page will automatically refresh when ready.
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
.stat-graph.hide
2014-09-02 18:07:02 +05:30
.header.clearfix
%h3#date_header.page-title
%p.light
2015-09-11 14:41:01 +05:30
Commits to #{@ref}, excluding merge commits. Limited by 6,000 commits
2014-09-02 18:07:02 +05:30
%input#brush_change{:type => "hidden"}
.graphs
#contributors-master
#contributors.clearfix
%ol.contributors-list.clearfix
2015-04-26 12:48:37 +05:30
:coffeescript
$.ajax
2014-09-02 18:07:02 +05:30
type: "GET",
url: location.href,
2015-04-26 12:48:37 +05:30
success: (data) ->
graph = new ContributorsStatGraph()
graph.init(data)
$("#brush_change").change ->
graph.change_date_header()
graph.redraw_authors()
2014-09-02 18:07:02 +05:30
$(".stat-graph").fadeIn();
$(".loading-graph").hide();
2015-04-26 12:48:37 +05:30
dataType: "json"