]> nos-oignons.net Git - website.git/blob - Services.mdwn
Ajustement de la taille
[website.git] / Services.mdwn
1 [[!meta script="assets/l10n.fr"]]
2 [[!meta script="assets/relays"]]
3 [[!meta script="assets/d3/d3.v3.min"]]
4 [[!meta script="assets/bw_graphs"]]
5 [[!meta stylesheet="assets/bw_graphs" rel="stylesheet"]]
6 [[!meta script="assets/pie_graphs"]]
7 [[!meta title="Services"]]
8
9 <script>
10
11 var content = d3.select("#content");
12 var consensus_div = content.append("div")
13 consensus_div.append("div")
14   .attr("id", "consensus-pie")
15   .style("width", PieDrawer.width + "px")
16   .style("height", PieDrawer.height + "px")
17   .style("float", "left");
18 consensus_div.append("div")
19   .style("width", "400px")
20   .style("margin-left", "5px")
21   .style("line-height", PieDrawer.height + "px")
22   .style("font-weight", "bold")
23   .style("float", "left")
24   .text(L10n.consensus_weight);
25
26 var exit_div = content.append("div")
27 exit_div.append("div")
28   .attr("id", "exit-pie")
29   .style("width", PieDrawer.width)
30   .style("height", PieDrawer.height)
31   .style("clear", "left")
32   .style("float", "left");
33 exit_div.append("div")
34   .style("width", "460px")
35   .style("margin-left", "5px")
36   .style("line-height", PieDrawer.height + "px")
37   .style("font-weight", "bold")
38   .style("float", "left")
39   .text(L10n.exit_probability);
40
41 content.append("div")
42   .style("clear", "left");
43
44 new ConsensusPieDrawer("#consensus-pie").draw();
45 new ExitPieDrawer("#exit-pie").draw();
46 </script>
47
48 Relais
49 ======
50
51 Nos oignons fait actuellement fonctionner les relais Tor suivants :
52
53 <table>
54   <thead>
55     <tr>
56       <th>Emplacement</th>
57       <th>Relai</th>
58       <th>Empreinte</th>
59       <th>Politique de sortie</th>
60     </tr>
61   </thead>
62   <tbody>
63     <tr>
64       <td><a href="http://www.liazo.fr/">Liazo</a></td>
65       <td><a href="https://atlas.torproject.org/#details/011FDD1EE84DAC7758119B69829C74A9D197B35E">marcuse1</a><sup>1</sup></td>
66       <td><code>011F DD1E E84D AC77 5811 9B69 829C 74A9 D197 B35E</code></td>
67       <td><a href="https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy">Reduced Exit Policy</a></td>
68     </tr>
69     <tr>
70       <td><a href="http://www.liazo.fr/">Liazo</a></td>
71       <td><a href="https://atlas.torproject.org/#details/1A503BBFFC82A4EFD75DB46A071A7340E11A9DB9">marcuse2</a><sup>2</sup></td>
72       <td><code>1A50 3BBF FC82 A4EF D75D B46A 071A 7340 E11A 9DB9</code></td>
73       <td><a href="https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy">Reduced Exit Policy</a></td>
74     </tr>
75     <tr>
76       <td><a href="https://www.gandi.net/">Gandi</a><sup>3</sup></td>
77       <td><a href="https://atlas.torproject.org/#details/7F2CD6BD548C5FFA09B20A0C5CB07893C9451653">ekumen</a></td>
78       <td><code>7F2C D6BD 548C 5FFA 09B2 0A0C 5CB0 7893 C945 1653</code></td>
79       <td><a href="https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy">Reduced Exit Policy</a></td>
80     </tr>
81   </tbody>
82   <tfoot class="footnotes">
83     <tr>
84       <td colspan="4">
85         1,2 : <code>marcuse1</code> et <code>marcuse2</code> sont sur une même
86         machine. Afin de palier à des limitations techniques du logiciel dans
87         la gestion du multi-cœur, il est nécessaire de faire fonctionner deux
88         relais afin de pouvoir utiliser toute la bande passante disponible.
89       </td>
90     </tr>
91     <tr>
92       <td colspan="4">
93         3 : Gandi nous fournit gracieusement les ressources pour faire tourner
94         ce noeud (machine virtuelle et bande passante).
95       </td>
96     </tr>
97   </tfoot>
98 </table>
99
100 <script>
101 d3.select("#content").append("h1")
102   .text(L10n.bandwidth);
103 d3.select("#content").append("div")
104   .attr("id", "bandwidth")
105   .text(L10n.loading);
106
107 new BwDrawer("#bandwidth").draw();
108 </script>