Upgrade whole activity board to the last version of VizGrimoireR

and VizGrimoireJS

Change-Id: If8dfe51dde587fd857da18017b66d2ffbc0b36c5
This commit is contained in:
Daniel Izquierdo 2014-02-06 17:54:37 +01:00
parent 333f435672
commit 67deb625e9
176 changed files with 5951 additions and 53939 deletions

View File

@ -1,79 +1,7 @@
# See the README for installation instructions.
JS_UGLIFY = uglifyjs
JSHINT = jshint
# CSSHINT = csslint
all: \
vizgrimoire.js \
jshint \
vizgrimoire.min.js \
vizgrimoire.css
.INTERMEDIATE vizgrimoire.js: \
vizgrimoire.deps.js \
vizgrimoire.core.js
.INTERMEDIATE vizgrimoire.css: \
vizgrimoire.deps.css \
vizgrimoire.core.css
vizgrimoire.deps.js: \
src/License.js \
src/envision.js \
src/d3-treemap.min.js \
src/jquery.gridster.js
vizgrimoire.core.js: \
src/Envision_Report.js \
src/Loader.js \
src/DataProcess.js \
src/Report.js \
src/DataSource.js \
src/Viz.js \
src/ITS.js \
src/MLS.js \
src/SCM.js \
src/SCR.js \
src/Identity.js
vizgrimoire.deps.css: \
src/envision.min.css \
src/jquery.gridster.css
vizgrimoire.core.css: \
src/report.css \
src/report-envision.css
%.min.js: %.js Makefile
@rm -f $@
# $(JS_UGLIFY) -o $@ -c -m $<
$(JS_UGLIFY) -o $@ $<
vizgrimoire%js: Makefile
echo $@
@rm -f $@
@cat $(filter %.js,$^) > $@
# @cat $(filter %.js,$^) > $@.tmp
# $(JS_UGLIFY) -o $@ $@.tmp
# @rm $@.tmp
@chmod a-w $@
jshint: vizgrimoire.core.js
@echo "JSHINT Checking ..."
@$(JSHINT) $(filter %.js,$^)
test: all
test: vizgrimoire.min.js
cd test/jasmine; jasmine-headless-webkit -j jasmine.yml -c
cd ../..
testci: all
testci: vizgrimoire.min.js
cd test/jasmine; xvfb-run jasmine-headless-webkit -j jasmine.yml -c
cd ../..
vizgrimoire%css: Makefile
@rm -f $@
@cat $(filter %.css,$^) > $@
clean:
rm -f vizgrimoire*.js vizgrimoire*.css

View File

@ -1,35 +1,4 @@
Activity Board
==============
Description
-----------
The current code is the web front end to visualize development activity
metrics from the OpenStack community.
It is intended to add in the following days the files to configure the
MetricsGrimoire/VizGrimoire toolset that produces the actual data.
Configuration
-------------
Given that this is the front end as it is found in
http://activity.openstack.org/dash, the only thing you need to do
is to point your favorite server to the activity_board/browser directory.
Dependencies
------------
The whole machinery consists of several steps.
* Metrics Grimoire: in charge of the retrieval process, providing MySQL databases
* VizGrimoireR: in charge of parsing databases and providing polished JSON files
* VizGrimoireJS: in charge of visualizing the JSON files.
* In order to get the latest version of the data use the command below and place
it under the directory "browser/data/"
** wget http://activity.openstack.org/dash/browser/data/db/json.7z
** 7zr x json.7z
VizGrimoireJS aims at providing a framework for software metrics visualization using HTML, CSS and JavaScript as main technologies.
It was born as a complement to the outcomes of VizGrimoireR project, whose main focus is to parse information from any of the tools found in Metrics Grimoire project.

View File

