[tor-commits] [vidalia/alpha] Display node fp in the network map

chiiph at torproject.org chiiph at torproject.org
Tue Jul 3 23:19:13 UTC 2012


commit 4fdc1b330e77f6f878c77a9eb04e748a4ef8e568
Author: Tomás Touceda <chiiph at torproject.org>
Date:   Tue Jul 3 20:18:32 2012 -0300

    Display node fp in the network map
---
 changes/bug2726                              |    3 +++
 src/vidalia/network/RouterDescriptorView.cpp |    1 +
 2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/changes/bug2726 b/changes/bug2726
new file mode 100644
index 0000000..fbe2380
--- /dev/null
+++ b/changes/bug2726
@@ -0,0 +1,3 @@
+  New features:
+  o Display node fingerprint in the details panel in the Network Map. Resolves
+    ticket 2726.
diff --git a/src/vidalia/network/RouterDescriptorView.cpp b/src/vidalia/network/RouterDescriptorView.cpp
index 2ef48eb..22116c8 100644
--- a/src/vidalia/network/RouterDescriptorView.cpp
+++ b/src/vidalia/network/RouterDescriptorView.cpp
@@ -106,6 +106,7 @@ RouterDescriptorView::display(QList<RouterDescriptor> rdlist)
 
     /* Add the IP address and router platform information */
     html.append(trow(tcol(b(tr("IP Address:"))) + tcol(rd.ip().toString())));
+    html.append(trow(tcol(b(tr("Fingerprint:"))) + tcol(rd.id())));
     if(!rd.platform().isEmpty())
       html.append(trow(tcol(b(tr("Platform:")))   + tcol(rd.platform())));
 



More information about the tor-commits mailing list