Parent: [c99abb] (diff)

Child: [6f8012] (diff)

Download this file

index.html    454 lines (440 with data), 17.4 kB

  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
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
{#
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
#}
{% set hide_left_bar = True %}
{% extends g.theme.master %}
{% block title %}User stats{% endblock %}
{% block header %}
Statistics about {{user.display_name}}'s contribution
{% if category %}
in projects of category {{category.fullname}}
{% endif %}
{% endblock %}
{% block content %}
{% if user and (user.stats.visible or (c.user == user)) %}
{% if category %}
<ul>
<li><a href="{{c.project.url()}}userstats">Go back to general statistics</a></li>
</ul>
{% endif %}
<h2>General statistics</h2>
<table>
<thead>
<tr>
<th>Parameter</th>
<th>Date</th>
<th>Time interval</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registration date</td>
<td>{{registration_date.strftime("%d %b %Y, %H:%M:%S (UTC)")}}</td>
<td>{{days}} day{% if days != 1 %}s{% endif %} ago</td>
</tr>
{% if last_login %}
<tr>
<td>Last login</td>
<td>{{last_login.strftime("%d %b %Y, %H:%M:%S (UTC)")}}</td>
<td>{{last_login_days}} day{% if last_login_days != 1 %}s{% endif %} ago</td>
</tr>
{% endif %}
</tbody>
</table>
<h2>Contribution statistics</h2>
<table>
<thead>
<tr>
<th>Parameter</th>
<th>Total value</th>
<th>Average per-month value</th>
<th>Last 30 days</th>
{% if days >= 30 %}
<th>Trend</th>
{% endif %}
</tr>
</thead>
<tbody>
{% if not category %}
<tr>
<td>Logins</td>
<td>{{totlogins}}</td>
<td>{{permonthlogins}}</td>
<td>{{lastmonth_logins}}</td>
{% if days >= 30 %}
<td style="text-align:center;">
{% if lastmonth_logins > permonthlogins %}
<img src="{{g.forge_static('images/up.png')}}"/>
{% elif lastmonth_logins == permonthlogins %}
<img src="{{g.forge_static('images/equal.png')}}"/>
{% else %}
<img src="{{g.forge_static('images/down.png')}}"/>
{%endif%}
</td>
{% endif %}
</tr>
{% endif %}
<tr>
<td>
{% if totcommits.number > 0 %}
<a href="{{c.project.url()}}userstats/commits/">Commits number</a>
{% else %}
Commits number
{% endif %}
</td>
<td>{{totcommits.number}}</td>
<td>{{permonthcommits.number}}</td>
<td>{{lastmonthcommits.number}}</td>
{% if days >= 30 %}
<td style="text-align:center;">
{% if lastmonthcommits.number > permonthcommits.number %}
<img src="{{g.forge_static('images/up.png')}}"/>
{% elif lastmonthcommits.number == permonthcommits.number %}
<img src="{{g.forge_static('images/equal.png')}}"/>
{% else %}
<img src="{{g.forge_static('images/down.png')}}"/>
{%endif%}
</td>
{% endif %}
</tr>
<tr>
<td>
{% if totcommits.lines > 0 %}
<a href="{{c.project.url()}}userstats/commits/">Added/modified LOCs</a>
{% else %}
Added/modified LOCs
{% endif %}
</td>
<td>{{totcommits.lines}}</td>
<td>{{permonthcommits.lines}}</td>
<td>{{lastmonthcommits.lines}}</td>
{% if days >= 30 %}
<td style="text-align:center;">
{% if lastmonthcommits.lines > permonthcommits.lines %}
<img src="{{g.forge_static('images/up.png')}}"/>
{% elif lastmonthcommits.lines == permonthcommits.lines %}
<img src="{{g.forge_static('images/equal.png')}}"/>
{% else %}
<img src="{{g.forge_static('images/down.png')}}"/>
{%endif%}
</td>
{% endif %}
</tr>
<tr>
<td>
{% if totartifacts.created > 0 %}
<a href="{{c.project.url()}}userstats/artifacts/">Total number of created artifacts</a>
{% else %}
Total number of created artifacts
{% endif %}
</td>
<td>{{totartifacts.created}}</td>
<td>{{permonthartifacts.created}}</td>
<td>{{lastmonthartifacts.created}}</td>
{% if days >= 30 %}
<td style="text-align:center;">
{% if lastmonthartifacts.created > permonthartifacts.created %}
<img src="{{g.forge_static('images/up.png')}}"/>
{% elif lastmonthartifacts.created == permonthartifacts.created %}
<img src="{{g.forge_static('images/equal.png')}}"/>
{% else %}
<img src="{{g.forge_static('images/down.png')}}"/>
{%endif%}
</td>
{% endif %}
</tr>
<tr>
<td>
{% if totartifacts.modified > 0 %}
<a href="{{c.project.url()}}userstats/artifacts/">Total number of edited artifacts</a>
{% else %}
Total number of edited artifacts
{% endif %}
</td>
<td>{{totartifacts.modified}}</td>
<td>{{permonthartifacts.modified}}</td>
<td>{{lastmonthartifacts.modified}}</td>
{% if days >= 30 %}
<td style="text-align:center;">
{% if lastmonthartifacts.modified > permonthartifacts.modified %}
<img src="{{g.forge_static('images/up.png')}}"/>
{% elif lastmonthartifacts.modified == permonthartifacts.modified %}
<img src="{{g.forge_static('images/equal.png')}}"/>
{% else %}
<img src="{{g.forge_static('images/down.png')}}"/>
{%endif%}
</td>
{% endif %}
</tr>
{% for key, value in artifacts_by_type.items() %}
<tr>
<td>
{% if value.created > 0 %}
<a href="{{c.project.url()}}userstats/artifacts/">Created {{key}} artifacts</a>
{% else %}
Created {{key}} artifacts
{% endif %}
</td>
<td>{{value.created}}</td>
<td>{{value.pmcreated}}</td>
<td>
{% if lastmonth_artifacts_by_type.get(key) %}
{{lastmonth_artifacts_by_type[key].created}}
{% else %}
0
{% endif %}
</td>
{% if days >= 30 %}
<td style="text-align:center;">
{% if lastmonth_artifacts_by_type.get(key) %}
{% if lastmonth_artifacts_by_type[key].created > value.pmcreated %}
<img src="{{g.forge_static('images/up.png')}}"/>
{% elif lastmonth_artifacts_by_type[key].created == value.pmcreated %}
<img src="{{g.forge_static('images/equal.png')}}"/>
{% else %}
<img src="{{g.forge_static('images/down.png')}}"/>
{%endif%}
{%else%} <img src="{{g.forge_static('images/down.png')}}"/> {%endif%}
</td>
{% endif %}
</tr>
<tr>
<td>
{% if value.modified > 0 %}
<a href="{{c.project.url()}}userstats/artifacts/">Edited {{key}} artifacts</a>
{% else %}
Edited {{key}} artifacts
{% endif %}
</td>
<td>{{value.modified}}</td>
<td>{{value.pmmodified}}</td>
<td>
{% if lastmonth_artifacts_by_type.get(key) %}
{{lastmonth_artifacts_by_type[key].modified}}
{% else %}
0
{% endif %}
</td>
{% if days >= 30 %}
<td style="text-align:center;">
{% if lastmonth_artifacts_by_type.get(key) %}
{% if lastmonth_artifacts_by_type[key].modified > value.pmmodified %}
<img src="{{g.forge_static('images/up.png')}}"/>
{% elif lastmonth_artifacts_by_type[key].modified == value.pmmodified %}
<img src="{{g.forge_static('images/equal.png')}}"/>
{% else %}
<img src="{{g.forge_static('images/down.png')}}"/>
{%endif%}
{%else%} <img src="{{g.forge_static('images/down.png')}}"/> {%endif%}
</td>
{% endif %}
</tr>
{% endfor %}
<tr>
<td>
{% if tottickets.assigned > 0 %}
<a href="{{c.project.url()}}userstats/tickets/">Assigned tickets</a>
{% else %}
Assigned tickets
{% endif %}
</td>
<td>{{tottickets.assigned}}</td>
<td>{{permonthtickets.assigned}}</td>
<td>{{lastmonthtickets.assigned}}</td>
{% if days >= 30 %}
<td style="text-align:center;">
{% if lastmonthtickets.assigned > permonthtickets.assigned %}
<img src="{{g.forge_static('images/up.png')}}"/>
{% elif lastmonthtickets.assigned == permonthtickets.assigned %}
<img src="{{g.forge_static('images/equal.png')}}"/>
{% else %}
<img src="{{g.forge_static('images/down.png')}}"/>
{%endif%}
</td>
{% endif %}
</tr>
<tr>
<td>
{% if tottickets.revoked > 0 %}
<a href="{{c.project.url()}}userstats/tickets/">Revoked tickets</a>
{% else %}
Revoked tickets
{% endif %}
</td>
<td>{{tottickets.revoked}}</td>
<td>{{permonthtickets.revoked}}</td>
<td>{{lastmonthtickets.revoked}}</td>
{% if days >= 30 %}
<td style="text-align:center;">
{% if lastmonthtickets.revoked > permonthtickets.revoked %}
<img src="{{g.forge_static('images/up.png')}}"/>
{% elif lastmonthtickets.revoked == permonthtickets.revoked %}
<img src="{{g.forge_static('images/equal.png')}}"/>
{% else %}
<img src="{{g.forge_static('images/down.png')}}"/>
{%endif%}
</td>
{% endif %}
</tr>
<tr>
<td>
{% if tottickets.solved > 0 %}
<a href="{{c.project.url()}}userstats/tickets/">Solved tickets</a>
{% else %}
Solved tickets
{% endif %}
</td>
<td>{{tottickets.solved}}</td>
<td>{{permonthtickets.solved}}</td>
<td>{{lastmonthtickets.solved}}</td>
{% if days >= 30 %}
<td style="text-align:center;">
{% if lastmonthtickets.solved > permonthtickets.solved %}
<img src="{{g.forge_static('images/up.png')}}"/>
{% elif lastmonthtickets.solved == permonthtickets.solved %}
<img src="{{g.forge_static('images/equal.png')}}"/>
{% else %}
<img src="{{g.forge_static('images/down.png')}}"/>
{%endif%}
</td>
{% endif %}
</tr>
<tr>
<td>
{% if tottickets.averagesolvingtime > 0 %}
<a href="{{c.project.url()}}userstats/tickets/">Average tickets solving time</a>
{% else %}
Average tickets solving time
{% endif %}
</td>
<td>
{% if tottickets.averagesolvingtime %}
{{tottickets.averagesolvingtime.days}} days,
{{tottickets.averagesolvingtime.hours}} hours,
{{tottickets.averagesolvingtime.minutes}} min
{% else %}n/a{% endif %}
</td>
<td>n/a</td>
<td>
{% if lastmonthtickets.averagesolvingtime %}
{{lastmonthtickets.averagesolvingtime.days}} days,
{{lastmonthtickets.averagesolvingtime.hours}} hours,
{{lastmonthtickets.averagesolvingtime.minutes}} min
{% else %}n/a{% endif %}
</td>
{% if days >= 30 %}
<td style="text-align:center;">
{% if lastmonthtickets.averagesolvingtime > tottickets.averagesolvingtime %}
<img src="{{g.forge_static('images/up.png')}}"/>
{% elif lastmonthtickets.averagesolvingtime == tottickets.averagesolvingtime %}
<img src="{{g.forge_static('images/equal.png')}}"/>
{% else %}
<img src="{{g.forge_static('images/down.png')}}"/>
{%endif%}
</td>
{% endif %}
</tr>
</tbody>
</table>
{% if categories %}
<h2>Preferred categories</h2>
<p>
The following table shows the number projects tagged as belonging to each single category in which this user is involved.
</p>
<table>
<thead>
<tr>
<th>Category name</th>
<th>Number of projects</th>
</tr>
</thead>
<tbody>
{% for cat, count in categories %}
<tr>
<td><a href="{{c.project.url()}}userstats/category/{{cat.shortname}}">{{cat.fullname}}</a></td>
<td>{{count}}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% if categories|length > 1 %}
<p>
The same data listed in the previous table is graphically presented by the following histogram.
</p>
<p>
<img src="{{c.project.url()}}userstats/categories_graph"/>
</p>
{% endif %}
{% endif %}
{% if not category %}
<h2>Overview</h2>
<table>
<thead>
<tr>
<th>Field</th>
<th>Value</th>
<th>Average per-user value</th>
<th>Maximum per-user value</th>
<th>Rank bar</th>
</tr>
</thead>
<tbody>
<tr>
<td>Code</td>
<td>{{codecontribution}} LOC{% if codecontribution != 1 %}s{% endif %}/month</td>
<td>{{averagecodecontrib}} LOC{% if averagecodecontrib != 1 %}s{% endif %}/month</td>
<td>{{maxcodecontrib}} LOC{% if maxcodecontrib != 1 %}s{% endif %}/month</td>
<td><img src="{{c.project.url()}}userstats/code_ranking_bar"/> {{codepercentage}} %</td>
</tr>
<tr>
<td>Discussion</td>
<td>{{discussioncontribution}} contr./month</td>
<td>{{averagedisccontrib}} contr./month</td>
<td>{{maxdisccontrib}} contr./month</td>
<td><img src="{{c.project.url()}}userstats/discussion_ranking_bar"/> {{discussionpercentage}} %</td>
</tr>
<tr>
<td>Solved issues</td>
<td>{{ticketcontribution}} %</td>
<td>{{averageticketcontrib}} %</td>
<td>{{maxticketcontrib}} %</td>
<td><img src="{{c.project.url()}}userstats/tickets_ranking_bar"/> {{ticketspercentage}} %</td>
</tr>
</tbody>
</table>
<h3>Note</h3>
<p>
The above table compares the average monthly contribution of this user with the average monthly contributions of the
other users of the forge. The progressbar and the percentage refer to the user's position in an overall ranking of the
users of this forge. For example, a value of 100% in the field "Code" is associated to the user who has the highest
average number of committed LOCs per month. Of course, this doesn't consider the quality of the contributions.
</p>
{% endif %}
{% else %}
{% if user %}
<h2>Statistics not available</h2>
<div class="grid-20">
This user has set his or her preferences so that personal statistics are not visible
to other users of the forge.
</div>
{% else %}
<h2>Invalid user</h2>
<div class="grid-20">
You are looking for personal statistics of a user which doesn't exist on this forge. Check your url.
</div>
{% endif %}
{% endif %}
{% endblock %}