mapstats |
Subversion Repositories: |
Rev 1 | Rev 9 | |
---|---|---|
Line 1... | Line 1... | |
<html> |
<html> | |
<title>Maptats v3.0 AJAX documentation</title> |
<title>Maptats v4.0 AJAX documentation</title> | |
|
| |
<body> |
<body> | |
<font face="Verdana, Arial, Helvetica" color="#000000" size="2"> |
<font face="Verdana, Arial, Helvetica" color="#000000" size="2"> | |
<font size="+1"><b>Mapstats v3.0 AJAX documentation</b></font><br> |
<font size="+1"><b>Mapstats v4.0 AJAX documentation</b></font><br> | |
Computer and Links Statistics<br><br> |
Computer and Links Statistics<br><br> | |
<object data="../index.html" type="text/html" width="930" height="600" border="0" style="overflow:hidden; _width:910px;"></object> <hr size="1"> |
<iframe src="../mapstats/index.html" width="910" height="580" border="0" frameborder="no" scrolling="no" allowTransparency="true"></iframe> <hr size="1"> | |
|
| |
<font size="3"><b>Basic information</b></font><br> |
<font size="3"><b>Basic information</b></font><br> | |
First of all check out Mapstats homepage if there is newer version available:<br> |
First of all check out Mapstats homepage if there is newer version available:<br> | |
<a href="http://www.jklir.net/jklir_soubory2/index.php3?p=mapstats"> |
<a href="http://www.jklir.net/?p=mapstats">http://www.jklir.net/?p=mapstats</a><br> | |
http://www.jklir.net/jklir_soubory2/index.php3?p=mapstats</a><br> |
||
<br> |
<br> | |
|
| |
Every site stat consist of four to five files. So our testing example will consist of those files:<br> |
Every site stat consist of four to five files. So our testing example will consist of those files:<br> | |
<a href="#nodes">name.nodes</a> - list od computers<br> |
<a href="#nodes">name.nodes</a> - list of computers<br> | |
<a href="#noping">name.noping</a> - list of computers which you can not ping.<br> |
<a href="#noping">name.noping</a> - list of computers which you can not ping.<br> | |
<a href="#links">name.links</a> - list of links between nodes (optional)<br> |
<a href="#links">name.links</a> - list of links between nodes (optional)<br> | |
<a href="#infopoints">name.infopoints</a> - list of info points at map (optional)<br> |
<a href="#infopoints">name.infopoints</a> - list of info points on the map (optional)<br> | |
<a href="#state">name.state</a> - actual state of computers (generated by |
<a href="#state">name.state</a> - actual state of computers (generated by | |
MapStats script)<br> |
Mapstats script)<br> | |
<br> |
<br> | |
<br> |
<br> | |
|
| |
You need to create <i>*.nodes</i> , <i>*.noping</i> and <i>*.links </i> file(s) for every site stat. You can |
You need to create <i>*.nodes</i> , <i>*.noping</i> and <i>*.links </i> file(s) for every site stat. You can | |
place as many sites as you want into mapstats directory or create new directory |
place as many sites as you want into mapstats directory or create new directory | |
Line 49... | Line 48... | |
<li>edit 'name.*' files to match your configuration (sample files are included)</li> |
<li>edit 'name.*' files to match your configuration (sample files are included)</li> | |
<li>add 'gen_mapstats' to cron if you want to generate statistics periodically</li> |
<li>add 'gen_mapstats' to cron if you want to generate statistics periodically</li> | |
</ul> |
</ul> | |
|
| |
<hr size="1"> |
<hr size="1"> | |
|
||
<br> |
||
|
| |
</font><b> |
</font><b> | |
<font face="Verdana, Arial, Helvetica" color="#000000"> |
<font face="Verdana, Arial, Helvetica" color="#000000"> | |
Configuration</font></b><font face="Verdana, Arial, Helvetica" color="#000000" size="2"><br> |
Configuration</font></b><font face="Verdana, Arial, Helvetica" color="#000000" size="2"><br> | |
<br> |
<br> | |
Line 64... | Line 61... | |
<font face="Verdana, Arial, Helvetica" color="#000000" size="2"> |
<font face="Verdana, Arial, Helvetica" color="#000000" size="2"> | |
<script type="text/javascript"><br> |
<script type="text/javascript"><br> | |
<!--<br> |
<!--<br> | |
<br> |
<br> | |
// set full resolution (100%) of map (width and height)<br> |
// set full resolution (100%) of map (width and height)<br> | |
var full_x = 3100;<br> |
var full_x = 5420;<br> | |
var full_y = 2230;<br> |
var full_y = 3696;<br> | |
<br> |
<br> | |
// set outerDiv resolution (width and height)<br> |
// set outerDiv resolution (width and height)<br> | |
var inres_x = 700;<br> |
var inres_x = 700;<br> | |
var inres_y = 500;<br> |
var inres_y = 500;<br> | |
<br> |
<br> | |
// set magnifier resolution (width and height)<br> |
// set magnifier resolution (width and height)<br> | |
var magres_x = 150;<br> |
var magres_x = 150;<br> | |
var magres_y = parseInt(full_y / (full_x / magres_x));<br> |
var magres_y = parseInt(full_y / (full_x / magres_x));<br> | |
<br> |
<br> | |
// set start position (from left and top)<br> |
// set start position (from left and top)<br> | |
var start_left = 110;<br> |
var start_left = 650;<br> | |
var start_top = 50;<br> |
var start_top = 165;<br> | |
<br> |
<br> | |
// set zoom multiple<br> |
// set zoom multiple<br> | |
var eq_mini = 0.33; // 33%<br> |
var eq_mini = 0.2; // 23%<br> | |
var eq_medi = 0.5; // 50%<br> |
var eq_medi = 0.5; // 50%<br> | |
var eq_high = 0.66; // 66%<br> |
var eq_high = 0.7; // 70%<br> | |
var eq_orig = 1; // 100%<br> |
var eq_orig = 1; // 100%<br> | |
<br> |
<br> | |
// set start multiple<br> |
// set start multiple<br> | |
var start_mul = eq_mini;<br> |
var start_mul = eq_mini;<br> | |
<br> |
<br> | |
// set displayed functions<br> |
// set displayed functions<br> | |
Line 142... | Line 139... | |
var name6 = "5 GHz";<br> |
var name6 = "5 GHz";<br> | |
var name7 = "10 GHz";<br> |
var name7 = "10 GHz";<br> | |
var name8 = "Fiber";<br> |
var name8 = "Fiber";<br> | |
var name9 = "Other";<br> |
var name9 = "Other";<br> | |
<br> |
<br> | |
// set name for link in planning (for legend)<br> |
// set name for link in | |
planning (for legend)<br> | ||
var inp = "(InP)";<br> |
var inp = "(InP)";<br> | |
<br> |
<br> | |
// Let's start it<br> |
||
window.onload = function() {<br> |
window.onload = function() {<br> | |
nactiSoubory();<br> |
timerMe();<br> | |
mapInit(start_mul);<br> |
loadFiles();<br> | |
nastavCheck();<br> |
mapInit(start_mul);<br> | |
canvasInit(start_mul);<br> |
setCheckboxes();<br> | |
timerMe();<br> |
canvasInit(start_mul);<br> | |
setAutoLoader();<br> | ||
}<br> |
}<br> | |
<br> |
<br> | |
// --><br> |
// --><br> | |
</script></font></p> |
</script></font></p> | |
<p> |
<p> | |
<font face="Verdana, Arial, Helvetica" color="#000000" size="2"> |
<font face="Verdana, Arial, Helvetica" color="#000000" size="2"> | |
Change it as you wish but be carefull.</p> |
Change it as you wish but be carefull.</font></p> | |
|
| |
<hr size="1"> |
<p><hr size="1"> | |
|
| |
</font> |
||
<p> |
||
<font face="Verdana, Arial, Helvetica" color="#000000"> |
<font face="Verdana, Arial, Helvetica" color="#000000"> | |
<b>Create map</b></font><font face="Verdana, Arial, Helvetica" color="#000000" size="2"><br> |
<b>Create map</b></font><font face="Verdana, Arial, Helvetica" color="#000000" size="2"><br> | |
<br> |
<br> | |
|
| |
You need create you own map. There is 4 scales includes map rects inside (size1 |
You need create you own map. There is 4 scales includes map rects inside (size1 | |
is the smallest, size4 is the biggest) and one directory with thumbnail of map |
is the smallest, size4 is the biggest) and one directory with thumbnail of map | |
(150 x <count> px). In left top corner is the first rect |
(150 x <count> px). In left top corner is the first rect | |
256x256px named "x0y0.jpg". x is column and y is row. Every rect has |
256x256px named "x0y0.jpg". x is the column and y is the row. Every rect has | |
256px width and 256px height. If the width or height of rect is less then 256px, |
256px width and 256px height. If the width or height of rect is less then 256px, | |
the rect will be smaller. The creation is very hard, so I wrote little PHP |
the rect will be smaller. The creation is very hard, so I wrote little PHP | |
script which do it all in +- 3 minutes! You only need the biggest map in jpg |
script which do it all in +- 8 minutes. You only need the biggest map in jpg or png | |
format and configure the function. I recommend size less then 5000 x 5000px. You can download it from <a href="http://www.jklir.net/jklir_soubory2/odkazy/map_cutter.zip">http://www.jklir.net/jklir_soubory2/odkazy/map_cutter.zip</a></p><br> |
format and configure the function. I recommend size less then 10000 x 10000px. You can download it from <a href="http://www.jklir.net/jklir_soubory2/odkazy/map_cutter.zip">http://www.jklir.net/jklir_soubory2/odkazy/map_cutter.zip</a></font></p><br> | |
|
| |
<hr size="1"> |
<p><hr size="1"> | |
|
| |
</font> |
||
<p> |
||
<font face="Verdana, Arial, Helvetica" color="#000000"><b>Display map</b></font><font face="Verdana, Arial, Helvetica" color="#000000" size="2"><br> |
<font face="Verdana, Arial, Helvetica" color="#000000"><b>Display map</b></font><font face="Verdana, Arial, Helvetica" color="#000000" size="2"><br> | |
<br> |
<br> | |
|
| |
The easiest way to display map in existing page is using <object> tag (but |
The easiest way to display map in existing pages is using <iframe> tag</font></p> | |
IE display only white background color)</font></p> |
||
|
| |
<pre id="line77"><font face="Verdana, Arial, Helvetica"><object data="mapstats/index.html" type="text/html" width="930" height="600" border="0" style="overflow:hidden; _width:910px;"></object></font></pre> |
<pre id="line77"><font face="Verdana, Arial, Helvetica" color="#000000" size="2"><iframe src="../mapstats/index.html" width="910" height="580" border="0" frameborder="no" scrolling="no" allowTransparency="true"></iframe><br></pre> | |
|
| |
<pre id="line77"><font face="Verdana, Arial, Helvetica">(<iframe> tag has problems on IE [some points doesnt draw on the start])</font><font face="Verdana, Arial, Helvetica" color="#000000" size="2"><br><br></pre> |
<hr size="1"><hr size="1"> | |
|
| |
<hr size="1"> |
||
|
| |
<a name="nodes"> |
<a name="nodes"></a> | |
<font size="3"><b>*.nodes files</b></font><br> |
<font size="3"><b>*.nodes files</b></font><br> | |
computer_name;position_x;position_y;type;IP_address;e-mail<br> |
computer_name;position_x;position_y;type;IP_address;e-mail<br> | |
<p> |
<p> | |
|
| |
<b>computer_name:</b><br> |
<b>computer_name:</b><br> | |
I dont recommend names with diacritic and special characters. Use entities |
I don't recommend names with diacritic and special characters. Use entities | |
without ";" but be very carefull</p> |
without ";" but be carefull</p> | |
<p> |
<p> | |
|
| |
<b>position_x:</b><br> |
<b>position_x:</b><br> | |
position from left<br> |
position from the left<br> | |
<br> |
<br> | |
|
| |
<b>position_y: </b><br> |
<b>position_y: </b><br> | |
position from top</p> |
position from the top</p> | |
<p> |
<p> | |
|
| |
<b>type:</b><BR> |
<b>type:</b><BR> | |
AP ... display status, IP address and name with point and waves<br> |
AP ... display status, IP address and name with point and waves<br> | |
Router ... display status and name with point<br> |
Router ... display status and name with point<br> | |
Line 229... | Line 221... | |
|
| |
<p> |
<p> | |
|
| |
<font face="Verdana, Arial, Helvetica" color="#000000" size="1"> |
<font face="Verdana, Arial, Helvetica" color="#000000" size="1"> | |
<b><i>Example - name.nodes</i></b><br> |
<b><i>Example - name.nodes</i></b><br> | |
Unreal;1928;451;Client;10.32.135.151;example@example.cz<br> |
Unreal;3163;735;AP;10.32.135.151;example@example.cz<br> | |
Alderan;764;876;Router;10.32.0.146;example@example.cz<br> |
Alderan;1251;1469;Router;10.32.0.146;example@example.cz<br> | |
WESKR;2044;819;Router;10.32.0.141;example@example.cz<br> |
WESKR;3391;1377;Router;10.32.0.141;example@example.cz<br> | |
hapri;1935;1407;Router;10.32.0.142;example@example.cz<br> |
hapri;3190;2330;Router;10.32.0.142;example@example.cz<br> | |
Jark;698;792;AP;10.32.0.140;example@example.cz<br> |
Jark;1133;1322;AP;10.32.0.140;example@example.cz<br> | |
Jelinkova;1246;735;AP;10.32.0.138;example@example.cz<br> |
Jelinkova;2044;1214;AP;10.32.0.138;example@example.cz<br> | |
Tomcat;499;1098;AP;10.32.139.139;example@example.cz<br> |
Tomcat;813;1845;AP;10.32.139.139;example@example.cz<br> | |
Pospa;1931;628;AP;10.32.0.131;example@example.cz<br> |
Pospa;3177;1032;AP;10.32.0.131;example@example.cz<br> | |
Looser;1962;286;AP;10.32.0.135;example@example.cz<br> |
Looser;3220;471;AP;10.32.0.135;example@example.cz<br> | |
Duch;2058;282;Router;10.32.0.157;example@example.cz<br> |
Duch;3375;467;Router;10.32.0.157;example@example.cz<br> | |
Jipe;2022;923;AP;10.32.0.132;example@example.cz<br> |
Jipe;3318;1500;AP;10.32.0.132;example@example.cz<br> | |
Passi;2090;942;Router;10.32.0.134;example@example.cz<br> |
Passi;3465;1568;Router;10.32.0.134;example@example.cz<br> | |
Kozel;2233;1983;AP;10.33.0.1;example@example.cz<br> |
Kozel;3681;3279;AP;10.33.0.1;example@example.cz<br> | |
sluknovska;2897;1239;AP;10.33.0.4;example@example.cz<br> |
sluknovska;4778;2048;AP;10.33.0.4;example@example.cz<br> | |
jabtoc;2935;1447;AP;10.33.0.21;example@example.cz<br> |
jabtoc;4857;2407;AP;10.33.0.21;example@example.cz<br> | |
Jablonecka;3070;1593;AP;10.33.0.2;example@example.cz<br> |
Jablonecka;5077;2642;AP;10.33.0.2;example@example.cz<br> | |
Kyselova;1272;1285;AP;10.32.0.147;example@example.cz</font></font></p> |
Kyselova;2085;2107;AP;10.32.0.147;example@example.cz</font></font></p> | |
|
| |
<font face="Verdana, Arial, Helvetica" color="#000000" size="2"> |
<font face="Verdana, Arial, Helvetica" color="#000000" size="2"> | |
|
| |
<hr size="1"> |
<hr size="1"> | |
|
| |
<a name="noping"> |
<a name="noping"></a> | |
<font size="3"><b>*.noping files</b></font><br> |
<font size="3"><b>*.noping files</b></font><br> | |
computer_name;position_x;position_y;type<br> |
computer_name;position_x;position_y;type<br> | |
<br> |
<br> | |
|
| |
</a><b>computer_name<a name="config">:</a></b><a name="config"><br> |
</a><b>computer_name<a name="config">:</a></b><a name="config"><br> | |
I dont recommend names with diacritic and special characters. Use entities |
I dont recommend names with diacritic and special characters. Use entities | |
without ";" but be very carefull<p> |
without ";" but be carefull<p> | |
|
| |
<b>position_x:</b><br> |
<b>position_x:</b><br> | |
position from left<br> |
position from the left<br> | |
<br> |
<br> | |
|
| |
<b>position_y: </b><br> |
<b>position_y: </b><br> | |
position from top</a></p> |
position from the top</a></p> | |
<p><b>type:</b><br> |
<p><b>type:</b><br> | |
1 ... Client<br> |
1 ... Client<br> | |
2 ... Switch<a name="comp"><br><br> |
2 ... Switch<a name="comp"><br><br> | |
|
| |
|
| |
Line 279... | Line 271... | |
<p>Noping file(s) is for computers which you can not ping<a name="comp"><br> |
<p>Noping file(s) is for computers which you can not ping<a name="comp"><br> | |
<br> |
<br> | |
|
| |
<font face="Verdana, Arial, Helvetica" color="#000000" size="1"> |
<font face="Verdana, Arial, Helvetica" color="#000000" size="1"> | |
<b><i>Example - name.noping</i></b><br> |
<b><i>Example - name.noping</i></b><br> | |
Switch_jipe;2015;891;2<br> |
Switch_jipe;3314;1470;2<br> | |
Havrankova;1705;475;1</font><br> |
Havrankova;2794;794;1</font><br> | |
|
| |
</p> |
</p> | |
|
| |
<hr size="1"> |
<hr size="1"> | |
|
| |
<a name="links"> |
<a name="links"></a> | |
<font size="3"><b>*.links files</b></font><br> |
<font size="3"><b>*.links files</b></font><br> | |
from_name#to_name;link_weight;is_inplanning;type_of_link<p> |
from_name#to_name;link_weight;is_inplanning;type_of_link<p> | |
|
| |
<b>from_name#to_name:</b><br> |
<b>from_name#to_name:</b><br> | |
Put names from nodes or noping file. You can change the name to coordinates or |
Put names from nodes or noping file. You can change the name to coordinates or | |
add next points for the link (useful for creating fiber optic link) example: [</a><font face="Verdana, Arial, Helvetica" color="#000000" size="1">Jipe#1949&931#1928&900#1563&1027#1594&1124#1531&1149</font>]<a name="config"><br> |
add next points for the link (useful for creating fiber optic link) example: [</a><font face="Verdana, Arial, Helvetica" color="#000000" size="1">Jipe#3189&1481#2574&1699#2630&1863#2537&1898</font>]<a name="config"></a><br> | |
<br> |
<br> | |
|
| |
<b>link_weight: </b><br> |
<b>link_weight: </b><br> | |
Client ...</a> tiny line (3px)<br>Backbone ... thick line (4.5px)</p> |
Client ...</a> tiny line (2.7px)<br> | |
Backbone ... thick line (4.1px)</p> | ||
<p> |
<p> | |
|
| |
<b>is_inplanning:</b><br> |
<b>is_inplanning:</b><br> | |
INP ... yes, link id in planning and display transparent<br>NO ... no, link is |
INP ... yes, link is in planning and draw transparent<br> | |
normal and dont display transparent<br> |
NO ... no, link is normal and draw without transparency<br> | |
<br> |
<br> | |
|
| |
<b>type of link:</b><a name="link"><br> |
<b>type of link:</b><a name="link"><br> | |
<b><font class="form" color="#00c800">WiFi Client</font><font class="form">,</font><font class="form" color="#fafa00"> WiFi Backbone</font><font class="form">,</font></b> |
<b><font class="form" color="#00c800">WiFi Client</font><font class="form">,</font><font class="form" color="#fafa00"> WiFi Backbone</font><font class="form">,</font></b> | |
<b><font class="form" color="#64c8ff">ETH</font><font class="form">,</font><font class="form" color="#64c8ff"> |
<b><font class="form" color="#64c8ff">ETH</font><font class="form">,</font><font class="form" color="#64c8ff"> | |
Line 324... | Line 317... | |
7 8 |
7 8 | |
>8<br><br> |
>8<br><br> | |
|
| |
<font face="Verdana, Arial, Helvetica" color="#000000" size="1"> |
<font face="Verdana, Arial, Helvetica" color="#000000" size="1"> | |
<b><i>Example - name.links</i></b><br> |
<b><i>Example - name.links</i></b><br> | |
Looser#Unreal;Client;NO;1<br> |
||
Havrankova#Jipe;Client;NO;1<br> |
Havrankova#Jipe;Client;NO;1<br> | |
Jelinkova#Pospa;Backbone;NO;2<br> |
Jelinkova#Pospa;Backbone;NO;2<br> | |
Jelinkova#Tomcat;Backbone;NO;2<br> |
Jelinkova#Tomcat;Backbone;NO;2<br> | |
Jelinkova#Alderan;Backbone;NO;2<br> |
Jelinkova#Alderan;Backbone;NO;2<br> | |
Jark#Alderan;Backbone;NO;2<br> |
Jark#Alderan;Backbone;NO;2<br> | |
Jipe#Passi;Backbone;NO;2<br> |
Jipe#Passi;Backbone;NO;2<br> | |
jabtoc#Jablonecka;Backbone;NO;3<br> |
jabtoc#Jablonecka;Backbone;NO;3<br> | |
Kyselova#Jark;Backbone;NO;6<br> |
Kyselova#Jark;Backbone;NO;6<br> | |
Looser#Unreal;Backbone;NO;6<br> | ||
Looser#Duch;Backbone;NO;6<br> |
Looser#Duch;Backbone;NO;6<br> | |
Looser#WESKR;Backbone;NO;6<br> |
Looser#WESKR;Backbone;NO;6<br> | |
Jelinkova#WESKR;Backbone;NO;6<br> |
Jelinkova#WESKR;Backbone;NO;6<br> | |
Duch#Jipe;Backbone;NO;6<br> |
Duch#Jipe;Backbone;NO;6<br> | |
Duch#2350&0;Backbone;NO;6<br> |
Duch#3745&0;Backbone;NO;6<br> | |
Jipe#Jablonecka;Backbone;NO;6<br> |
Jipe#Jablonecka;Backbone;NO;6<br> | |
sluknovska#Duch;Backbone;NO;6<br> |
sluknovska#Duch;Backbone;NO;6<br> | |
sluknovska#jabtoc;Backbone;NO;6<br> |
sluknovska#jabtoc;Backbone;NO;6<br> | |
Kyselova#Kozel;Backbone;NO;6<br> |
Kyselova#Kozel;Backbone;NO;6<br> | |
Jelinkova#Kyselova;Backbone;NO;6<br> |
Jelinkova#Kyselova;Backbone;NO;6<br> | |
Jipe#1949&931#1928&900#1563&1027#1594&1124#1531&1149;Backbone;INP;8<br> |
Jipe#3189&1481#2574&1699#2630&1863#2537&1898;Backbone;INP;8<br> | |
hapri#Jipe;Client;INP;1<br> |
hapri#Jipe;Client;INP;1<br> | |
Switch_jipe#Pospa;Backbone;NO;6<br> |
Switch_jipe#Pospa;Backbone;NO;6<br> | |
Switch_jipe#Jipe;Backbone;NO;3</font></p> |
Switch_jipe#Jipe;Backbone;NO;3</font></p> | |
|
| |
</p> |
</p> | |
|
| |
<hr size="1"> |
<hr size="1"> | |
|
| |
</font> |
</font> | |
|
| |
<font face="Verdana, Arial, Helvetica" color="#000000" size="2"> |
<a name="infopoints"></a> | |
|
||
</font> |
||
|
||
<a name="infopoints"> |
||
<font face="Verdana, Arial, Helvetica" color="#000000" size="2"> |
<font face="Verdana, Arial, Helvetica" color="#000000" size="2"> | |
<font size="3"><b>*.infopoints files</b></font><br> |
<font size="3"><b>*.infopoints files</b></font><br> | |
name_of_point;position_x;position_y<br> |
name_of_point;position_x;position_y<br> | |
</font></a><br> |
</a><br> | |
|
||
<font face="Verdana, Arial, Helvetica" color="#000000" size="2"> |
||
|
| |
<b>name_of_point:</b><br> |
<b>name_of_point:</b><br> | |
I dont recommend names with diacritic and special characters. Use entities |
I don't recommend names with diacritic and special characters. Use entities | |
without ";" but be very carefull<p> |
without ";" but be carefull<p> | |
|
| |
<b>position_x:</b><br> |
<b>position_x:</b><br> | |
position from left<br> |
position from the left<br> | |
<br> |
<br> | |
|
| |
<b>position_y: </b><br> |
<b>position_y: </b><br> | |
position from top<br><br> |
position from the top<br><br> | |
|
| |
|
| |
<font face="Verdana, Arial, Helvetica" color="#000000" size="1"> |
<font face="Verdana, Arial, Helvetica" color="#000000" size="1"> | |
<b><i>Example - name.infopoints</i></b><br> |
<b><i>Example - name.infopoints</i></b><br> | |
</font> |
Restaurace Na Vyhlidce;1091;1348<br> | |
</font> |
Vinarna U Kocoura;1231;1719<br> | |
<font face="Verdana, Arial, Helvetica" size="1">Restaurace Na |
Bar Las Vegas;2530;1989<br> | |
Vyhlidce;673;804<br> |
Bar Wild Jack;2453;2041<br> | |
Vinarna U Kocoura;762;1054<br> |
Restaurace Na Melnicke;3324;983<br> | |
Bar Las Vegas;1536;1198<br> |
Pizzerie Trebenicka;3665;1659<br> | |
Bar Wild Jack;1490;1228<br> |
Zernosecka;2652;1218<br> | |
Restaurace Na Melnicke;2021;600<br> |
Pizzerie Severka;5098;2678</font></p> | |
Zernosecka;1614;736</font></p> |
||
<font face="Verdana, Arial, Helvetica" color="#000000" size="2"> |
||
|
| |
<hr size="1"> |
<hr size="1"> | |
|
| |
</font> |
||
<font face="Verdana, Arial, Helvetica" color="#000000" size="2"> |
<font face="Verdana, Arial, Helvetica" color="#000000" size="2"> | |
|
| |
<a name="state"> |
<a name="state"></a> | |
<font size="3"><b>*.state files</b></font><br> |
<font size="3"><b>*.state files</b></font><br> | |
ip_address;number_of_pings_received(if >0 => computer is green, otherwise red);latency<br> |
ip_address;number_of_pings_received(if >0 => computer is green, otherwise red);latency<br> | |
<br> |
<br> | |
|
| |
<font face="Verdana, Arial, Helvetica" color="#000000" size="1"> |
<font face="Verdana, Arial, Helvetica" color="#000000" size="1"> | |
Line 426... | Line 410... | |
</font> |
</font> | |
<br> |
<br> | |
|
| |
<hr size="1"> |
<hr size="1"> | |
|
| |
(c)2008 by <a href="http://www.jklir.net">Unreal][</a> & <a href="http://www.mobilnews.cz/honza/en_prog_linux_calstats.php">Jan Krupa</a>.<br> |
(c)2011 by <a href="http://www.jklir.net">Unreal][</a> & <a href="http://www.mobilnews.cz/honza/calstats">Jan Krupa</a>.<br> | |
<br> |
<br> | |
|
| |
</font> |
</font> | |
</body> |
</body> | |
</html> |
</html> |