Author: buildbot
Date: Wed Mar 8 13:55:40 2017
New Revision: 1007924
Log:
Staging update by buildbot for ooo-site
Added:
websites/staging/ooo-site/trunk/content/stats/downloads-test.html
Modified:
websites/staging/ooo-site/trunk/cgi-bin/ (props changed)
websites/staging/ooo-site/trunk/content/ (props changed)
Propchange: websites/staging/ooo-site/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Wed Mar 8 13:55:40 2017
@@ -1 +1 @@
-1785902
+1785967
Propchange: websites/staging/ooo-site/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Wed Mar 8 13:55:40 2017
@@ -1 +1 @@
-1785902
+1785967
Added: websites/staging/ooo-site/trunk/content/stats/downloads-test.html
==============================================================================
--- websites/staging/ooo-site/trunk/content/stats/downloads-test.html (added)
+++ websites/staging/ooo-site/trunk/content/stats/downloads-test.html Wed Mar
8 13:55:40 2017
@@ -0,0 +1,135 @@
+<!--#include virtual="/doctype.html" -->
+<html>
+<head>
+<link href="/css/ooo.css" rel="stylesheet" type="text/css">
+
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <title>Apache OpenOffice Downloads</title>
+ <script src="https://api.simile-widgets.org/timeplot/1.1/timeplot-api.js"
type="text/javascript">
+ </script>
+ <script type="text/javascript">
+ var daily_resizeTimerID = null;
+ var total_resizeTimerID = null;
+ var daily_timeplot;
+ var total_timeplot;
+ function onResize() {
+ if (daily_resizeTimerID == null)
+ {
+ daily_resizeTimerID = window.setTimeout(function(){
+ daily_resizeTimerID = null;
+ daily_timeplot.repaint();
+ }, 100);
+ }
+ if (total_resizeTimerID == null)
+ {
+ total_resizeTimerID = window.setTimeout(function(){
+ total_resizeTimerID = null;
+ total_timeplot.repaint();
+ }, 100);
+ }
+ }
+ function onLoad() {
+ var daily_eventSource = new Timeplot.DefaultEventSource();
+ var total_eventSource = new Timeplot.DefaultEventSource();
+ var daily_plotInfo = [
+ Timeplot.createPlotInfo({
+ id: "daily",
+ dataSource: new
Timeplot.ColumnSource(daily_eventSource,1),
+ valueGeometry: new
Timeplot.DefaultValueGeometry({
+
gridColor: "#000000",
+
axisLabelsPlacement: "left",
+
}),
+ timeGeometry: new
Timeplot.DefaultTimeGeometry({
+
gridColor: new Timeplot.Color("#000000"),
+
axisLabelsPlacement: "top"
+
}),
+ lineColor: "#ff0000",
+ fillColor: "#cc8080",
+ showValues: true
+ })
+ ];
+ var total_plotInfo = [
+ Timeplot.createPlotInfo({
+ id: "total",
+ dataSource: new
Timeplot.ColumnSource(total_eventSource,2),
+ valueGeometry: new
Timeplot.DefaultValueGeometry({
+
gridColor: "#000000",
+
axisLabelsPlacement: "left",
+
}),
+ timeGeometry: new
Timeplot.DefaultTimeGeometry({
+
gridColor: new Timeplot.Color("#000000"),
+
axisLabelsPlacement: "top"
+
}),
+ lineColor: "#ff0000",
+ fillColor: "#cc8080",
+ showValues: true
+ })
+ ];
+ daily_timeplot = Timeplot.create(document.getElementById("daily"),
daily_plotInfo);
+ daily_timeplot.loadText("aoo-downloads.txt", ",", daily_eventSource);
+ total_timeplot = Timeplot.create(document.getElementById("total"),
total_plotInfo);
+ total_timeplot.loadText("aoo-downloads.txt", ",", total_eventSource);
+ }
+ </script>
+
+<!--#include virtual="/google-analytics.js" -->
+<!--#include virtual="/scripts/entourage.js" -->
+</head>
+<body onload="onLoad();" onresize="onResize();">
+<!--#include virtual="/brand.html" -->
+ <div id="topbara">
+ <!--#include virtual="/topnav.html" -->
+ <div id="breadcrumbsa"><a href="/">home</a> » <a
href="/stats/">stats</a></div>
+ </div>
+ <div id="clear"></div>
+
+
+ <div id="content">
+
+
+
+
+<h2>Download Stats</h2>
+
+<p>
+This chart uses the <a href="http://www.simile-widgets.org/timeplot/">SIMILE
Timeplot widget</a> and is based on the data series contained in
+<a href="http://www.openoffice.org/stats/aoo-downloads.txt">this data
file.</a> The data in that file based on download statistics gathered by
+SourceForge (the host of our downloads) and exposed by them through their
+<a
href="http://sourceforge.net/p/forge/documentation/Download%20Stats%20API/">Download
Stats API</a>. The data is collected and aggregated by a
+<a
href="https://svn.apache.org/repos/asf/openoffice/devtools/aoo-stats/detail-by-day.py">Python
script</a>.
+</p>
+
+<p>
+The download figures are for full-install downloads of Apache OpenOffice
downloaded via SourceForge. This does not include downloads of language
+pack, SDK's or source tarballs. It does not include downloads of earlier
versions of OpenOffice or downloads made from copies of OpenOffice hosted
+on other repositories.
+</p>
+
+<p>
+Note: This is a download count, not a user count. These are related, but not
identical concepts, since a single user can download multiple copies
+of OpenOffice, or a single download might be shared with multiple users or
installed on several machines.
+</p>
+
+<p>
+These charts are <b>not</b> live. The data is manually updated. Data on the
edges of the chart may represent data for partial days.
+</p>
+
+<div class="label">
+Daily Downloads
+</div>
+
+<div id="daily" style="height: 150px;">
+</div>
+
+<div class="label">
+Total (Cumulative) Downloads
+</div>
+
+<div id="total" style="height: 150px;">
+</div>
+
+
+ </div>
+<!--#include virtual="/footer.html" -->
+</body>
+</html>