blob: 3f0c8970a52a04759603d7dbc15558ab35d5a55c (
plain) (
blame)
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
|
{% extends "common/base.j2" %}
{% block body_content %}
<div class="jumbotron">
<div class="text-center">
<h1>{{ _("GNUnet for developers") }}</h1>
</div>
</div>
<div class="container-fluid c_acronym">
<div class="container">
<div class="row">
<div class="col-lg-4">
<h3>{{ _("Repositories") }}</h3>
<p>
{% trans %}
A list of our Git
repositories can be found in
our <a href="https://gnunet.org/git/">GitWeb</a>.
{% endtrans %}
</p>
</div>
<div class="col-lg-4">
<h3>{{ _("Bibliography") }}</h3>
<p>
{% trans %}
Technical papers can be found in
our <a href="https://old.gnunet.org/bibliography">bibliography</a>.
{% endtrans %}
</p>
</div>
<div class="col-lg-4">
<h3>{{ _("Discussion") }}</h3>
<p>
{% trans %}
We have a mailing list for developer discussions.
You can subscribe to or read the list archive at
<a href="http://lists.gnu.org/mailman/listinfo/gnunet-developers">http://lists.gnu.org/mailman/listinfo/gnunet-developers</a>.
{% endtrans %}
</p>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<h3>{{ _("Regression Testing") }}</h3>
<p>
{% trans %}
We have <a href="https://buildbot.net/">Buildbot</a>
automation tests to detect regressions and check for
portability at <a
href="https://gnunet.org/buildbot/gnunet/">https://gnunet.org/buildbot/gnunet/</a>.
{% endtrans %}
</p>
</div>
<div class="col-lg-4" note="not yet operational">
<h3>{{ _("Code Coverage Analysis") }}</h3>
<p>
{% trans %}
We use
<a href="http://ltp.sourceforge.net/coverage/lcov.php">LCOV</a>
to analyze the code coverage of our tests, the
results are available
at <a href="https://gnunet.org/coverage/">https://gnunet.org/coverage/</a>.
{% endtrans %}
</p>
</div>
<div class="col-lg-4">
<h3>{{ _("Performance Analysis") }}</h3>
<p>
{% trans %}
We
use <a href="https://gnunet.org/gauger">Gauger</a>
for performance regression analysis of the exchange
backend
at <a href="https://gnunet.org/gauger/">https://gnunet.org/gauger/</a>.
{% endtrans %}
</p>
</div>
</div>
</div>
</div>
{% endblock body_content %}
|