|
a/bitergiametrics/templates/metrics/index.html |
|
b/bitergiametrics/templates/metrics/index.html |
|
... |
|
... |
2 |
|
2 |
|
3 |
{% do g.register_app_css('envision.min.css', compress=False) %}
|
3 |
{% do g.register_app_css('envision.min.css', compress=False) %}
|
4 |
|
4 |
|
5 |
{% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}}{% endblock %}
|
5 |
{% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}}{% endblock %}
|
6 |
|
6 |
|
7 |
{% block header %}{{c.project.name}} / {{c.app.config.options.mount_label}}: Bitergia Metrics{% endblock %}
|
7 |
{% block header %}{{c.project.name}} / {{c.app.config.options.mount_label}}{% endblock %}
|
8 |
|
8 |
|
9 |
{% block content %}
|
9 |
{% block content %}
|
10 |
|
10 |
|
11 |
<p><img src="{{g.app_static('bitergia-logo.png')}}"><h1>Evolution of Allura</h1></p>
|
11 |
<p><h1>Allura Metrics</h1></p>
|
12 |
|
12 |
|
13 |
<p>
|
13 |
<p>
|
14 |
Proof of concept of how some parameters of the evolution of a software project can be visualized.
|
14 |
Proof of concept of how some parameters of the evolution of a software project can be visualized.
|
15 |
Allura integation. Visualization is still preliminary and incomplete. <a href="bar.html">flotr2 sample</a>.
|
15 |
Allura integation. Visualization is still preliminary and incomplete.
|
16 |
</p>
|
16 |
</p>
|
17 |
<p>
|
17 |
<div align=right>
|
18 |
<a href="tickets_swscopio.html">Tickets in swscopio</a>
|
18 |
Powered by <a href="http://www.bitergia.com"><img src="{{g.app_static('bitergia-logo-peq.png')}}" border=0></a>
|
19 |
</p>
|
|
|
20 |
|
|
|
21 |
<div class="box">
|
|
|
22 |
<h2>Opened Tickets per month</h2>
|
|
|
23 |
<div class="container" id="commits-time"></div>
|
|
|
24 |
<p>Top chart shows number of opened tickets per month. The bottom chart shows also number
|
|
|
25 |
of opened tickets per month, and allows
|
|
|
26 |
the selection of the period to show in the upper charts.
|
|
|
27 |
[<a href="{{g.app_static('tickets_per_month.json')}}">Data</a>]</p>
|
|
|
28 |
</div>
|
19 |
</div>
|
29 |
|
|
|
30 |
<script type="text/javascript" src="{{g.app_static('envision.min.js')}}"></script>
|
|
|
31 |
<script type="text/javascript" src="{{g.app_static('jquery-1.7.1.min.js')}}"></script>
|
|
|
32 |
<script type="text/javascript" src="{{g.app_static('swscopio.js')}}"></script>
|
|
|
33 |
<script type="text/javascript">
|
|
|
34 |
(function() {
|
|
|
35 |
displayEvoTickets('commits-time', '{{g.app_static('tickets_per_month.json')}}')
|
|
|
36 |
// displayEvoCommits('commits-time','{{g.app_static('commits-timeserie_kde.json')}}')
|
|
|
37 |
})()
|
|
|
38 |
</script>
|
|
|
39 |
{% endblock %}
|
20 |
{% endblock %}
|