diff options
Diffstat (limited to 'template/l2o/mile1.html.j2')
-rw-r--r-- | template/l2o/mile1.html.j2 | 135 |
1 files changed, 135 insertions, 0 deletions
diff --git a/template/l2o/mile1.html.j2 b/template/l2o/mile1.html.j2 new file mode 100644 index 00000000..db0122d3 --- /dev/null +++ b/template/l2o/mile1.html.j2 | |||
@@ -0,0 +1,135 @@ | |||
1 | {% extends "common/base.j2" %} | ||
2 | {% block body_content %} | ||
3 | <article class="container"> | ||
4 | |||
5 | <header> | ||
6 | <h1>{{ _("NGI Assure project: Layer-2-Overlay") }}</h1> | ||
7 | </header> | ||
8 | |||
9 | <div class="row"> | ||
10 | <div class="col-2 d-none d-lg-block"><!-- for large viewports show menu for better orientation --> | ||
11 | <nav class="nav subnav position-fixed flex-column border-right" style="position:fixed"> | ||
12 | <a class="nav-link" href="index.html#idea">{{ _("Project main page") }}</a> | ||
13 | </nav> | ||
14 | </div> | ||
15 | <div class="col"> | ||
16 | |||
17 | <h2>Implementation details milestone 1</h2> | ||
18 | |||
19 | <section> | ||
20 | <h4><a name="netjail" class="subnav-anchor"></a>{{ _("Master Loop") }}</h4> | ||
21 | <p> | ||
22 | {% trans %} | ||
23 | <table width="100%"> | ||
24 | <tr> | ||
25 | <td width="40%" style="vertical-align: top;">src/transport/test_transport_api_cmd_simple_send.c</td><td width="60%" style="vertical-align: top;">Binary for starting the simple send test. Obsolete in current code base!</td> | ||
26 | <tr> | ||
27 | <td></td><td> </td> | ||
28 | </tr> | ||
29 | <tr> | ||
30 | <td width="40%" style="vertical-align: top;">src/testing/netjail_start.sh</td><td width="60%" style="vertical-align: top;">Script to setup the netjail topology. Will be execute by the following command. </td> | ||
31 | </tr> | ||
32 | <tr> | ||
33 | <td width="40%" style="vertical-align: top;">src/testing/testing_api_cmd_netjail_start.c</td><td width="60%" style="vertical-align: top;">Command to create the netjail setup.</td> | ||
34 | <tr> | ||
35 | <td></td><td> </td> | ||
36 | </tr> | ||
37 | <tr> | ||
38 | <td width="40%" style="vertical-align: top;">src/testing/netjail_exec.sh</td><td width="60%" style="vertical-align: top;">Script to execute a local test interpreter per node. Will be execute by the following command.</td> | ||
39 | <tr> | ||
40 | <td></td><td> </td> | ||
41 | </tr> | ||
42 | <tr> | ||
43 | <td width="40%" style="vertical-align: top;">src/testing/testing_api_cmd_netjail_start_testsystem.c</td><td width="60%" style="vertical-align: top;">Command to start the helper processes.</td> | ||
44 | <tr> | ||
45 | <td></td><td> </td> | ||
46 | </tr> | ||
47 | <tr> | ||
48 | <td width="40%" style="vertical-align: top;">src/testing/testing_api_cmd_netjail_stop_testsystem.c</td><td width="60%" style="vertical-align: top;">Command to stop the helper processes.</td> | ||
49 | <tr> | ||
50 | <td></td><td> </td> | ||
51 | </tr> | ||
52 | <tr> | ||
53 | <td width="40%" style="vertical-align: top;">src/testing/netjail_stop.sh</td><td width="60%" style="vertical-align: top;">Script to stop the netjail topology.</td> | ||
54 | <tr> | ||
55 | <td></td><td> </td> | ||
56 | </tr> | ||
57 | <tr> | ||
58 | <td width="40%" style="vertical-align: top;">src/testing/testing_api_cmd_netjail_stop.c</td><td width="60%" style="vertical-align: top;">Command to stop the test setup.</td> | ||
59 | <tr> | ||
60 | <td></td><td> </td> | ||
61 | </tr> | ||
62 | </table> | ||
63 | {% endtrans %} | ||
64 | </p> | ||
65 | <h4><a name="netjail" class="subnav-anchor"></a>{{ _("Local Loop") }}</h4> | ||
66 | <p> | ||
67 | {% trans %} | ||
68 | <table width="100%"> | ||
69 | <tr> | ||
70 | <td width="40%" style="vertical-align: top;">src/testing/gnunet-cmds-helper.c</td><td width="60%" style="vertical-align: top;">Helper to start the local interpreter loop.</td> | ||
71 | <tr> | ||
72 | <td></td><td> </td> | ||
73 | </tr> | ||
74 | <tr> | ||
75 | <td width="40%" style="vertical-align: top;">src/transport/test_transport_plugin_cmd_simple_send.c</td><td width="60%" style="vertical-align: top;">Plugin which creates the cmds for the simple send test case.</td> | ||
76 | </tr> | ||
77 | <tr> | ||
78 | <td width="40%" style="vertical-align: top;">src/testing/testing_api_cmd_system_create.c</td><td width="60%" style="vertical-align: top;">Command to create a local test system.</td> | ||
79 | <tr> | ||
80 | <td></td><td> </td> | ||
81 | </tr> | ||
82 | <tr> | ||
83 | <td width="40%" style="vertical-align: top;">src/transport/transport_api_cmd_start_peer.c</td><td width="60%" style="vertical-align: top;">Command to start a peer.</td> | ||
84 | <tr> | ||
85 | <td></td><td> </td> | ||
86 | </tr> | ||
87 | <tr> | ||
88 | <td width="40%" style="vertical-align: top;">src/transport/transport_api_cmd_connecting_peers.c</td><td width="60%" style="vertical-align: top;"> Command to connect two peers.</td> | ||
89 | <tr> | ||
90 | <td></td><td> </td> | ||
91 | </tr> | ||
92 | <tr> | ||
93 | <td>src/transport/transport_api_cmd_send_simple.c</td><td width="60%" style="vertical-align: top;">Command to send a simple message from one peer to another.</td> | ||
94 | <tr> | ||
95 | <td></td><td> </td> | ||
96 | </tr> | ||
97 | <tr> | ||
98 | <td width="40%" style="vertical-align: top;">src/transport/transport_api_cmd_stop_peer.c</td><td width="60%" style="vertical-align: top;">Command to stop a peer.</td> | ||
99 | <tr> | ||
100 | <td></td><td> </td> | ||
101 | </tr> | ||
102 | <tr> | ||
103 | <td width="40%" style="vertical-align: top;">src/testing/testing_api_cmd_system_destroy.c</td><td width="60%" style="vertical-align: top;">Command to destroy the local test system.</td> | ||
104 | <tr> | ||
105 | <td></td><td> </td> | ||
106 | </tr> | ||
107 | <tr> | ||
108 | <td width="40%" style="vertical-align: top;">src/testing/testing_api_cmd_local_test_finished.c</td><td>Command to send a message to the master loop, if the local loop has finished.</td> | ||
109 | <tr> | ||
110 | </table> | ||
111 | {% endtrans %} | ||
112 | </p> | ||
113 | <h4><a name="netjail" class="subnav-anchor"></a>{{ _("Configuration") }}</h4> | ||
114 | <p> | ||
115 | {% trans %} | ||
116 | <table width="100%"> | ||
117 | <tr> | ||
118 | <td width="40%" style="vertical-align: top;">src/transport/test_transport_api2_tcp_node1.conf</td><td width="60%" style="vertical-align: top;">Configuration for the first node running during the simple send test case.</td> | ||
119 | <tr> | ||
120 | <td></td><td> </td> | ||
121 | </tr> | ||
122 | <tr> | ||
123 | <td width="40%" style="vertical-align: top;">src/transport/test_transport_api2_tcp_node2.conf</td><td width="60%" style="vertical-align: top;">Configuration for the second node running during the simple send test case.</td> | ||
124 | </tr> | ||
125 | </table> | ||
126 | {% endtrans %} | ||
127 | </p> | ||
128 | </section> | ||
129 | |||
130 | |||
131 | </div> | ||
132 | </div> | ||
133 | |||
134 | </article> | ||
135 | {% endblock body_content %} \ No newline at end of file | ||