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" title="graphs"]]
 
   6 [[!meta script="assets/weights_graphs"]]
 
   7 [[!meta stylesheet="assets/weights_graphs" rel="stylesheet" title="graphs"]]
 
   8 [[!meta script="assets/pie_graphs"]]
 
   9 [[!meta title="Services"]]
 
  13 var content = d3.select("#content");
 
  14 var consensus_figure = content.append("figure")
 
  15   .attr('class', 'graph graph-consensus')
 
  16 consensus_figure.append("span")
 
  17   .attr("id", "consensus-pie");
 
  18 consensus_figure.append("figcaption")
 
  19   .text(L10n.consensus_weight);
 
  21 var exit_figure = content.append("figure")
 
  22   .attr('class', 'graph graph-exit')
 
  23 exit_figure.append("span")
 
  24   .attr("id", "exit-pie");
 
  25 exit_figure.append("figcaption")
 
  26   .text(L10n.exit_probability);
 
  29   .style("clear", "left");
 
  31 new ConsensusPieDrawer("#consensus-pie").draw();
 
  32 new ExitPieDrawer("#exit-pie").draw();
 
  38 Nos oignons fait actuellement fonctionner les relais Tor suivants :
 
  40 <table class="tor-nodes">
 
  46       <th>Politique de sortie</th>
 
  51       <td><a href="http://www.liazo.fr/">Liazo</a></td>
 
  52       <td><a href="https://atlas.torproject.org/#details/EFAE44728264982224445E96214C15F9075DEE1D">marcuse1</a><sup>1</sup></td>
 
  53       <td><code>EFAE 4472 8264 9822 2444 5E96 214C 15F9 075D EE1D</code></td>
 
  54       <td><a href="https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy">Reduced Exit Policy</a></td>
 
  57       <td><a href="http://www.liazo.fr/">Liazo</a></td>
 
  58       <td><a href="https://atlas.torproject.org/#details/C656B41AEFB40A141967EBF49D6E69603C9B4A11">marcuse2</a><sup>2</sup></td>
 
  59       <td><code>C656 B41A EFB4 0A14 1967 EBF4 9D6E 6960 3C9B 4A11</code></td>
 
  60       <td><a href="https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy">Reduced Exit Policy</a></td>
 
  63       <td><a href="https://www.gandi.net/">Gandi</a><sup>3</sup></td>
 
  64       <td><a href="https://atlas.torproject.org/#details/9BA84E8C90083676F86C7427C8D105925F13716C">ekumen</a></td>
 
  65       <td><code>9BA8 4E8C 9008 3676 F86C 7427 C8D1 0592 5F13 716C</code></td>
 
  66       <td><a href="https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy">Reduced Exit Policy</a></td>
 
  69       <td><a href="https://tetaneutral.net/">tetaneutral.net</a></td>
 
  70       <td><a href="https://atlas.torproject.org/#details/578E007E5E4535FBFEF7758D8587B07B4C8C5D06">marylou1</a><sup>4</sup></td>
 
  71       <td><code>578E 007E 5E45 35FB FEF7 758D 8587 B07B 4C8C 5D06</code></td>
 
  72       <td><a href="https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy">Reduced Exit Policy</a></td>
 
  75       <td><a href="https://tetaneutral.net/">tetaneutral.net</a></td>
 
  76       <td><a href="https://atlas.torproject.org/#details/90FD830C357A5109AB3C505287713F1AC811174C">marylou2</a><sup>5</sup></td>
 
  77       <td><code>90FD 830C 357A 5109 AB3C 5052 8771 3F1A C811 174C</code></td>
 
  78       <td><a href="https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy">Reduced Exit Policy</a></td>
 
  81       <td><a href="http://www.globenet.org/">Globenet</a></td>
 
  82       <td><a href="https://atlas.torproject.org/#details/8E6EDA78D8E3ABA88D877C3E37D6D4F0938C7B9F">AlGrothendieck</a><sup>5</sup></td>
 
  83       <td><code>8E6E DA78 D8E3 ABA8 8D87 7C3E 37D6 D4F0 938C 7B9F</code></td>
 
  84       <td><a href="https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy">Reduced Exit Policy</a></td>
 
  88   <tfoot class="footnotes">
 
  91         1,2 : <code>marcuse1</code> et <code>marcuse2</code> sont sur une même
 
  92         machine. Afin de pallier à des limitations techniques du logiciel dans
 
  93         la gestion du multi-cœur, il est nécessaire de faire fonctionner deux
 
  94         relais afin de pouvoir utiliser toute la bande passante disponible.
 
  99         3 : Gandi nous fournit gracieusement la bande passante pour faire tourner
 
 105         4,5 : <code>marylou1</code> et <code>marylou2</code> sont sur une même
 
 106         machine. Afin de pallier à des limitations techniques du logiciel dans
 
 107         la gestion du multi-cœur, il est nécessaire de faire fonctionner deux
 
 108         relais afin de pouvoir utiliser toute la bande passante disponible.
 
 115 d3.select("#content").append("h1")
 
 116   .text(L10n.bandwidth);
 
 117 d3.select("#content").append("div")
 
 118   .attr("id", "bandwidth")
 
 121 new BwDrawer("#bandwidth").draw();
 
 123 d3.select("#content").append("h1")
 
 125 d3.select("#content").append("div")
 
 126   .attr("id", "weights")
 
 129 new WeightsDrawer("#weights").draw();