@ -231,13 +231,13 @@ body {
}
a {
color: #ffa500;
color: #117173;
text-decoration: none;
}
a:hover,
a:focus {
color: #b37300;
color: #073030;
text-decoration: underline;
}
@ -2950,7 +2950,7 @@ table th[class*="span"],
clear: both;
font-weight: normal;
line-height: 20px;
color: #ffa500;
color: #117173;
white-space: nowrap;
}
@ -2960,14 +2960,14 @@ table th[class*="span"],
.dropdown-submenu:focus > a {
color: #ffffff;
text-decoration: none;
background-color: #f59e00;
background-image: -moz-linear-gradient(top, #ffa500, #e69500);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffa500), to(#e69500));
background-image: -webkit-linear-gradient(top, #ffa500, #e69500);
background-image: -o-linear-gradient(top, #ffa500, #e69500);
background-image: linear-gradient(to bottom, #ffa500, #e69500);
background-color: #10686a;
background-image: -moz-linear-gradient(top, #117173, #0e5b5d);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#117173), to(#0e5b5d));
background-image: -webkit-linear-gradient(top, #117173, #0e5b5d);
background-image: -o-linear-gradient(top, #117173, #0e5b5d);
background-image: linear-gradient(to bottom, #117173, #0e5b5d);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffa500', endColorstr='#ffe69500', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff117173', endColorstr='#ff0e5b5d', GradientType=0);
}
.dropdown-menu > .active > a,
@ -2975,15 +2975,15 @@ table th[class*="span"],
.dropdown-menu > .active > a:focus {
color: #ffffff;
text-decoration: none;
background-color: #f59e00;
background-image: -moz-linear-gradient(top, #ffa500, #e69500);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffa500), to(#e69500));
background-image: -webkit-linear-gradient(top, #ffa500, #e69500);
background-image: -o-linear-gradient(top, #ffa500, #e69500);
background-image: linear-gradient(to bottom, #ffa500, #e69500);
background-color: #10686a;
background-image: -moz-linear-gradient(top, #117173, #0e5b5d);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#117173), to(#0e5b5d));
background-image: -webkit-linear-gradient(top, #117173, #0e5b5d);
background-image: -o-linear-gradient(top, #117173, #0e5b5d);
background-image: linear-gradient(to bottom, #117173, #0e5b5d);
background-repeat: repeat-x;
outline: 0;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffa500', endColorstr='#ffe69500', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff117173', endColorstr='#ff0e5b5d', GradientType=0);
}
.dropdown-menu > .disabled > a,
@ -3360,17 +3360,17 @@ input[type="button"].btn-block {
.btn-primary {
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #ffbf00;
*background-color: #ffe500;
background-image: -moz-linear-gradient(top, #ffa500, #ffe500);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffa500), to(#ffe500));
background-image: -webkit-linear-gradient(top, #ffa500, #ffe500);
background-image: -o-linear-gradient(top, #ffa500, #ffe500);
background-image: linear-gradient(to bottom, #ffa500, #ffe500);
background-color: #116773;
*background-color: #115973;
background-image: -moz-linear-gradient(top, #117173, #115973);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#117173), to(#115973));
background-image: -webkit-linear-gradient(top, #117173, #115973);
background-image: -o-linear-gradient(top, #117173, #115973);
background-image: linear-gradient(to bottom, #117173, #115973);
background-repeat: repeat-x;
border-color: #ffe500 #ffe500 #b3a000;
border-color: #115973 #115973 #072530;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffa500', endColorstr='#ffffe500', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff117173', endColorstr='#ff115973', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
@ -3381,13 +3381,13 @@ input[type="button"].btn-block {
.btn-primary.disabled,
.btn-primary[disabled] {
color: #ffffff;
background-color: #ffe500;
*background-color: #e6ce00;
background-color: #115973;
*background-color: #0e475d;
}
.btn-primary:active,
.btn-primary.active {
background-color: #ccb700 \9;
background-color: #0a3647 \9;
}
.btn-warning {
@ -3596,7 +3596,7 @@ input[type="submit"].btn.btn-mini {
}
.btn-link {
color: #ffa500;
color: #117173;
cursor: pointer;
border-color: transparent;
-webkit-border-radius: 0;
@ -3606,7 +3606,7 @@ input[type="submit"].btn.btn-mini {
.btn-link:hover,
.btn-link:focus {
color: #b37300;
color: #073030;
text-decoration: underline;
background-color: transparent;
}
@ -3770,7 +3770,7 @@ input[type="submit"].btn.btn-mini {
}
.btn-group.open .btn-primary.dropdown-toggle {
background-color: #ffe500;
background-color: #115973;
}
.btn-group.open .btn-warning.dropdown-toggle {
@ -4007,7 +4007,7 @@ input[type="submit"].btn.btn-mini {
.nav-list > .active > a:focus {
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
background-color: #ffa500;
background-color: #117173;
}
.nav-list [class^="icon-"],
@ -4104,7 +4104,7 @@ input[type="submit"].btn.btn-mini {
.nav-pills > .active > a:hover,
.nav-pills > .active > a:focus {
color: #ffffff;
background-color: #ffa500;
background-color: #117173;
}
.nav-stacked > li {
@ -4172,14 +4172,14 @@ input[type="submit"].btn.btn-mini {
.nav .dropdown-toggle .caret {
margin-top: 6px;
border-top-color: #ffa500;
border-bottom-color: #ffa500;
border-top-color: #117173;
border-bottom-color: #117173;
}
.nav .dropdown-toggle:hover .caret,
.nav .dropdown-toggle:focus .caret {
border-top-color: #b37300;
border-bottom-color: #b37300;
border-top-color: #073030;
border-bottom-color: #073030;
}
/* move down carets for tabs */
@ -5573,7 +5573,7 @@ input[type="submit"].btn.btn-mini {
a.thumbnail:hover,
a.thumbnail:focus {
border-color: #ffa500;
border-color: #117173;
-webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
-moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);

File diff suppressed because one or more lines are too long

62
browser/bubbles.html Normal file
View File

@ -0,0 +1,62 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="container-fluid">
<!-- scm -->
<div class="row-fluid">
<div class="span12">
<h4>Source code activity</h4>
<div class="Bubbles" data-data-source="scm" data-radius="0.5"></div>
</div>
</div>
<!--end scm-->
<!-- mls -->
<div class="row-fluid">
<div class="span12">
<h4>Tickets Activity</h4>
<div class="Bubbles" data-data-source="its" data-radius="0.5"></div>
</div>
</div>
<!--end mls -->
<!-- its -->
<div class="row-fluid">
<div class="span12">
<h4>Mailing List Activity</h4>
<div class="Bubbles" data-data-source="mls" data-radius="0.5"></div>
</div>
</div>
<!-- end its-->
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -1,90 +1,178 @@
<!DOCTYPE html>
<html>
<head>
<meta name="keywords" content="bitergia, floss, libresoft, oss, linux, research, reports, free software, software analysis" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, maximum-scale=1.0">
<meta name="description" content="Bitergia company website" />
<link rel="stylesheet" type="text/css" id="theme" href="VizGrimoireJS/vizgrimoire.css" />
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<title>Report by Bitergia: Company information</title>
<style type="text/css">
</style>
</head>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div id="wrapper">
<div id="header"></div>
<div id="info-column1" style="width:200px">
<div id="navigation"></div>
<div class="info-pill">
<div id="scm-refcard-company"></div>
</div>
</div>
<div style="float:left">
<div style="float:left">
<div style="margin-bottom:15px;">
<div class="scm-flotr2-metrics-company"
style="width:350px;height:250px;margin-bottom:5px;"
data-metrics="commits" data-legend="false"></div>
<i><b>Reviewed commits per month</b></i>
<a href="notes.html#note:charts:company:commits"><img src="qm_15.png"></a>
</div>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div style="margin-bottom:15px;">
<div class="scm-flotr2-metrics-company"
style="width:350px;height:250px;margin-bottom:5px;"
data-metrics="authors" data-legend="false"></div>
<i><b>Authors per month</b></i>
<a href="notes.html#note:charts:company:authors"><img src="qm_15.png"></a>
</div>
<div>
<div class="scm-flotr2-metrics-company"
style="width:350px;height:250px;margin-bottom:5px;"
data-metrics="added_lines,removed_lines" data-legend="true"></div>
<i><b>Lines added/removed per month</b></i>
<a href="notes.html#note:charts:company:lines"><img src="qm_15.png"></a>
</div>
</div>
<div style="float:left; margin-left:10px;">
<div class="info-pill">
<h1>Top authors (total)<a href="notes.html#note:tables:company:authors"><img src="qm_15.png"></a></h1>
<div class="scm-flotr2-top-company"
data-metric="authors" data-period="all" data-titles="false"></div>
</div>
<div class="info-pill">
<h1>Top authors (2006)<a href="notes.html#note:tables:company:authors"><img src="qm_15.png"></a></h1>
<div class="scm-flotr2-top-company"
data-metric="authors" data-period="2006" data-titles="false"></div>
</div>
<div class="info-pill">
<h1>Top authors (2009)<a href="notes.html#note:tables:company:authors"><img src="qm_15.png"></a></h1>
<div class="scm-flotr2-top-company"
data-metric="authors" data-period="2009" data-titles="false"></div>
</div>
<div class="info-pill">
<h1>Top authors (2012)<a href="notes.html#note:tables:company:authors"><img src="qm_15.png"></a></h1>
<div class="scm-flotr2-top-company"
data-metric="authors" data-period="2012" data-titles="false"></div>
</div>
</div>
</div>
<div id="footer"></div>
<div class="row-fluid">
</div>
<!-- <script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script> -->
<script type="text/javascript" src="VizGrimoireJS/src/envision.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/DataSource.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/Loader.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/Report.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/ITS.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/MLS.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/SCM.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/Envision_Report.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/Viz.js"></script>
</body>
<div class="span12">
<div class="row-fluid">
<div class="span12">
<div class="FilterItemData"></div>
</div>
</div>
<!-- scm charts -->
<div class="row-fluid">
<div class="span2">
<div class="FilterItemSummary" data-data-source="scm"
data-filter="companies"></div>
</div>
<!-- commits -->
<div class="span4">
<div class="FilterItemMetricsEvol" data-data-source="scm"
data-metrics="scm_commits" data-legend="true"
data-filter="companies"></div>
</div>
<!-- end commits -->
<!-- authors -->
<div class="span4">
<div class="FilterItemMetricsEvol" data-data-source="scm"
data-metrics="scm_authors" data-legend="true"
data-filter="companies"></div>
</div>
<!-- end authors -->
<!-- end added, removed lines -->
<!-- <div class="span3">
<div class="FilterItemMetricsEvol" data-data-source="scm"
data-metrics="scm_added_lines,scm_removed_lines"
data-legend="true" data-filter="companies"></div>
</div>
-->
<!-- end added,removed lines -->
<div class="span2">
<div class="FilterItemTop" data-data-source="scm"
data-metric="scm_authors" data-period="all" data-titles="false"
data-filter="companies"></div>
</div>
</div>
<!-- end scm charts -->
<!-- its charts -->
<div class="row-fluid">
<div class="span2">
<div class="FilterItemSummary" data-data-source="its"
data-filter="companies"></div>
</div>
<!-- end closed, opened tickets -->
<div class="span4">
<div class="FilterItemMetricsEvol" data-data-source="its"
data-metrics="its_closed,its_opened" data-legend="true"
data-filter="companies"></div>
</div>
<!-- end closed, opened tickets -->
<!-- closers, openers -->
<div class="span4">
<div class="FilterItemMetricsEvol" data-data-source="its"
data-metrics="its_closers,its_openers" data-legend="true"
data-filter="companies"></div>
</div>
<div class="span2">
<div class="FilterItemTop" data-data-source="its"
data-metric="its_closers" data-period="all" data-titles="false"
data-filter="companies"></div>
<!-- end closers, openers -->
</div>
</div>
<!-- end its charts -->
<!-- mls charts -->
<div class="row-fluid">
<div class="span2">
<div class="FilterItemSummary" data-data-source="mls"
data-filter="companies"></div>
</div>
<!-- sent msgs -->
<div class="span4">
<div class="FilterItemMetricsEvol" data-data-source="mls"
data-metrics="mls_sent" data-legend="true" data-filter="companies"></div>
</div>
<!-- senders -->
<div class="span4">
<div class="FilterItemMetricsEvol" data-data-source="mls"
data-metrics="mls_senders" data-legend="true"
data-filter="companies"></div>
</div>
<!-- end senders -->
<div class="span2">
<div class="FilterItemTop" data-data-source="mls"
data-metric="mls_senders" data-period="all" data-titles="false"
data-filter="companies"></div>
</div>
</div>
<!-- end mls charts -->
<div class="row-fluid">
<div class="span2">
<div class="FilterItemSummary" data-data-source="scr"
data-filter="companies"></div>
</div>
<div class="span4">
<div class="FilterItemMetricsEvol" data-data-source="scr"
data-metrics="scr_submitted,scr_merged" data-legend="true"
data-filter="companies"></div>
</div>
<!-- <div class="span4">
<div class="FilterItemMetricsEvol" data-data-source="scr"
data-metrics="scr_mergers" data-legend="true"
data-filter="companies"></div>
</div>
-->
<!-- <div class="span2">
<div class="FilterItemTop" data-data-source="scr"
data-metric="scr_senders" data-period="all" data-titles="false"
data-filter="companies"></div>
</div>
-->
</div>
<!-- end mls charts -->
</div>
<!-- end charts -->
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

130
browser/country.html Normal file
View File

@ -0,0 +1,130 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="row-fluid">
<div class="span12">
<div class="FilterItemData"></div>
</div>
</div>
<!-- SCM -->
<div class="row-fluid">
<div class="span2">
<div class="FilterItemSummary" data-data-source="scm"
data-filter="countries"></div>
</div>
<div class="span10">
<div class="span6">
<div class="row-fluid">
<div class="FilterItemMetricsEvol" data-data-source="scm"
data-metrics="scm_commits" data-filter="countries"
data-legend="false" data-help="false"></div>
</div>
</div>
<div class="span6">
<div class="FilterItemMetricsEvol" data-data-source="scm"
data-metrics="scm_authors" data-filter="countries"
data-legend="false" data-help="false"></div>
</div>
</div>
</div>
<!-- end SCM -->
<!-- ITS -->
<div class="row-fluid">
<div class="span2">
<div class="FilterItemSummary" data-data-source="its"
data-filter="countries"></div>
</div>
<div class="span10">
<div class="span6">
<div class="row-fluid">
<div class="FilterItemMetricsEvol" data-data-source="its"
data-metrics="its_closed" data-filter="countries"
data-legend="false" data-help="false"></div>
</div>
</div>
<div class="span6">
<div class="FilterItemMetricsEvol" data-data-source="its"
data-metrics="its_closers" data-filter="countries"
data-legend="false" data-help="false"></div>
</div>
</div>
</div>
<!-- end ITS -->
<!-- MLS -->
<div class="row-fluid">
<div class="span2">
<div class="FilterItemSummary" data-data-source="mls"
data-filter="countries"></div>
</div>
<div class="span10">
<div class="span6">
<div class="row-fluid">
<div class="FilterItemMetricsEvol" data-data-source="mls"
data-metrics="mls_sent" data-filter="countries"
data-legend="false" data-help="false"></div>
</div>
</div>
<div class="span6">
<div class="FilterItemMetricsEvol" data-data-source="mls"
data-metrics="mls_senders" data-filter="countries"
data-legend="false" data-help="false"></div>
</div>
</div>
</div>
<!-- end MLS -->
<!-- SCR -->
<div class="row-fluid">
<div class="span2">
<div class="FilterItemSummary" data-data-source="scr"
data-filter="countries"></div>
</div>
<div class="span10">
<div class="span6">
<div class="row-fluid">
<div class="FilterItemMetricsEvol" data-data-source="scr"
data-metrics="scr_submitted" data-filter="countries"
data-legend="false" data-help="false"></div>
</div>
</div>
<div class="span6">
<div class="FilterItemMetricsEvol" data-data-source="scr"
data-metrics="scr_merged" data-filter="countries"
data-legend="false" data-help="false"></div>
</div>
</div>
</div>
<!-- end SCR -->
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -1,14 +1,17 @@
.subreport-list-item {float:right;height:100px;width:50%;margin-right:15px;}/* For lists with graphs */
.container-fluid {
padding-left: 20px;
padding-right: 20px;
max-width: 1280px;
margin-left: auto;
margin-right: auto;
.FilterItemSummary,
.PersonSummary
{
font-size:0.875em;
}
.row-fluid{
padding-top: 20px;
/* Sometimes the dates in x need more space*/
.FilterItemMetricsEvol
{
margin-bottom:15px;
}
.Demographics
{
width: 100%;
height: 300px;
}

158
browser/custom2.css Normal file
View File

@ -0,0 +1,158 @@
.envision-component-container {
width: 425px;
height : 150px;
}
.envision-component-container.envision-first {
width: 425px;
height : 200px;
}
.basic-metric-html {
width: 150px;
}
.m0-box-div {
height: 130px;
float: left;
margin-bottom: 20px;
}
.scm-flotr2-metrics,
.its-flotr2-metrics,
.mls-flotr2-metrics
{
height: 130px;
}
.scm-flotr2-countries-static,
.scm-flotr2-companies-static,
.scm-flotr2-repos-static,
.its-flotr2-countries-static,
.its-flotr2-companies-static,
.its-flotr2-repos-static,
.mls-flotr2-countries-static,
.mls-flotr2-companies-static,
.mls-flotr2-repos-static,
.its-time-to-fix,
.mls-time-to-attention
{
height: 200px;
}
.scm-flotr2-metrics-country,
.its-flotr2-metrics-country,
.mls-flotr2-metrics-country,
.scm-flotr2-metrics-repo,
.its-flotr2-metrics-repo,
.mls-flotr2-metrics-repo,
.scm-flotr2-metrics-company,
.its-flotr2-metrics-company,
.mls-flotr2-metrics-company,
.scm-flotr2-metrics-people,
.its-flotr2-metrics-people,
.mls-flotr2-metrics-people
{
height: 200px;
}
#its-envision {
height: 450px;
}
#mls-envision {
height: 250px;
}
/*#mls-envision .envision-component-container .envision-first {
width: 425px;
}*/
.scm-flotr2-companies
{
height: 300px;
}
.demographic-bars {
width:400px;height:200px;
}
.subreport-list-item {
margin: 5px;
}
/* Bootstrap */
.hero-unit {
padding: 30px;
}
.center {
float: none;
margin-left: auto;
margin-right: auto;
}
/* by Luis */
.date {
color: #8F8F8F;
font: 12px Helvetica,arial,freesans,clean,sans-serif;
}
.num {
color: #333333;
display: block;
font-size: 16px;
font-weight: bold;
}
.num2 {
color: #333333;
display: block;
font-size: 18px;
font-weight: bold;
}
/* l.com */
.stats{
padding: 0 11px 0 0;
display: table;
line-height: none !important;
}
.stats em {
display: table-cell;
padding-bottom: 10px;
vertical-align: middle;
font-size: 0.9em;
}
.stats .count {
font-size: 200%;
padding-right: 10px;
text-align: right;
line-height: 40px;
float: right;
}
.stats strong {
color: #555555;
}
.container-fluid {
padding-left: 20px;
padding-right: 20px;
max-width: 1280px;
margin-left: auto;
margin-right: auto;
}
/*.row-fluid {
width: 100%;
float:none;
margin:0 auto;
}*/
.bottom-padding{
padding: 0 0 10px 0;
}

76
browser/demographics.html Normal file
View File

@ -0,0 +1,76 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div id="info" class="row-fluid">
<h4>Information about demography</h4>
</div>
<div class="well">
<div class="row-fluid">
<p>
<i><b>Aging</b>: charts show the age of the contributors still
active using the date of their first contribution in the different
data sources.</i> Big bars on top would mean that old contributors are
still active. Big bars at the bottom would mean that new contributors
are being retained.
</p>
<p>
<i><b>Birth</b> charts show the number of contributors joining the
community.</i> Biggers bars on top would mean that your community
attracted more people. Bigger bars at the bottom would mean that your
community is attracting more people lately.
</p>
</div>
</div>
<div class="row-fluid">
<div class="span4">
<h6>Source code developers</h6>
<div class="Demographics" data-data-source="scm" data-period="0.5"></div>
</div>
<div class="span4">
<h6>Ticket participants</h6>
<div class="Demographics" data-data-source="its" data-period="0.5"></div>
</div>
<div class="span4">
<h6>Discussion participants</h6>
<div class="Demographics" data-data-source="mls" data-period="0.5"></div>
</div>
</div>
<div class="row-fluid" style="margin-top: 10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

180
browser/domain.html Normal file
View File

@ -0,0 +1,180 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="row-fluid">
<div class="span12">
<div class="FilterItemData"></div>
</div>
</div>
<div class="row-fluid">
<!-- charts -->
<div class="span12">
<!-- scm charts -->
<div class="row-fluid">
<div class="span2">
<div class="FilterItemSummary" data-data-source="scm"
data-filter="domains"></div>
</div>
<!-- commits -->
<div class="span4">
<div class="FilterItemMetricsEvol" data-data-source="scm"
data-metrics="scm_commits" data-legend="true"
data-filter="domains"></div>
</div>
<!-- end commits -->
<!-- authors -->
<div class="span4">
<div class="FilterItemMetricsEvol" data-data-source="scm"
data-metrics="scm_authors" data-legend="true"
data-filter="domains"></div>
</div>
<!-- end authors -->
<!-- end added, removed lines -->
<!-- <div class="span3">
<div class="FilterItemMetricsEvol" data-data-source="scm"
data-metrics="scm_added_lines,scm_removed_lines"
data-legend="true" data-filter="domains"></div>
</div>
-->
<!-- end added,removed lines -->
<div class="span2">
<div class="FilterItemTop" data-data-source="scm"
data-metric="scm_authors" data-period="all" data-titles="false"
data-filter="domains"></div>
</div>
</div>
<!-- end scm charts -->
<!-- its charts -->
<div class="row-fluid">
<div class="span2">
<div class="FilterItemSummary" data-data-source="its"
data-filter="domains"></div>
</div>
<!-- end closed, opened tickets -->
<div class="span4">
<div class="FilterItemMetricsEvol" data-data-source="its"
data-metrics="its_closed,its_opened" data-legend="true"
data-filter="domains"></div>
</div>
<!-- end closed, opened tickets -->
<!-- closers, openers -->
<div class="span4">
<div class="FilterItemMetricsEvol" data-data-source="its"
data-metrics="its_closers,its_openers" data-legend="true"
data-filter="domains"></div>
</div>
<div class="span2">
<div class="FilterItemTop" data-data-source="its"
data-metric="its_closers" data-period="all" data-titles="false"
data-filter="domains"></div>
<!-- end closers, openers -->
</div>
</div>
<!-- end its charts -->
<!-- mls charts -->
<div class="row-fluid">
<div class="span2">
<div class="FilterItemSummary" data-data-source="mls"
data-filter="domains"></div>
</div>
<!-- sent msgs -->
<div class="span4">
<div class="FilterItemMetricsEvol" data-data-source="mls"
data-metrics="mls_sent" data-legend="true" data-filter="domains"></div>
</div>
<!-- senders -->
<div class="span4">
<div class="FilterItemMetricsEvol" data-data-source="mls"
data-metrics="mls_senders" data-legend="true"
data-filter="domains"></div>
</div>
<!-- end senders -->
<div class="span2">
<div class="FilterItemTop" data-data-source="mls"
data-metric="mls_senders" data-period="all" data-titles="false"
data-filter="domains"></div>
</div>
</div>
<!-- end mls charts -->
<div class="row-fluid">
<div class="span2">
<div class="FilterItemSummary" data-data-source="scr"
data-filter="domains"></div>
</div>
<div class="span4">
<div class="FilterItemMetricsEvol" data-data-source="scr"
data-metrics="scr_submitted,scr_merged" data-legend="true"
data-filter="domains"></div>
</div>
<!-- <div class="span4">
<div class="FilterItemMetricsEvol" data-data-source="scr"
data-metrics="scr_mergers" data-legend="true"
data-filter="domains"></div>
</div>
-->
<!-- <div class="span2">
<div class="FilterItemTop" data-data-source="scr"
data-metric="scr_senders" data-period="all" data-titles="false"
data-filter="domains"></div>
</div>
-->
</div>
<!-- end mls charts -->
</div>
<!-- end charts -->
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,8 +1,10 @@
<div id="about">
<p>
&#169; 2011-2013 OpenStack Foundation
&#169; 2011-2013 Bitergia
<a href="http://creativecommons.org/licenses/by-sa/3.0/es/deed.es"><img src="cc-by-sa.png" border=0 alt="CC by-sa"></a>
Powered by <a href="http://metricsgrimoire.github.com/">MetricsGrimoire</a> and <a href="http://vizgrimoire.bitergia.org/">VizGrimoire</a>
and <a href="http://twitter.github.io/bootstrap/">Bootstrap</a>
<span id="vizjs-lib-version"></span>
and <a href="http://twitter.github.io/bootstrap/">Bootstrap</a>
</p>
</div>

View File

@ -1,20 +1,13 @@
<div id="header">
<figure class="logo">
<a href="http://openstack.org">
<img src="openstack-cloud-software-vertical-small.png"
alt="OpenStack logo"
id="openstacklogo" height="100" width="100"
border=0 style="float: left">
</a>
</figure>
<figure class="logo">
<a href="http://bitergia.com">
<img src="bitergia-logo.png"
alt="Bitergia logo" id="logo" height="45" width="159"
border=0 style="float: right"></a>
</figure>
<h2>
<a href="index.html">OpenStack Development Dashboard</a>
<span id='report_page'></span>
</h2>
<figure class="logo">
<p>
<a href="index.html"><img src="bitergia-logo.png"
alt="Bitergia logo" id="logo" height="45" width="159"
border=0 style="float: right"></a>
</figure>
<h2>
<a href="index.html"><span class='report_name'></span>
Analysis (<span class='report_date'></span>)</a> <span
id='report_page'></span>
</h2>
</div>

139
browser/hero.html Normal file
View File

@ -0,0 +1,139 @@
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>Bootstrap, from Twitter</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
</style>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="../assets/js/html5shiv.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://getbootstrap.com/2.3.2/assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://getbootstrap.com/2.3.2/assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://getbootstrap.com/2.3.2/assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="http://getbootstrap.com/2.3.2/assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="http://getbootstrap.com/2.3.2/assets/ico/favicon.png">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="#">Project name</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li class="nav-header">Nav header</li>
<li><a href="#">Separated link</a></li>
<li><a href="#">One more separated link</a></li>
</ul>
</li>
</ul>
<form class="navbar-form pull-right">
<input class="span2" placeholder="Email" type="text">
<input class="span2" placeholder="Password" type="password">
<button type="submit" class="btn">Sign in</button>
</form>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<!-- Main hero unit for a primary marketing message or call to action -->
<div class="hero-unit">
<h1>Hello, world!</h1>
<p>This is a template for a simple marketing or informational
website. It includes a large callout called the hero unit and three
supporting pieces of content. Use it as a starting point to create
something more unique.</p>
<p><a href="#" class="btn btn-primary btn-large">Learn more »</a></p>
</div>
<!-- Example row of columns -->
<div class="row">
<div class="span4">
<h2>Heading</h2>
<p>Donec id elit non mi porta gravida at eget metus. Fusce
dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut
fermentum massa justo sit amet risus. Etiam porta sem malesuada magna
mollis euismod. Donec sed odio dui. </p>
<p><a class="btn" href="#">View details »</a></p>
</div>
<div class="span4">
<h2>Heading</h2>
<p>Donec id elit non mi porta gravida at eget metus. Fusce
dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut
fermentum massa justo sit amet risus. Etiam porta sem malesuada magna
mollis euismod. Donec sed odio dui. </p>
<p><a class="btn" href="#">View details »</a></p>
</div>
<div class="span4">
<h2>Heading</h2>
<p>Donec sed odio dui. Cras justo odio, dapibus ac facilisis
in, egestas eget quam. Vestibulum id ligula porta felis euismod semper.
Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh,
ut fermentum massa justo sit amet risus.</p>
<p><a class="btn" href="#">View details »</a></p>
</div>
</div>
<hr>
<footer>
<p>© Company 2013</p>
</footer>
</div> <!-- /container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="hero_files/jquery.js"></script>
<script src="hero_files/bootstrap-transition.js"></script>
<script src="hero_files/bootstrap-alert.js"></script>
<script src="hero_files/bootstrap-modal.js"></script>
<script src="hero_files/bootstrap-dropdown.js"></script>
<script src="hero_files/bootstrap-scrollspy.js"></script>
<script src="hero_files/bootstrap-tab.js"></script>
<script src="hero_files/bootstrap-tooltip.js"></script>
<script src="hero_files/bootstrap-popover.js"></script>
<script src="hero_files/bootstrap-button.js"></script>
<script src="hero_files/bootstrap-collapse.js"></script>
<script src="hero_files/bootstrap-carousel.js"></script>
<script src="hero_files/bootstrap-typeahead.js"></script>
</body></html>

View File

@ -1,114 +1,297 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" type="text/css" id="theme" href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="custom.css" />
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="../assets/js/html5shiv.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="favicon.png">
</head>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div id="navbar"></div>
<div class="container-fluid">
<div class="row-fluid">
<div>Welcome to OpenStack Development Dashboard. This space contains information
collected from several sources, including OpenStack source code repository (git),
bug tracking system (Launchpad), mailing lists, gerrit and from the OpenStack Foundation
members database. The data has been retrieved using
<a href="http://metricsgrimoire.github.com">MetricsGrimoire</a>, and analyzed
and visualized using <a href="http://vizgrimoire.github.com">vizGrimoire</a>. Please consider
this as work in progress: send all your comments
to <a href="mailto:communitymngr @ openstack.org">communitymngr @ openstack.org</a> (beware the spaces),
and report bugs in the <a href="https://bugs.launchpad.net/openstack-community">Open Stack Lauchpad tracker</a>.</div>
<div><b>Warning!</b> This is still work in progress, be patient if the page takes its time to load.
Data may be unaccurate or even wildly incorrect.</div>
</div>
<div class="row-fluid">
<div class="span2">
<div class="well sidebar-nav">
<h4>Other Areas</h4>
<ul>
<li><a href="http://activity.openstack.org/dash/releases/">Releases by Company</a></li>
<li><a href="http://activity.openstack.org/dash/dashboard/">Actionable Dashboard</a></li>
<li><a href="http://activity.openstack.org/dash/browser/data/json/">JSON API</a></li>
<li><a href="http://activity.openstack.org/dash/browser/data/db/">MySQL dumps</a></li>
</ul>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<!-- summary bar -->
<div class="capped-box overall-summary ">
<div class="stats-switcher-viewport js-stats-switcher-viewport">
<ul class="numbers-summary">
<li><span class="label label-important">New</span>&nbsp;<a href="../releases/">Last data about Havana</a></li>
<li><span class="label label-warning">Info</span>&nbsp;<a href="../dashboard/">Create your own charts</a></li>
<li><span class="label label-warning">Info</span>&nbsp;<a href="data/json/">Get the data (API JSON)</a></li>
<li><span class="label label-warning">Info</span>&nbsp;<a href="data/db/">Get the databases</a></li>
</ul>
</div>
</div>
<!-- summary bar -->
<div class="capped-box overall-summary ">
<div class="stats-switcher-viewport js-stats-switcher-viewport">
<ul class="numbers-summary">
<li><a href="scm.html"><span class="GlobalData"
data-data-source="scm" data-field="scm_commits"></span></a> commits</li>
<li><a href="scm.html"><span class="GlobalData"
data-data-source="scm" data-field="scm_authors"></span></a> developers
</li>
<li><a href="its.html"><span class="GlobalData"
data-data-source="its" data-field="its_opened"></span></a> tickets</li>
<li><a href="mls.html"><span class="GlobalData"
data-data-source="mls" data-field="mls_sent"></span></a> mail messages
</li>
</ul>
</div>
</div>
<!-- end of summary bar -->
<!-- scm, its, mls, refcard -->
<div class="row-fluid" style="margin-top: 20px;">
<!-- scm -->
<div class="row-fluid invisible-box">
<!-- scm summary box -->
<div class="span3">
<div class="wellmin">
<div class="row-fluid thin-border">
<div class="span12">Code Developers</div>
</div>
<div class="well sidebar-nav">
<div id="refcard"></div>
</div><!--/.well -->
</div><!--/span-->
<div class="span4">
<div id="info-pill">
<h4>General activity</h4>
<div class="row-fluid grey-border">
<div class="span12 big-fp-number">
<a href="scm.html"> <span class="GlobalData"
data-data-source="scm" data-field="scm_authors"></span>
</a>
</div>
</div>
<div class="row-fluid" style="padding: 5px 0px 0px 0px;">
<div class="span4">
<div class="row-fluid thin-border">
<div class="span12">Core</div>
</div>
<div class="row-fluid">
<div class="span12 medium-fp-number">
<a href="scm.html"> <span class="GlobalData"
data-data-source="scm" data-field="core"></span>
</a>
</div>
</div>
</div>
<div class="span4">
<div class="row-fluid thin-border">
<div class="span12">Regular</div>
</div>
<div class="row-fluid">
<div class="span12 medium-fp-number">
<a href="scm.html"> <span class="GlobalData"
data-data-source="scm" data-field="regular"></span>
</a>
</div>
</div>
</div>
<div class="span4">
<div class="row-fluid thin-border">
<div class="span12">Occasional</div>
</div>
<div class="row-fluid">
<div class="span12 medium-fp-number">
<a href="scm.html"> <span class="GlobalData"
data-data-source="scm" data-field="occasional"></span>
</a>
</div>
</div>
</div>
</div>
<div id="all-envision"></div>
<div style="margin-top:100px"><p>[Use sliders to select time periods]</p></div>
</div>
<div class="span6">
<div style="float:left;width:470px;heigth:550px;">
<h4>Last Activity Tracker</h4>
<div class="activity" data-period="Week" style="float:left;"></div>
<div class="activity" data-period="Month" style="float:left;margin-left:10px;"></div>
<div class="activity" data-period="Quarter" style="float:left;margin-left:10px;"></div>
</div>
<div style="clear:both"></div>
<div style="float:left;margin-top:20px;">
<h4>Tendencies</h4>
<div style="float:left;margin-top:12px;background-color:#F2F2F2;">
<div class="microdash" data-metric="scm_commits"></div>
</div>
<div style="float:left;margin-top:12px;">
<div class="microdash" data-metric="scm_authors"></div>
</div>
<div style="float:left;margin-top:12px;background-color:#F2F2F2;">
<div class="microdash" data-metric="scm_files"></div>
</div>
<div style="float:left;margin-top:12px;">
<div class="microdash" data-metric="scm_added_lines"></div>
</div>
<div style="float:left;margin-top:12px;background-color:#F2F2F2;">
<div class="microdash" data-metric="its_closed"></div>
</div>
</div>
</div>
</div>
</div>
<div id="footer"></div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
<!-- end scm summary box -->
<div class="span5">
<div class="well">
<div class="MetricsEvol" data-data-source="scm"
data-metrics="scm_commits" data-min="true" style="height: 45px;"></div>
<a href="scm.html" style="color: black;"> <span
class="MicrodashText" data-metric="scm_commits"></span>
</a>
</div>
</div>
<div class="span4">
<div class="well">
<div class="MetricsEvol" data-data-source="scm"
data-metrics="scm_authors" data-min="true" style="height: 45px;"></div>
<a href="scm.html" style="color: black;"> <span
class="MicrodashText" data-metric="scm_authors"></span>
</a>
</div>
</div>
</div>
<!-- end scm -->
<!-- its -->
<div class="row-fluid invisible-box">
<!-- its summary box -->
<div class="span3">
<div class="wellmin">
<div class="row-fluid thin-border">
<div class="span12">Ticket Participants</div>
</div>
<div class="row-fluid grey-border">
<div class="span12 big-fp-number">
<a href="its.html"> <span class="GlobalData"
data-data-source="its" data-field="allhistory_participants"></span>
</a>
</div>
</div>
<div class="row-fluid" style="padding: 5px 0px 0px 0px;">
<div class="span6">
<div class="row-fluid thin-border">
<div class="span12">Fixers</div>
</div>
<div class="row-fluid">
<div class="span12 medium-fp-number">
<a href="its.html"> <span class="GlobalData"
data-data-source="its" data-field="its_closers"></span>
</a>
</div>
</div>
</div>
<div class="span6">
<div class="row-fluid thin-border">
<div class="span12">Submitters</div>
</div>
<div class="row-fluid">
<div class="span12 medium-fp-number">
<a href="its.html"> <span class="GlobalData"
data-data-source="its" data-field="its_openers"></span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end its summary box -->
<div class="span5">
<div class="well">
<div class="MetricsEvol" data-data-source="its"
data-metrics="its_closed" data-min="true" style="height: 45px;"></div>
<a href="its.html" style="color: black;"> <span
class="MicrodashText" data-metric="its_closed"></span>
</a>
</div>
</div>
<div class="span4">
<div class="well">
<div class="MetricsEvol" data-data-source="its"
data-metrics="its_closers" data-min="true" style="height: 45px;"></div>
<a href="its.html" style="color: black;"> <span
class="MicrodashText" data-metric="its_closers"></span>
</a>
</div>
</div>
</div>
<!-- end its -->
<!-- mls -->
<div class="row-fluid invisible-box">
<!-- mls summary box-->
<div class="span3">
<div class="wellmin">
<div class="row-fluid thin-border">
<div class="span12">Discussion Participants</div>
</div>
<div class="row-fluid grey-border">
<div class="span12 big-fp-number">
<a href="mls.html"> <span class="GlobalData"
data-data-source="mls" data-field="mls_senders"></span>
</a>
</div>
</div>
<div class="row-fluid" style="padding: 5px 0px 0px 0px;">
<div class="span6">
<div class="row-fluid thin-border">
<div class="span12">Thread Initiators</div>
</div>
<div class="row-fluid">
<div class="span12 medium-fp-number">
<a href="mls.html"> <span class="GlobalData"
data-data-source="mls" data-field="senders_init"></span>
</a>
</div>
</div>
</div>
<div class="span6">
<div class="row-fluid thin-border">
<div class="span12">First Repliers</div>
</div>
<div class="row-fluid">
<div class="span12 medium-fp-number">
<a href="mls.html"> <span class="GlobalData"
data-data-source="mls" data-field="senders_response"></span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end mls summary box -->
<div class="span5">
<div class="well">
<div class="MetricsEvol" data-data-source="mls"
data-metrics="mls_sent" data-min="true" style="height: 45px;"></div>
<a href="mls.html" style="color: black;"> <span
class="MicrodashText" data-metric="mls_sent"></span>
</a>
</div>
</div>
<div class="span4">
<div class="well">
<div class="MetricsEvol" data-data-source="mls"
data-metrics="mls_senders" data-min="true" style="height: 45px;"></div>
<a href="mls.html" style="color: black;"> <span
class="MicrodashText" data-metric="mls_senders"></span>
</a>
</div>
</div>
</div>
<!-- end mls -->
</div>
<!-- end scm, its, mls -->
<div class="row-fluid" style="margin-top: 10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

128
browser/index.html.bak Normal file
View File

@ -0,0 +1,128 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet">
<link rel="shortcut icon" href="favicon.png">
</head>
<body>
<div id="navbar"></div>
<div class="container-fluid">
<div class="row-fluid">
<div class="span8">
<!--SCM information-->
<div class="row-fluid">
<div class="span6" style="background-color:#F2F2F2;">
<h4>Last 7 Days</h4>
<span class="num"><span class="global-data" data-field="scm_commits_7"></span> commits</span>
<span class="date"><span class="global-data" data-field="scm_commits"></span> commits in total</span>
<span class="num"><span class="global-data" data-field="scm_authors_7"></span> authors</span>
<span class="date"><span class="global-data" data-field="scm_authors"></span> authors in total</span>
<span class="num"><span class="global-data" data-field="scm_files_7"></span> files</span>
<span class="date"><span class="global-data" data-field="scm_files"></span> files in total</span>
</div> <!--span4-->
<div class="span6">
<h4>Tendencies</h4>
<div class="scm-flotr2-metrics" data-metrics="scm_commits"
data-legend="false"></div>
</div> <!--span4-->
</div> <!--row-->
<!--ITS information-->
<div class="row-fluid">
<div class="span6" style="margin-top:40px;">
<h4>Last 7 Days Activity in Tickets</h4>
<span class="num"><span class="global-data" data-field="its_openers_7"></span> openers</span>
<span class="date"><span class="global-data" data-field="its_openers"></span> openers in total</span>
<span class="num"><span class="global-data" data-field="its_closers_7"></span> closers</span>
<span class="date"><span class="global-data" data-field="its_closers"></span> closers in total</span>
<span class="num"><span class="global-data" data-field="its_closed_7"></span> closed</span>
<span class="date"><span class="global-data" data-field="its_closed"></span> closed in total</span>
</div> <!--span4-->
<div class="span6" style="background-color:#F2F2F2;">
<h4>Tendencies</h4>
<div class="its-flotr2-metrics" data-metrics="its_closers"
data-legend="false"></div>
</div> <!--span4-->
</div> <!--row-->
<div class="row-fluid">
<div class="span6" style="background-color:#F2F2F2;margin-top:40px;">
<h4>Aggregated Info Tickets</h4>
<div class="microdash" data-metric="mls_sent"></div>
<div class="microdash" data-metric="mls_senders"></div>
<div class="microdash" data-metric="mls_sent"></div>
</div> <!--span4-->
<div class="span6">
</div> <!--span4-->
</div> <!--row-->
</div> <!--span8-->
<div class="span4">
<div id="all-envision" data-legend-show="false"
data-summary-graph="false"></div>
</div>
</div><!--row-fluid-->
</div><!--container-fluid-->
</div> <!--container-->
<div class="container-fluid">
<div class="row-fluid">
<div class="span2">
<div class="well sidebar-nav">
<div id="refcard"></div>
</div>
</div>
<div class="span10">
<div class="row-fluid">
<div class="hero-unit1" style="height: 400px;">
<div class="span4">
<div class="microdash" data-metric="scm_commits"></div>
<div class="microdash" data-metric="its_opened"></div>
<div class="microdash" data-metric="mls_sent"></div>
</div>
<div class="span8">
<div id="all-envision" data-legend-show="false"
data-summary-graph="false"></div>
</div>
</div>
<div class="row-fluid">
<div class="span3">
<div id="scm-top" data-limit="10"></div>
</div>
<div class="span3">
<div id="its-top" data-metric="openers" data-limit="10"></div>
</div>
<div class="span3">
<div id="mls-top" data-limit="10"></div>
</div>
</div>
</div>
</div>
</div>
<footer>
<div id="footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

128
browser/index_test.html Normal file
View File

@ -0,0 +1,128 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet">
<link rel="shortcut icon" href="favicon.png">
</head>
<body>
<div id="navbar"></div>
<div class="container-fluid">
<div class="row-fluid">
<div class="span8">
<!--SCM information-->
<div class="row-fluid">
<div class="span6" style="background-color:#F2F2F2;">
<div class="container-fluid">
<div class="row-fluid">
<div class="span6">
<h4>Last 7 Days</h4>
<span class="num"><span class="global-data" data-field="scm_commits_7"></span> commits</span>
<span class="date"><span class="global-data" data-field="scm_commits"></span> commits in total</span>
</div>
<div class="span6">
<div class="scm-flotr2-metrics" style="width:100%;heigth:20px;" data-metrics="scm_commits"
data-legend="false"></div>
</div>
</div>
</div> <!--span4-->
<div class="span6">
<h4>Tendencies</h4>
<div class="scm-flotr2-metrics" data-metrics="scm_commits"
data-legend="false"></div>
</div> <!--span4-->
</div> <!--row-->
<!--ITS information-->
<div class="row-fluid">
<div class="span6" style="margin-top:40px;">
<h4>Last 7 Days Activity in Tickets</h4>
<span class="num"><span class="global-data" data-field="its_openers_7"></span> openers</span>
<span class="date"><span class="global-data" data-field="its_openers"></span> openers in total</span>
<span class="num"><span class="global-data" data-field="its_closers_7"></span> closers</span>
<span class="date"><span class="global-data" data-field="its_closers"></span> closers in total</span>
<span class="num"><span class="global-data" data-field="its_closed_7"></span> closed</span>
<span class="date"><span class="global-data" data-field="its_closed"></span> closed in total</span>
</div> <!--span4-->
<div class="span6" style="background-color:#F2F2F2;">
</div> <!--span4-->
</div> <!--row-->
<div class="row-fluid">
<div class="span6" style="background-color:#F2F2F2;margin-top:40px;">
<h4>Aggregated Info Tickets</h4>
<div class="microdash" data-metric="mls_sent"></div>
<div class="microdash" data-metric="mls_senders"></div>
<div class="microdash" data-metric="mls_sent"></div>
</div> <!--span4-->
<div class="span6">
</div> <!--span4-->
</div> <!--row-->
</div> <!--span8-->
<div class="span4">
<div id="all-envision" data-legend-show="false"
data-summary-graph="false"></div>
</div>
</div><!--row-fluid-->
</div><!--container-fluid-->
</div> <!--container-->
<div class="container-fluid">
<div class="row-fluid">
<div class="span2">
<div class="well sidebar-nav">
<div id="refcard"></div>
</div>
</div>
<div class="span10">
<div class="row-fluid">
<div class="hero-unit1" style="height: 400px;">
<div class="span4">
<div class="microdash" data-metric="scm_commits"></div>
<div class="microdash" data-metric="its_opened"></div>
<div class="microdash" data-metric="mls_sent"></div>
</div>
<div class="span8">
<div id="all-envision" data-legend-show="false"
data-summary-graph="false"></div>
</div>
</div>
<div class="row-fluid">
<div class="span3">
<div id="scm-top" data-limit="10"></div>
</div>
<div class="span3">
<div id="its-top" data-metric="openers" data-limit="10"></div>
</div>
<div class="span3">
<div id="mls-top" data-limit="10"></div>
</div>
</div>
</div>
</div>
</div>
<footer>
<div id="footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<!-- commits, authors, stats, top authors -->
<div class="row-fluid">
<div class="span12">
<div class="well">
<div class="MetricsEvol" data-data-source="irc" data-metrics="irc_senders"
data-min="true" style="height:120px;"></div>
<div class="MicrodashText" data-metric="irc_senders"></div>
</div>
</div>
<div class="row-fluid">
<div class="span4">
<div class="Top" data-data-source="irc" data-metric="senders" data-period="last month" data-limit="100" data-people_links="true"></div>
</div>
<div class="span4">
<div class="Top" data-data-source="irc" data-metric="senders" data-period="last year" data-limit="100" data-people_links="true"></div>
</div>
<div class="span4">
<div class="Top" data-data-source="irc" data-metric="senders" data-period="" data-limit="100" data-people_links="true"></div>
</div>
</div>
</div>
<!-- end files, lines -->
<div class="row-fluid" style="margin-top:10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

111
browser/irc-repos.html Normal file
View File

@ -0,0 +1,111 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="row-fluid"><h4>Information about all channels</h4></div>
<!-- info text -->
<div id="info" class="row-fluid">
<div class="span5">
Some charts and tables for top channels in the project, and a summary
of the evolution of their participation with links to more detailed
information per channel.
</div>
<div class="span7">
<!-- evolution #channels -->
<i>
<b>Active Channels per month</b>
</i>
<div class="MetricsEvol" data-data-source="irc"
data-metrics="irc_repositories" data-legend="false" style="height: 80px;"></div>
</div>
</div>
<!-- end info text -->
<!-- list of channels -->
<div id="nav" class="row-fluid">
<div class="FilterItemsNav" data-data-source="irc"
data-order-by="irc_sent" data-filter="repos" style="align: center"></div>
</div>
<!-- end list of channels -->
<!-- sent, senders channel -->
<div class="well">
<div id="summary-static" class="row-fluid">
<!-- sent -->
<div class="span1"></div>
<div class="span4">
<i>
<b>Messages per channel (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="irc"
data-metric="irc_sent" data-filter="repos"
data-legend-div="repos_legend" data-limit="10"
data-order-by="irc_sent">
</div>
</div>
<!-- end sent -->
<div class="span2" id="repos_legend"></div>
<!-- senders -->
<div class="span4">
<i>
<b>Senders per channel (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="irc"
data-metric="irc_senders" data-filter="repos"
data-legend="false" data-limit="10"
data-order-by="irc_sent"></div>
</div>
<!-- end senders -->
<div class="span1"></div>
</div>
</div>
<!-- end sent, senders channel -->
<div id="summary-static" class="row-fluid"></div>
<!-- sent per channel -->
<div id="list" class="row-fluid">
<div class="FilterItemsMiniCharts" data-data-source="irc"
data-metrics="irc_sent,irc_senders" data-filter="repos"
data-order-by="irc_sent">
</div>
</div>
<!-- end sent per channel -->
<div class="row-fluid" style="margin-top:10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

123
browser/irc.html Normal file
View File

@ -0,0 +1,123 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="row-fluid">
<!-- evol charts -->
<div class="span6">
<!-- sent -->
<div class="row-fluid">
<div class="span12">
<div class="well">
<div class="MetricsEvol" data-data-source="irc"
data-metrics="irc_sent" data-min="true" style="height: 120px;"
data-frame-time="true"></div>
<div class="MicrodashText" data-metric="irc_sent"></div>
</div>
</div>
</div>
<!-- end sent -->
<!-- senders -->
<div class="row-fluid">
<div class="span12">
<div class="well">
<div class="MetricsEvol" data-data-source="irc"
data-metrics="irc_senders" data-min="true"
style="height: 120px;" data-frame-time="true"></div>
<div class="MicrodashText" data-metric="irc_senders"></div>
</div>
</div>
</div>
<!-- end senders -->
<!-- mixed sent, senders -->
<div class="row-fluid">
<div class="span12">
<div class="well">
<em>Messages per sender</em>
<div class="MetricsEvol" data-data-source="irc"
data-metrics="irc_sent,irc_senders" data-min="true"
style="height: 120px;" data-convert="divide"
data-frame-time="true"></div>
</div>
</div>
</div>
<!-- end mixed sent, senders -->
</div>
<!-- end evol charts -->
<!-- top senders -->
<div class="span6">
<div class="row-fluid">
<table class="table table-striped">
<tr>
<td><strong>IRC channels</strong> (updated on <span
class="GlobalData" data-data-source="irc" data-field="last_date"></span>)</td>
</tr>
</table>
</div>
<div class="row-fluid">
<div class="span6">
<table class="table table-striped">
<tr>
<td><span class="GlobalData" data-data-source="irc"
data-field="irc_sent"></span></td>
<td>messages sent</td>
</tr>
</table>
</div>
<div class="span6">
<table class="table table-striped">
<tr>
<td><span class="GlobalData" data-data-source="irc"
data-field="irc_senders"></span></td>
<td>irc participants</td>
</tr>
</table>
</div>
</div>
<div class="Top" data-data-source="irc" data-period="last month"
data-limit="9" data-people_links="true"></div>
</div>
<!-- end top senders -->
</div>
<div class="row-fluid" style="margin-top: 10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -1,37 +1,40 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet">
<link rel="shortcut icon" href="favicon.png">
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div id="navbar"></div>
<div class="container-fluid">
<div class="container-narrow">
<div id="Navbar"></div>
<!-- tickets, closers & changers, stats, top closers -->
<div class="row-fluid">
<span class="span4">
<div id="scm-top-bars" data-show_all="true" data-limit="10"></div>
</span> <span class="span4">
<div id="its-top-bars" data-show_all="true" data-limit="10"></div>
</span> <span class="span4">
<div id="mls-top-bars" data-show_all="true" data-limit="10"></div>
</span>
<div class="span12">
<div class="well">
<div class="MetricsEvol" data-data-source="its" data-graph="bars"
data-metrics="its_closed" data-frame-time="true"></div>
</div>
</div>
</div>
<footer>
<div id="footer"></div>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.js"></script>
</body>
</html>

111
browser/its-companies.html Normal file
View File

@ -0,0 +1,111 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="row-fluid"><h4>Information about all companies</h4></div>
<!-- info text -->
<div id="info" class="row-fluid">
<div class="span5">
Some charts and tables for top companies in the project, and a summary
of the evolution of their participation with links to more detailed
information per company.
</div>
<div class="span7">
<!-- evolution #companies -->
<i>
<b>Active Companies per month</b>
</i>
<div class="MetricsEvol" data-data-source="its"
data-metrics="its_companies" data-legend="false" style="height: 80px;"></div>
</div>
</div>
<!-- end info text -->
<!-- list of companies -->
<div id="nav" class="row-fluid">
<div class="FilterItemsNav" data-data-source="its"
data-order-by="its_commits" data-filter="companies" style="align: center"></div>
</div>
<!-- end list of companies -->
<!-- commits, closers company -->
<div class="well">
<div id="summary-static" class="row-fluid">
<!-- closed -->
<div class="span1"></div>
<div class="span4">
<i>
<b>Closed per company (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="its"
data-metric="its_closed" data-filter="companies"
data-legend-div="companies_legend" data-limit="10"
data-order-by="its_closed">
</div>
</div>
<!-- end closed -->
<div class="span2" id="companies_legend"></div>
<!-- closers -->
<div class="span4">
<i>
<b>Closers per company (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="its"
data-metric="its_closers" data-filter="companies"
data-legend="false" data-limit="10"
data-order-by="its_closed"></div>
</div>
<!-- end closers -->
<div class="span1"></div>
</div>
</div>
<!-- end closed, closers company -->
<div id="summary-static" class="row-fluid"></div>
<!-- closed per company -->
<div id="list" class="row-fluid">
<div class="FilterItemsMiniCharts" data-data-source="its"
data-metrics="its_closed,its_closers" data-filter="companies"
data-order-by="its_closed">
</div>
</div>
<!-- end closed per company -->
<div class="row-fluid" style="margin-top:10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<!-- commits, authors, stats, top authors -->
<div class="row-fluid">
<div class="span12">
<div class="well">
<div class="MetricsEvol" data-data-source="its" data-metrics="its_closers"
data-min="true" style="height:120px;"></div>
<div class="MicrodashText" data-metric="its_closers"></div>
</div>
</div>
<div class="row-fluid">
<div class="span4">
<div class="Top" data-data-source="its" data-metric="closers" data-period="last month" data-limit="100" data-people_links="true"></div>
</div>
<div class="span4">
<div class="Top" data-data-source="its" data-metric="closers" data-period="last year" data-limit="100" data-people_links="true"></div>
</div>
<div class="span4">
<div class="Top" data-data-source="its" data-metric="closers" data-period="" data-limit="100" data-people_links="true"></div>
</div>
</div>
</div>
<!-- end files, lines -->
<div class="row-fluid" style="margin-top:10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -7,7 +7,7 @@
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire2.css"/>
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
@ -22,56 +22,56 @@
<!-- info text -->
<div id="info" class="row-fluid">
<h4>Information about all companies</h4>
Some charts and tables for top companies in the project, and a summary of
Some charts and tables for top countries in the project, and a summary of
the evolution of their participation with links to more detailed
information per company.
information per country.
</div>
<!-- end info text -->
<!-- evolution #companies -->
<!-- evolution #countries -->
<div id="summary-evol" class="row-fluid">
<!-- graph -->
<div class="span6">
<div class="MetricsEvol" data-data-source="its" data-metrics="its_companies"
<div class="MetricsEvol" data-data-source="its" data-metrics="its_countries"
data-legend="false" data-help="false"></div>
<i><b>Active Companies per month</b></i>
<a href="notes.html#note:charts:companies"><img src="qm_15.png"></a>
<i><b>Active Countries per month</b></i>
<a href="notes.html#note:charts:countries"><img src="qm_15.png"></a>
</div>
<!-- end graph -->
<div class="span6">
<div class="FilterItemsSummary" data-filter="companies"
<div class="FilterItemsSummary" data-filter="countries"
data-data-source="its"></div>
</div>
</div>
<!-- end evolution #companies -->
<!-- end evolution #countries -->
<!-- closed tickets, closers per companies -->
<!-- closed tickets, closers per country -->
<div id="summary-static" class="row-fluid">
<!-- closed tickets -->
<div class="span5">
<div class="FilterItemsGlobal" data-data-source="its"
data-metric="its_closed" data-filter="companies"
data-legend-div="companies_legend"
data-metric="its_closed" data-filter="countries"
data-legend-div="countries_legend"
data-limit="10" data-order-by="its_closed"></div>
<i>
<b>Closed per company (aggregated)</b>
<a href="notes.html#note:charts:companies:closed"><img src="qm_15.png"></a>
<b>Closed per country (aggregated)</b>
<a href="notes.html#note:charts:countries:closed"><img src="qm_15.png"></a>
</i>
</div>
<!-- end closed tickets -->
<div class="span2" id="companies_legend"></div>
<div class="span2" id="countries_legend"></div>
<!-- closers -->
<div class="span5">
<div class="FilterItemsGlobal" data-data-source="its"
data-metric="its_closers" data-filter="companies"
data-metric="its_closers" data-filter="countries"
data-legend="false" data-limit="10" data-order-by="its_closed"></div>
<i>
<b>Closers per company (aggregated)</b>
<a href="notes.html#note:charts:companies:closers"><img src="qm_15.png"></a>
<b>Closers per country (aggregated)</b>
<a href="notes.html#note:charts:countries:closers"><img src="qm_15.png"></a>
</i>
</div>
<!-- end closers -->
@ -82,17 +82,17 @@
<!-- companies list -->
<div id="nav" class="row-fluid">
<div class="FilterItemsNav" data-order-by="its_closed"
data-filter="companies" data-data-source="its"></div>
data-filter="countries" data-data-source="its"></div>
</div>
<!-- end companies list -->
<!-- end countries list -->
<!-- companies charts -->
<!-- countries charts -->
<div id="list" class="row-fluid">
<div class="FilterItemsMiniCharts" data-metrics="its_closed,its_closers"
data-filter="companies" data-order-by="its_closed"
data-filter="countries" data-order-by="its_closed"
data-data-source="its"></div>
</div>
<!-- end companies charts -->
<!-- end countries charts -->
<footer>
<div id="Footer"></div>
@ -101,6 +101,6 @@
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire2.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

105
browser/its-domains.html Normal file
View File

@ -0,0 +1,105 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="row-fluid"><h4>Information about all domains</h4></div>
<!-- info text -->
<div id="info" class="row-fluid">
<div class="span5">
Some charts and tables for top domains in the project, and a summary
of the evolution of their participation with links to more detailed
information per domain.
</div>
<div class="span7">
<!-- evolution #domains -->
<i>
<b>Active Domains per month</b>
</i>
<div class="MetricsEvol" data-data-source="its"
data-metrics="its_domains" data-legend="false" style="height: 80px;"></div>
</div>
</div>
<!-- end info text -->
<!-- list of domains -->
<div id="nav" class="row-fluid">
<div class="FilterItemsNav" data-data-source="its"
data-order-by="its_domains" data-filter="domains" style="align: center"></div>
</div>
<!-- end list of domains -->
<!-- closed, closers domains -->
<div class="well">
<div id="summary-static" class="row-fluid">
<!-- closed -->
<div class="span1"></div>
<div class="span4">
<i>
<b>Closed per domain (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="its"
data-metric="its_closed" data-filter="domains"
data-legend-div="domains_legend" data-limit="10"
data-order-by="its_closed">
</div>
</div>
<!-- end closed -->
<div class="span2" id="domains_legend"></div>
<!-- closers -->
<div class="span4">
<i>
<b>Closers per domain (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="its"
data-metric="its_closers" data-filter="domains"
data-legend="false" data-limit="10"
data-order-by="its_closed"></div>
</div>
<!-- end closers -->
<div class="span1"></div>
</div>
</div>
<!-- end closed, closers domains -->
<div id="summary-static" class="row-fluid"></div>
<!-- closed per domain -->
<div id="list" class="row-fluid">
<div class="FilterItemsMiniCharts" data-data-source="its"
data-metrics="its_closed,its_closers" data-filter="domains"
data-order-by="its_closed">
</div>
</div>
<!-- end closed per domain -->
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -1,90 +1,111 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta name="keywords" content="bitergia, floss, libresoft, oss, linux, research, reports, free software, software analysis" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, maximum-scale=1.0">
<meta name="description" content="Bitergia company website" />
<!--<link rel="stylesheet" type="text/css" id="theme" href="VizGrimoireJS/vizgrimoire.css" />-->
<link rel="stylesheet" type="text/css" href="theme.css" />
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<title>WebKit Report by Bitergia: Information about all repositories</title>
<style type="text/css">
</style>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div id="header"></div>
<div id="navigation" class="clearfix"></div>
<div id="wrapper">
<div id="centerdiv">
<div style="float:left">
<div style="float:left">
<div id="info-pill">
<h1 style="font-size:1.5em;font-weight: bold;">Information about all repositories</h1>
<p>Some charts and tables for all repositories in the project, and a summary of the evolution of
their participation with links to more detailed information per repository.</p>
</div>
<div>
<div id="info-pill" style="width:360px;height:170px;float:left;margin-bottom:15px;margin-righ:15px">
<div style="float:left;width:350px;height:150px"
class="its-flotr2-metrics" data-metrics="repositories" data-legend="false"></div>
<i><b>Active Tickets repositories per month</b></i>
</div>
<div class="info-pill" style="width:360px;height:170px;float:left;margin-bottom:15px;">
<div style="float:left;margin:10px;width:350px;height:150px" id="its-repos-summary">
</div>
</div>
</div>
<div>
<div id="info-pill" style="width:370px;height:270px;float:left;margin-bottom:25px;margin-righ:25px">
<div class="its-flotr2-repos-static"
data-metric="closed" data-limit="10" data-order-by="closed"
style="width:350px;height:250px;margin-right:10px;float:left;margin-bottom:10px"></div>
<i><b>Closed per repository (aggregated)</b></i>
</div>
<div id="info-pill" style="width:370px;height:270px;float:left;margin-bottom:25px;margin-righ:25px">
<div class="its-flotr2-repos-static"
data-metric="closers" data-limit="10" data-order-by="closed"
style="width:350px;height:250px;margin-right:10px;float:left;margin-bottom:10px"></div>
<i><b>Closers per repository (aggregated)</b></i>
</div>
</div>
<div class="row-fluid"><h4>Information about all repositories</h4></div>
<!-- info text -->
<div id="info" class="row-fluid">
<div class="span5">
Some charts and tables for top repositories in the project, and a summary
of the evolution of their participation with links to more detailed
information per repository.
</div>
<div style="clear:both"></div>
<div style="width=715px;padding:20px;">
<h1 style="font-weight: bold;">List of repositories</h1>
<div id="its-flotr2-repos-nav" data-order-by="closed" style="width:700px;"></div>
</div>
<div>
<div class="its-flotr2-repos-list"
data-metrics="closed,closers" data-order-by="closed"
style="width:700px; margin-right:10px;"></div>
<div class="span7">
<!-- evolution #repositories -->
<i>
<b>Active Repositories per month</b>
</i>
<div class="MetricsEvol" data-data-source="its"
data-metrics="trackers" data-legend="false" style="height: 80px;"></div>
</div>
</div>
<!-- end info text -->
</div>
</div>
<div id="footer"></div>
<!-- <script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script> -->
<script type="text/javascript" src="VizGrimoireJS/src/envision.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/DataSource.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/Loader.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/Report.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/ITS.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/MLS.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/SCM.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/Envision_Report.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/Viz.js"></script>
<!-- list of repositories -->
<div id="nav" class="row-fluid">
<div class="FilterItemsNav" data-data-source="its"
data-order-by="its_commits" data-filter="repos" style="align: center"></div>
</div>
<!-- end list of repositories -->
<!-- commits, closers repository -->
<div class="well">
<div id="summary-static" class="row-fluid">
<!-- closed -->
<div class="span1"></div>
<div class="span4">
<i>
<b>Closed per repository (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="its"
data-metric="its_closed" data-filter="repos"
data-legend-div="repos_legend" data-limit="10"
data-order-by="its_closed">
</div>
</div>
<!-- end closed -->
<div class="span2" id="repos_legend"></div>
<!-- closers -->
<div class="span4">
<i>
<b>Closers per repository (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="its"
data-metric="its_closers" data-filter="repos"
data-legend="false" data-limit="10"
data-order-by="its_closed"></div>
</div>
<!-- end closers -->
<div class="span1"></div>
</div>
</div>
<!-- end closed, closers repository -->
<div id="summary-static" class="row-fluid"></div>
<!-- closed per repository -->
<div id="list" class="row-fluid">
<div class="FilterItemsMiniCharts" data-data-source="its"
data-metrics="its_closed,its_closers" data-filter="repos"
data-order-by="its_closed">
</div>
</div>
<!-- end closed per repository -->
<div class="row-fluid" style="margin-top:10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

174
browser/its-states.html Normal file
View File

@ -0,0 +1,174 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire2.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="well">
<div class="row-fluid">
<div class="span3">
<p><i><b>Evolution of States</b> charts show the evolution of
the states in the analysis of the issue tracking system.
</i></p>
<p><i>Each chart represents the number of issues in such state
in each period of time.</i></P>
</div>
<div class="span9">
<div class="row-fluid">
<div class="span4">
<h6>Status 'New'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="New"
data-min="false" help="false" style="height:120px;"></div>
</div>
<div class="span4">
<h6>Status 'In Progress'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="In Progress"
data-min="false" help="false" style="height:120px;"></div>
</div>
<div class="span4">
<h6>Status 'Opinion'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="Opinion"
data-min="false" help="false" style="height:120px;"></div>
</div>
</div>
<div class="row-fluid">
<div class="span4">
<h6>Status 'Confirmed'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="Confirmed"
data-min="false" help="false" style="height:120px;"></div>
</div>
<div class="span4">
<h6>Status 'Incomplete'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="Incomplete"
data-min="false" help="false" style="height:120px;"></div>
</div>
<div class="span4">
<h6>Status 'Unknown'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="Unknown"
data-min="false" help="false" style="height:120px;"></div>
</div>
</div>
<div class="row-fluid">
<div class="span4">
<h6>Status 'Fix Committed'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="Fix Committed"
data-min="false" help="false" style="height:120px;"></div>
</div>
<div class="span4">
<h6>Status 'Fix Released'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="Fix Released"
data-min="false" help="false" style="height:120px;"></div>
</div>
<div class="span4">
<h6>Status 'Invalid'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="Invalid"
data-min="false" help="false" style="height:120px;"></div>
</div>
</div>
</div>
</div>
<div class="well">
<div class="row-fluid">
<div class="span3">
<p><i><b>Current Status</b> charts show the current 'photo' of each of the states.
</i></p>
<p><i>For each of the states shown, it is specified when the issue was born.</i></P>
</div>
<div class="span9">
<div class="row-fluid">
<div class="span4">
<h6>Current status 'New'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="current_New" data-graph="bars"
data-min="false" help="false" style="height:120px;"></div>
</div>
<div class="span4">
<h6>Current status 'In Progress'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="current_In Progress" data-graph="bars"
style="height:120px;"></div>
</div>
<div class="span4">
<h6>Current status 'Opinion'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Opinion" data-graph="bars"
style="height:120px;"></div>
</div>
</div>
<div class="row-fluid">
<div class="span4">
<h6>Current status 'Confirmed'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Confirmed" data-graph="bars"
data-min="false" help="false" style="height:120px;"></div>
</div>
<div class="span4">
<h6>Current status 'Incompleted'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Incomplete" data-graph="bars"
style="height:120px;"></div>
</div>
<div class="span4">
<h6>Current Status 'Unknown'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Unknown" data-graph="bars"
data-min="false" help="false" style="height:120px;"></div>
</div>
</div>
<div class="row-fluid">
<div class="span4">
<h6>Current status 'Fix Committed'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Fix Committed" data-graph="bars"
data-min="false" help="false" style="height:120px;"></div>
</div>
<div class="span4">
<h6>Current status 'Fix Released'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Fix Released" data-graph="bars"
data-min="false" help="false" style="height:120px;"></div>
</div>
<div class="span4">
<h6>Current status 'Invalid'</h6>
<div class="MetricsEvol" data-data-source="its" data-metrics="current_Invalid"
data-min="false" help="false" data-graph="bars" style="height:120px;"></div>
</div>
</div>
</div>
</div>
</div>
<div class="well">
<div class="row-fluid">
<div class="span3">
<p><i><b>The most likely changes</b> tables show the percentages of changes among states.
</i></p>
</div>
<div class="span9">
<div class="MarkovTable" data-data-source="its" data-title="Transitions among statuses"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -1,68 +1,157 @@
<!DOCTYPE html>
<html>
<head>
<meta name="keywords" content="bitergia, floss, libresoft, oss, linux, research, reports, free software, software analysis, liferay" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, maximum-scale=1.0">
<meta name="description" content="Bitergia company website" />
<!-- <link rel="stylesheet" type="text/css" href="VizGrimoireJS/src/envision.min.css" />
<link rel="stylesheet" type="text/css" href="VizGrimoireJS/src/report-envision.css" />
<link rel="stylesheet" type="text/css" id="theme" href="VizGrimoireJS/src/report.css" />
<link rel="stylesheet" type="text/css" id="theme" href="VizGrimoireJS/vizgrimoire.css" /> -->
<link rel="stylesheet" type="text/css" href="theme.css" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="menu.js"></script>
<title>Openstack Development Dashboard</title>
<style type="text/css">
</style>
</head>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
</head>
<body>
<div id="header"></div>
<div id="navigation" class="clearfix"></div>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div id="wrapper">
<div id="centerdiv">
<!-- tickets, closers & changers, stats, top closers -->
<div class="row-fluid">
<div style="float:left">
<div id="info-pill">
<h1 style="font-weight: bold;">Aggregated activity (all ticket trackers)</h1>
<!-- left column -->
<div class="span6">
<!-- tickets -->
<div class="row-fluid">
<div class="span12">
<div class="well">
<div class="MetricsEvol" data-data-source="its"
data-metrics="its_closed,its_opened" data-min="true"
style="height: 100px;"></div>
<div class="MicrodashText" data-metric="its_closed"></div>
<div class="MicrodashText" data-metric="its_opened"></div>
</div>
</div>
<div style="float:left;margin-right:10px">
<div id="its-envision"></div>
</div>
<div style="float:left">
<div id="its-flotr2" style="width:300px;margin-right:10px"></div>
</div>
<div style="float:left">
<div id="its-top" data-show_all="true"></div>
</div>
</div>
<!-- end tickets -->
<!-- closers & changers -->
<div class="row-fluid">
<div class="span12">
<div class="well">
<div class="MetricsEvol" data-data-source="its"
data-metrics="its_closers,its_changers" data-min="true"
style="height: 100px;"></div>
<div class="MicrodashText" data-metric="its_closers"></div>
<div class="MicrodashText" data-metric="its_changers"></div>
</div>
</div>
</div>
<!-- end closers & changers -->
</div>
<!-- end left column-->
<!-- right column -->
<div class="span6">
<!-- stats -->
<div class="row-fluid">
<table class="table table-striped">
<tr>
<td><strong>Ticket trackers</strong> (updated on <span
class="GlobalData" data-data-source="its" data-field="last_date"></span>)</td>
</tr>
</table>
</div>
<div class="row-fluid">
<div class="span6">
<table class="table table-striped">
<tr>
<td><span class="GlobalData" data-data-source="its"
data-field="its_repositories"></span></td>
<td>repositories</td>
</tr>
<tr>
<td><span class="GlobalData" data-data-source="its"
data-field="its_openers"></span></td>
<td>people submitting tickets</td>
</tr>
<tr>
<td><span class="GlobalData" data-data-source="its"
data-field="its_openers_7"></span></td>
<td>people submitting tickets last week</td>
</tr>
</table>
</div>
<div class="span6">
<table class="table table-striped">
<tr>
<td><span class="GlobalData" data-data-source="its"
data-field="its_companies"></span></td>
<td>companies</td>
</tr>
<tr>
<td><span class="GlobalData" data-data-source="its"
data-field="its_closers"></span></td>
<td>people closing tickets</td>
</tr>
<tr>
<td><span class="GlobalData" data-data-source="its"
data-field="its_closers_7"></span></td>
<td>people closing tickets last week</td>
</tr>
</table>
</div>
</div>
<!-- end stats -->
<!-- top closers -->
<div class="Top" data-data-source="its" data-graph1="bars"
data-metric="closers" data-limit="10" data-people_links="true"></div>
<!-- end closers-->
</div>
<!-- end right column -->
</div>
<!-- tickets, closers & changers, stats, top closers -->
<!-- time to fix -->
<div class="row-fluid" style="margin-top: 20px;">
<div class="row-fluid">
<div class="span6">
<div class="well">
<strong>Time to fix in hours</strong> (quantiles)
<div class="TimeTo" data-data-source="its" data-type="fix"
data-quantil="X0.99,X0.95,X0.5,X0.25"></div>
</div>
</div>
<div class="span6"></div>
</div>
</div>
<div id="footer"></div>
<!-- wrapper -->
<!-- end time to fix -->
<!--[if IE]>
<script type="text/javascript" src="/static/lib/FlashCanvas/bin/flashcanvas.js"></script>
<![endif]-->
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
<!-- <script type="text/javascript" src="VizGrimoireJS/src/envision.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/DataSource.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/Loader.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/Report.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/Viz.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/ITS.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/MLS.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/SCM.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/Envision_Report.js"></script>-->
</body>
<div class="row-fluid" style="margin-top: 10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

125
browser/mediawiki.html Normal file
View File

@ -0,0 +1,125 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="row-fluid">
<!-- evol charts -->
<div class="span6">
<!-- editions -->
<div class="row-fluid">
<div class="span12">
<div class="well">
<div class="MetricsEvol" data-data-source="mediawiki"
data-metrics="mediawiki_reviews" data-min="true"
style="height: 120px;" data-frame-time="true"></div>
<div class="MicrodashText" data-metric="mediawiki_reviews"></div>
</div>
</div>
</div>
<!-- end editions -->
<!-- editions -->
<div class="row-fluid">
<div class="span12">
<div class="well">
<div class="MetricsEvol" data-data-source="mediawiki"
data-metrics="mediawiki_authors" data-min="true"
style="height: 120px;" data-frame-time="true"></div>
<div class="MicrodashText" data-metric="mediawiki_authors"></div>
</div>
</div>
</div>
<!-- end editions -->
<!-- mixed editions, editors -->
<div class="row-fluid">
<div class="span12">
<div class="well">
<em>Editions per editor</em>
<div class="MetricsEvol" data-data-source="mediawiki"
data-metrics="mediawiki_reviews,mediawiki_authors"
data-min="true" style="height: 120px;" data-convert="divide"
data-frame-time="true"></div>
</div>
</div>
</div>
<!-- end mixed editions, editors -->
</div>
<!-- end evol charts -->
<!-- top senders -->
<div class="span6">
<div class="row-fluid">
<table class="table table-striped">
<tr>
<td><strong>Mediawiki</strong> (updated on <span
class="GlobalData" data-data-source="mediawiki"
data-field="last_date"></span>)</td>
</tr>
</table>
</div>
<div class="row-fluid">
<div class="span6">
<table class="table table-striped">
<tr>
<td><span class="GlobalData" data-data-source="mediawiki"
data-field="mediawiki_reviews"></span></td>
<td>editions</td>
</tr>
</table>
</div>
<div class="span6">
<table class="table table-striped">
<tr>
<td><span class="GlobalData" data-data-source="mediawiki"
data-field="mediawiki_authors"></span></td>
<td>editors</td>
</tr>
</table>
</div>
</div>
<div class="Top" data-data-source="mediawiki" data-period="last month" data-people_links="true"></div>
</div>
<!-- end top senders -->
</div>
<div class="row-fluid" style="margin-top: 10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

111
browser/mls-companies.html Normal file
View File

@ -0,0 +1,111 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="row-fluid"><h4>Information about all companies</h4></div>
<!-- info text -->
<div id="info" class="row-fluid">
<div class="span5">
Some charts and tables for top companies in the project, and a summary
of the evolution of their participation with links to more detailed
information per company.
</div>
<div class="span7">
<!-- evolution #companies -->
<i>
<b>Active Companies per month</b>
</i>
<div class="MetricsEvol" data-data-source="mls"
data-metrics="mls_companies" data-legend="false" style="height: 80px;"></div>
</div>
</div>
<!-- end info text -->
<!-- list of companies -->
<div id="nav" class="row-fluid">
<div class="FilterItemsNav" data-data-source="mls"
data-order-by="mls_sent" data-filter="companies" style="align: center"></div>
</div>
<!-- end list of companies -->
<!-- sent, senders company -->
<div class="well">
<div id="summary-static" class="row-fluid">
<!-- sent -->
<div class="span1"></div>
<div class="span4">
<i>
<b>Messages per company (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="mls"
data-metric="mls_sent" data-filter="companies"
data-legend-div="companies_legend" data-limit="10"
data-order-by="mls_sent">
</div>
</div>
<!-- end sent -->
<div class="span2" id="companies_legend"></div>
<!-- senders -->
<div class="span4">
<i>
<b>Senders per company (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="mls"
data-metric="mls_senders" data-filter="companies"
data-legend="false" data-limit="10"
data-order-by="mls_sent"></div>
</div>
<!-- end senders -->
<div class="span1"></div>
</div>
</div>
<!-- end sent, senders company -->
<div id="summary-static" class="row-fluid"></div>
<!-- sent per company -->
<div id="list" class="row-fluid">
<div class="FilterItemsMiniCharts" data-data-source="mls"
data-metrics="mls_sent,mls_senders" data-filter="companies"
data-order-by="mls_sent">
</div>
</div>
<!-- end sent per company -->
<div class="row-fluid" style="margin-top:10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<!-- commits, authors, stats, top authors -->
<div class="row-fluid">
<div class="span12">
<div class="well">
<div class="MetricsEvol" data-data-source="mls" data-metrics="mls_senders"
data-min="true" style="height:120px;"></div>
<div class="MicrodashText" data-metric="mls_senders"></div>
</div>
</div>
<div class="row-fluid">
<div class="span4">
<div class="Top" data-data-source="mls" data-metric="senders" data-period="last month" data-limit="100" data-people_links="true"></div>
</div>
<div class="span4">
<div class="Top" data-data-source="mls" data-metric="senders" data-period="last year" data-limit="100" data-people_links="true"></div>
</div>
<div class="span4">
<div class="Top" data-data-source="mls" data-metric="senders" data-period="" data-limit="100" data-people_links="true"></div>
</div>
</div>
</div>
<!-- end files, lines -->
<div class="row-fluid" style="margin-top:10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -7,7 +7,7 @@
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire2.css"/>
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
@ -22,77 +22,77 @@
<!-- info text -->
<div id="info" class="row-fluid">
<h4>Information about all companies</h4>
Some charts and tables for top companies in the project, and a summary of
Some charts and tables for top countries in the project, and a summary of
the evolution of their participation with links to more detailed
information per company.
information per country.
</div>
<!-- end info text -->
<!-- evolution #companies -->
<!-- evolution #countries -->
<div id="summary-evol" class="row-fluid">
<!-- graph -->
<div class="span6">
<div class="MetricsEvol" data-data-source="mls" data-metrics="mls_companies"
<div class="MetricsEvol" data-data-source="mls" data-metrics="mls_countries"
data-legend="false" data-help="false"></div>
<i><b>Active Companies per month</b></i>
<a href="notes.html#note:charts:companies"><img src="qm_15.png"></a>
<i><b>Active Countries per month</b></i>
<a href="notes.html#note:charts:countries"><img src="qm_15.png"></a>
</div>
<!-- end graph -->
<div class="span6">
<div class="FilterItemsSummary" data-filter="companies"
<div class="FilterItemsSummary" data-filter="countries"
data-data-source="mls"></div>
</div>
</div>
<!-- end evolution #companies -->
<!-- end evolution #countries -->
<!-- sent, senders per companies -->
<!-- sent msgs, senders per country -->
<div id="summary-static" class="row-fluid">
<!-- sent messages -->
<!-- sent msgs -->
<div class="span5">
<div class="FilterItemsGlobal" data-data-source="mls"
data-metric="mls_sent" data-filter="companies"
data-legend-div="companies_legend" data-limit="10"
data-order-by="mls_sent"></div>
data-metric="mls_sent" data-filter="countries"
data-legend-div="countries_legend"
data-limit="10" data-order-by="mls_sent"></div>
<i>
<b>Sent per company (aggregated)</b>
<a href="notes.html#note:charts:companies:sent"><img src="qm_15.png"></a>
<b>Sent per country (aggregated)</b>
<a href="notes.html#note:charts:countries:sent"><img src="qm_15.png"></a>
</i>
</div>
<!-- end sent messages -->
<!-- end sent msgs -->
<div class="span2" id="companies_legend"></div>
<div class="span2" id="countries_legend"></div>
<!-- senders -->
<div class="span5">
<div class="FilterItemsGlobal" data-data-source="mls"
data-metric="mls_senders" data-filter="companies"
data-metric="mls_senders" data-filter="countries"
data-legend="false" data-limit="10" data-order-by="mls_sent"></div>
<i>
<b>Senders per company (aggregated)</b>
<a href="notes.html#note:charts:companies:senders"><img src="qm_15.png"></a>
<b>Senders per country (aggregated)</b>
<a href="notes.html#note:charts:countries:senders"><img src="qm_15.png"></a>
</i>
</div>
<!-- end senders -->
</div>
<!-- end sent, senders per companies -->
<!-- end sent msgs, senders per country -->
<!-- companies list -->
<div id="nav" class="row-fluid">
<div class="FilterItemsNav" data-data-source="mls"
data-filter="companies" data-order-by="mls_sent"></div>
<div class="FilterItemsNav" data-order-by="mls_sent"
data-filter="countries" data-data-source="mls"></div>
</div>
<!-- end companies list -->
<!-- end countries list -->
<!-- companies charts -->
<!-- countries charts -->
<div id="list" class="row-fluid">
<div class="FilterItemsMiniCharts" data-data-source="mls"
data-metrics="mls_sent,mls_senders" data-filter="companies"
data-order-by="mls_sent"></div>
<div class="FilterItemsMiniCharts" data-metrics="mls_sent,mls_senders"
data-filter="countries" data-order-by="mls_sent"
data-data-source="mls"></div>
</div>
<!-- end companies charts -->
<!-- end countries charts -->
<footer>
<div id="Footer"></div>
@ -101,6 +101,6 @@
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire2.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

105
browser/mls-domains.html Normal file
View File

@ -0,0 +1,105 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="row-fluid"><h4>Information about all domains</h4></div>
<!-- info text -->
<div id="info" class="row-fluid">
<div class="span5">
Some charts and tables for top domains in the project, and a summary
of the evolution of their participation with links to more detailed
information per domain.
</div>
<div class="span7">
<!-- evolution #domains -->
<i>
<b>Active Domains per month</b>
</i>
<div class="MetricsEvol" data-data-source="mls"
data-metrics="mls_domains" data-legend="false" style="height: 80px;"></div>
</div>
</div>
<!-- end info text -->
<!-- list of domains -->
<div id="nav" class="row-fluid">
<div class="FilterItemsNav" data-data-source="mls"
data-order-by="mls_domains" data-filter="domains" style="align: center"></div>
</div>
<!-- end list of domains -->
<!-- sent msgs, senders per domain -->
<div class="well">
<div id="summary-static" class="row-fluid">
<!-- sent -->
<div class="span1"></div>
<div class="span4">
<i>
<b>Sent per domain (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="mls"
data-metric="mls_sent" data-filter="domains"
data-legend-div="domains_legend" data-limit="10"
data-order-by="mls_sent">
</div>
</div>
<!-- end sent -->
<div class="span2" id="domains_legend"></div>
<!-- senders -->
<div class="span4">
<i>
<b>Senders per domain (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="mls"
data-metric="mls_senders" data-filter="domains"
data-legend="false" data-limit="10"
data-order-by="mls_senders"></div>
</div>
<!-- end senders -->
<div class="span1"></div>
</div>
</div>
<!-- sent msgs, senders per domain -->
<div id="summary-static" class="row-fluid"></div>
<!-- domains list -->
<div id="list" class="row-fluid">
<div class="FilterItemsMiniCharts" data-data-source="mls"
data-metrics="mls_sent,mls_senders" data-filter="domains"
data-order-by="mls_sent">
</div>
</div>
<!-- end domains list -->
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -1,96 +1,111 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" type="text/css" id="theme" href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="custom.css" />
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="../assets/js/html5shiv.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="favicon.png">
</head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div id="navbar"></div>
<div class="container-fluid">
<div class="row-fluid">
<div id="info-pill">
<h1 style="font-size:1.5em;font-weight: bold;">Information about all mailing lists</h1>
<p>Some charts and tables for all mailing lists in the project, and a summary of their evolution with links to more detailed information per mailing list.</p>
</div>
</div>
<div class="row-fluid">
<div>
<div id="info-pill" style="width:360px;height:170px;float:left;margin-bottom:15px;margin-righ:15px">
<div style="float:left;width:350px;height:150px"
class="mls-flotr2-metrics" data-metrics="mls_repositories" data-legend="false"></div>
<i><b>Active Mailing repositories per month</b></i>
</div>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="info-pill" style="width:360px;height:170px;float:left;margin-bottom:15px;">
<div style="float:left;margin:10px;width:350px;height:150px" id="mls-repos-summary">
</div>
</div>
<div class="row-fluid"><h4>Information about all repositories</h4></div>
<!-- info text -->
<div id="info" class="row-fluid">
<div class="span5">
Some charts and tables for top repositories in the project, and a summary
of the evolution of their participation with links to more detailed
information per repository.
</div>
<div class="span7">
<!-- evolution #repositories -->
<i>
<b>Active Repositories per month</b>
</i>
<div class="MetricsEvol" data-data-source="mls"
data-metrics="mls_repositories" data-legend="false" style="height: 80px;"></div>
</div>
</div>
<div class="row-fluid">
<div>
<div id="info-pill" style="width:370px;height:270px;float:left;margin-bottom:25px;margin-righ:25px">
<div class="mls-flotr2-repos-static"
data-metric="mls_sent" data-limit="10" data-order-by="mls_sent"
style="width:350px;height:250px;margin-right:10px;float:left;margin-bottom:10px"></div>
<i><b>Sent per repository (aggregated)</b></i>
</div>
<!-- end info text -->
<div id="info-pill" style="width:370px;height:270px;float:left;margin-bottom:25px;margin-righ:25px">
<div class="mls-flotr2-repos-static"
data-metric="mls_senders" data-limit="10" data-order-by="mls_sent"
style="width:350px;height:250px;margin-right:10px;float:left;margin-bottom:10px"></div>
<i><b>Senders per repository (aggregated)</b></i>
<!-- list of repositories -->
<div id="nav" class="row-fluid">
<div class="FilterItemsNav" data-data-source="mls"
data-order-by="mls_sent" data-filter="repos" style="align: center"></div>
</div>
<!-- end list of repositories -->
<!-- sent, senders repository -->
<div class="well">
<div id="summary-static" class="row-fluid">
<!-- sent -->
<div class="span1"></div>
<div class="span4">
<i>
<b>Messages per repository (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="mls"
data-metric="mls_sent" data-filter="repos"
data-legend-div="repos_legend" data-limit="10"
data-order-by="mls_sent">
</div>
</div>
</div>
<div class="row-fluid">
<div style="width=715px;padding:20px;">
<h4>List of repositories</h4>
<div id="mls-flotr2-repos-nav" data-order-by="mls_sent" style="width:700px;"></div>
</div>
<div>
<div class="mls-flotr2-repos-list"
data-metrics="mls_sent" data-order-by="mls_sent"
style="width:700px; margin-right:10px;"></div>
<!-- end sent -->
<div class="span2" id="repos_legend"></div>
<!-- senders -->
<div class="span4">
<i>
<b>Senders per repository (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="mls"
data-metric="mls_senders" data-filter="repos"
data-legend="false" data-limit="10"
data-order-by="mls_sent"></div>
</div>
<!-- end senders -->
<div class="span1"></div>
</div>
</div>
<!-- end sent, senders repository -->
<div id="summary-static" class="row-fluid"></div>
<!-- sent per repository -->
<div id="list" class="row-fluid">
<div class="FilterItemsMiniCharts" data-data-source="mls"
data-metrics="mls_sent,mls_senders" data-filter="repos"
data-order-by="mls_sent">
</div>
</div>
<!-- end sent per repository -->
<div class="row-fluid" style="margin-top:10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<div id="footer"></div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -1,58 +1,150 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta name="keywords" content="bitergia, floss, libresoft, oss, linux, research, reports, free software, software analysis, libreplan" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, maximum-scale=1.0">
<meta name="description" content="Bitergia company website" />
<!-- <link rel="stylesheet" type="text/css" href="VizGrimoireJS/src/envision.min.css" />
<link rel="stylesheet" type="text/css" href="VizGrimoireJS/src/report-envision.css" />
<link rel="stylesheet" type="text/css" id="theme" href="VizGrimoireJS/src/report.css" /> -->
<!--<link rel="stylesheet" type="text/css" id="theme" href="VizGrimoireJS/vizgrimoire.css" />-->
<link rel="stylesheet" type="text/css" href="theme.css" />
<script type="text/javascript" src="menu.js"></script>
<link rel="stylesheet" type="text/css" href="custom.css" />
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<title>Mailing Lists</title>
<style type="text/css">
</style>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
</head>
<body>
<div id="header"></div>
<div id="navigation" class="clearfix"></div>
<div id="wrapper">
<div id="centerdiv">
<div style="float:left;width:150px">
<div class="container-narrow">
<div id="Navbar"></div>
<!-- <div class="info-pill" style="width:120px">
<div id ="mls-selector" style="margin-top:20px"></div>
</div>-->
</div>
<div style="float:left">
<div>
<div id="info-pill">
<h1 style="font-weight: bold;">Aggregated activity (all lists)</h1>
<!-- msgs sent, senders, stats, top closers -->
<div class="row-fluid">
<!-- left column -->
<div class="span6">
<!-- msgs sent -->
<div class="row-fluid">
<div class="span12">
<div class="well">
<div class="MetricsEvol" data-data-source="mls"
data-metrics="mls_sent"
data-min="true" style="height:120px;"></div>
<div class="MicrodashText" data-metric="mls_sent"></div>
</div>
</div>
</div>
<div id="mls-envision" style="float:left;margin:10px"></div>
<div id="mls-flotr2" style="float:left;width:300px;margin:10px"></div>
<div style="float:left">
<div id="mls-top" data-show_all="true"></div>
<!-- end msgs sent -->
<!-- senders -->
<div class="row-fluid">
<div class="span12">
<div class="well">
<div class="MetricsEvol" data-data-source="mls"
data-metrics="mls_senders"
data-min="true" style="height:120px;"></div>
<div class="MicrodashText" data-metric="mls_senders"></div>
</div>
</div>
</div>
<!-- end senders -->
</div>
<!-- end left column -->
<!-- right column -->
<div class="span6">
<!-- stats -->
<div class="row-fluid">
<table class="table table-striped">
<tr><td><strong>Mailing lists</strong> (updated on <span class="GlobalData" data-data-source="mls"
data-field="last_date"></span>)</td></tr>
</table>
</div>
<div class="row-fluid">
<div class="span6">
<table class="table table-striped">
<tr>
<td>
<span class="GlobalData" data-data-source="mls"
data-field="mls_repositories"></span>
</td>
<td>
mailing lists
</td>
</tr>
<tr>
<td>
<span class="GlobalData" data-data-source="mls"
data-field="mls_senders"></span>
</td>
<td>total partipants</td>
</tr>
</table>
</div>
<div class="span6">
<table class="table table-striped">
<tr>
<td>
<span class="GlobalData" data-data-source="mls"
data-field="mls_sent_7"></span>
</td>
<td>messages last week</td>
</tr>
<tr>
<td>
<span class="GlobalData" data-data-source="mls"
data-field="mls_senders_7"></span>
</td>
<td>participants last week</td>
</tr>
</table>
</div>
</div>
<!-- end stats -->
<!-- top senders -->
<div class="Top" data-data-source="mls" data-period="last month"
data-metric="senders" data-limit="9"
data-people_links="true" ></div>
<!-- end senders-->
</div>
<!-- end right column -->
</div>
<!-- end msgs sent, senders, stats, top closers -->
<!-- time to attention -->
<div class="row-fluid">
<div class="span6">
<div class="well">
<h4>Time to Attention of Messages</h4>
* (in hours)
<div class="TimeTo" data-data-source="mls" data-type="attention"
data-quantil="X0.95,X0.5"></div>
</div>
</div>
<div style="clear: both;"></div>
<div style="margin:40px">
<!-- <div id="mls-envision-lists" style="float:left"></div>
<div id="mls-flotr2-lists" style="float:left" class="mls-dyn-list"></div>-->
<div class="span6"></div>
</div>
<!-- end time to attention -->
<div class="row-fluid" style="margin-top:10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
</div>
<div id="footer"></div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -1,24 +1,63 @@
<div class="navbar navbar-fixed-top">
<div class="navbar navbar-static-top" role="navigation">
<div class="navbar-inner">
<div class="container-fluid">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="http://openstack.org"><img src="openstack-logo.png"
alt="OpenStack logo" id="logo" height="50" width="50" border=0></a></li>
<li class="summary-menu"><a href="./">Summary</a></li>
<li class="menu"><a href="repositories.html">List of Projects</a></li>
<li class="menu"><a href="../dashboard/">DIY!</a></li>
<li class="menu"><a href="mls-repos.html">Mailing Lists</a></li>
<li class="menu"><a href="scr.html">Gerrit</a></li>
<li><a href="http://bitergia.com"><img src="bitergia-logo.png"
alt="Bitergia logo" id="logo" height="45" width="90" border=0></a></li>
</ul>
</div><!--/.nav-collapse -->
<div class="container-narrow">
<button type="button" class="btn btn-navbar" data-toggle="collapse"
data-target=".nav-collapse">
<span class="icon-bar"></span> <span class="icon-bar"></span> <span
class="icon-bar"></span>
</button>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="http://openstack.org"><img src="open-stack-cloud-computing-logo-2.png"
alt="OpenStack logo" id="logo" width="100" border=0></a></li>
<li class="summary-menu"><a href="./">Summary</a></li>
<li class="projects-menu"><a href="projects-list.html">List of Projects</a></li>
<li class="dropdown scm-menu"><a class="dropdown-toggle"
data-toggle="dropdown" href="">Source Code <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="scm.html">basic</a></li>
<li><a href="scm-contributors.html">contributors</a></li>
<li><a href="scm-companies.html">by companies</a></li>
<li><a href="scm-repos.html">by repositories</a></li>
<li><a href="scm-companies-summary.html">by companies
summary</a></li>
</ul></li>
<li class="dropdown its-menu"><a class="dropdown-toggle"
data-toggle="dropdown" href="">Tickets <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="its.html">basic</a></li>
<li><a href="its-contributors.html">participants</a></li>
<li><a href="its-companies.html">by companies</a></li>
<li><a href="its-repos.html">by repositories</a></li>
</ul></li>
<li class="dropdown mls-menu"><a class="dropdown-toggle"
data-toggle="dropdown" href="">Mailing <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="mls.html">basic</a></li>
<li><a href="mls-contributors.html">participants</a></li>
<li><a href="mls-companies.html">by companies</a></li>
<li><a href="mls-repos.html">by repositories</a></li>
</ul></li>
<li class="dropdown scr-menu"><a class="dropdown-toggle"
data-toggle="dropdown" href="">Code Review <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="scr.html">basic</a></li>
<li><a href="scr-repos.html">by repositories</a></li>
<li><a href="scr-companies.html">by companies</a></li>
<li><a href="scr-companies-summary.html">by companies summary</a></li>
</ul></li>
<li class="dropdown studies-menu"><a class="dropdown-toggle"
data-toggle="dropdown" href="">Studies<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="demographics.html">Demographics</a></li>
<li><a href="its-states.html">Launchpad Analysis</a></li>
</ul></li>
<li><a href="http://bitergia.com"><img
src="bitergia-logo.png" alt="Bitergia logo" id="logo" height="45"
width="90" border=0></a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
</div>

View File

@ -1,8 +1,18 @@
<ul class="nice-menu nice-menu-down">
<li class="menuparent"><a href="index.html" class="button" onmouseover="javascript:hideAll()">Summary</a></li>
<li><a href="repositories.html" onmouseover="javascript:hideAll()">List of Projects</a></li>
<li><a href="../dashboard/" onmouseover="javascript:hideAll()">Compare Projects!</a></li>
<li class="menuparent"><a href="mls-repos.html" class="button" onmouseover="javascript:hideAll()">Mailing Lists</a></li>
<li class="menuparent"><a href="scr.html" class="button" onmouseover="javascript:hideAll()">Gerrit</a></li>
<li><a href="top.html" onmouseover="javascript:hideAll()">Top Members</a></li>
</ul>
<div id="navigation" class="info-pill" style="width:130px">
<h1>Navigation</h1>
<a href="index.html">Summary</a><br>
&nbsp;&nbsp;<a href="scm.html">Source Code</a><br>
&nbsp;&nbsp;<a href="its.html">Tickets</a><br>
&nbsp;&nbsp;<a href="mls.html">Mailing Lists</a>(<a href="mls-selector.html">selector</a>)<br>
&nbsp;&nbsp;<a href="top.html">Top</a><br>
&nbsp;&nbsp;<a href="bubbles.html">Bubbles</a><br>
&nbsp;&nbsp;<a href="radar.html">Radar</a><br>
&nbsp;&nbsp;<a href="dgrid.html">Gridster Dashboard</a><br>
&nbsp;&nbsp;<a href="treemap.html">D3 TreeMap</a><br>
&nbsp;&nbsp;<em>Reports</em><br>
&nbsp;&nbsp;<a href="index-companies.html">Companies</a>|<a href="companies.html">List</a><br>
&nbsp;&nbsp;Repos:<a href="scm-repos.html">SCM</a>|<a href="its-repos.html">ITS</a>|<a href="mls-repos.html">MLS</a><br>
&nbsp;&nbsp;Countries:<a href="scm-countries.html">SCM</a>|<a href="its-countries.html">ITS</a>|<a href="mls-countries.html">MLS</a><br>
&nbsp;&nbsp;<a href="demographics.html">Demographics</a><br>
<!-- &nbsp;&nbsp;<a href="../test/jasmine/index.html">Jasmine Validation</a><br> -->
</div>

View File

@ -2,7 +2,7 @@
<html>
<head>
<meta name="keywords" content="bitergia, floss, libresoft, oss, linux, research, reports, free software, software analysis, liferay" />
<meta name="keywords" content="bitergia, floss, libresoft, oss, linux, research, reports, free software, software analysis, libreplan" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, maximum-scale=1.0">

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

101
browser/people.html Normal file
View File

@ -0,0 +1,101 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div id="people" class="row-fluid">
<div class="row-fluid">
<div class="span12">
<div class="PersonData"></div>
</div>
<div class="row-fluid">
<div class="span2">
<div class="PersonSummary" data-data-source="scm"></div>
</div>
<div class="span10">
<div class="PersonMetrics" data-data-source="scm"
data-metrics="scm_commits" data-legend="true"></div>
</div>
</div>
<div class="row-fluid">
<div class="span2">
<div class="PersonSummary" data-data-source="its"></div>
</div>
<div class="span10">
<div class="PersonMetrics" data-data-source="its"
data-metrics="its_closed" data-legend="true"></div>
</div>
</div>
<div class="row-fluid">
<div class="span2">
<div class="PersonSummary" data-data-source="mls"></div>
</div>
<div class="span10">
<div class="PersonMetrics" data-data-source="mls"
data-metrics="mls_sent" data-legend="true"></div>
</div>
</div>
<div class="row-fluid">
<div class="span2">
<div class="PersonSummary" data-data-source="irc"></div>
</div>
<div class="span10">
<div class="PersonMetrics" data-data-source="irc"
data-metrics="irc_sent" data-legend="true"></div>
</div>
</div>
<div class="row-fluid">
<div class="span2">
<div class="PersonSummary" data-data-source="scr"></div>
</div>
<div class="span10">
<div class="PersonMetrics" data-data-source="scr"
data-metrics="scr_closed" data-legend="true"></div>
</div>
</div>
<div class="row-fluid">
<div class="span2">
<div class="PersonSummary" data-data-source="mediawiki"></div>
</div>
<div class="span10">
<div class="PersonMetrics" data-data-source="mediawiki"
data-metrics="revisions" data-legend="true"></div>
</div>
</div>
</div>
</div>
<div class="row-fluid" style="margin-top: 10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -1,52 +1,33 @@
<div class="row-fluid">
<div id="new_card">
<div class="project-info">
Project name: <a id="project_url" href=""> <span id='project_name'></span></a>
</div><br>
<div class="scm-info">
Changes to source code: <a id="scm_url" href=""><span id="scm_name"></span></a>
<ul>
<li>
Time period: <span id="scmFirst"></span>&nbsp;<span id="scmLast"></span>
</li>
<li>
Commits: <span id="scmCommits"></span>
</li>
<li>
Committers: <span id="scmCommitters"></span>
</li>
<li>
Authors: <span id="scmAuthors"></span>
</li>
</ul>
</div>
<div class="its-info">
<a id="its_url" href=""><span id="its_name"></span></a>
<ul>
<div class="span3">
<div class="line-right">
<div class="project-info">
Project name: <a id="project_url" href=""> <span id='project_name'></span></a>
<br>
</div>
</div>
</div> <!--span3-->
<div class="span5">
<div class="line-right">
Time period for the different data sources:
<ul>
<li><a id="scm_url" href=""><span id="scm_name"></span></a>: <span id="scmFirst"></span>&nbsp;to&nbsp;<span id="scmLast"></span>
</li>
<li><a id="its_url" href=""><span id="its_name"></span></a>: <span id="itsFirst"></span>&nbsp;to&nbsp;<span id="itsLast"></span>
</li>
<li><a id="mls_url" href=""><span id="mls_name"></span></a>: <span id="mlsFirst"></span>&nbsp;to&nbsp;<span id="mlsLast"></span>
</li>
</ul>
</div>
</div><!--span3-->
<li>
Time period: <span id="itsFirst"></span>&nbsp;<span id="itsLast"></span>
</li>
<li>
Issues: <span id="itsTickets"></span>
</li>
<li>
Openers: <span id="itsOpeners"></span>
</li>
</ul>
</div>
<div class="mls-info">
Messages (<span id="mls_type"></span>): <a id="mls_url" href=""><span id="mls_name"></span></a>
<ul>
<div class="span4">
<a href="data/db">MySQL database dumps</a> with the complete retrieved
datasets <br> <a href="data/json">JSON files</a> (<a href="data/json.tgz">archive</a>) serving the data shown
in the plots <span id="blogEntry"></span>
</div><!--span3-->
<li>
Time period: <span id="mlsFirst"></span>&nbsp;<span id="mlsLast"></span>
</li>
<li>
Total messages: <span id="mlsMessages"></span>
</li>
<li>
Senders: <span id="mlsSenders"></span>
</li>
</ul>
</div>
</div>
</div>

View File

@ -7,7 +7,7 @@
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire2.css"/>
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
@ -34,7 +34,7 @@
<i><b>Active Source repositories per month</b></i>
</div>
<div class="span5">
<div class="MetricsEvol" data-data-source="its" data-metrics="its_repositories"
<div class="MetricsEvol" data-data-source="its" data-metrics="trackers"
style="height:150px;" data-legend="false" data-help="false"></div>
<i><b>Active Tickets repositories per month</b></i>
</div>
@ -142,6 +142,6 @@
<div id="footer"></div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire2.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

47
browser/radar.html Normal file
View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="container-fluid">
<div class="row-fluid">
<div class="span12">
<h4>Activity</h4>
<div id="RadarActivity" class="radar"></div>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<h4>Community</h4>
<div id="RadarCommunity" class="radar"></div>
</div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -1,9 +1,4 @@
<div>
<h4>Reference Card</h4>
<div id ="projects_info"></div>
<a href="data/db">MySQL database dumps</a> with the complete retrieved datasets
<br>
<a href="data/json">JSON files</a> serving the data shown in the plots <span id="blogEntry"></span>
<!--<h4>Reference Card</h4>-->
<div id="projects_info"></div>
</div>

View File

@ -1,106 +1,165 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" type="text/css" id="theme" href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="custom.css" />
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="../assets/js/html5shiv.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="favicon.png">
</head>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div id="navbar"></div>
<div class="container-fluid">
<div class="row-fluid">
<div class="span2">
<div id="scm-refcard-repo"></div>
<div id="its-refcard-repo"></div>
</div>
<div class="span4">
<div id="scm-repo" style="float:left">
<div style="margin-bottom:15px;">
<div class="scm-flotr2-metrics-repo"
style="width:350px;height:150px;margin-bottom:5px;"
data-metrics="scm_commits" data-legend="false"></div>
<i><b>Commits per month</b></i>
</div>
<div style="margin-bottom:15px;">
<div class="scm-flotr2-metrics-repo"
style="width:350px;height:150px;margin-bottom:5px;"
data-metrics="scm_authors" data-legend="false"></div>
<i><b>Authors per month</b></i>
</div>
<div style="margin-bottom:15px;">
<div class="scm-flotr2-metrics-repo"
style="width:350px;height:150px;margin-bottom:5px;"
data-metrics="scm_files" data-legend="false"></div>
<i><b>Files per month</b></i>
</div>
<div style="margin-bottom:15px;">
<div class="scm-flotr2-metrics-repo"
style="width:350px;height:150px;margin-bottom:5px;"
data-metrics="scm_added_lines,scm_removed_lines" data-legend="true"></div>
<i><b>Lines added/removed</b></i>
</div>
</div>
</div>
<div class="span4">
<div id="its-repo" style="float:left">
<div style="margin-bottom:15px;">
<div class="its-flotr2-metrics-repo"
style="width:350px;height:150px;margin-bottom:5px;"
data-metrics="its_closed,its_opened" data-legend="true"></div>
<i><b>Closed/Opened tickets per month</b></i>
</div>
<div style="margin-bottom:15px;">
<div class="its-flotr2-metrics-repo"
style="width:350px;height:150px;margin-bottom:5px;"
data-metrics="its_closers,its_openers" data-legend="true"></div>
<i><b>Closers/Openers per month</b></i>
</div>
<div style="margin-bottom:15px;">
<div class="its-flotr2-metrics-repo"
style="width:350px;height:150px;margin-bottom:5px;"
data-metrics="its_changed" data-legend="true"></div>
<i><b>Changed per month</b></i>
</div>
</div>
</div>
</div>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="row-fluid">
<div class="span12">
<div class="FilterItemData"></div>
</div>
</div>
<div class="row-fluid">
<!-- summaries and charts -->
<div class="span12">
<!-- scm -->
<div class="row-fluid">
<div class="span3">
<div class="FilterItemSummary" data-data-source="scm"
data-filter="repos"></div>
</div>
<div id="footer"></div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
<!-- commits -->
<div class="span3">
<div class="FilterItemMetricsEvol" data-data-source="scm"
data-metrics="scm_commits" data-legend="true" data-filter="repos"></div>
</div>
<!-- end commits -->
<!-- authors -->
<div class="span3">
<div class="FilterItemMetricsEvol" data-data-source="scm"
data-metrics="scm_authors" data-legend="true" data-filter="repos"></div>
</div>
<!-- end authors -->
<!-- files -->
<div class="span3">
<div class="FilterItemMetricsEvol" data-data-source="scm"
data-metrics="scm_files" data-legend="true" data-filter="repos"></div>
</div>
<!-- end files -->
</div>
<!-- end scm -->
<!-- its -->
<div class="row-fluid">
<div class="span3">
<div class="FilterItemSummary" data-data-source="its"
data-filter="repos"></div>
</div>
<!-- closed, opened tickets -->
<div class="span3">
<div class="FilterItemMetricsEvol" data-data-source="its"
data-metrics="its_closed,its_opened" data-legend="true"
data-filter="repos"></div>
</div>
<!-- end closed, opened tickets -->
<!-- closers, openers -->
<div class="span3">
<div class="FilterItemMetricsEvol" data-data-source="its"
data-metrics="its_closers,its_openers" data-legend="true"
data-filter="repos"></div>
</div>
<!-- end closers, openers -->
<!-- changers -->
<div class="span3">
<div class="FilterItemMetricsEvol" data-data-source="its"
data-metrics="its_changers" data-legend="true" data-filter="repos"></div>
</div>
<!-- end changers -->
</div>
<!-- end its-->
<!-- scr -->
<div class="row-fluid">
<div class="span3">
<div class="FilterItemSummary" data-data-source="scr"
data-filter="repos"></div>
</div>
<div class="span3">
<div class="FilterItemMetricsEvol" data-data-source="scr"
data-metrics="scr_submitted,scr_merged,scr_abandoned"
data-legend="true" data-filter="repos" data-frame-time="true"></div>
</div>
</div>
<!-- end scr-->
<!-- irc -->
<div class="row-fluid">
<div class="span3">
<div class="FilterItemSummary" data-data-source="irc"
data-filter="repos"></div>
</div>
<div class="span3">
<div class="FilterItemMetricsEvol" data-data-source="irc"
data-metrics="irc_sent" data-legend="true" data-filter="repos"
data-frame-time="true"></div>
</div>
<div class="span3">
<div class="FilterItemMetricsEvol" data-data-source="irc"
data-metrics="irc_senders" data-legend="true" data-filter="repos"
data-frame-time="true"></div>
</div>
</div>
<!-- end irc-->
<!-- mls -->
<div class="row-fluid">
<div class="span3">
<div class="FilterItemSummary" data-data-source="mls"
data-filter="repos"></div>
</div>
<div class="span3">
<div class="FilterItemMetricsEvol" data-data-source="mls"
data-metrics="mls_sent" data-legend="true" data-filter="repos"
data-frame-time="true"></div>
</div>
<div class="span3">
<div class="FilterItemMetricsEvol" data-data-source="mls"
data-metrics="mls_senders" data-legend="true" data-filter="repos"
data-frame-time="true"></div>
</div>
</div>
<!-- end mls-->
</div>
<!-- end charts -->
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -0,0 +1,90 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<h4>Summary of companies activity</h4>
<!-- commits companies -->
<div class="row-fluid">
<div class="span10">
<b>Commits</b>
<div class="FilterItemsMetricsEvol" data-data-source="scm"
data-metric="scm_commits" data-legend-div='legend_commits'
data-filter="companies" data-limit="10" data-stacked="true"></div>
</div>
<div class="span2">
<div id="legend_commits"></div>
</div>
</div>
<!-- end commits companies -->
<!-- authors companies -->
<div class="row-fluid">
<div class="span10">
<b>Authors</b>
<div class="FilterItemsMetricsEvol" data-data-source="scm"
data-metric="scm_authors" data-legend-div='legend_authors'
data-filter="companies" data-limit="10" data-stacked="true"></div>
</div>
<div class="span2">
<div id="legend_authors"></div>
</div>
</div>
<!-- end authors companies -->
<!-- commits, authors pies -->
<div class="row-fluid">
<!-- commits pie -->
<div class="span6">
<b>Commits</b>
<div class="FilterItemsGlobal" data-data-source="scm"
data-metric="scm_commits" data-filter="companies" data-limit="5"
data-show-others="true" data-graph="pie" data-legend="true"></div>
</div>
<!-- end commits pie -->
<!-- authors pie -->
<div class="span6">
<b>Authors</b>
<div class="FilterItemsGlobal" data-data-source="scm"
data-metric="scm_authors" data-filter="companies" data-limit="5"
data-order-by="scm_commits" data-show-others="true" data-graph="pie"
data-legend="true"></div>
</div>
<!-- end authors pie -->
</div>
<!-- end commits, authors pies -->
<div class="row-fluid" style="margin-top: 10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

106
browser/scm-companies.html Normal file
View File

@ -0,0 +1,106 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="row-fluid">
<h4>Information about all companies</h4>
</div>
<!-- info text -->
<div id="info" class="row-fluid">
<div class="span5">Some charts and tables for top companies in the
project, and a summary of the evolution of their participation with
links to more detailed information per company.</div>
<div class="span7">
<!-- evolution #companies -->
<i> <b>Active Companies per month</b>
</i>
<div class="MetricsEvol" data-data-source="scm"
data-metrics="scm_companies" data-legend="false" style="height: 80px;"></div>
</div>
</div>
<!-- end info text -->
<!-- list of companies -->
<div id="nav" class="row-fluid">
<div class="FilterItemsNav" data-data-source="scm"
data-order-by="scm_commits" data-filter="companies"
style="align: center"></div>
</div>
<!-- end list of companies -->
<!-- commits, authors company -->
<div class="well">
<div id="summary-static" class="row-fluid">
<!-- commits -->
<div class="span1"></div>
<div class="span4">
<i> <b>Commits per company (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="scm"
data-metric="scm_commits" data-filter="companies"
data-legend-div="companies_legend" data-limit="10"
data-order-by="scm_commits"></div>
</div>
<!-- end commits -->
<div class="span2" id="companies_legend"></div>
<!-- authors -->
<div class="span4">
<i> <b>Authors per company (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="scm"
data-metric="scm_authors" data-filter="companies"
data-legend="false" data-limit="10" data-order-by="scm_commits"></div>
</div>
<!-- end authors -->
<div class="span1"></div>
</div>
</div>
<!-- end commits, authors company -->
<div id="summary-static" class="row-fluid"></div>
<!-- commits per company -->
<div id="list" class="row-fluid">
<div class="FilterItemsMiniCharts" data-data-source="scm"
data-metrics="scm_commits,scm_authors" data-filter="companies"
data-order-by="scm_commits"></div>
</div>
<!-- end commits per company -->
<div class="row-fluid" style="margin-top: 10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<!-- commits, authors, stats, top authors -->
<div class="row-fluid">
<div class="span12">
<div class="well">
<div class="MetricsEvol" data-data-source="scm" data-metrics="scm_authors"
data-min="true" style="height:120px;"></div>
<div class="MicrodashText" data-metric="scm_authors"></div>
</div>
</div>
<div class="row-fluid">
<div class="span4">
<div class="Top" data-data-source="scm" data-metric="authors" data-period="last month" data-limit="100" data-people_links="true"></div>
</div>
<div class="span4">
<div class="Top" data-data-source="scm" data-metric="authors" data-period="last year" data-limit="100" data-people_links="true"></div>
</div>
<div class="span4">
<div class="Top" data-data-source="scm" data-metric="authors" data-period="" data-limit="100" data-people_links="true"></div>
</div>
</div>
</div>
<!-- end files, lines -->
<div class="row-fluid" style="margin-top:10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

114
browser/scm-countries.html Normal file
View File

@ -0,0 +1,114 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<!-- info text -->
<div id="info" class="row-fluid">
<h4>Information about all companies</h4>
Some charts and tables for top countries in the project, and a summary of
the evolution of their participation with links to more detailed
information per country.
</div>
<!-- end info text -->
<!-- evolution #countries -->
<div id="summary-evol" class="row-fluid">
<!-- graph -->
<div class="span6">
<div class="MetricsEvol" data-data-source="scm"
data-metrics="scm_countries" data-legend="false" data-help="false"></div>
<i><b>Active Countries per month</b></i> <a
href="notes.html#note:charts:countries"><img src="qm_15.png"></a>
</div>
<!-- end graph -->
<div class="span6">
<div class="FilterItemsSummary" data-filter="countries"
data-data-source="scm"></div>
</div>
</div>
<!-- end evolution #countries -->
<!-- commits, authors per country -->
<div id="summary-static" class="row-fluid">
<!-- commmits -->
<div class="span5">
<div class="FilterItemsGlobal" data-data-source="scm"
data-metric="scm_commits" data-filter="countries"
data-legend-div="countries_legend" data-limit="10"
data-order-by="scm_commits"></div>
<i> <b>Commits per country (aggregated)</b> <a
href="notes.html#note:charts:countries:commits"><img
src="qm_15.png"></a>
</i>
</div>
<!-- end commits -->
<div class="span2" id="countries_legend"></div>
<!-- authors -->
<div class="span5">
<div class="FilterItemsGlobal" data-data-source="scm"
data-metric="scm_authors" data-filter="countries" data-legend="false"
data-limit="10" data-order-by="scm_commits"></div>
<i> <b>Authors per country (aggregated))</b> <a
href="notes.html#note:charts:countries:authors"><img
src="qm_15.png"></a>
</i>
</div>
<!-- end authors -->
</div>
<!-- end commits, authors per country -->
<!-- list of countries -->
<div id="nav" class="row-fluid">
<div class="FilterItemsNav" data-data-source="scm"
data-order-by="scm_commits" data-filter="companies"
style="align: center"></div>
</div>
<!-- end list of countries -->
<!-- countries charts -->
<div id="list" class="row-fluid">
<div class="FilterItemsMiniCharts" data-metrics="scm_commits,scm_authors"
data-filter="countries" data-order-by="scm_commits"
data-data-source="scm"></div>
</div>
<!-- end countries charts -->
<div class="row-fluid" style="margin-top: 10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

104
browser/scm-domains.html Normal file
View File

@ -0,0 +1,104 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="row-fluid"><h4>Information about all domains</h4></div>
<!-- info text -->
<div id="info" class="row-fluid">
<div class="span5">
Some charts and tables for top domains in the project, and a summary
of the evolution of their participation with links to more detailed
information per domain.
</div>
<div class="span7">
<!-- evolution #domains -->
<i>
<b>Active Domains per month</b>
</i>
<div class="MetricsEvol" data-data-source="scm"
data-metrics="scm_domains" data-legend="false" style="height: 80px;"></div>
</div>
</div>
<!-- end info text -->
<!-- list of domains -->
<div id="nav" class="row-fluid">
<div class="FilterItemsNav" data-data-source="scm"
data-order-by="scm_domains" data-filter="domains" style="align: center"></div>
</div>
<!-- end list of domains -->
<!-- commits, authors domains -->
<div class="well">
<div id="summary-static" class="row-fluid">
<!-- commits -->
<div class="span1"></div>
<div class="span4">
<i>
<b>Commits per domain (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="scm"
data-metric="scm_commits" data-filter="domains"
data-legend-div="domains_legend" data-limit="10"
data-order-by="scm_commits"></div>
</div>
<!-- end commits -->
<div class="span2" id="domains_legend"></div>
<!-- authors -->
<div class="span4">
<i>
<b>Authors per company (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="scm"
data-metric="scm_authors" data-filter="domains"
data-legend="false" data-limit="10"
data-order-by="scm_commits"></div>
</div>
<!-- end authors -->
<div class="span1"></div>
</div>
</div>
<!-- end commits, authors domains -->
<div id="summary-static" class="row-fluid"></div>
<!-- commits per domain -->
<div id="list" class="row-fluid">
<div class="FilterItemsMiniCharts" data-data-source="scm"
data-metrics="scm_commits,scm_authors" data-filter="domains"
data-order-by="scm_commits">
</div>
</div>
<!-- end commits per domain -->
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -1,88 +1,111 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta name="keywords" content="bitergia, floss, libresoft, oss, linux, research, reports, free software, software analysis" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, maximum-scale=1.0">
<meta name="description" content="Bitergia company website" />
<!--<link rel="stylesheet" type="text/css" id="theme" href="VizGrimoireJS/vizgrimoire.css" />-->
<link rel="stylesheet" type="text/css" href="theme.css" />
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="menu.js"></script>
<title>Liferay Report by Bitergia: Information about all repositories</title>
<style type="text/css">
</style>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div id="header"></div>
<div id="navigation" class="clearfix"></div>
<div id="wrapper">
<div id="centerdiv">
<div style="float:left">
<div style="float:left">
<div id="info-pill">
<h1 style="font-size:1.5em;font-weight: bold;">Information about all repositories</h1>
<p>Some charts and tables for all repositories in the project, and a summary of the evolution of
their participation with links to more detailed information per repository.</p>
</div>
<div>
<div class="container-narrow">
<div id="Navbar"></div>
<div id="info-pill" style="width:360px;height:170px;float:left;margin-bottom:15px;margin-righ:15px">
<div style="float:left;width:350px;height:150px"
class="scm-flotr2-metrics" data-metrics="repositories" data-legend="false"></div>
<i><b>Active repositories per month</b></i>
</div>
<div class="info-pill" style="width:360px;height:170px;float:left;margin-bottom:15px;">
<div style="float:left;margin:10px;width:350px;height:150px" id="scm-repos-summary">
</div>
</div>
</div>
<div>
<div id="info-pill" style="width:370px;height:270px;float:left;margin-bottom:25px;margin-righ:25px">
<div class="scm-flotr2-repos-static"
data-metric="commits" data-limit="10"
style="width:350px;height:250px;margin-right:10px;float:left;margin-bottom:10px"></div>
<i><b>Commits per repository (aggregated)</b></i>
</div>
<div id="info-pill" style="width:370px;height:270px;float:left;margin-bottom:25px;margin-righ:25px">
<div class="scm-flotr2-repos-static"
data-metric="authors" data-limit="10"
style="width:350px;height:250px;margin-right:10px;float:left;margin-bottom:10px"></div>
<i><b>Authors per repository (aggregated)</b></i>
</div>
</div>
<div class="row-fluid"><h4>Information about all repositories</h4></div>
<!-- info text -->
<div id="info" class="row-fluid">
<div class="span5">
Some charts and tables for top repositories in the project, and a summary
of the evolution of their participation with links to more detailed
information per repository.
</div>
<div style="clear:both"></div>
<div style="width=715px;padding:20px;">
<h1 style="font-weight: bold;">List of repositories</h1>
<div id="scm-flotr2-repos-nav" style="width:700px;"></div>
</div>
<div>
<div class="scm-flotr2-repos-list"
data-metrics="commits,authors"
style="width:700px; margin-right:10px;"></div>
<div class="span7">
<!-- evolution #repositories -->
<i>
<b>Active Repositories per month</b>
</i>
<div class="MetricsEvol" data-data-source="scm"
data-metrics="scm_repositories" data-legend="false" style="height: 80px;"></div>
</div>
</div>
<!-- end info text -->
</div>
</div>
<div id="footer"></div>
<!-- <script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script> -->
<script type="text/javascript" src="VizGrimoireJS/src/envision.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/DataSource.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/Loader.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/Report.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/ITS.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/MLS.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/SCM.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/Envision_Report.js"></script>
<script type="text/javascript" src="VizGrimoireJS/src/Viz.js"></script>
<!-- list of repositories -->
<div id="nav" class="row-fluid">
<div class="FilterItemsNav" data-data-source="scm"
data-order-by="scm_commits" data-filter="repos" style="align: center"></div>
</div>
<!-- end list of repositories -->
<!-- commits, authors repository -->
<div class="well">
<div id="summary-static" class="row-fluid">
<!-- commits -->
<div class="span1"></div>
<div class="span4">
<i>
<b>Commits per repository (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="scm"
data-metric="scm_commits" data-filter="repos"
data-legend-div="repos_legend" data-limit="10"
data-order-by="scm_commits">
</div>
</div>
<!-- end commits -->
<div class="span2" id="repos_legend"></div>
<!-- authors -->
<div class="span4">
<i>
<b>Authors per repository (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="scm"
data-metric="scm_authors" data-filter="repos"
data-legend="false" data-limit="10"
data-order-by="scm_commits"></div>
</div>
<!-- end authors -->
<div class="span1"></div>
</div>
</div>
<!-- end commits, authors repository -->
<div id="summary-static" class="row-fluid"></div>
<!-- commits per repository -->
<div id="list" class="row-fluid">
<div class="FilterItemsMiniCharts" data-data-source="scm"
data-metrics="scm_commits,scm_authors" data-filter="repos"
data-order-by="scm_commits">
</div>
</div>
<!-- end commits per repository -->
<div class="row-fluid" style="margin-top:10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -1,49 +1,165 @@
<!DOCTYPE html>
<html>
<head>
<meta name="keywords" content="bitergia, floss, libresoft, oss, linux, research, reports, free software, software analysis, liferay" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, maximum-scale=1.0">
<meta name="description" content="Bitergia company website" />
<!-- <link rel="stylesheet" type="text/css" href="VizGrimoireJS/src/envision.min.css" />
<link rel="stylesheet" type="text/css" href="VizGrimoireJS/src/report-envision.css" />
<link rel="stylesheet" type="text/css" id="theme" href="VizGrimoireJS/src/report.css" /> -->
<!--<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />-->
<link rel="stylesheet" type="text/css" href="theme.css" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="menu.js"></script>
<title>OpenStack Development Dashboard</title>
</head>
<body>
<div id="header"></div>
<div id="navigation" class="clearfix"></div>
<div id="wrapper">
<div id="centerdiv">
<div style="float:left">
<div style="float:left;margin-right:10px">
<div id="scm-envision"></div>
</div>
<div style="float:left">
<div id="scm-flotr2" style="width:300px;margin-right:10px"></div>
</div>
<div style="float:left">
<div id="scm-top" data-show_all="true"></div>
</div>
</div>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<!-- commits, authors, stats, top authors -->
<div class="row-fluid">
<!-- left column -->
<div class="span6">
<!-- commits -->
<div class="row-fluid">
<div class="span12">
<div class="well">
<div class="MetricsEvol" data-data-source="scm"
data-metrics="scm_commits" data-min="true"
style="height: 120px;"></div>
<div class="MicrodashText" data-metric="scm_commits"></div>
</div>
</div>
</div>
<!-- end commits -->
<!-- authors -->
<div class="row-fluid">
<div class="span12">
<div class="well">
<div class="MetricsEvol" data-data-source="scm"
data-metrics="scm_authors" data-min="true"
style="height: 120px;"></div>
<div class="MicrodashText" data-metric="scm_authors"></div>
</div>
</div>
</div>
<!-- end authors -->
</div>
<!-- end left column -->
<!-- right column -->
<div class="span6">
<div class="row-fluid">
<table class="table table-striped">
<tr>
<td><strong>Source code repositories</strong> (updated on <span
class="GlobalData" data-data-source="scm" data-field="last_date"></span>)</td>
</tr>
</table>
</div>
<div class="row-fluid">
<div class="span6">
<table class="table table-striped">
<tr>
<td><span class="GlobalData" data-data-source="scm"
data-field="scm_repositories"></span></td>
<td>repositories</td>
</tr>
<tr>
<td><span class="GlobalData" data-data-source="scm"
data-field="avg_commits_author"></span></td>
<td>commits/author</td>
</tr>
<tr>
<td><span class="GlobalData" data-data-source="scm"
data-field="scm_commits_7"></span></td>
<td>commits last week</td>
</tr>
</table>
</div>
<div class="span6">
<table class="table table-striped">
<tr>
<td><span class="GlobalData" data-data-source="scm"
data-field="scm_companies"></span></td>
<td>companies</td>
</tr>
<tr>
<td><span class="GlobalData" data-data-source="scm"
data-field="avg_files_author"></span></td>
<td>files/author</td>
</tr>
<tr>
<td><span class="GlobalData" data-data-source="scm"
data-field="scm_authors_7"></span></td>
<td>active authors last week</td>
</tr>
</table>
</div>
</div>
<!-- top authors -->
<div class="Top" data-data-source="scm" data-period="last month"
data-metric="authors" data-limit="10" data-people_links="true"></div>
<!-- end top authors -->
</div>
<!-- end right column -->
</div>
<!-- end commits, authors, stats, top authors -->
<!-- files, lines -->
<div class="row-fluid">
<!-- files -->
<div class="span6">
<div class="well">
<div class="MetricsEvol" data-data-source="scm"
data-metrics="scm_files" data-min="true" style="height: 120px;"></div>
<div class="MicrodashText" data-metric="scm_files"></div>
</div>
</div>
<!-- end files -->
<!-- lines -->
<div class="span6">
<div class="well">
<div class="MetricsEvol" data-data-source="scm"
data-metrics="scm_added_lines,scm_removed_lines" data-min="true"
data-legend="true" style="height: 120px;"></div>
<div class="MicrodashText" data-metric="scm_added_lines"></div>
<div class="MicrodashText" data-metric="scm_removed_lines"></div>
</div>
</div>
<!-- end lines -->
</div>
<!-- end files, lines -->
<div class="row-fluid" style="margin-top: 10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<div id="footer"></div>
<!--[if IE]>
<script type="text/javascript" src="/static/lib/FlashCanvas/bin/flashcanvas.js"></script>
<![endif]-->
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -0,0 +1,85 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<h4>Summary of companies activity</h4>
<div class="row-fluid">
<div class="span10">
<b>Reviews merged</b>
<div class="FilterItemsMetricsEvol" data-data-source="scr"
data-legend-div="legend" data-metric="scr_merged"
data-filter="companies" data-limit="10" data-stacked="true"
data-start="1359676800" data-end="1385856000"></div>
</div>
<div class="span2">
<div id="legend"></div>
</div>
</div>
<!-- authors companies -->
<!-- <div class="row-fluid">
<div class="span12">
<b>Authors</b>
<div class="FilterItemsMetricsEvol" data-data-source="scm" data-metric="scm_authors"
data-filter="companies" data-limit="10" data-stacked="true"></div>
</div>
</div>
-->
<!-- end authors companies -->
<div class="row-fluid">
<div class="span6">
<b>Reviews merged</b>
<div class="FilterItemsGlobal" data-data-source="scr"
data-metric="scr_merged" data-filter="companies" data-limit="5"
data-show-others="true" data-graph="pie" data-legend="true"></div>
</div>
<!-- end commits pie -->
<!-- <div class="span6">
<b>Authors</b>
<div class="FilterItemsGlobal" data-data-source="scm" data-metric="scm_authors"
data-filter="companies" data-limit="5" data-order-by="scm_commits"
data-show-others="true" data-graph="pie" data-legend="true"></div>
</div>
-->
</div>
<div class="row-fluid" style="margin-top: 10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

106
browser/scr-companies.html Normal file
View File

@ -0,0 +1,106 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="row-fluid">
<h4>Information about all companies</h4>
</div>
<!-- info text -->
<div id="info" class="row-fluid">
<div class="span5">Some charts and tables for top companies in the
project, and a summary of the evolution of their participation with
links to more detailed information per company.</div>
<div class="span7">
<!-- evolution #companies -->
<!--<i> <b>Active Companies per month</b>
</i>
<div class="MetricsEvol" data-data-source="scr"
data-metrics="scr_companies" data-legend="false" style="height: 80px;"></div>
</div>-->
</div>
<!-- end info text -->
<!-- list of companies -->
<div id="nav" class="row-fluid">
<div class="FilterItemsNav" data-data-source="scr"
data-order-by="scr_submitted" data-filter="companies"
style="align: center"></div>
</div>
<!-- end list of companies -->
<!-- submitted, merged company -->
<div class="well">
<div id="summary-static" class="row-fluid">
<!-- submitted -->
<div class="span1"></div>
<div class="span4">
<i> <b>Submitted per company (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="scr"
data-metric="scr_submitted" data-filter="companies"
data-legend-div="companies_legend" data-limit="10"
data-order-by="scr_submitted"></div>
</div>
<!-- end submitted -->
<div class="span2" id="companies_legend"></div>
<!-- merged -->
<div class="span4">
<i> <b>Merged per company (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="scr"
data-metric="scr_merged" data-filter="companies" data-legend="false"
data-limit="10" data-order-by="scr_submitted"></div>
</div>
<!-- end merged -->
<div class="span1"></div>
</div>
</div>
<!-- end submitted, merged company -->
<div id="summary-static" class="row-fluid"></div>
<!-- submitted per company -->
<div id="list" class="row-fluid">
<div class="FilterItemsMiniCharts" data-data-source="scr"
data-metrics="scr_submitted,scr_merged" data-filter="companies"
data-order-by="scr_submitted"></div>
</div>
<!-- end submitted per company -->
<div class="row-fluid" style="margin-top: 10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

106
browser/scr-countries.html Normal file
View File

@ -0,0 +1,106 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="row-fluid">
<h4>Information about all countries</h4>
</div>
<!-- info text -->
<div id="info" class="row-fluid">
<div class="span5">Some charts and tables for top countries in the
project, and a summary of the evolution of their participation with
links to more detailed information per country.</div>
<div class="span7">
<!-- evolution #countries -->
<i> <b>Active Countries per month</b>
</i>
<div class="MetricsEvol" data-data-source="scr"
data-metrics="scr_countries" data-legend="false" style="height: 80px;"></div>
</div>
</div>
<!-- end info text -->
<!-- list of countries -->
<div id="nav" class="row-fluid">
<div class="FilterItemsNav" data-data-source="scr"
data-order-by="scr_submitted" data-filter="countries"
style="align: center"></div>
</div>
<!-- end list of countries -->
<!-- submitted, merged country -->
<div class="well">
<div id="summary-static" class="row-fluid">
<!-- submitted -->
<div class="span1"></div>
<div class="span4">
<i> <b>Submitted per country (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="scr"
data-metric="scr_submitted" data-filter="countries"
data-legend-div="countries_legend" data-limit="10"
data-order-by="scr_submitted"></div>
</div>
<!-- end submitted -->
<div class="span2" id="countries_legend"></div>
<!-- merged -->
<div class="span4">
<i> <b>Merged per country (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="scr"
data-metric="scr_merged" data-filter="countries" data-legend="false"
data-limit="10" data-order-by="scr_submitted"></div>
</div>
<!-- end merged -->
<div class="span1"></div>
</div>
</div>
<!-- end submitted, merged country -->
<div id="summary-static" class="row-fluid"></div>
<!-- submitted per country -->
<div id="list" class="row-fluid">
<div class="FilterItemsMiniCharts" data-data-source="scr"
data-metrics="scr_submitted,scr_merged" data-filter="countries"
data-order-by="scr_submitted"></div>
</div>
<!-- end submitted per country -->
<div class="row-fluid" style="margin-top: 10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

106
browser/scr-repos.html Normal file
View File

@ -0,0 +1,106 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div class="row-fluid">
<h4>Information about all repositories</h4>
</div>
<!-- info text -->
<div id="info" class="row-fluid">
<div class="span5">Some charts and tables for top repositories in
the project, and a summary of the evolution of their participation with
links to more detailed information per repository.</div>
<div class="span7">
<!-- evolution #repositories -->
<!--<i> <b>Active Repositories per month</b>
</i>
<div class="MetricsEvol" data-data-source="scr"
data-metrics="scr_repositories" data-legend="false"
style="height: 80px;"></div>
</div>-->
</div>
<!-- end info text -->
<!-- list of repositories -->
<div id="nav" class="row-fluid">
<div class="FilterItemsNav" data-data-source="scr"
data-order-by="scr_submitted" data-filter="repos" style="align: center"></div>
</div>
<!-- end list of repositories -->
<!-- submitted, merged repository -->
<div class="well">
<div id="summary-static" class="row-fluid">
<!-- submitted -->
<div class="span1"></div>
<div class="span4">
<i> <b>Submitted per repository (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="scr"
data-metric="scr_submitted" data-filter="repos"
data-legend-div="repos_legend" data-limit="10"
data-order-by="scr_submitted"></div>
</div>
<!-- end submitted -->
<div class="span2" id="repos_legend"></div>
<!-- merged -->
<div class="span4">
<i> <b>Senders per repository (aggregated)</b>
</i>
<div class="FilterItemsGlobal" data-data-source="scr"
data-metric="scr_merged" data-filter="repos" data-legend="false"
data-limit="10" data-order-by="scr_submitted"></div>
</div>
<!-- end merged -->
<div class="span1"></div>
</div>
</div>
<!-- end submitted, merged repository -->
<div id="summary-static" class="row-fluid"></div>
<!-- submitted per repository -->
<div id="list" class="row-fluid">
<div class="FilterItemsMiniCharts" data-data-source="scr"
data-metrics="scr_submitted,scr_merged"
data-filter="repos"></div>
</div>
<!-- end submitted per repository -->
<div class="row-fluid" style="margin-top: 10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -1,140 +1,151 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" type="text/css" id="theme" href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="custom.css" />
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="../assets/js/html5shiv.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="favicon.png">
</head>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div id="navbar"></div>
<div class="container-fluid">
<div class="row-fluid">
<div style="float:left;width:150px">
</div>
<div style="float:left">
<div>
<div id="info-pill">
<h4 style="font-weight: bold;">Source Code Review: Gerrit</h4>
</div>
<div id="scr-summary" style="float:left;margin:10px"></div>
<!--<div id="scr-envision" style="float:left;margin:10px"></div>
<div id="scr-flotr2" style="float:left;width:300px;margin:10px"></div>-->
<div style="float:left; margin-right:20px;heigth:700px;width:400px;">
<h4 style="font-weight:bold;">REVIEWS</h4>
<div style="margin-bottom:15px;">
<div class="scr-flotr2-metrics"
style="width:350px;height:150px;margin-top:5px;"
data-metrics="scr_submitted" data-legend="false"></div>
<i><b>Submissions per week</b></i>
</div>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div style="margin-bottom:15px;">
<div class="scr-flotr2-metrics"
style="width:350px;height:150px;margin-top:20px;"
data-metrics="scr_opened" data-legend="false"></div>
<i><b>Remaining Opened</b></i>
</div>
<!-- commits, authors, stats, top authors -->
<div class="row-fluid">
<div style="margin-bottom:15px;">
<div class="scr-flotr2-metrics"
style="width:350px;height:150px;margin-top:20px;"
data-metrics="scr_merged" data-legend="false"></div>
<i><b>Merged</b></i>
</div>
<div style="margin-bottom:15px;">
<div class="scr-flotr2-metrics"
style="width:350px;height:150px;margin-top:20px;"
data-metrics="scr_abandoned" data-legend="false"></div>
<i><b>Abandoned</b></i>
</div>
<div style="margin-bottom:15px;">
<div class="scr-flotr2-metrics"
style="width:350px;height:150px;margin-bottom:20px;"
data-metrics="scr_closed" data-legend="false"></div>
<i><b>Closed</b></i>
</div>
</div>
<div style="float:left; margin-right:20px;heigth:700px;width:400px;">
<h4 style="font-weight:bold;">PATCHES</h4>
<div style="margin-bottom:15px;">
<div class="scr-flotr2-metrics"
style="width:350px;height:150px;margin-top:5px;"
data-metrics="scr_verified" data-legend="false"></div>
<i><b>Verified</b></i>
<div class="scr-flotr2-metrics"
style="width:350px;height:150px;margin-top:20px;"
data-metrics="scr_approved" data-legend="false"></div>
<i><b>Approved</b></i>
<div class="scr-flotr2-metrics"
style="width:350px;height:150px;margin-top:20px;"
data-metrics="scr_codereview" data-legend="false"></div>
<i><b>Code Review</b></i>
<div class="scr-flotr2-metrics"
style="width:350px;height:150px;margin-top:20px;"
data-metrics="scr_sent" data-legend="false"></div>
<i><b>Sent</b></i>
<div class="scr-flotr2-metrics"
style="width:350px;height:150px;margin-top:20px;"
data-metrics="scr_WaitingForReviewer" data-legend="false"></div>
<i><b>Waiting for reviewer</b></i>
<div class="scr-flotr2-metrics"
style="width:350px;height:150px;margin-top:20px;"
data-metrics="scr_WaitingForSubmitter" data-legend="false"></div>
<i><b>Waiting for submitter</b></i>
</div>
</div>
</div>
<div style="clear: both;"></div>
<div style="margin:40px">
</div>
</div>
<!-- left column -->
<div class="span6">
<div class="row-fluid">
<div class="well">
<div class="MetricsEvol" data-data-source="scr"
data-metrics="scr_submitted"
data-min="true" data-legend="true" style="height: 120px;"
data-frame-time="true" data-help="true"></div>
<div class="MicrodashText" data-metric="scr_submitted"></div>
</div>
</div>
</div>
<div id="footer"></div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
<div class="row-fluid">
<div class="well">
<div class="MetricsEvol" data-data-source="scr"
data-metrics="scr_merged"
data-min="true" data-legend="true" style="height: 120px;"
data-frame-time="true" data-help="true"></div>
<div class="MicrodashText" data-metric="scr_merged"></div>
</div>
</div>
<div class="row-fluid">
<div class="well">
<div class="MetricsEvol" data-data-source="scr"
data-metrics="scr_abandoned"
data-min="true" data-legend="true" style="height: 120px;"
data-frame-time="true" data-help="true"></div>
<div class="MicrodashText" data-metric="scr_abandoned"></div>
</div>
</div>
</div>
<!-- end left column -->
<!-- right column -->
<div class="span6">
<div class="row-fluid">
<table class="table table-striped">
<tr>
<td><strong>Source code review</strong> (updated on <span
class="GlobalData" data-data-source="scr" data-field="last_date"></span>)</td>
</tr>
</table>
</div>
<div class="row-fluid">
<div class="span6">
<table class="table table-striped">
<tr>
<td><span class="GlobalData" data-data-source="scr"
data-field="scr_new"></span></td>
<td>new code reviews</td>
</tr>
<tr>
<td><span class="GlobalData" data-data-source="scr"
data-field="scr_WaitingForReviewer"></span></td>
<td>code reviews waiting for reviewer</td>
</tr>
<tr>
<td><span class="GlobalData" data-data-source="scr"
data-field="reviewers"></span></td>
<td>total code reviewers</td>
</tr>
</table>
</div>
<div class="span6">
<table class="table table-striped">
<tr>
<td><span class="GlobalData" data-data-source="scr"
data-field="scr_merged"></span></td>
<td>accepted contributions</td>
</tr>
<tr>
<td><span class="GlobalData" data-data-source="scr"
data-field="scr_WaitingForSubmitter"></span></td>
<td>code reviews waiting for submitter</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>
</div>
</div>
<!-- end stats -->
<!-- top authors -->
<!--<div class="Top" data-data-source="scm" data-graph="bars"
data-metric="authors" data-limit="10"
data-people_links="false" ></div>-->
<div class="row-fluid">
<div class="span6">
<div class="Top" data-data-source="scr" data-metric="openers"></div>
</div>
<div class="span6">
<div class="Top" data-data-source="scr" data-metric="mergers"></div>
</div>
</div>
<!-- end top authors -->
</div>
<!-- end right column -->
</div>
<!-- end commits, authors, stats, top authors -->
<div class="row-fluid" style="margin-top: 10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -1,57 +1,37 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" type="text/css" id="theme" href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="custom.css" />
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="../assets/js/html5shiv.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="favicon.png">
</head>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet">
<link rel="shortcut icon" href="favicon.png">
</head>
<body>
<div id="navbar"></div>
<div class="container-fluid">
<div class="row-fluid">
<div style="float: left;margin-left:120px;">
<div id="scm-top-bars" data-show_all="true"></div>
</div>
<div style="float: left;margin-left:40px;">
<div id="its-top-bars" data-show_all="true"></div>
</div>
<div style="float: left;margin-left:40px">
<div id="mls-top-bars" data-show_all="true"></div>
</div>
</div>
</div>
<body>
<div id="navbar"></div>
<div class="container-fluid">
<div class="row-fluid">
<span class="span4">
<div id="scm-top-bars" data-show_all="true" data-limit="10"></div>
</span> <span class="span4">
<div id="its-top-bars" data-show_all="true" data-limit="10"></div>
</span> <span class="span4">
<div id="mls-top-bars" data-show_all="true" data-limit="10"></div>
</span>
</div>
<footer>
<div id="footer"></div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -1,42 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet">
<link rel="shortcut icon" href="favicon.png">
rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<div class="container-narrow">
<div id="navbar"></div>
<div id="Navbar"></div>
<div class="row-fluid">
<div class="span2">
<div id="mls-refcard-repo"></div>
</div>
<div class="span7">
<div class="row-fluid">
<div class="mls-flotr2-metrics-repo" data-metrics="mls_sent"
data-legend="false"></div>
<i><b>Sent emails per month</b></i>
</div>
<div class="row-fluid">
<div class="mls-flotr2-metrics-repo" data-metrics="mls_senders"
data-legend="false"></div>
<i><b>Senders per month</b></i>
</div>
<div class="span12">
<h4>Community TreeMap</h4>
<form>
<label><input type="radio" name="mode" value="size" checked>
Size</label> <label><input type="radio" name="mode" value="count">
Count</label>
</form>
<div id="Treemap" class="treemap" data-file="treemap.json"
style="margin: 10px"></div>
</div>
</div>
<!--/row-->
<footer>
<div id="footer"></div>
<div id="Footer"></div>
</footer>
</div>
@ -44,4 +41,4 @@
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>
</html>

0
newbrowser/vizgrimoire.css → browser/vizgrimoire.css Normal file → Executable file
View File

View File

@ -3472,7 +3472,7 @@ Text.prototype = {
var div = D.create('div');
D.setStyles(div, { 'position' : 'absolute', 'top' : '-100000px' });
D.setStyles(div, { 'position' : 'absolute', 'top' : '-10000px' });
D.insert(div, '<div style="'+style+'" class="'+className+' flotr-dummy-div">' + text + '</div>');
D.insert(this.o.element, div);
@ -12614,14 +12614,11 @@ var Loader = {};
for (key in DS.getCompaniesGlobalData()) {companies_loaded++;}
if (companies_loaded !== DS.getCompaniesData().length)
return false;
// Don't check scr top now
if (DS.getName() !== "scr") {
if (DS.getCompaniesTopData() === null) return false;
companies_loaded = 0;
for (key in DS.getCompaniesTopData()) {companies_loaded++;}
if (companies_loaded !== DS.getCompaniesData().length)
return false;
}
if (DS.getCompaniesTopData() === null) return false;
companies_loaded = 0;
for (key in DS.getCompaniesTopData()) {companies_loaded++;}
if (companies_loaded !== DS.getCompaniesData().length)
return false;
}
return true;
}
@ -12763,7 +12760,7 @@ var DataProcess = {};
DataProcess.info = function() {};
DataProcess.paginate = function(data, page) {
if (page === undefined || page === 0 || isNaN(page)) return data;
if (page === undefined || page === 0) return data;
var page_items = [];
var psize = Report.getPageSize();
var start = (page-1)*psize;
@ -13451,161 +13448,28 @@ var Report = {};
var ds = getMetricDS(metric)[0];
var total = ds.getGlobalData()[metric];
var change7 = ds.getGlobalData()[metric+"_7"];
//initial square: total
var html = '<div class="row-fluid"><div class="span3">';
//initial square: last 7 days and total
var html = '<div class="row-fluid"><div class="span6">';
html += '<h4>'+total+'</h4> '+ds.getMetrics()[metric].name;
html += '</div><!--span3-->';
html += '</div><!--span6-->';
//second square: arrow + % for last 7 days
html += '<div class="span3">';
html += '<div class="span6">';
var value = ds.getGlobalData()[metric+"_7"];
var value2 = ds.getGlobalData()[metric+"_14"];
var old_value = value2 - value;
var inc = parseInt(((value-old_value)/old_value)*100,null);
if (inc > 0) inc = '+' + inc;
if (value === old_value) {
html += '';
}
else if (value > old_value) {
html += '<i class="icon-circle-arrow-up"></i>&nbsp;';
html += old_value + '<span class="fppercent">&nbsp;('+inc+'%)</span>&nbsp;';
html += '<i class="icon-circle-arrow-up-2x"></i>';
html += '<small>('+inc+'%)</small>&nbsp;';
} else if (value < old_value) {
html += '<i class="icon-circle-arrow-down"></i>&nbsp;';
html += old_value + '<span class="fppercent">&nbsp;('+inc+'%)</span>&nbsp;';
}
html += '<br><span class="dayschange">7 Days Change</span>';
html += '</div><!--span3-->';
//third square: arrow + % for last 30 days
html += '<div class="span3">';
value = ds.getGlobalData()[metric+"_30"];
value2 = ds.getGlobalData()[metric+"_60"];
old_value = value2 - value;
inc = parseInt(((value-old_value)/old_value)*100,null);
if (inc > 0) inc = '+' + inc;
if (value === old_value) {
html += '';
}
else if (value > old_value) {
html += '<i class="icon-circle-arrow-up"></i>&nbsp;';
html += old_value + '<span class="fppercent">&nbsp;('+inc+'%)</span>&nbsp;';
} else if (value < old_value) {
html += '<i class="icon-circle-arrow-down"></i>&nbsp;';
html += old_value + '<span class="fppercent">&nbsp;('+inc+'%)</span>&nbsp;';
}
html += '<br><span class="dayschange">30 Days Change</span>';
html += '</div><!--span3-->';
//fourth square: arrow + % for last 365 days
html += '<div class="span3">';
value = ds.getGlobalData()[metric+"_365"];
value2 = ds.getGlobalData()[metric+"_730"];
old_value = value2 - value;
inc = parseInt(((value-old_value)/old_value)*100,null);
if (inc > 0) inc = '+' + inc;
if (value === old_value) {
html += '';
}
else if (value > old_value) {
html += '<i class="icon-circle-arrow-up"></i>&nbsp;';
html += old_value + '<span class="fppercent">&nbsp;('+inc+'%)</span>&nbsp;';
} else if (value < old_value) {
html += '<i class="icon-circle-arrow-down"></i>&nbsp;';
html += old_value + '<span class="fppercent">&nbsp;('+inc+'%)</span>&nbsp;';
}
html += '<br><span class="dayschange">365 Days Change</span>';
html += '</div><!--span3-->';
html += '</div><!--row-fluid-->';
$(div).append(html);
});
}
}
},
"microdash2_bis": {
//WARNING: TO BE REMOVED; COPIED FROM ABOVE
convert: function() {
var divs = $(".microdash2_bis");
if (divs.length > 0) {
$.each(divs, function(id, div) {
var metric = $(this).data('metric');
var ds = getMetricDS(metric)[0];
var total = ds.getGlobalData()[metric];
var colname = ds.getMetrics()[metric].column;
//var change7 = ds.getGlobalData()[metric+"_7"];
//initial square: total
var html = '<div class="row-fluid"><div class="span3">';
html += '<h4>'+total+'</h4> '+ds.getMetrics()[metric].name;
html += '</div><!--span3-->';
//second square: arrow + % for last 7 days
html += '<div class="span3">';
var netvalue = ds.getGlobalData()["diff_net"+colname+"_7"];
var percentagevalue = ds.getGlobalData()["percentage_"+colname+"_7"];
if (netvalue > 0){
html += '<i class="icon-circle-arrow-up"></i>&nbsp;';
html += netvalue + '<span class="fppercent">&nbsp;('+percentagevalue+'%)</span>&nbsp;';
} else if (netvalue < 0) {
html += '<i class="icon-circle-arrow-down"></i>&nbsp;';
html += netvalue + '<span class="fppercent">&nbsp;('+percentagevalue+'%)</span>&nbsp;';
} else if (netvalue === 0){
html += '<i class="icon-circle-arrow-right"></i>&nbsp;';
html += netvalue + '<span class="fppercent">&nbsp;(0%)</span>&nbsp;';
html += '<i class="icon-circle-arrow-down-2x"></i>';
html += '<small>('+inc+'%)</small>&nbsp;';
}
/*var value = ds.getGlobalData()[metric+"_7"];
var value2 = ds.getGlobalData()[metric+"_14"];
var old_value = value2 - value;
var inc = parseInt(((value-old_value)/old_value)*100,null);
if (inc > 0) inc = '+' + inc;
if (value === old_value) {
html += '';
}
else if (value > old_value) {
html += '<i class="icon-circle-arrow-up"></i>&nbsp;';
html += old_value + '<span class="fppercent">&nbsp;('+inc+'%)</span>&nbsp;';
} else if (value < old_value) {
html += '<i class="icon-circle-arrow-down"></i>&nbsp;';
html += old_value + '<span class="fppercent">&nbsp;('+inc+'%)</span>&nbsp;';
}*/
html += '<br><span class="dayschange">7 Days Change</span>';
html += '</div><!--span3-->';
//third square: arrow + % for last 30 days
html += '<div class="span3">';
netvalue = ds.getGlobalData()["diff_net"+colname+"_30"];
percentagevalue = ds.getGlobalData()["percentage_"+colname+"_30"];
if (netvalue > 0){
html += '<i class="icon-circle-arrow-up"></i>&nbsp;';
html += netvalue + '<span class="fppercent">&nbsp;('+percentagevalue+'%)</span>&nbsp;';
} else if (netvalue < 0) {
html += '<i class="icon-circle-arrow-down"></i>&nbsp;';
html += netvalue + '<span class="fppercent">&nbsp;('+percentagevalue+'%)</span>&nbsp;';
} else if (netvalue === 0){
html += '<i class="icon-circle-arrow-right"></i>&nbsp;';
html += netvalue + '<span class="fppercent">&nbsp;(0%)</span>&nbsp;';
}
html += '<br><span class="dayschange">30 Days Change</span>';
html += '</div><!--span3-->';
//fourth square: arrow + % for last 365 days
html += '<div class="span3">';
netvalue = ds.getGlobalData()["diff_net"+colname+"_365"];
percentagevalue = ds.getGlobalData()["percentage_"+colname+"_365"];
if (netvalue > 0){
html += '<i class="icon-circle-arrow-up"></i>&nbsp;';
html += netvalue + '<span class="fppercent">&nbsp;('+percentagevalue+'%)</span>&nbsp;';
} else if (netvalue < 0) {
html += '<i class="icon-circle-arrow-down"></i>&nbsp;';
html += netvalue + '<span class="fppercent">&nbsp;('+percentagevalue+'%)</span>&nbsp;';
} else if (netvalue === 0){
html += '<i class="icon-circle-arrow-right"></i>&nbsp;';
html += netvalue + '<span class="fppercent">&nbsp;(0%)</span>&nbsp;';
}
html += '<br><span class="dayschange">365 Days Change</span>';
html += '</div><!--span3-->';
html += '</div><!--row-fluid-->';
html += '</div></div><!--row-fluid,span6-->';
$(div).append(html);
});
}
@ -15077,21 +14941,12 @@ function DataSource(name, basic_metrics) {
$("#"+div_nav).append(nav);
};
this.displayReposNav = function (div_nav, sort_metric, page_str, scm_and_its) {
var page = parseInt(page_str, null);
if (isNaN(page)) page = 1;
var nav = '<h4 style="font-weight: bold;display:inline;">List of repositories</h4> (';
if (page) {
nav += (page-1)*Report.getPageSize()+1 + "<>";
nav += (page*Report.getPageSize()) + ")<br>";
}
nav += "<span id='nav'></span>";
this.displayReposNav = function (div_nav, sort_metric, page, scm_and_its) {
var nav = "<span id='nav'></span>";
var sorted_repos = DataProcess.sortRepos(this, sort_metric);
sorted_repos_pag = DataProcess.paginate(sorted_repos, page);
sorted_repos = DataProcess.paginate(sorted_repos, page);
var self = this;
if (page && page>1)
nav += "<a href='?page="+(page-1)+"'>&lt;</a> ";
$.each(sorted_repos_pag, function(id, repo) {
$.each(sorted_repos, function(id, repo) {
if (scm_and_its && (!(Report.getReposMap()[repo]))) return;
nav += "<a href='#" + repo + "-nav'>";
var label = repo;
@ -15109,8 +14964,6 @@ function DataSource(name, basic_metrics) {
nav += label;
nav += "</a> ";
});
if (page && page*Report.getPageSize()<sorted_repos.length)
nav += " <a href='?page="+(parseInt(page,null)+1)+"'>&gt;</a>";
$("#" + div_nav).append(nav);
};
@ -15134,11 +14987,7 @@ function DataSource(name, basic_metrics) {
};
this.displaySubReportList = function (report, metrics,div_id,
config_metric, sort_metric, page_str, scm_and_its, show_links) {
var page = parseInt(page_str, null);
if (isNaN(page)) page = 1;
config_metric, sort_metric, page, scm_and_its, show_links) {
var list = "";
var ds = this;
var data = null, sorted = null;
@ -17151,7 +17000,7 @@ function MLS() {
var global_data = null;
if (report === "companies")
global_data = ds.getCompaniesGlobalData()[item];
else if (report === "countries")
if (report === "countries")
global_data = ds.getCountriesGlobalData()[item];
else if (report === "repositories")
global_data = ds.getReposGlobalData()[item];
@ -17939,6 +17788,20 @@ function SCR() {
'column' : "people",
'name' : "People",
'desc' : "Number of active people"
},
'scr_closers' : {
'divid' : "scr_closers",
'column' : "closers",
'name' : "Closers",
'desc' : "Reviews closers",
'action' : 'closed'
},
'scr_openers' : {
'divid' : "scr_openers",
'column' : "openers",
'name' : "Openers",
'desc' : "Reviews openers",
'action' : 'opened'
}
};
@ -18159,5 +18022,5 @@ var Identity = {};
};
})();
vizjslib_git_revision='ad13f8314b7001b0ea6947e5de2cb86f9fb00b97';
vizjslib_git_tag='1.0-43-gad13f83';
vizjslib_git_revision='5a0d9e99cb4ccc4e90e5afc8c5bee317ef746399';
vizjslib_git_tag='1.0-34-g5a0d9e9';

View File

@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<!-- commits, authors, stats, top authors -->
<div class="row-fluid">
<div class="span12">
<div class="well">
<div class="MetricsEvol" data-data-source="mediawiki" data-metrics="mediawiki_authors"
data-min="true" style="height:120px;"></div>
<div class="MicrodashText" data-metric="mediawiki_authors"></div>
</div>
</div>
<div class="row-fluid">
<div class="span4">
<div class="Top" data-data-source="mediawiki" data-metric="authors" data-period="last month" data-limit="100" data-people_links="true"></div>
</div>
<div class="span4">
<div class="Top" data-data-source="mediawiki" data-metric="authors" data-period="last year" data-limit="100" data-people_links="true"></div>
</div>
<div class="span4">
<div class="Top" data-data-source="mediawiki" data-metric="authors" data-period="" data-limit="100" data-people_links="true"></div>
</div>
</div>
</div>
<!-- end files, lines -->
<div class="row-fluid" style="margin-top:10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

View File

@ -1,7 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0; URL=newbrowser/browser" />
<!--Redirect done to avoid missing previous links-->
<meta http-equiv="refresh" content="0; URL=browser/" />
</head>
<body></body>
</html>

View File

@ -1,674 +0,0 @@
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.

View File

@ -1,7 +0,0 @@
test: vizgrimoire.min.js
cd test/jasmine; jasmine-headless-webkit -j jasmine.yml -c
cd ../..
testci: vizgrimoire.min.js
cd test/jasmine; xvfb-run jasmine-headless-webkit -j jasmine.yml -c
cd ../..

View File

@ -1,5 +0,0 @@
VizGrimoireJS aims at providing a framework for software metrics visualization using HTML, CSS and JavaScript as main technologies.
It was born as a complement to the outcomes of VizGrimoireR project, whose main focus is to parse information from any of the tools found in Metrics Grimoire project.
Demo: http://bitergia.com/public/previews/VizGrimoireJS/browser/

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
..

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.2 KiB

View File

@ -1,67 +0,0 @@
<!DOCTYPE html>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" type="text/css" id="theme" href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="custom.css" />
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="../assets/js/html5shiv.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="favicon.png">
</head>
<body>
<div id="navbar"></div>
<div class="container-fluid">
<div class="row-fluid">
<div class="span12">
<h4>Source code activity</h4>
<div id="scm-time-bubbles" class="bubbles" data-radius='0.5'></div>
</div>
</div><!--/row-->
<div class="row-fluid">
<div class="span12">
<h4>Tickets Activity</h4>
<div id="its-time-bubbles" class="bubbles" data-radius='0.5'></div>
</div>
</div><!--/row-->
<div class="row-fluid">
<div class="span12">
<h4>Mailing List Activity</h4>
<div id="mls-time-bubbles" class="bubbles" data-radius='0.5'></div>
</div>
</div><!--/row-->
<footer>
<div id="footer"></div>
</footer>
</div><!--/.fluid-container-->
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body></html>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 672 B

View File

@ -1,93 +0,0 @@
<!DOCTYPE html>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" type="text/css" id="theme" href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="custom.css" />
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="../assets/js/html5shiv.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="http://twitter.github.io/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="favicon.png">
</head>
<body>
<div class="container-narrow">
<div id="navbar"></div>
<div class="row-fluid">
<div class="span2">
<div id="scm-refcard-company"></div>
<h4>Top authors (total)</h4>
<div class="scm-flotr2-top-company" data-metric="scm_authors" data-period="all" data-titles="false"></div>
</div>
<div class="span10">
<div class="row-fluid">
<div class="span4">
<div class="scm-flotr2-metrics-company" data-metrics="scm_commits" data-legend="true"></div>
</div>
<div class="span4">
<div class="scm-flotr2-metrics-company" data-metrics="scm_authors" data-legend="true"></div>
</div>
<div class="span4">
<div class="scm-flotr2-metrics-company" data-metrics="scm_added_lines,scm_removed_lines" data-legend="true"></div>
</div>
</div><!--row-fluid-->
<div class="row-fluid">
<div class="span4">
<div class="its-flotr2-metrics-company" data-metrics="its_closed,its_opened" data-legend="true"></div>
</div>
<div class="span4">
<div class="its-flotr2-metrics-company" data-metrics="its_closers,its_openers" data-legend="true"></div>
</div>
<div class="span4">
</div>
</div><!--row-fluid-->
<div class="row-fluid">
<div class="span4">
<div class="mls-flotr2-metrics-company" data-metrics="mls_sent" data-legend="true"></div>
</div>
<div class="span4">
<div class="mls-flotr2-metrics-company" data-metrics="mls_senders" data-legend="true"></div>
</div>
<div class="span4">
</div>
</div><!--row-fluid-->
</div><!--span10-->
</div> <!--row-fluid-->
<footer>
<div id="footer"></div>
</footer>
</div><!--/.fluid-container-->
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body></html>

View File

@ -1,313 +0,0 @@
/*.icon-circle-arrow-up{
height: 28px;
width: 28px;
}this does not work... this takes a bigger area in the png...*/
.icon-circle-arrow-up{
background-color:#9FF781;
}
.icon-circle-arrow-down{
background-color:#F78181;
}
.container-narrow{
max-width: 1280px;
margin-left: auto;
margin-right: auto;
}
/* Top Bootstrap menu overlap */
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
/* General viz sizes */
.envision-component-container {
width: 400px;
height : 80px;
}
.envision-component-container.envision-first {
width: 400px;
height : 80px;
}
.basic-metric-html {
width: 150px;
}
.m0-box-div {
height: 130px;
float: left;
margin-bottom: 20px;
}
.scm-flotr2-metrics,
.its-flotr2-metrics,
.mls-flotr2-metrics,
.scr-flotr2-metrics,
.irc-flotr2-metrics
{
height: 130px;
}
.scm-flotr2-countries-static,
.scm-flotr2-companies-static,
.scm-flotr2-repos-static,
.its-flotr2-countries-static,
.its-flotr2-companies-static,
.its-flotr2-repos-static,
.mls-flotr2-countries-static,
.mls-flotr2-companies-static,
.mls-flotr2-repos-static,
.irc-flotr2-repos-static,
.scr-flotr2-repos-static
{
height: 200px;
}
.scm-flotr2-metrics-country,
.its-flotr2-metrics-country,
.mls-flotr2-metrics-country,
.scm-flotr2-metrics-repo,
.its-flotr2-metrics-repo,
.mls-flotr2-metrics-repo,
.irc-flotr2-metrics-repo,
.scr-flotr2-metrics-repo,
.scm-flotr2-metrics-company,
.its-flotr2-metrics-company,
.mls-flotr2-metrics-company,
.scm-flotr2-metrics-people,
.its-flotr2-metrics-people,
.irc-flotr2-metrics-people,
.scr-flotr2-metrics-people,
.mls-flotr2-metrics-people
{
height: 200px;
}
#its-envision {
height: 450px;
}
#mls-envision {
height: 250px;
}
.scm-flotr2-companies
{
height: 300px;
}
.demographic-bars,
.Demographics {
width:400px;height:200px;
}
.subreport-list-item {
margin: 5px;
}
/* Bootstrap */
.hero-unit {
padding: 30px;
}
.center {
float: none;
margin-left: auto;
margin-right: auto;
}
/* VizGrimoire 2.0 */
#scm-companies-summary .FilterItemsMetricsEvol {
height: 275px;
}
#its-time-to-fix .TimeTo {
height: 200px;
}
#mls-time-to-attention .TimeTo {
height: 200px;
}
/* end VizGrimoireJS 2.0 */
/* by Luis */
.date {
color: #8F8F8F;
font: 12px Helvetica,arial,freesans,clean,sans-serif;
}
.num {
color: #333333;
display: block;
font-size: 16px;
font-weight: bold;
}
.num2 {
color: #333333;
display: block;
font-size: 18px;
font-weight: bold;
}
/* l.com */
.stats{
padding: 0 11px 0 0;
display: table;
line-height: none !important;
}
.stats em {
display: table-cell;
padding-bottom: 10px;
vertical-align: middle;
font-size: 0.9em;
}
.stats .count {
font-size: 200%;
padding-right: 10px;
text-align: right;
line-height: 40px;
float: right;
}
.stats strong {
color: #555555;
}
.container-fluid {
padding-left: 20px;
padding-right: 20px;
/* max-width: 1280px; */
margin-left: auto;
margin-right: auto;
}
/*.row-fluid {
width: 100%;
float:none;
margin:0 auto;
}*/
.bottom-padding{
padding: 0 0 10px 0;
}
.fppercent{
font-size: 1.1em;
}
.dayschange{ font-size: 0.85em; }
.wellmin { ;modify .well from Bootstrap
min-height: 20px;
padding: 8px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #e3e3e3;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.line-right {
margin-right: -1px;
border-right: 1px solid black;
}
.count {
font-size: 200%;
line-height: 40px;
text-align: right;
color: #555555;
}
.stats {
display: table;
padding: 0 11px 0 0;
width: 100%;
}
.invisible-box{
border-radius: 3px 3px 0 0;
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
.thin-border{
border-bottom: 1px solid;
text-align:left;
}
.grey-border{
border-bottom: 3px solid #E3E3E3;
text-align:center;
padding:12px 0px 0px 0px;
}
.big-fp-number{
font-size:3em;
text-align:center;
}
.medium-fp-number{
font-size:1.5em;
padding:5px 0px 0px 0px;
}
/* from gb*/
.overall-summary {
border-bottom: medium none;
border-radius: 3px 3px 0 0;
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
margin-bottom: 0;
position: relative;
}
.capped-box {
-moz-box-sizing: border-box;
background-color: #FFFFFF;
border: 1px solid #DDDDDD;
border-radius: 3px 3px 3px 3px;
margin-bottom: 20px;
}
.stats-switcher-viewport {
height: 25px;
overflow: hidden;
}
.stats-switcher-viewport .numbers-summary {
transition: margin 0.25s ease-in-out 0s;
}
.overall-summary .numbers-summary li {
color: #999999;
display: table-cell;
list-style-type: none;
margin: 0;
padding: 0;
text-align: center;
white-space: nowrap;
width: 1%;
}
.overall-summary .numbers-summary li .num {
color: #000000;
display: inline;
font-size: 13px;
font-weight: bold;
padding: 0;
}
/* end from gb*/

View File

@ -1 +0,0 @@
../../browser/data/

View File

@ -1,103 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire2.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<div id="info" class="row-fluid">
<h4>Information about demography</h4>
</div>
<div class="well">
<div class="row-fluid">
<div class="span3">
<p><i><b>Aging</b> charts show the age of the contributors
still active using the date of their first contribution
in the different data sources.
</i></p>
<p><i>Horizontal bars represent periods of six months where the 0 bar
shows information of the last six months.</i></P>
<p><i>Big bars on top would mean that old contributors are still active. Big
bars at the bottom would mean that new contributors are being retained.</i></p>
</div>
<div class="span3">
<h6>Source code developers</h6>
<div class="Demographics" data-data-source="scm"
data-period="0.25" data-file="data/json/scm-demographics-aging.json"
style="width:250px;height:225px;"></div>
</div>
<div class="span3">
<h6>Ticket participants</h6>
<div class="Demographics" data-data-source="its"
data-period="0.25" data-file="data/json/its-demographics-aging.json"
style="width:250px;height:225px;"></div>
</div>
<div class="span3">
<h6>Discussion participants</h6>
<div class="Demographics" data-data-source="mls"
data-period="0.25" data-file="data/json/mls-demographics-aging.json"
style="width:250px;height:225px;"></div>
</div>
</div>
</div>
<div class="well">
<div class="row-fluid">
<div class="span3">
<p><i><b>Birth</b> charts show the number of contributors joining
the community each six months.</i></p>
<p><i>Horizontal bars represent periods of six months where the 0 bar
shows information of the last six months.</i></P>
<p><i>Biggers bars on top would mean that your community attracted more
people. Bigger bars at the bottom would mean that your community is
attracting more people lately.</i></p>
</div>
<div class="span3">
<h6>Source code developers</h6>
<div class="Demographics" data-data-source="scm"
data-period="0.25" data-file="data/json/scm-demographics-birth.json"
style="width:250px;height:225px;"></div>
</div>
<div class="span3">
<h6>Ticket participants</h6>
<div class="Demographics" data-data-source="its"
data-period="0.25" data-file="data/json/its-demographics-birth.json"
style="width:250px;height:225px;"></div>
</div>
<div class="span3">
<h6>Discussion participants</h6>
<div class="Demographics" data-data-source="mls"
data-period="0.25" data-file="data/json/mls-demographics-birth.json"
style="width:250px;height:225px;"></div>
</div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire2.min.js"></script>
</body>
</html>

View File

@ -1,380 +0,0 @@
{
"name": "flare",
"children": [
{
"name": "analytics",
"children": [
{
"name": "cluster",
"children": [
{"name": "AgglomerativeCluster", "size": 3938},
{"name": "CommunityStructure", "size": 3812},
{"name": "HierarchicalCluster", "size": 6714},
{"name": "MergeEdge", "size": 743}
]
},
{
"name": "graph",
"children": [
{"name": "BetweennessCentrality", "size": 3534},
{"name": "LinkDistance", "size": 5731},
{"name": "MaxFlowMinCut", "size": 7840},
{"name": "ShortestPaths", "size": 5914},
{"name": "SpanningTree", "size": 3416}
]
},
{
"name": "optimization",
"children": [
{"name": "AspectRatioBanker", "size": 7074}
]
}
]
},
{
"name": "animate",
"children": [
{"name": "Easing", "size": 17010},
{"name": "FunctionSequence", "size": 5842},
{
"name": "interpolate",
"children": [
{"name": "ArrayInterpolator", "size": 1983},
{"name": "ColorInterpolator", "size": 2047},
{"name": "DateInterpolator", "size": 1375},
{"name": "Interpolator", "size": 8746},
{"name": "MatrixInterpolator", "size": 2202},
{"name": "NumberInterpolator", "size": 1382},
{"name": "ObjectInterpolator", "size": 1629},
{"name": "PointInterpolator", "size": 1675},
{"name": "RectangleInterpolator", "size": 2042}
]
},
{"name": "ISchedulable", "size": 1041},
{"name": "Parallel", "size": 5176},
{"name": "Pause", "size": 449},
{"name": "Scheduler", "size": 5593},
{"name": "Sequence", "size": 5534},
{"name": "Transition", "size": 9201},
{"name": "Transitioner", "size": 19975},
{"name": "TransitionEvent", "size": 1116},
{"name": "Tween", "size": 6006}
]
},
{
"name": "data",
"children": [
{
"name": "converters",
"children": [
{"name": "Converters", "size": 721},
{"name": "DelimitedTextConverter", "size": 4294},
{"name": "GraphMLConverter", "size": 9800},
{"name": "IDataConverter", "size": 1314},
{"name": "JSONConverter", "size": 2220}
]
},
{"name": "DataField", "size": 1759},
{"name": "DataSchema", "size": 2165},
{"name": "DataSet", "size": 586},
{"name": "DataSource", "size": 3331},
{"name": "DataTable", "size": 772},
{"name": "DataUtil", "size": 3322}
]
},
{
"name": "display",
"children": [
{"name": "DirtySprite", "size": 8833},
{"name": "LineSprite", "size": 1732},
{"name": "RectSprite", "size": 3623},
{"name": "TextSprite", "size": 10066}
]
},
{
"name": "flex",
"children": [
{"name": "FlareVis", "size": 4116}
]
},
{
"name": "physics",
"children": [
{"name": "DragForce", "size": 1082},
{"name": "GravityForce", "size": 1336},
{"name": "IForce", "size": 319},
{"name": "NBodyForce", "size": 10498},
{"name": "Particle", "size": 2822},
{"name": "Simulation", "size": 9983},
{"name": "Spring", "size": 2213},
{"name": "SpringForce", "size": 1681}
]
},
{
"name": "query",
"children": [
{"name": "AggregateExpression", "size": 1616},
{"name": "And", "size": 1027},
{"name": "Arithmetic", "size": 3891},
{"name": "Average", "size": 891},
{"name": "BinaryExpression", "size": 2893},
{"name": "Comparison", "size": 5103},
{"name": "CompositeExpression", "size": 3677},
{"name": "Count", "size": 781},
{"name": "DateUtil", "size": 4141},
{"name": "Distinct", "size": 933},
{"name": "Expression", "size": 5130},
{"name": "ExpressionIterator", "size": 3617},
{"name": "Fn", "size": 3240},
{"name": "If", "size": 2732},
{"name": "IsA", "size": 2039},
{"name": "Literal", "size": 1214},
{"name": "Match", "size": 3748},
{"name": "Maximum", "size": 843},
{
"name": "methods",
"children": [
{"name": "add", "size": 593},
{"name": "and", "size": 330},
{"name": "average", "size": 287},
{"name": "count", "size": 277},
{"name": "distinct", "size": 292},
{"name": "div", "size": 595},
{"name": "eq", "size": 594},
{"name": "fn", "size": 460},
{"name": "gt", "size": 603},
{"name": "gte", "size": 625},
{"name": "iff", "size": 748},
{"name": "isa", "size": 461},
{"name": "lt", "size": 597},
{"name": "lte", "size": 619},
{"name": "max", "size": 283},
{"name": "min", "size": 283},
{"name": "mod", "size": 591},
{"name": "mul", "size": 603},
{"name": "neq", "size": 599},
{"name": "not", "size": 386},
{"name": "or", "size": 323},
{"name": "orderby", "size": 307},
{"name": "range", "size": 772},
{"name": "select", "size": 296},
{"name": "stddev", "size": 363},
{"name": "sub", "size": 600},
{"name": "sum", "size": 280},
{"name": "update", "size": 307},
{"name": "variance", "size": 335},
{"name": "where", "size": 299},
{"name": "xor", "size": 354},
{"name": "_", "size": 264}
]
},
{"name": "Minimum", "size": 843},
{"name": "Not", "size": 1554},
{"name": "Or", "size": 970},
{"name": "Query", "size": 13896},
{"name": "Range", "size": 1594},
{"name": "StringUtil", "size": 4130},
{"name": "Sum", "size": 791},
{"name": "Variable", "size": 1124},
{"name": "Variance", "size": 1876},
{"name": "Xor", "size": 1101}
]
},
{
"name": "scale",
"children": [
{"name": "IScaleMap", "size": 2105},
{"name": "LinearScale", "size": 1316},
{"name": "LogScale", "size": 3151},
{"name": "OrdinalScale", "size": 3770},
{"name": "QuantileScale", "size": 2435},
{"name": "QuantitativeScale", "size": 4839},
{"name": "RootScale", "size": 1756},
{"name": "Scale", "size": 4268},
{"name": "ScaleType", "size": 1821},
{"name": "TimeScale", "size": 5833}
]
},
{
"name": "util",
"children": [
{"name": "Arrays", "size": 8258},
{"name": "Colors", "size": 10001},
{"name": "Dates", "size": 8217},
{"name": "Displays", "size": 12555},
{"name": "Filter", "size": 2324},
{"name": "Geometry", "size": 10993},
{
"name": "heap",
"children": [
{"name": "FibonacciHeap", "size": 9354},
{"name": "HeapNode", "size": 1233}
]
},
{"name": "IEvaluable", "size": 335},
{"name": "IPredicate", "size": 383},
{"name": "IValueProxy", "size": 874},
{
"name": "math",
"children": [
{"name": "DenseMatrix", "size": 3165},
{"name": "IMatrix", "size": 2815},
{"name": "SparseMatrix", "size": 3366}
]
},
{"name": "Maths", "size": 17705},
{"name": "Orientation", "size": 1486},
{
"name": "palette",
"children": [
{"name": "ColorPalette", "size": 6367},
{"name": "Palette", "size": 1229},
{"name": "ShapePalette", "size": 2059},
{"name": "SizePalette", "size": 2291}
]
},
{"name": "Property", "size": 5559},
{"name": "Shapes", "size": 19118},
{"name": "Sort", "size": 6887},
{"name": "Stats", "size": 6557},
{"name": "Strings", "size": 22026}
]
},
{
"name": "vis",
"children": [
{
"name": "axis",
"children": [
{"name": "Axes", "size": 1302},
{"name": "Axis", "size": 24593},
{"name": "AxisGridLine", "size": 652},
{"name": "AxisLabel", "size": 636},
{"name": "CartesianAxes", "size": 6703}
]
},
{
"name": "controls",
"children": [
{"name": "AnchorControl", "size": 2138},
{"name": "ClickControl", "size": 3824},
{"name": "Control", "size": 1353},
{"name": "ControlList", "size": 4665},
{"name": "DragControl", "size": 2649},
{"name": "ExpandControl", "size": 2832},
{"name": "HoverControl", "size": 4896},
{"name": "IControl", "size": 763},
{"name": "PanZoomControl", "size": 5222},
{"name": "SelectionControl", "size": 7862},
{"name": "TooltipControl", "size": 8435}
]
},
{
"name": "data",
"children": [
{"name": "Data", "size": 20544},
{"name": "DataList", "size": 19788},
{"name": "DataSprite", "size": 10349},
{"name": "EdgeSprite", "size": 3301},
{"name": "NodeSprite", "size": 19382},
{
"name": "render",
"children": [
{"name": "ArrowType", "size": 698},
{"name": "EdgeRenderer", "size": 5569},
{"name": "IRenderer", "size": 353},
{"name": "ShapeRenderer", "size": 2247}
]
},
{"name": "ScaleBinding", "size": 11275},
{"name": "Tree", "size": 7147},
{"name": "TreeBuilder", "size": 9930}
]
},
{
"name": "events",
"children": [
{"name": "DataEvent", "size": 2313},
{"name": "SelectionEvent", "size": 1880},
{"name": "TooltipEvent", "size": 1701},
{"name": "VisualizationEvent", "size": 1117}
]
},
{
"name": "legend",
"children": [
{"name": "Legend", "size": 20859},
{"name": "LegendItem", "size": 4614},
{"name": "LegendRange", "size": 10530}
]
},
{
"name": "operator",
"children": [
{
"name": "distortion",
"children": [
{"name": "BifocalDistortion", "size": 4461},
{"name": "Distortion", "size": 6314},
{"name": "FisheyeDistortion", "size": 3444}
]
},
{
"name": "encoder",
"children": [
{"name": "ColorEncoder", "size": 3179},
{"name": "Encoder", "size": 4060},
{"name": "PropertyEncoder", "size": 4138},
{"name": "ShapeEncoder", "size": 1690},
{"name": "SizeEncoder", "size": 1830}
]
},
{
"name": "filter",
"children": [
{"name": "FisheyeTreeFilter", "size": 5219},
{"name": "GraphDistanceFilter", "size": 3165},
{"name": "VisibilityFilter", "size": 3509}
]
},
{"name": "IOperator", "size": 1286},
{
"name": "label",
"children": [
{"name": "Labeler", "size": 9956},
{"name": "RadialLabeler", "size": 3899},
{"name": "StackedAreaLabeler", "size": 3202}
]
},
{
"name": "layout",
"children": [
{"name": "AxisLayout", "size": 6725},
{"name": "BundledEdgeRouter", "size": 3727},
{"name": "CircleLayout", "size": 9317},
{"name": "CirclePackingLayout", "size": 12003},
{"name": "DendrogramLayout", "size": 4853},
{"name": "ForceDirectedLayout", "size": 8411},
{"name": "IcicleTreeLayout", "size": 4864},
{"name": "IndentedTreeLayout", "size": 3174},
{"name": "Layout", "size": 7881},
{"name": "NodeLinkTreeLayout", "size": 12870},
{"name": "PieLayout", "size": 2728},
{"name": "RadialTreeLayout", "size": 12348},
{"name": "RandomLayout", "size": 870},
{"name": "StackedAreaLayout", "size": 9121},
{"name": "TreeMapLayout", "size": 9191}
]
},
{"name": "Operator", "size": 2490},
{"name": "OperatorList", "size": 5248},
{"name": "OperatorSequence", "size": 4190},
{"name": "OperatorSwitch", "size": 2581},
{"name": "SortOperator", "size": 2023}
]
},
{"name": "Visualization", "size": 16540}
]
}
]
}

View File

@ -1,10 +0,0 @@
<div id="about">
<p>
&#169; 2011-2013 Bitergia
<a href="http://creativecommons.org/licenses/by-sa/3.0/es/deed.es"><img src="cc-by-sa.png" border=0 alt="CC by-sa"></a>
Powered by <a href="http://metricsgrimoire.github.com/">MetricsGrimoire</a> and <a href="http://vizgrimoire.bitergia.org/">VizGrimoire</a>
<span id="vizjs-lib-version"></span>
and <a href="http://twitter.github.io/bootstrap/">Bootstrap</a>
</p>
</div>

View File

@ -1,13 +0,0 @@
<div id="header">
<figure class="logo">
<p>
<a href="index.html"><img src="bitergia-logo.png"
alt="Bitergia logo" id="logo" height="45" width="159"
border=0 style="float: right"></a>
</figure>
<h2>
<a href="index.html"><span class='report_name'></span>
Analysis (<span class='report_date'></span>)</a> <span
id='report_page'></span>
</h2>
</div>

View File

@ -1,297 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta charset="utf-8"/>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire2.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="custom.css"/>
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet"/>
<link rel="shortcut icon" href="favicon.png"/>
</head>
<body>
<div class="container-narrow">
<div id="Navbar"></div>
<!-- summary bar -->
<div class="capped-box overall-summary ">
<div class="stats-switcher-viewport js-stats-switcher-viewport">
<ul class="numbers-summary">
<li><span class="label label-important">New</span>&nbsp;<a href="../../releases/">Last data about Havana</a></li>
<li><span class="label label-warning">Info</span>&nbsp;<a href="../dashboard/">Create your own charts</a></li>
<li><span class="label label-warning">Info</span>&nbsp;<a href="data/json/">Get the data (API JSON)</a></li>
<li><span class="label label-warning">Info</span>&nbsp;<a href="data/db/">Get the databases</a></li>
</ul>
</div>
</div>
<div class="capped-box overall-summary ">
<div class="stats-switcher-viewport js-stats-switcher-viewport">
<ul class="numbers-summary">
<li>
<a href="scm.html"><span class="GlobalData" data-data-source="scm" data-field="scm_commits"></span></a> commits
</li>
<li>
<a href="scm.html"><span class="GlobalData" data-data-source="scm" data-field="scm_authors"></span></a> developers
</li>
<li>
<a href="its.html"><span class="GlobalData" data-data-source="its" data-field="tickets"></span></a> tickets
</li>
<li>
<a href="mls.html"><span class="GlobalData" data-data-source="mls" data-field="mls_sent"></span></a> mail messages
</li>
</ul>
</div>
</div>
<!-- end of summary bar -->
<!-- scm, its, mls, refcard -->
<div class="row-fluid" style="margin-top:20px;">
<!-- scm -->
<div class="row-fluid invisible-box">
<!-- scm summary box -->
<div class="span3">
<div class="wellmin">
<div class="row-fluid thin-border">
<div class="span12">Code Developers</div>
</div>
<div class="row-fluid grey-border">
<div class="span12 big-fp-number">
<a href="scm.html">
<span class="GlobalData" data-data-source="scm" data-field="scm_authors"></span>
</a>
</div>
</div>
<div class="row-fluid" style="padding:5px 0px 0px 0px;">
<div class="span4">
<div class="row-fluid thin-border">
<div class="span12">Core</div>
</div>
<div class="row-fluid">
<div class="span12 medium-fp-number">
<a href="scm.html">
<span class="GlobalData" data-data-source="scm" data-field="core"></span>
</a>
</div>
</div>
</div>
<div class="span4">
<div class="row-fluid thin-border">
<div class="span12">Regular</div>
</div>
<div class="row-fluid">
<div class="span12 medium-fp-number">
<a href="scm.html">
<span class="GlobalData" data-data-source="scm" data-field="regular"></span>
</a>
</div>
</div>
</div>
<div class="span4">
<div class="row-fluid thin-border">
<div class="span12">Occasional</div>
</div>
<div class="row-fluid">
<div class="span12 medium-fp-number">
<a href="scm.html">
<span class="GlobalData" data-data-source="scm" data-field="occasional"></span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end scm summary box -->
<div class="span5">
<div class="well">
<div class="MetricsEvol" data-data-source="scm" data-metrics="scm_commits"
data-min="true" style="height:45px;"></div>
<a href="scm.html" style="color:black;">
<span class="MicrodashText" data-metric="scm_commits"></span>
</a>
</div>
</div>
<div class="span4">
<div class="well">
<div class="MetricsEvol" data-data-source="scm" data-metrics="scm_authors"
data-min="true" style="height:45px;"></div>
<a href="scm.html" style="color:black;">
<span class="MicrodashText" data-metric="scm_authors"></span>
</a>
</div>
</div>
</div>
<!-- end scm -->
<!-- its -->
<div class="row-fluid invisible-box">
<!-- its summary box -->
<div class="span3">
<div class="wellmin">
<div class="row-fluid thin-border">
<div class="span12">Ticket Participants</div>
</div>
<div class="row-fluid grey-border">
<div class="span12 big-fp-number">
<a href="its.html">
<span class="GlobalData" data-data-source="its" data-field="allhistory_participants"></span>
</a>
</div>
</div>
<div class="row-fluid" style="padding:5px 0px 0px 0px;">
<div class="span6">
<div class="row-fluid thin-border">
<div class="span12">Fixers</div>
</div>
<div class="row-fluid">
<div class="span12 medium-fp-number">
<a href="its.html">
<span class="GlobalData" data-data-source="its" data-field="its_closers"></span>
</a>
</div>
</div>
</div>
<div class="span6">
<div class="row-fluid thin-border">
<div class="span12">Submitters</div>
</div>
<div class="row-fluid">
<div class="span12 medium-fp-number">
<a href="its.html">
<span class="GlobalData" data-data-source="its" data-field="its_openers"></span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end its summary box -->
<div class="span5">
<div class="well">
<div class="MetricsEvol" data-data-source="its" data-metrics="its_closed"
data-min="true" style="height:45px;"></div>
<a href="its.html" style="color:black;">
<span class="MicrodashText" data-metric="its_closed"></span>
</a>
</div>
</div>
<div class="span4">
<div class="well">
<div class="MetricsEvol" data-data-source="its" data-metrics="its_closers"
data-min="true" style="height:45px;"></div>
<a href="its.html" style="color:black;">
<span class="MicrodashText" data-metric="its_closers"></span>
</a>
</div>
</div>
</div>
<!-- end its -->
<!-- mls -->
<div class="row-fluid invisible-box">
<!-- mls summary box-->
<div class="span3">
<div class="wellmin">
<div class="row-fluid thin-border">
<div class="span12">Discussion Participants</div>
</div>
<div class="row-fluid grey-border">
<div class="span12 big-fp-number">
<a href="mls.html">
<span class="GlobalData" data-data-source="mls" data-field="mls_senders"></span>
</a>
</div>
</div>
<div class="row-fluid" style="padding:5px 0px 0px 0px;">
<div class="span6">
<div class="row-fluid thin-border">
<div class="span12">Thread Initiators</div>
</div>
<div class="row-fluid">
<div class="span12 medium-fp-number">
<a href="mls.html">
<span class="GlobalData" data-data-source="mls" data-field="senders_init"></span>
</a>
</div>
</div>
</div>
<div class="span6">
<div class="row-fluid thin-border">
<div class="span12">First Repliers</div>
</div>
<div class="row-fluid">
<div class="span12 medium-fp-number">
<a href="mls.html">
<span class="GlobalData" data-data-source="mls" data-field="senders_response"></span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end mls summary box -->
<div class="span5">
<div class="well">
<div class="MetricsEvol" data-data-source="mls" data-metrics="mls_sent"
data-min="true" style="height:45px;"></div>
<a href="mls.html" style="color:black;">
<span class="MicrodashText" data-metric="mls_sent"></span>
</a>
</div>
</div>
<div class="span4">
<div class="well">
<div class="MetricsEvol" data-data-source="mls" data-metrics="mls_senders"
data-min="true" style="height:45px;"></div>
<a href="mls.html" style="color:black;">
<span class="MicrodashText" data-metric="mls_senders"></span>
</a>
</div>
</div>
</div>
<!-- end mls -->
</div>
<!-- end scm, its, mls -->
<div class="row-fluid" style="margin-top:10px;">
<div class="span12">
<div id="Refcard"></div>
</div>
</div>
<footer>
<div id="Footer"></div>
</footer>
</div>
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire2.min.js"></script>
</body>
</html>

View File

@ -1,74 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" id="theme"
href="VizGrimoireJS/vizgrimoire.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="custom.css" />
<link href="VizGrimoireJS/bootstrap/css/bootstrap-responsive.css"
rel="stylesheet">
<link rel="shortcut icon" href="favicon.png">
</head>
<body>
<div id="navbar"></div>
<div class="container-fluid">
<div id="info" class="row-fluid">
<h4>Information about all repositories</h4>
Some charts and tables for top repositories in the project, and a summary
of the evolution of their participation with links to more detailed
information per repository.
</div>
<!--/row-->
<!-- <div id="summary-evol" class="row-fluid">
<div class="span6">
<div class="irc-flotr2-metrics" data-metrics="irc_repositories" data-legend="false"></div>
<i><b>Active repositories per month</b></i><a href="notes.html#note:charts:repositories"><img src="qm_15.png"></a>
</div>
<div class="span6">
<div id="irc-repos-summary"></div>
</div>
</div>/row
-->
<div id="summary-static" class="row-fluid">
<div class="span6">
<div class="irc-flotr2-repos-static" data-metric="irc_sent"
data-limit="10" data-order-by="irc_sent"></div>
<i><b>Sent per repository (aggregated)</b><a
href="notes.html#note:charts:repositories:sent"> <img
src="qm_15.png"></a></i>
</div>
<div class="span6">
<div class="irc-flotr2-repos-static" data-metric="irc_senders"
data-limit="10" data-order-by="irc_sent"></div>
<i><b>Senders per repository (aggregated)</b><a
href="notes.html#note:charts:repositories:senders"> <img
src="qm_15.png"></a></i>
</div>
</div>
<!--/row-->
<div id="nav" class="row-fluid">
<h4 style="font-weight: bold;">List of repositories</h4>
<div id="irc-flotr2-repos-nav" data-order-by="irc_sent"></div>
</div>
<!--/row-->
<div id="list" class="row-fluid">
<div class="irc-flotr2-repos-list" data-metrics="irc_sent,irc_senders"
data-order-by="irc_sent""></div>
</div>
<!--/row-->
<footer>
<div id="footer"></div>
</footer>
</div>
<!--/.fluid-container-->
<script type="text/javascript" src="VizGrimoireJS/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="VizGrimoireJS/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="VizGrimoireJS/vizgrimoire.min.js"></script>
</body>
</html>

Some files were not shown because too many files have changed in this diff Show More