aboutsummaryrefslogtreecommitdiff
path: root/template/roadmap.html.j2
blob: 51cc6fcc538008ae30b758cea7f0122e63532bcc (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
{% extends "common/base.j2" %}
{% block body_content %}
<div class="container">
  <div class="row">
    <div class="container text-center">
      <h1>{{ _("Roadmap") }}</h1>
      <section>
        <p>
         This is our roadmap.
        </p>
      </section>
    </div>
    <ul class="timeline">
      <li>
        <section class="item-preview">
          <header>
            <h3>Short term</h3>
            <p class="item-date">
            0.13.x
            </p>
            <p class="item-abstract">
            <ul>
              <li>Setup and use names and numbers registration (GANA) for GNUnet
              subsystems.</li>
              <li>GNU Name System technical specification.</li>
             </ul>
            </p>
          </header>
          </p>
        </section>
      </li>
      <li>
        <section class="item-preview">
          <header>
            <h3>Medium term</h3>
            <p class="item-date">
            0.14 and beyond
            </p>
            <p class="item-abstract">
            <ul>
              <li>TNG: Transport rewrite complete including basic service, communicators and NAT.</li>
              <li>CORE/CADET performance and correctness improvements.</li>
              <li>DHT improvements including signed paths and stability improvements.</li>
              <li>SET improvements to code quality and correctness.</li>
              <li>CONVERSATION improvements to performance, latency hiding and usability.</li>
              <li>Stable and usable documentation.</li>
              <li>GNUnet packages available and up-to-date in distributions.</li>
             </ul>
            </p>
          </header>
          </p>
        </section>
      </li>
      <li>
        <section class="item-preview">
          <header>
            <h3>Long term</h3>
            <p class="item-date">
            1.x
            </p>
            <p class="item-abstract">
            <ul>
              <li>Stable release.</li>
              <li>Onion routing with RPS</li>
              <li>Mix network, pEp integration on top of mix network</li>
              <li>Collaborative filtering / news distribution</li>
              <li>Improved FS design, proper integration with GNS</li>
             </ul>
            </p>
          </header>
          </p>
        </section>
      </li>

    </ul>
  </div>
</div>

{% endblock body_content %}