]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commit
introweb: fix connection hints for server announcements 190/head
authorBrian Warner <warner@lothar.com>
Tue, 22 Sep 2015 23:37:12 +0000 (16:37 -0700)
committerBrian Warner <warner@lothar.com>
Wed, 23 Sep 2015 00:19:52 +0000 (17:19 -0700)
commit67dcedd8df386905a60757f91d70440da8328be4
tree486b7c1cd3302f8e5b76102a024a1b75e5b08994
parent8f0c417910ac5eb0a3b8cde1fa11d571755dbf06
introweb: fix connection hints for server announcements

A long time ago, the introducer's status web page would show the
advertised IP addresses for all published services, by parsing their
FURL's connection hints. This hasn't worked since about 12-Aug-2014 when
foolscap-0.6.5 changed the internal format of these hints (the column
has been empty this whole time).

This removes the "Advertised IPs" column from the Service Announcements
table. Instead, the service's full connection hints (not just the IP
address) is displayed in a tooltip/popup on the "Announced" timestamp
column.

The code that pulls these connection hints is now tolerant of all three
foolscap styles:

* foolscap<=0.6.4 : tuples of ("ipv4",host,port)
* 0.6.5 .. 0.8.0  : tuples of ("tcp",host,port)
* foolscap>=0.9.0 : strings

fixes ticket:2510
src/allmydata/introducer/common.py
src/allmydata/test/test_introducer.py
src/allmydata/util/rrefutil.py
src/allmydata/web/introducer.xhtml
src/allmydata/web/introweb.py