aboutsummaryrefslogtreecommitdiff
path: root/app/views/stats
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <github@ainw.org> 2014-10-09 21:44:44 -0400
committerGravatar Alexis Degrugillier <github@ainw.org> 2014-10-09 21:44:44 -0400
commiteb40dbccdb1e0830fcad96d333b242870cc0d0a7 (patch)
tree62baf9334c8ffd2c68810c686fb2f4b133e8fa0d /app/views/stats
parent99cdd2a0ad7d0c0bf8965ddac2661cfa4c57809d (diff)
Change statistic average
I was using the stats and it feels that the stat average was useless in that form since the line is always at the same position no matter what is the value. So I deleted that line and added the average in the title. It is way more useful this way. I updated some translations both on i18n files and on http://i18n.freshrss.org
Diffstat (limited to 'app/views/stats')
-rw-r--r--app/views/stats/repartition.phtml36
1 files changed, 3 insertions, 33 deletions
diff --git a/app/views/stats/repartition.phtml b/app/views/stats/repartition.phtml
index a181ae251..670714707 100644
--- a/app/views/stats/repartition.phtml
+++ b/app/views/stats/repartition.phtml
@@ -30,17 +30,17 @@
<?php }?>
<div class="stat">
- <h2><?php echo _t('stats_entry_per_hour'); ?></h2>
+ <h2><?php echo _t('stats_entry_per_hour', $this->averageHour); ?></h2>
<div id="statsEntryPerHour" style="height: 300px"></div>
</div>
<div class="stat half">
- <h2><?php echo _t('stats_entry_per_day_of_week'); ?></h2>
+ <h2><?php echo _t('stats_entry_per_day_of_week', $this->averageDayOfWeek); ?></h2>
<div id="statsEntryPerDayOfWeek" style="height: 300px"></div>
</div><!--
--><div class="stat half">
- <h2><?php echo _t('stats_entry_per_month'); ?></h2>
+ <h2><?php echo _t('stats_entry_per_month', $this->averageMonth); ?></h2>
<div id="statsEntryPerMonth" style="height: 300px"></div>
</div>
</div>
@@ -56,19 +56,10 @@ function initStats() {
return;
}
// Entry per hour
- var avg_h = [];
- for (var i = -1; i <= 24; i++) {
- avg_h.push([i, <?php echo $this->averageHour?>]);
- }
Flotr.draw(document.getElementById('statsEntryPerHour'),
[{
data: <?php echo $this->repartitionHour ?>,
bars: {horizontal: false, show: true}
- }, {
- data: avg_h,
- lines: {show: true},
- label: "<?php echo $this->averageHour?>",
- yaxis: 2
}],
{
grid: {verticalLines: false},
@@ -81,23 +72,13 @@ function initStats() {
max: 23.9,
tickDecimals: 0},
yaxis: {min: 0},
- y2axis: {showLabels: false},
mouse: {relative: true, track: true, trackDecimals: 0, trackFormatter: function(obj) {return numberFormat(obj.y);}}
});
// Entry per day of week
- var avg_dow = [];
- for (var i = -1; i <= 7; i++) {
- avg_dow.push([i, <?php echo $this->averageDayOfWeek?>]);
- }
Flotr.draw(document.getElementById('statsEntryPerDayOfWeek'),
[{
data: <?php echo $this->repartitionDayOfWeek ?>,
bars: {horizontal: false, show: true}
- }, {
- data: avg_dow,
- lines: {show: true},
- label: "<?php echo $this->averageDayOfWeek?>",
- yaxis: 2
}],
{
grid: {verticalLines: false},
@@ -111,23 +92,13 @@ function initStats() {
max: 6.9,
tickDecimals: 0},
yaxis: {min: 0},
- y2axis: {showLabels: false},
mouse: {relative: true, track: true, trackDecimals: 0, trackFormatter: function(obj) {return numberFormat(obj.y);}}
});
// Entry per month
- var avg_m = [];
- for (var i = 0; i <= 13; i++) {
- avg_m.push([i, <?php echo $this->averageMonth?>]);
- }
Flotr.draw(document.getElementById('statsEntryPerMonth'),
[{
data: <?php echo $this->repartitionMonth ?>,
bars: {horizontal: false, show: true}
- }, {
- data: avg_m,
- lines: {show: true},
- label: "<?php echo $this->averageMonth?>",
- yaxis: 2
}],
{
grid: {verticalLines: false},
@@ -141,7 +112,6 @@ function initStats() {
max: 12.9,
tickDecimals: 0},
yaxis: {min: 0},
- y2axis: {showLabels: false},
mouse: {relative: true, track: true, trackDecimals: 0, trackFormatter: function(obj) {return numberFormat(obj.y);}}
});