~shakhat/stackalytics/0.3

« back to all changes in this revision

Viewing changes to dashboard/templates/overview.html

  • Committer: Ilya Shakhat
  • Date: 2013-07-10 19:05:47 UTC
  • Revision ID: git-v1:b7f19335f6c6a710d1e8925f8a9675d9e7115741
Implementation of blueprint stackalytics-core

* Data updater is implemented
* Completed implementation of commit processor
* Logging is added into commit processor and runtime storage
* Commit processor is fixed
* Domain-company map is inverted
* Extracted get update count into separate function
* Fixed regex that matches diff statistics (lines inserted, lines deleted and files changed)
* Implemented caching of unknown users
* Replaced dictionaries by sets for pids and branches
* Vcs is responsible for module and branches fields of commit record
* Added release tags support
* Implemented statistics by company
* Added config for releases
* Implemented front-end for companies details
* Implemented front-end for modules details
* Fixed metric switch
* Implemented timeline rendering
* Release selector is fixed
* Chdir is needed after cloning a new repo
* Company details screen is implemented
* Fixed invalid emails processing by Launchpad
* Fixed parsing of 0 files changed case
* Module details screen implemented
* Commit message is cleared and links are inserted
* Engineer details screen is implemented
* Fixed mapping from company to email for subdomains of 3rd level
* Fixed wrong user structure for users not found by LP
* Also coverage for commit processor
* Fixed company matching algorithm
* The company was not matched when user email had more domains than company's one
* Add option to enforce sync with default data
* Default data is added. Old confs removed
* Add *.local into gitignore

Scripts cleanup

Moved from pylibmc to python-memcached

Library pylibmc depends on libmemcached and doesn't work on CentOS (version conflict bw lib requirement and memcached).

Change-Id: I0cc61c6d344ba24442ec954635010b518c0efa95

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "layout.html" %}
 
2
 
 
3
{% block title %}
 
4
    Overview
 
5
{% endblock %}
 
6
 
 
7
{% block scripts %}
 
8
<script type="text/javascript">
 
9
    chartAndTableRenderer("/data/companies", "left_list", "left_chart", "/companies/");
 
10
    chartAndTableRenderer("/data/modules", "right_list", "right_chart", "/modules/");
 
11
    timelineRenderer()
 
12
</script>
 
13
{% endblock %}
 
14
 
 
15
{% block left_frame %}
 
16
 
 
17
    <h2>Contribution by companies</h2>
 
18
 
 
19
    <div id="left_chart" style="width: 100%; height: 350px;"></div>
 
20
 
 
21
    <table id="left_list" class="display">
 
22
        <thead>
 
23
            <tr>
 
24
                <th>#</th>
 
25
                <th>Company</th>
 
26
                <th>{{ metric_label }}</th>
 
27
            </tr>
 
28
        </thead>
 
29
        <tbody>
 
30
        </tbody>
 
31
    </table>
 
32
    <div class="spacer"></div>
 
33
 
 
34
{% endblock %}
 
35
 
 
36
{% block right_frame %}
 
37
 
 
38
    <h2>Contribution by modules</h2>
 
39
 
 
40
    <div id="right_chart" style="width: 100%; height: 350px;"></div>
 
41
 
 
42
    <table id="right_list" class="display">
 
43
        <thead>
 
44
            <tr>
 
45
                <th>#</th>
 
46
                <th>Module</th>
 
47
                <th>{{ metric_label }}</th>
 
48
            </tr>
 
49
        </thead>
 
50
        <tbody>
 
51
        </tbody>
 
52
    </table>
 
53
    <div class="spacer"></div>
 
54
 
 
55
{% endblock %}