read nickname from wiki
parent
1a5f5f745b
commit
03853a8ac0
|
@ -33,6 +33,8 @@ db.import_batman(list(fileinput.input(options['batmanjson'])))
|
||||||
if options['aliases']:
|
if options['aliases']:
|
||||||
db.import_aliases(json.load(open(options['aliases'])))
|
db.import_aliases(json.load(open(options['aliases'])))
|
||||||
|
|
||||||
|
db.import_wikigps("http://freifunk.metameute.de/Knoten")
|
||||||
|
|
||||||
if options['gateway']:
|
if options['gateway']:
|
||||||
db.mark_gateways(options['gateway'])
|
db.mark_gateways(options['gateway'])
|
||||||
|
|
||||||
|
|
|
@ -190,8 +190,9 @@ class NodeDB:
|
||||||
|
|
||||||
macs = [s for s in [s.strip() for s in node['MAC'].split(',')] if s]
|
macs = [s for s in [s.strip() for s in node['MAC'].split(',')] if s]
|
||||||
gps = [s for s in [s.strip() for s in node['GPS'].split(',')] if s]
|
gps = [s for s in [s.strip() for s in node['GPS'].split(',')] if s]
|
||||||
|
names = [s for s in [s.strip() for s in node['Nick'].split(',')] if s]
|
||||||
|
|
||||||
for pair in zip(macs, gps):
|
for pair in zip(macs, gps, names):
|
||||||
try:
|
try:
|
||||||
node = self.maybe_node_by_mac((pair[0], ))
|
node = self.maybe_node_by_mac((pair[0], ))
|
||||||
except:
|
except:
|
||||||
|
@ -199,6 +200,9 @@ class NodeDB:
|
||||||
node.add_mac(pair[0])
|
node.add_mac(pair[0])
|
||||||
self._nodes.append(node)
|
self._nodes.append(node)
|
||||||
|
|
||||||
|
if pair[2]:
|
||||||
|
node.name = pair[2]
|
||||||
|
|
||||||
node.gps = pair[1]
|
node.gps = pair[1]
|
||||||
|
|
||||||
def find_link(self, i):
|
def find_link(self, i):
|
||||||
|
|
Loading…
Reference in New Issue