A third IconStyle for WEP in KLM Files

Post Reply
User avatar
ACalcutt
Vistumbler / TechIdiots Admin
Vistumbler / TechIdiots Admin
Posts: 1302
Joined: Sun Oct 21, 2007 6:50 pm
Location: Rutland, MA
Contact:

Re: A third IconStyle for WEP in KLM Files

Post by ACalcutt »

I could do that... it would require adding in a new searchword for WEP....i'm assuming it varies from language to language. Maybe like an orange X Image
User avatar
ACalcutt
Vistumbler / TechIdiots Admin
Vistumbler / TechIdiots Admin
Posts: 1302
Joined: Sun Oct 21, 2007 6:50 pm
Location: Rutland, MA
Contact:

Re: A third IconStyle for WEP in KLM Files

Post by ACalcutt »

Something like this?
Attachments
05-17-2008 11-38-49.kml
(259.87 KiB) Downloaded 551 times
User avatar
ACalcutt
Vistumbler / TechIdiots Admin
Vistumbler / TechIdiots Admin
Posts: 1302
Joined: Sun Oct 21, 2007 6:50 pm
Location: Rutland, MA
Contact:

Re: A third IconStyle for WEP in KLM Files

Post by ACalcutt »

Ok, I implemented this in Vistumbler 7.44 pre3. If you want to try it out you can download it here http://forum.techidiots.net/forum/viewt ... 1e0bf#p253
User avatar
ACalcutt
Vistumbler / TechIdiots Admin
Vistumbler / TechIdiots Admin
Posts: 1302
Joined: Sun Oct 21, 2007 6:50 pm
Location: Rutland, MA
Contact:

Re: A third IconStyle for WEP in KLM Files

Post by ACalcutt »

Well it looks like the probem you are having is because of the german language file.

In the language file Open and None searchwords are set to this
Open=Geöffnet
None=Kein

But based on the kml file it looks like it should be
Open=Offen
None=Keine

If you can send an actual result file (without modifing it) I can fix that



I am basically doing what you said but opposite. There are more combinations of WPA so its easier to look for the open networks

Code: Select all

If $DataArray_Auth[$i] = $SearchWord_Open And $DataArray_Encr[$i] = $SearchWord_None Then
	$File &= '	<styleUrl>#openStyle</styleUrl>' & @CRLF
ElseIf $DataArray_Encr[$i] = $SearchWord_Wep Then
	$File &= '	<styleUrl>#wepStyle</styleUrl>' & @CRLF
Else
	$File &= '	<styleUrl>#secureStyle</styleUrl>' & @CRLF
EndIf
I re-uploaded 7.5 to fix a small issue with the open and none searchwords so you may want to get the update before messing with the language file

I like the idea of adding a filter into the export kml function, I will work on it
User avatar
ACalcutt
Vistumbler / TechIdiots Admin
Vistumbler / TechIdiots Admin
Posts: 1302
Joined: Sun Oct 21, 2007 6:50 pm
Location: Rutland, MA
Contact:

Re: A third IconStyle for WEP in KLM Files

Post by ACalcutt »

Try this for a language file
Attachments
Deutsch 2.ini
(2.86 KiB) Downloaded 440 times
User avatar
ACalcutt
Vistumbler / TechIdiots Admin
Vistumbler / TechIdiots Admin
Posts: 1302
Joined: Sun Oct 21, 2007 6:50 pm
Location: Rutland, MA
Contact:

Re: A third IconStyle for WEP in KLM Files

Post by ACalcutt »

User avatar
ACalcutt
Vistumbler / TechIdiots Admin
Vistumbler / TechIdiots Admin
Posts: 1302
Joined: Sun Oct 21, 2007 6:50 pm
Location: Rutland, MA
Contact:

Re: A third IconStyle for WEP in KLM Files

Post by ACalcutt »

Good luck fully understanding the code...I swear I don't fully understand what I did sometimes...lol :D

Things I want to work on eventually
-Fixing the graphing so the code actually makes sense, then adding % markings to the side of the graph
-Adding in Copy, Delete, Edit functions
-Trying to get rid of random crashes
-Figure out how to work with the treeview better
-Figure out how to make loading faster, It seems what makes it slow is adding it to the GUI list
-Using GPS data to give more information (like estimated distance)
-Finding a better source of wireless information

And ideas are also always helpful :-)
Post Reply