Skip to content

Commit 959fe5f

Browse files
committed
individual library consumers updated
1 parent ee3a8eb commit 959fe5f

171 files changed

Lines changed: 3484 additions & 3596 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

v1.90/libraries/accumulators.html

Lines changed: 14 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>accumulators - Boost Library Usage Dashboard</title>
6+
<title>accumulators - Boost Library Dashboard</title>
77
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.0/dist/chart.umd.min.js"></script>
88
<style>
99
body {
@@ -110,7 +110,7 @@ <h2>Internal Consumers</h2>
110110
</table>
111111
</div>
112112
<div class="chart-container">
113-
<canvas id="dependentsChart"></canvas>
113+
<canvas id="dependencyChart"></canvas>
114114
</div>
115115
</div>
116116
</div>
@@ -128,7 +128,6 @@ <h2>External Consumers</h2>
128128
<th>Usage Count</th>
129129
</tr>
130130
</thead>
131-
132131
<tbody>
133132

134133
<tr>
@@ -192,7 +191,6 @@ <h2>External Consumers</h2>
192191
</tr>
193192

194193
</tbody>
195-
196194
</table>
197195
</div>
198196
<div class="chart-container">
@@ -201,9 +199,9 @@ <h2>External Consumers</h2>
201199
</div>
202200
</div>
203201

204-
<!-- Panel 3: Contribution -->
202+
<!-- Panel 3: Contribute -->
205203
<div class="panel">
206-
<h2>Contribution</h2>
204+
<h2>Contribute</h2>
207205
<div class="panel-row">
208206
<div>
209207
<table>
@@ -213,15 +211,13 @@ <h2>Contribution</h2>
213211
<th>Commit Count</th>
214212
</tr>
215213
</thead>
216-
217214
<tbody>
218215

219216
<tr>
220217
<td colspan="2">No commit data available (boost_commit table not yet populated)</td>
221218
</tr>
222219

223220
</tbody>
224-
225221
</table>
226222
</div>
227223
<div class="chart-container">
@@ -231,16 +227,16 @@ <h2>Contribution</h2>
231227
</div>
232228

233229
<script>
234-
235-
new Chart(document.getElementById('dependentsChart'), {
230+
// Dependency Chart
231+
new Chart(document.getElementById('dependencyChart'), {
236232
type: 'bar',
237233
data: {
238-
labels: [],
234+
labels: ["1.66.0", "1.67.0", "1.68.0"],
239235
datasets: [{
240236
label: 'Dependent Count',
241-
data: [],
237+
data: [1, 1, 1],
242238
backgroundColor: 'rgba(75, 192, 192, 0.6)',
243-
borderColor: 'rgba(75, 192, 192, 1)',
239+
borderColor: 'rgb(75, 192, 192)',
244240
borderWidth: 1
245241
}]
246242
},
@@ -265,8 +261,8 @@ <h2>Contribution</h2>
265261
}
266262
}
267263
});
268-
269-
264+
265+
// Usage Chart
270266
new Chart(document.getElementById('usageChart'), {
271267
type: 'bar',
272268
data: {
@@ -293,8 +289,8 @@ <h2>Contribution</h2>
293289
}
294290
}
295291
});
296-
297-
292+
293+
// Commit Chart
298294
new Chart(document.getElementById('commitChart'), {
299295
type: 'bar',
300296
data: {
@@ -303,7 +299,7 @@ <h2>Contribution</h2>
303299
label: 'Commit Count',
304300
data: [4, 9, 2, 2, 2, 3, 3, 1, 1, 1, 8, 2, 1, 1, 1, 2, 8, 1, 3, 5, 1],
305301
backgroundColor: 'rgba(255, 99, 132, 0.6)',
306-
borderColor: 'rgba(255, 99, 132, 1)',
302+
borderColor: 'rgb(255, 99, 132)',
307303
borderWidth: 1
308304
}]
309305
},
@@ -321,7 +317,6 @@ <h2>Contribution</h2>
321317
}
322318
}
323319
});
324-
325320
</script>
326321
</body>
327322
</html>

v1.90/libraries/algorithm.html

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>algorithm - Boost Library Usage Dashboard</title>
6+
<title>algorithm - Boost Library Dashboard</title>
77
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.0/dist/chart.umd.min.js"></script>
88
<style>
99
body {
@@ -101,16 +101,14 @@ <h2>Internal Consumers</h2>
101101
</tr>
102102
</thead>
103103
<tbody>
104-
105-
<tr>
106-
<td colspan="4">No dependent libraries found</td>
107-
</tr>
104+
<tr><td><a href="compute.html">compute</a></td><td><a href="date_time.html">date_time</a></td><td><a href="fiber.html">fiber</a></td><td><a href="geometry.html">geometry</a></td></tr>
105+
<tr><td><a href="graph.html">graph</a></td><td><a href="graph_parallel.html">graph_parallel</a></td><td><a href="process.html">process</a></td><td><a href="test.html">test</a></td></tr>
108106

109107
</tbody>
110108
</table>
111109
</div>
112110
<div class="chart-container">
113-
<canvas id="dependentsChart"></canvas>
111+
<canvas id="dependencyChart"></canvas>
114112
</div>
115113
</div>
116114
</div>
@@ -128,7 +126,6 @@ <h2>External Consumers</h2>
128126
<th>Usage Count</th>
129127
</tr>
130128
</thead>
131-
132129
<tbody>
133130

134131
<tr>
@@ -192,7 +189,6 @@ <h2>External Consumers</h2>
192189
</tr>
193190

194191
</tbody>
195-
196192
</table>
197193
</div>
198194
<div class="chart-container">
@@ -201,9 +197,9 @@ <h2>External Consumers</h2>
201197
</div>
202198
</div>
203199

204-
<!-- Panel 3: Contribution -->
200+
<!-- Panel 3: Contribute -->
205201
<div class="panel">
206-
<h2>Contribution</h2>
202+
<h2>Contribute</h2>
207203
<div class="panel-row">
208204
<div>
209205
<table>
@@ -213,15 +209,19 @@ <h2>Contribution</h2>
213209
<th>Commit Count</th>
214210
</tr>
215211
</thead>
216-
217212
<tbody>
218213

219214
<tr>
220-
<td colspan="2">No commit data available (boost_commit table not yet populated)</td>
215+
<td>Marshall Clow</td>
216+
<td>1</td>
217+
</tr>
218+
219+
<tr>
220+
<td>Flamefire</td>
221+
<td>1</td>
221222
</tr>
222223

223224
</tbody>
224-
225225
</table>
226226
</div>
227227
<div class="chart-container">
@@ -231,16 +231,16 @@ <h2>Contribution</h2>
231231
</div>
232232

233233
<script>
234-
235-
new Chart(document.getElementById('dependentsChart'), {
234+
// Dependency Chart
235+
new Chart(document.getElementById('dependencyChart'), {
236236
type: 'bar',
237237
data: {
238-
labels: [],
238+
labels: ["1.66.0", "1.67.0", "1.68.0", "1.69.0", "1.70.0", "1.71.0", "1.72.0", "1.73.0", "1.74.0", "1.75.0", "1.76.0", "1.77.0", "1.78.0", "1.79.0", "1.80.0", "1.81.0", "1.82.0", "1.83.0", "1.84.0", "1.85.0", "1.86.0", "1.87.0", "1.88.0", "1.89.0", "1.90.0"],
239239
datasets: [{
240240
label: 'Dependent Count',
241-
data: [],
241+
data: [7, 7, 9, 8, 8, 7, 7, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8, 8, 8],
242242
backgroundColor: 'rgba(75, 192, 192, 0.6)',
243-
borderColor: 'rgba(75, 192, 192, 1)',
243+
borderColor: 'rgb(75, 192, 192)',
244244
borderWidth: 1
245245
}]
246246
},
@@ -265,8 +265,8 @@ <h2>Contribution</h2>
265265
}
266266
}
267267
});
268-
269-
268+
269+
// Usage Chart
270270
new Chart(document.getElementById('usageChart'), {
271271
type: 'bar',
272272
data: {
@@ -293,8 +293,8 @@ <h2>Contribution</h2>
293293
}
294294
}
295295
});
296-
297-
296+
297+
// Commit Chart
298298
new Chart(document.getElementById('commitChart'), {
299299
type: 'bar',
300300
data: {
@@ -303,7 +303,7 @@ <h2>Contribution</h2>
303303
label: 'Commit Count',
304304
data: [7, 12, 10, 4, 6, 3, 3, 17, 23, 11, 9, 14, 6, 11, 19, 9, 4, 3, 2, 12, 4, 4, 2, 11, 1, 7, 6, 2, 5, 2, 8, 2, 1, 6, 2],
305305
backgroundColor: 'rgba(255, 99, 132, 0.6)',
306-
borderColor: 'rgba(255, 99, 132, 1)',
306+
borderColor: 'rgb(255, 99, 132)',
307307
borderWidth: 1
308308
}]
309309
},
@@ -321,7 +321,6 @@ <h2>Contribution</h2>
321321
}
322322
}
323323
});
324-
325324
</script>
326325
</body>
327326
</html>

v1.90/libraries/align.html

Lines changed: 16 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>align - Boost Library Usage Dashboard</title>
6+
<title>align - Boost Library Dashboard</title>
77
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.0/dist/chart.umd.min.js"></script>
88
<style>
99
body {
@@ -101,16 +101,14 @@ <h2>Internal Consumers</h2>
101101
</tr>
102102
</thead>
103103
<tbody>
104-
105-
<tr>
106-
<td colspan="4">No dependent libraries found</td>
107-
</tr>
104+
<tr><td><a href="asio.html">asio</a></td><td><a href="atomic.html">atomic</a></td><td><a href="lockfree.html">lockfree</a></td><td><a href="log.html">log</a></td></tr>
105+
<tr><td><a href="python.html">python</a></td><td><a href="url.html">url</a></td><td></td><td></td></tr>
108106

109107
</tbody>
110108
</table>
111109
</div>
112110
<div class="chart-container">
113-
<canvas id="dependentsChart"></canvas>
111+
<canvas id="dependencyChart"></canvas>
114112
</div>
115113
</div>
116114
</div>
@@ -128,7 +126,6 @@ <h2>External Consumers</h2>
128126
<th>Usage Count</th>
129127
</tr>
130128
</thead>
131-
132129
<tbody>
133130

134131
<tr>
@@ -192,7 +189,6 @@ <h2>External Consumers</h2>
192189
</tr>
193190

194191
</tbody>
195-
196192
</table>
197193
</div>
198194
<div class="chart-container">
@@ -201,9 +197,9 @@ <h2>External Consumers</h2>
201197
</div>
202198
</div>
203199

204-
<!-- Panel 3: Contribution -->
200+
<!-- Panel 3: Contribute -->
205201
<div class="panel">
206-
<h2>Contribution</h2>
202+
<h2>Contribute</h2>
207203
<div class="panel-row">
208204
<div>
209205
<table>
@@ -213,15 +209,13 @@ <h2>Contribution</h2>
213209
<th>Commit Count</th>
214210
</tr>
215211
</thead>
216-
217212
<tbody>
218213

219214
<tr>
220215
<td colspan="2">No commit data available (boost_commit table not yet populated)</td>
221216
</tr>
222217

223218
</tbody>
224-
225219
</table>
226220
</div>
227221
<div class="chart-container">
@@ -231,16 +225,16 @@ <h2>Contribution</h2>
231225
</div>
232226

233227
<script>
234-
235-
new Chart(document.getElementById('dependentsChart'), {
228+
// Dependency Chart
229+
new Chart(document.getElementById('dependencyChart'), {
236230
type: 'bar',
237231
data: {
238-
labels: [],
232+
labels: ["1.66.0", "1.67.0", "1.68.0", "1.69.0", "1.70.0", "1.71.0", "1.72.0", "1.73.0", "1.74.0", "1.75.0", "1.76.0", "1.77.0", "1.78.0", "1.79.0", "1.80.0", "1.81.0", "1.82.0", "1.83.0", "1.84.0", "1.85.0", "1.86.0", "1.87.0", "1.88.0", "1.89.0", "1.90.0"],
239233
datasets: [{
240234
label: 'Dependent Count',
241-
data: [],
235+
data: [1, 1, 2, 2, 2, 1, 1, 2, 2, 4, 4, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 6],
242236
backgroundColor: 'rgba(75, 192, 192, 0.6)',
243-
borderColor: 'rgba(75, 192, 192, 1)',
237+
borderColor: 'rgb(75, 192, 192)',
244238
borderWidth: 1
245239
}]
246240
},
@@ -265,8 +259,8 @@ <h2>Contribution</h2>
265259
}
266260
}
267261
});
268-
269-
262+
263+
// Usage Chart
270264
new Chart(document.getElementById('usageChart'), {
271265
type: 'bar',
272266
data: {
@@ -293,8 +287,8 @@ <h2>Contribution</h2>
293287
}
294288
}
295289
});
296-
297-
290+
291+
// Commit Chart
298292
new Chart(document.getElementById('commitChart'), {
299293
type: 'bar',
300294
data: {
@@ -303,7 +297,7 @@ <h2>Contribution</h2>
303297
label: 'Commit Count',
304298
data: [19, 20, 33, 8, 22, 4, 2, 10, 7, 4, 7, 1, 12, 5, 2, 3, 4, 2, 1, 1, 1, 2],
305299
backgroundColor: 'rgba(255, 99, 132, 0.6)',
306-
borderColor: 'rgba(255, 99, 132, 1)',
300+
borderColor: 'rgb(255, 99, 132)',
307301
borderWidth: 1
308302
}]
309303
},
@@ -321,7 +315,6 @@ <h2>Contribution</h2>
321315
}
322316
}
323317
});
324-
325318
</script>
326319
</body>
327320
</html>

0 commit comments

Comments
 (0)