]> nos-oignons.net Git - website.git/blobdiff - Services.mdwn
Ajout POOP
[website.git] / Services.mdwn
index 928b4064563cc85d82797915de7f3f14e98d764f..9bb655e0b187518dee87d370b206b65dbccccb75 100644 (file)
@@ -2,7 +2,9 @@
 [[!meta script="assets/relays"]]
 [[!meta script="assets/d3/d3.v3.min"]]
 [[!meta script="assets/bw_graphs"]]
-[[!meta stylesheet="assets/bw_graphs" rel="stylesheet"]]
+[[!meta stylesheet="assets/bw_graphs" rel="stylesheet" title="graphs"]]
+[[!meta script="assets/weights_graphs"]]
+[[!meta stylesheet="assets/weights_graphs" rel="stylesheet" title="graphs"]]
 [[!meta script="assets/pie_graphs"]]
 [[!meta title="Services"]]
 
 
 var content = d3.select("#content");
 var consensus_figure = content.append("figure")
-  .style("margin", "0")
-  .style("width", "45%")
-  .style("float", "left")
-  .style("text-align", "center");
+  .attr('class', 'graph graph-consensus')
 consensus_figure.append("span")
   .attr("id", "consensus-pie");
 consensus_figure.append("figcaption")
   .text(L10n.consensus_weight);
 
 var exit_figure = content.append("figure")
-  .style("margin", "0 5% 0 0")
-  .style("width", "44%")
-  .style("float", "left")
-  .style("text-align", "center");
+  .attr('class', 'graph graph-exit')
 exit_figure.append("span")
   .attr("id", "exit-pie");
 exit_figure.append("figcaption")
@@ -41,7 +37,7 @@ Relais
 
 Nos oignons fait actuellement fonctionner les relais Tor suivants :
 
-<table>
+<table class="tor-nodes">
   <thead>
     <tr>
       <th>Emplacement</th>
@@ -71,17 +67,23 @@ Nos oignons fait actuellement fonctionner les relais Tor suivants :
     </tr>
     <tr>
       <td><a href="https://tetaneutral.net/">tetaneutral.net</a></td>
-      <td><a href="https://atlas.torproject.org/#details/578E007E5E4535FBFEF7758D8587B07B4C8C5D06">marylou</a></td>
+      <td><a href="https://atlas.torproject.org/#details/578E007E5E4535FBFEF7758D8587B07B4C8C5D06">marylou1</a><sup>4</sup></td>
       <td><code>578E 007E 5E45 35FB FEF7 758D 8587 B07B 4C8C 5D06</code></td>
       <td><a href="https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy">Reduced Exit Policy</a></td>
     </tr>
+    <tr>
+      <td><a href="https://tetaneutral.net/">tetaneutral.net</a></td>
+      <td><a href="https://atlas.torproject.org/#details/90FD830C357A5109AB3C505287713F1AC811174C">marylou2</a><sup>5</sup></td>
+      <td><code>90FD 830C 357A 5109 AB3C 5052 8771 3F1A C811 174C</code></td>
+      <td><a href="https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy">Reduced Exit Policy</a></td>
+    </tr>
 
   </tbody>
   <tfoot class="footnotes">
     <tr>
       <td colspan="4">
         1,2 : <code>marcuse1</code> et <code>marcuse2</code> sont sur une même
-        machine. Afin de palier à des limitations techniques du logiciel dans
+        machine. Afin de pallier à des limitations techniques du logiciel dans
         la gestion du multi-cœur, il est nécessaire de faire fonctionner deux
         relais afin de pouvoir utiliser toute la bande passante disponible.
       </td>
@@ -91,6 +93,14 @@ Nos oignons fait actuellement fonctionner les relais Tor suivants :
         3 : Gandi nous fournit gracieusement la bande passante pour faire tourner
         ce noeud.
       </td>
+      </tr>
+       <tr>
+      <td colspan="4">
+        4,5 : <code>marylou1</code> et <code>marylou2</code> sont sur une même
+        machine. Afin de pallier à des limitations techniques du logiciel dans
+        la gestion du multi-cœur, il est nécessaire de faire fonctionner deux
+        relais afin de pouvoir utiliser toute la bande passante disponible.
+      </td>
     </tr>
   </tfoot>
 </table>
@@ -103,4 +113,12 @@ d3.select("#content").append("div")
   .text(L10n.loading);
 
 new BwDrawer("#bandwidth").draw();
+
+d3.select("#content").append("h1")
+  .text(L10n.weights);
+d3.select("#content").append("div")
+  .attr("id", "weights")
+  .text(L10n.loading);
+
+new WeightsDrawer("#weights").draw();
 </script>