-
Notifications
You must be signed in to change notification settings - Fork 89
/
dashboard.t
93 lines (84 loc) · 1.79 KB
/
dashboard.t
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#include "_doctype.html"
<html>
<head> <title>curl - Project status dashboard</title>
#include "css.t"
<style type="text/css">
.contents {
max-width: 98%;
}
#ifdef COL3
img.dash {
max-width: 30%;
}
#elif defined(COL2)
img.dash {
max-width: 49%;
}
#elif defined(COL5)
img.dash {
max-width: 18%;
}
#endif
</style>
</head>
#define CURL_DASHBOARD
#define CURL_URL dashboard.html
#include "setup.t"
#include "_menu.html"
WHERE2(Development, "/dev/", Project status dashboard)
TITLE(Dashboard)
<div class="relatedbox">
<b>Related:</b>
<br><a href="https://github.com/curl/stats/issues/new?title=bug%20in%20graph" target="_new">File a bug about a graph</a>
<br><a href="/docs/">Online Docs</a>
<br><a href="/gitstats/">gitstats</a>
</div>
<p>
Daily updated graphs showing the state of the curl project in as much detail as possible.
#if !defined(DASHDATA) && !defined(COL1)
Click the images for full resolution.
#endif
<br>
Columns:
#ifndef COL1
<a href="dashboard1.html">1</a>
#else
<b>1</b>
#endif
·
#if !defined(COL2) || defined(DASHDATA)
<a href="dashboard2.html">2</a>
#else
<b>2</b>
#endif
·
#if !defined(COL3) || defined(DASHDATA)
<a href="dashboard.html">3</a>
#else
<b>3</b>
#endif
·
#if !defined(COL5) || defined(DASHDATA)
<a href="dashboard5.html">5</a>
#else
<b>5</b>
#endif
|
#ifndef DASHDATA
<a href="dashboardd.html">data view</a>
#else
<b>data view</b>
#endif
<p>
#ifdef DASHDATA
Each image below links to the corresponding CSV file with recently updated
source data. The first and last lines of data is shown on the right.
#endif
#include "dash.gen"
<hr style="margin-top: 3em;">
<p>
The scripts for generating all these images are available
at <a href="https://github.com/curl/stats">github.com/curl/stats</a>.
#include "_footer.html"
</body>
</html>