-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WifiAnalyzer: add fff- before the alias name in the WifiAnalyzer_Alias.txt list #189
Comments
Finde ich jetzt nicht so geil, da meine Router alle so benannt sind, dass sie mit FFF anfangen. Ich würde das nur dann umsetzen, wenn sich hier entsprechende Unterstützung für deinen Vorschlag zeigt, die du natürlich gerne organisieren darfst. |
Hmmm,
hab leider noch nie was mit git gemacht :(
glaub so müsste das aussehn, falls du bock hast das reinzukloppen...
greetz,
manu.
https://github.com/FreifunkFranken/fff-monitoring/blob/master/ffmap/web/api.py
ab zeile 301:
if router["netif"] == 'br-mesh':
s += int2mac(router["mac"]) + "|Mesh_" + router['hostname'] + "\n"
elif router["netif"] == 'w2ap':
s += int2mac(router["mac"]) + "|" + router['hostname'] + "\n"
elif router["netif"] == 'w5ap':
s += int2mac(router["mac"]) + "|W5_" + router['hostname'] + "\n"
elif router["netif"] == 'w5mesh':
s += int2mac(router["mac"]) + "|W5Mesh_" + router['hostname'] + "\n"
in das ändern:
if router["netif"] == 'br-mesh':
s += int2mac(router["mac"]) + "|fff-Mesh_" + router['hostname'] + "\n"
elif router["netif"] == 'w2ap':
s += int2mac(router["mac"]) + "|fff-" + router['hostname'] + "\n"
elif router["netif"] == 'w5ap':
s += int2mac(router["mac"]) + "|fff-W5_" + router['hostname'] + "\n"
elif router["netif"] == 'w5mesh':
s += int2mac(router["mac"]) + "|fff-W5Mesh_" + router['hostname'] + "\n"
Am 14.03.2019 19:35, schrieb Adrian Schmutzler:
Finde ich jetzt nicht so geil, da meine Router alle so benannt sind, dass sie mit FFF anfangen.
Ich würde das nur dann umsetzen, wenn sich hier entsprechende Unterstützung für deinen Vorschlag zeigt, die du natürlich gerne organisieren darfst.
--
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub [1], or mute the thread [2].
|
Ich glaube, das war ein Missverständnis. Die technische Umsetzung ist kein Problem, ich finde es nur ein nicht schön, vor alle Namen fff- zu schreiben, wenn bei mir eh schon FFF- davor steht. Und dann lauter ifs für sowas zu bauen finde ich übertrieben. Ich lass die Sache erstmal liegen und denke gelegentlich nochmal drüber nach. Wenn du jetzt 100 Unterstützer hast, die sowas auch wollen, kannst du mich aber natürlich leichter davon überzeugen, dass das nötig ist. |
It would be cool if anybody can add fff- before the alias name in the WifiAnalyzer_Alias.txt list - so that you can see a difference between fff-routers and the others
The text was updated successfully, but these errors were encountered: