aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authort3sserakt <t3ss@posteo.de>2023-08-03 19:25:36 +0200
committert3sserakt <t3ss@posteo.de>2023-08-03 19:25:36 +0200
commitae05f52fc67a53db3e5683552c40a3dc6982b8fd (patch)
treeb68ad46db1d08ccf92a03d0816152686036140e2
parent94c59cf1df9cea07b17b41662f852da46da9b229 (diff)
downloadwww-ae05f52fc67a53db3e5683552c40a3dc6982b8fd.tar.gz
www-ae05f52fc67a53db3e5683552c40a3dc6982b8fd.zip
Added detail page for finished milestone 8
-rw-r--r--template/l2o/index.html.j22
-rw-r--r--template/l2o/mile8.html.j286
2 files changed, 87 insertions, 1 deletions
diff --git a/template/l2o/index.html.j2 b/template/l2o/index.html.j2
index e859f70f..9bccae22 100644
--- a/template/l2o/index.html.j2
+++ b/template/l2o/index.html.j2
@@ -244,7 +244,7 @@ being usable for its basic functionality (DHT, GNS, CADET, FS, Messenger …).
244 <h4>Deliverable</h4><br/> 244 <h4>Deliverable</h4><br/>
245 <p> 245 <p>
246 {% trans %} 246 {% trans %}
247 GNUnet running with new API. 247 GNUnet running with new API. More <a href="mile8.html">Details</a>.
248 {% endtrans %} 248 {% endtrans %}
249 </p><br/> 249 </p><br/>
250 </section> 250 </section>
diff --git a/template/l2o/mile8.html.j2 b/template/l2o/mile8.html.j2
new file mode 100644
index 00000000..8af78816
--- /dev/null
+++ b/template/l2o/mile8.html.j2
@@ -0,0 +1,86 @@
1 {% extends "common/base.j2" %}
2{% block body_content %}
3<main id="maincontent">
4<article class="container">
5
6 <header>
7 <h1>{{ _("NGI Assure project: Layer-2-Overlay") }}</h1>
8 </header>
9
10 <div class="row">
11 <div class="col-2 d-none d-lg-block"><!-- for large viewports show menu for better orientation -->
12 <nav class="nav subnav position-fixed flex-column border-right" style="position:fixed">
13 <a class="nav-link" href="index.html#idea">{{ _("Project main page") }}</a>
14 </nav>
15 </div>
16 <div class="col">
17
18 <h2>Implementation details milestone 8</h2><br/>
19
20 <section>
21 <h4>{{ _("Added command to execute a script") }}</h4><br/>
22 <p>
23 {% trans %}
24 A command to start any kind of script was added. As of now this command blocks until the script finished. In the context of this milestone this command is later used to execute a script which blocks until it finds a specific file.</br></br>
25
26 See branch l20integration revision 40a5a65.
27 {% endtrans %}
28 </p>
29 </section>
30 <section>
31 <h4>{{ _("Added generic start script for test cases") }}</h4><br/>
32 <p>
33 {% trans %}
34 We do not want to have a specific start script for every test case. This start script asks for a test case configuration to use.</br></br>
35
36 See branch l20integration revision 80971b6.
37 {% endtrans %}
38 </p>
39 </section>
40 <section>
41 <h4>{{ _("Moved start peer command to testing subsystem") }}</h4><br/>
42 <p>
43 {% trans %}
44 A start script was added, that can be used by test cases in all subsystems, and which starts the new transport subsystem.</br></br>
45
46 See branch l20integration revision 03a5d17.
47 {% endtrans %}
48 </p>
49 </section>
50 <section>
51 <h4>{{ _("Added Testcase that just runs two peers, and blocks") }}</h4><br/>
52 <p>
53 {% trans %}
54 This testcase just runs to peers with the new transport subsystem and runs the command that executes a script that blocks until </br></br>
55
56 See branch l20integration revision 4ba7b5f.
57 {% endtrans %}
58 </p>
59 </section>
60 <section>
61 <h4>{{ _("Manually testing") }}</h4><br/>
62 <p>
63 {% trans %}
64 With the above mentioned test case, it was possible to get GNUnet running with the new transport (L2O) subsystem, do manually testing. Some bugs were already fixed:</br></br>
65 <ul>
66 <li>Fixed bug that core subsystem is not calling GNUNET_TRANSPORT_core_receive_continue. See branch l20integration revision 61bbc04.</li>
67 <li>Fixed bug that QueueEntry of another queue still holds reference to PendingMessage. See branch l20integration revision aec63bf.</li>
68 </ul>
69 {% endtrans %}
70 </p>
71 </section>
72 <section>
73 <h4>{{ _("Status") }}</h4><br/>
74 <p>
75 {% trans %}
76 The core and cadet subsystems were manually tested regarding integration with transport. They are boh working.
77
78 Next subsystems to test: dhtu, fs and topology.
79 {% endtrans %}
80 </p>
81 </section>
82 </div>
83 </div>
84
85</article>
86{% endblock body_content %}