File: ChangeLog

package info (click to toggle)
gnome-nettool 2.22.0-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 4,664 kB
  • ctags: 564
  • sloc: sh: 9,069; ansic: 5,421; xml: 684; makefile: 133
file content (2029 lines) | stat: -rw-r--r-- 61,186 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2008-03-10  Rodrigo Moya <rodrigo@gnome-db.org>

	* NEWS:
	* configure.in: release 2.22.0.

2008-01-11  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>

	* src/main.c: (nettool_lookup_setup_combo_type):
	Translated dns lookup type. See bug #508610.

2007-10-25  German Poo-Caamano <gpoo@ubiobio.cl>

	* src/mii.h: Replaced SIOCGMIIPHY definitions by including
	  linux/sockios.h, which can keep more updated than our
	  definitions. Fixed #451925 (Patch by Narenda K).

2007-09-18  German Poo-Caamano <gpoo@ubiobio.cl>

	* configure.in:
	* pixmaps/icons/24x24/Makefile.am: 
	* pixmaps/icons/24x24/apps/Makefile.am: 
	* pixmaps/icons/24x24/apps/gnome-nettool:
	* pixpams/icons/Makefile.am: Added icon with size 24x24
	  Fixed #470264
	* configure.in: Updated target version to 2.21.0

2007-09-17  German Poo-Caamano <gpoo@ubiobio.cl>

	Released 2.20.0.

2007-08-13  German Poo-Caamano <gpoo@ubiobio.cl>

	* src/scan.c: Fixed #467467.  Changed the total number of 
	  ports to scan to 65535.

2007-08-13  German Poo-Caamano <gpoo@ubiobio.cl>

	Released 2.19.90.

2007-08-13  German Poo-Caamano <gpoo@ubiobio.cl>

	* MAINTAINERS: Updated to new format requested by 
	  Olav Vitters.

2007-08-05  German Poo-Caamano <gpoo@ubiobio.cl>

	* src/traceroute.c:
	* src/ping.c: Fixed the output for each command processed. 
	  Append each line at the endd of the the table output, instead
	  of after the cursor position. Fixed #408452.

2007-08-04  German Poo-Caamano <gpoo@ubiobio.cl>

	* configure.in: Added gnome-doc-utils dependency.

2007-08-04  German Poo-Caamano <gpoo@ubiobio.cl>

	* src/gnome-nettool.desktop.in.in: Better application's description.
	  (From Debian patches throught Ubuntu).

2007-08-04  German Poo-Caamano <gpoo@ubiobio.cl>

	* src/callbacks.c: Added message for translators.

2007-08-04  German Poo-Caamano <gpoo@ubiobio.cl>

	* src/callbacks.c: Added missing strings for translations. 
	  Fixed #414068.
	* pixmaps/icons/*/apps: Fixed some other icons' locations.

2007-08-04  German Poo-Caamano <gpoo@ubiobio.cl>

	* pixmaps/icons/*/apps: Fixed locations of icons.
	* po/POTFILES.skip: Added src/gnome-nettool.desktop.in as
	  not to be translated.
	* configure.in: Updated target version to 2.19.1.

2007-08-04  German Poo-Caamano <gpoo@ubiobio.cl>

	Fixed #401076.

	* pixmaps/Makefile.am: 
	* pixmaps/icons/16x16/gnome-nettool.png
	* pixmaps/icons/16x16/Makefile.am
	* pixmaps/icons/22x22/gnome-nettool.png
	* pixmaps/icons/22x22/Makefile.am
	* pixmaps/icons/32x32/gnome-nettool.png
	* pixmaps/icons/32x32/Makefile.am
	* pixmaps/icons/scalable/gnome-nettool.svg
	* pixmaps/icons/scalable/Makefile.am
	* pixmaps/icons/Makefile.am: Added (tango) icons and rules for
	  various sizes.  Icons made by Hylke Bons.
	* pixmaps/gnome-nettool.png: Updated to a Tango logo by Hylke Bons.
	* src/gnome-nettool.png: Deleted duplicated logo.
	* configure.in: Added Makefiles' from pixmaps/icons directory.

2007-03-12  German Poo-Caamano <gpoo@ubiobio.cl>

	* NEWS: Updated 

2007-03-16  Loïc Minier  <lminier@svn.gnome.org>

	* src/nettool.c: (netinfo_text_buffer_insert):
	Set the I/O channel's encoding to the current locale and add some
	error handling; fixes bug #311350.

2007-03-12  German Poo-Caamano <gpoo@ubiobio.cl>

	Released 2.18.0.

2007-03-11  Christian Kirbach  <Christian.Kirbach@googlemail.com>

        * src/gnome-nettool.desktop.in.in:
        "Application" is not a valid category in the freedesktop.org
        specification. Added missing semicolon.

2006-12-18  German Poo-Caamano <gpoo@ubiobio.cl>

	Released 2.17.4.

2006-12-01  German Poo-Caamano <gpoo@ubiobio.cl>

	* src/gn-combo-history.c:
	* src/netstat.c:
	  - Remember to free the strings in the list beside the list itself 
	  - Avoid useless GSList -> GList conversion
	  - Avoid unneeded allocations
	  - Avoid quadratic behavior (appending to a list in a for loop 
	    is not a good idea, better to prepend and then reverse, but here
		we can get rid of the new list at all)
	  Fixed #352148.

	  Patch provided by Paolo Borelli <pborelli@katamail.com>

2006-12-01  German Poo-Caamano <gpoo@ubiobio.cl>

	* src/info.c: Fixes compilation in OpenBSD.  Fixes 
	  #357839.

	  Patch provided by 
	  Marc Brockschmidt <he+bugzilla.g@marcbrockschmidt.de>

2006-12-01  German Poo-Caamano <gpoo@ubiobio.cl>

	* src/netstat.[ch]:
	* src/ping.h: Added support for OpenBSD trough defining
	  __OpenBSD__ in the same places as __FreeBSD__. Fixed
	  #357840.

	  Patch provided by 
	  Marc Brockschmidt <he+bugzilla.g@marcbrockschmidt.de>

2006-12-01  German Poo-Caamano <gpoo@ubiobio.cl>

	* src/gnome-nettool.glade:
	* src/main.c:
	* src/ping.c:
	* src/netinfo.h: Changed the semantic for packets_loss.  Now
	  is packets_success.  Fixed #128264.

2006-11-29  German Poo-Caamano <gpoo@ubiobio.cl>

	* src/gnome-nettool.glade:
	* src/main.c:
	* src/nettool.h:
	* src/ping.c:
	* src/ping.h: Added bar-graph display for ping.
	Patch provided by Callum McKenzie <callum@spooky-possum.org>
	Fixed #346528.

2006-09-03  German Poo-Caamano <gpoo@ubiobio.cl>

	* configure.in: Version 2.17.3. (No .1 and .2 versions).

2006-11-12  German Poo-Caamano <gpoo@ubiobio.cl>

	* New branch gnome-2-16

2006-09-03  German Poo-Caamano <gpoo@ubiobio.cl>

	* configure.in: Version 2.16.0.

2006-08-20  German Poo-Caamano <gpoo@ubiobio.cl>

	Released 2.15.92.

2006-08-20  German Poo-Caamano <gpoo@ubiobio.cl>

	* NEWS: Updated for release 2.15.92

2006-08-20  German Poo-Caamano <gpoo@ubiobio.cl>

	* src/netstat.c: Fixed memory leak (Paolo Borelli)

2006-08-14  Giribabu Bikki <giribabu_bikki@dell.com>

	Fixes bug#347310

	* src/info.c: (info_get_nic_information)
	  shows correct hardware address on 64 bit machines

2006-08-20  German Poo-Caamano <gpoo@ubiobio.cl>

	* Makefile.am: Changed the order of SUBDIRS to fix the build.

2006-08-20  German Poo-Caamano <gpoo@ubiobio.cl>

	Fixed #348546

	* configure.in: Updated to new version (2.15.92)
	  Added src/gnome-nettool.desktop.in as output.
	* src/gnome-nettool.desktop.in: Removed.
	* src/gnome-nettool.desktop.in.in: Added to allow the inclusion
	  of @PACKAGE_VERSION@

2006-08-15  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Fix intltool req.
	* src/util-mii-wireless.h: Fix a typo in a comment.

2006-08-15  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Fix intltool req.
	* src/util-mii-wireless.h: Fix a typo in a comment.

2006-05-11  German Poo-Caamano <gpoo@ubiobio.cl>

	Released 2.15.91.

2006-08-08  Brian Pepple  <bdpepple@gmail.com>

	* po/LINGUAS: New file listing all supported languages.

	* configure.in: Use po/LINGUAS instead of including all languages
	directly in this file. See the wiki for more information:
	http://live.gnome.org/GnomeGoals/PoLinguas

2006-07-31  Arangel Angov <ufo@linux.net.mk>

	* configure.in: Added 'sl' to ALL_LINGUAS.

2006-07-19  Thierry Randrianiriana  <thierryR@cvs.gnome.org>

	* configure.in: Added the Malagasy code 'mg' to ALL_LINGUAS.
	* po/mg.po: Added Malagasy translation.

2006-07-03  Runa Bhattacharjee <runabh@gmail.com>

	* configure.in: Added Bengali India (bn_IN) to ALL_LINGUAS.

2006-06-38  German Poo-Caamano <gpoo@ubiobio.cl>

	Fixed #341830

	* src/finger.c:
	* src/ping.c:
	* src/whois.c: Fixed #341830, micro cleanup (Paolo Borelli)

2006-06-14  German Poo-Caamano <gpoo@ubiobio.cl>

	Fixed #344831

	* src/nettool.c: Added netinet/in.h to fix compilation on Mac OSX 10.3
	  patch send by Christian.Kirbach@student.uni-siegen.de

2006-06-14  German Poo-Caamano <gpoo@ubiobio.cl>

	* configure.in:
	* NEWS:
	Updated for the next development version (2.15.4 to be synced with
	GNOME)

2006-05-11  German Poo-Caamano <gpoo@ubiobio.cl>

	Released 2.15.0.

2006-05-08  Alejandro Andres <fuzzy.alej@fsfe.org>

	* src/callbacks.[ch] (on_beep_activate):
	* src/main.c (main):
	* src/nettool.h:
	* src/gnome-nettool.glade:
	* ping.c (ping_foreach_with_tree):
	Added sound support for ping. Fixed #129326.

2006-05-06  Alejandro Andres <fuzzy.alej@fsfe.org>

	* src/utils.c (util_find_program_dialog): Fixed #154069
	  with a better message.

2006-04-30  Alejandro Andres <fuzzy.alej@gmail.com>

	* src/ping.c (scan_do, ping_foreach_with_tree): Fixed #340209.

2006-04-26  Gora Mohanty  <gmohanty@cvs.gnome.org>

	* configure.in: Added 'lv' (Latvian) to ALL_LINGUAS.

2006-04-17  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Remove obsolete entry for no_NO
	* po/no.po: And the translation.

2006-04-15  Alejandro Andres <fuzzy.alej@gmail.com>

	* src/scan.c (scan_do): Added a signal handler (wait_for_child).
	Fixes #307529.

2006-04-15  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* configure.in: Fixed #333040.  Do not build gnome-nettool if
	some header files does not exist.

2006-04-15  Alejandro Andres <fuzzy.alej@gmail.com>

	* src/gnome-nettool.glade:
	* src/callbacks.c (on_page_switch):
	Fixes #338278. "Network Tools" is now shown last in window title

2006-04-15  Alejandro Andres <fuzzy.alej@gmail.com>

	* src/ping.h: defines PING_PROGRAM_FORMAT_6 for sun and hpux
	Fixes #316659

2006-04-14  Alejandro Andres <fuzzy.alej@gmail.com>

	Fixes #338272

	* src/ping.h: fixes parameters of ping when a broadcast address is
	given

2006-04-14  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* src/nettool.c (netinfo_io_text_buffer_dialog):
	* src/ping.[ch] (ping_foreach):
	* src/netstat.[ch] (netstat_foreach):
	* src/lookup.[ch] (lookup_foreach):
	* src/finger.[ch] (finger_foreach):
	* src/traceroute.[ch] (traceroute_foreach): Fixed signedness compilation
	  warning
	* src/info.c (info_load_iface): Fixed compilation warning due a
	  variable unitialized

2006-04-14  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* COPYING, INSTALL: Added as files instead of trust in automake's
	  options.

2006-04-14  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	Fixed 334687

	* src/info.[ch]: Fixed InfoIpAddr leakage (Paolo Borelli)

2006-04-13  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* NEWS: Updated with all the changes since the last
	  stable release.

2006-04-13  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	Fixed #333040

	* configure.in: Added a check for ifaddrs.h

2006-04-11  Brian Pepple  <bdpepple@gmail.com>

	* src/callbacks.c (on_about_activate):
	* pixmaps/Makefile.am (icondir):
	* src/main.c (main):
	* src/gnome-nettool.desktop.in (Icon): Install theme-friendly
	icons. See the wiki for more information:
	http://live.gnome.org/GnomeGoals/AppIcon

2006-04-04  Alejandro Andres <fuzzy.alej@gmail.com>

	Fixes #336941

	* src/lookup.h: fixed bad formed defines (LOOKUP_FORMAT*)

2006-04-03  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* configure.in: Updated to new version (2.15)

2006-04-03  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* src/info.c (info_get_nic_information): Fixed #333540
	  (an unitialized variable was used, showing a weird text)

2006-04-02  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* src/main.c (load_finger_widgets_from_xml): Changed example string
	  for something more ad-hoc.  Fixed #151007.

2006-04-02  Tommi Vainikainen  <thv@iki.fi>

	* m4/.cvsignore: Added.
	* .cvsignore, Makefile.am, configure.in, help/ChangeLog: Migrated
	to gnome-doc-utils.

2006-04-02  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* autogen.sh: Added restriction to require automake 1.9

2006-04-02  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	Fixes #328041

	* src/gnome-nettool.desktop.in: Addes GNOME and GTK to
	  Categories.

2006-04-02  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	Fixes #300962

	* src/callbacks.c: Fixed 'translation-credits'

2006-04-02  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* New branch gnome-2-14

2006-03-24  Tommi Vainikainen  <thv@iki.fi>

	* configure.in (ALL_LINGUAS): Added Dzongkha (dz).

2006-03-20  Vladimer Sichinava  <vlsichinava@gmail.com>

        * configure.in: Added "ka" (Georgian) to ALL_LINGUAS

2006-03-16  Rodrigo Moya <rodrigo@novell.com>

	Released 2.14.0.

2006-03-16  Paolo Borelli <pborelli@katamail.com>

	Fixes #326184

	* src/main.c (main): deal with errors from gtk_init_with_args.

2006-02-27  Rodrigo Moya <rodrigo@novell.com>

	Released 2.13.91.

2006-02-27  Rodrigo Moya <rodrigo@novell.com>

	Fixes #313571

	* src/info.c (info_get_interface_from_dev_name): marked missing
	string for translation.

2006-01-30  Rodrigo Moya <rodrigo@novell.com>

	Released 2.13.90.

2006-01-28  Brent Smith <gnome@nextreality.net>

	Fixes #326610

	* src/gnome-nettool.glade:
	* src/main.c (main): connect by hand to About menu item.

2006-01-17  Rodrigo Moya <rodrigo@novell.com>

	Released 2.13.5.

2006-01-09  German Poo-Caaman~o  <gpoog@ubiobio.cl>

	* configure.in: Changed the target version to 2.13.

2005-12-16  Abel Cheung  <maddog@linuxhall.org>

	* configure.in: Added "hi" to ALL_LINGUAS.

2005-10-18  Rhys Jones  <rhys@sucs.org>

	* configure.in: Added "cy" (Welsh) to ALL_LINGUAS.

2005-10-03  Rodrigo Moya <rodrigo@gnome-db.org>

	Released 1.4.1.

2005-09-05  Rodrigo Moya <rodrigo@gnome-db.org>

	Released 1.4.0.

2005-08-22  Rodrigo Moya <rodrigo@gnome-db.org>

	Released 1.3.92.

2005-08-08  Rodrigo Moya <rodrigo@gnome-db.org>

	Released 1.3.91.

2006-07-01  Rodrigo Moya <rodrigo@gnome-db.org>

	Released 1.3.0.

2005-05-10  William Jon McCann  <mccann@jhu.edu>

	* src/nettool.c (netinfo_error_message):
	Don't use a title on alert dialogs per HIG.

2005-05-06  William Jon McCann  <mccann@jhu.edu>

	* src/netstat.c:
	* src/utils.c:
	* src/main.c:
	* src/finger.c:
	* src/scan.c:
	* src/nettool.c:
	* src/callbacks.c: Add missing includes to fix compiler warnings.

2005-05-06  William Jon McCann  <mccann@jhu.edu>

	* src/main.c (main): Fix misspelling and use correct program name.

2005-05-06  Carlos Garcia Campos <carlosgc@gnome.org>

	* src/main.c: Never activate the progress bar in the info tool

2005-03-31  Steve Murphy  <murf@e-tools.com>

        * configure.in: Added "rw" to ALL_LINGUAS.

2005-03-23  Adi Attar  <aattar@cvs.gnome.org>

	* configure.in: Added 'xh' to ALL_LINGUAS.

2005-03-22  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* configure.in:
	* src/callbacks.c:
	* src/callbacks.h:
	* src/finger.h:
	* src/gn-combo-history.c:
	* src/gnome-nettool.glade:
	* src/info.h:
	* src/lookup.h:
	* src/main.c:
	* src/netstat.h:
	* src/nettool.h:
	* src/ping.h:
	* src/scan.h:
	* src/traceroute.h:
	* src/utils.c:
	* src/utils.h:
	* src/whois.h: removed libgnome* depedencies. Applied Kristof
	  Vansant's patches #38844 and #38893, from bug #167218.

2005-03-22  German Poo-Caaman~o <gpoo@ubiobio.cl>

	Reverted patch #38884 from bugzilla (#167218), becuase
	it breaks GNOME 2.10 string freeze.

2005-03-17  Kristof Vansant <de_lupus@pandora.be>

	* */*: removed libgnome* dependencies.

2005-02-28  Rodrigo Moya <rodrigo@gnome-db.org>

	Released 1.2.0.

2005-03-03  Abel Cheung  <maddog@linuxhall.org>

	* configure.in: Added "hr" "mk" "ml" to ALL_LINGUAS.

2005-02-12  Roozbeh Pournader  <roozbeh@farsiweb.info>

	* configure.in: Added "fa" (Persian) to ALL_LINGUAS.

2005-02-01  meissner@suse.de

	Fixes #165905

	* src/scan.c (scan_create_model): NULL terminate the g_object_set
	call.

2005-01-27  William Jon McCann  <mccann@jhu.edu>

	* src/info.c (info_get_nic, info_nic_update_stats)
	(info_nic_changed, info_copy_to_clipboard):
	Add info_get_nic function.  Use it to replace obsolete
	code in info_copy_to_clipboard().  Fixes #152296.

2005-01-24  Rodrigo Moya <rodrigo@gnome-db.org>

	Released 1.1.0

2005-01-21  Theppitak Karoonboonyanan  <thep@linux.thai.net>

	* configure.in: Added "th" (Thai) to ALL_LINGUAS.

2005-01-10  Pawan Chitrakar  <pawan@nplinux.org>

	* configure.in: Added ne "Nepali" in ALL_LINGUAS

2005-01-07  William Jon McCann  <mccann@jhu.edu>

	* src/whois.c:
	* src/traceroute.c:
	* src/scan.c:
	* src/ping.c:
	* src/nettool.c:
	* src/netstat.c:
	* src/lookup.c:
	* src/info.c:
	* src/finger.c:
	* src/callbacks.c:
	* configure.in:
	Replace gnome.h with gtk.h and gi18n.h.  Use gtk 2.5 about dialog
	and HIG message dialog.

	* AUTHORS: Add all authors to sync with about box.

2004-12-22  Rodrigo Moya <rodrigo@gnome-db.org>

	Released 1.0.0.

2004-12-10  Sanlig Badral  <badral@openmn.org>

	* configure.in: Added "mn" to ALL_LINGUAS.

2004-12-05  Zygimantas Berucka  <uid0@akl.lt>

	* configure.in: Added "lt" (Lithuanian) to ALL_LINGUAS.

2004-11-17  William Jon McCann  <mccann@jhu.edu>

	* src/nettool.c (netinfo_io_text_buffer_dialog)
	(netinfo_text_buffer_insert): Make output read non-blocking.
	Fixes #157498.

2004-11-17  William Jon McCann  <mccann@jhu.edu>

	* src/gnome-nettool.desktop.in: Add startup-notification.  Fixes #157167.

2004-11-15  William Jon McCann  <mccann@jhu.edu>

	* src/nettool.c (netinfo_set_user, netinfo_set_host):
	* src/info.c (info_set_nic): Fix to work with GtkComboBox.
	Fixes #154070.

	* src/gn-combo-history.c (gn_on_gconf_history_changed): Don't unset the
	active item when gconf changes.

2004-11-03  German Poo-Caamaño <gpoo@ubiobio.cl>

	* pixmaps/network.png: Resized of network icon to 16x16.

2004-10-27  Alexander Shopov  <ash@contact.bg>

	* configure.in (ALL_LINGUAS): Added "bg" (Bulgarian)

2004-10-25  Mohammad DAMT  <mdamt@bisnisweb.com>

	* configure.in: Added "id" (Indonesian) to ALL_LINGUAS
	* po/id.po: Added Indonesian translation

2004-09-20  German Poo-Caamaño <gpoo@ubiobio.cl>

	* src/gnome-nettool.glade: Fixed a typo in ping. bug #151913

2004-10-20  Rodrigo Moya <rodrigo@gnome-db.org>

	Fixes #153184

	* src/gnome-nettool.desktop.in: put gnome-nettool in the System
	Tools menu, not Internet.

2004-10-20  Rodrigo Moya <rodrigo@gnome-db.org>

	Fixes #151915

	* src/info.c (info_load_iface): don't use markup in translatable
	messages.

2004-10-18  Mario Fuentes <mario@gnome.cl>

	* main.c (load_ping_widgets_from_xml): connected "toggled" signal
	  of limited RadioButton to on_ping_toggled callback.
	* callbacks.[ch]: Added on_ping_toggled callback for set sensitive
	  property of count SpinButton to false when limited RadioButton
	  isn't toggled.

2004-09-21  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>

	* configure.in: Added "sk" to ALL_LINGUAS

2004-09-12  Mugurel Tudor  <mugurelu@go.ro>

	* configure.in: Added "ro" to ALL_LINGUAS

2004-09-10  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* src/gnome-nettool.glade: Fixed a typo in ping. bug #151913

2004-09-10  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* src/traceroute.c (traceroute_do): Commented g_print with
	  output command.

	* src/lookup.c (lookup_create_model): Fixed bug #143933.

2004-09-09  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* TODO: Updated.

	* src/nettool.c (netinfo_error_message): Free allocated message
	  string.
	  (netinfo_validate_host): Changed the order of dns querys,
	  It should be ask for IPv4 address at first, not IPv6.  Asking
	  for IPv6 mostly would make two dns query.

	* src/lookup.c (lookup_do):
	* src/callbacks.c (on_lookup_activate): Changed netinfo_validate_host
	  by netinfo_validate_domain.  It doesn't make sense to resolve an
	  address that is suppossed to be resolved by dig.  i.e. now is
	  possible to ask for TLD's domains.

	* src/ping.c (ping_do):
	* src/traceroute.c (traceroute_do):
	* src/scan.c (scan_do): Changed netinfo_validate_host by
	  netinfo_validate_domain. We don't want to resolve a hostname
	  twice.  It was made on the callback (ouch!, we need a better
	  solution for this)

2004-09-09  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* configure.in:
	* src/main.c:
	* src/callbacks.c: Cleaned IFCONFIG dependencies.

2004-09-09  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* autogen.sh: Simplified and added requisite for automake 1.7

	* Makefile.am:
	  src/Makefile.am: Added DISTCLEANFILES to fix distcheck with
	  automake 1.7

2004-09-09  Arafat Medini  <lumina@arabeyes.org>

	* onfigure.in: Added Arabic locale "ar" to ALL_LINGUAS.

2004-09-08  Arafat Medini  <lumina@arabeyes.org>

	* onfigure.in: Added Arabic locale "ar" to ALL_LINGUAS.

2004-08-30  Rodrigo Moya <rodrigo@gnome-db.org>

	Released 0.99.3

2004-08-28  Akagic Amila  <bono@linux.org.ba>

	* configure.in: Added 'bs' to ALL_LINGUAS.

2004-08-24  Jayaradha  <njaya@redhat.com>

	* configure.in: Added ta to ALL_LINGUAS.

2004-08-25  Iñaki Larrañaga  <dooteo@euskalgnu.org>

	* configure.in: Added "eu" (Basque) to ALL_LINGUAS.

2004-08-24  Tommi Vainikainen  <thv@iki.fi>

	* configure.in: Added fi to ALL_LINGUAS.

2004-08-24  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Add «nb» to ALL_LINGUAS.

2004-08-23  William Jon McCann  <mccann@jhu.edu>

	* src/callbacks.c (gn_quit_app): Return TRUE.  Fixes #144364.

2004-08-20  Rodrigo Moya <rodrigo@gnome-db.org>

	Released 0.99.2

2004-08-18  Rodrigo Moya <rodrigo@gnome-db.org>

	Fixes #150470

	* configure.in: no need to AC_SUBST(pixmapsdir) here. Removed help/
	directory from the build until it's ready.

	* pixmaps/Makefile.am: install gnome-nettool.png and define
	pixmapsdir here.

	* src/Makefile.am: pass -DPIXMAPS_DIR to compiler.

	* src/callbacks.c (on_about_activate): s/GNOME_ICONDIR/PIXMAPS_DIR.

2004-08-18  Rodrigo Moya <rodrigo@gnome-db.org>

	* help/C/*:
	* help/Makefile.am: added beginning of documentation.

	* configure.in:
	* Makefile.am: added help directory to build.

2004-08-01  Sayamindu Dasgupta <sayamindu@gnome.org>

	* configure.in: Added bn to ALL_LINGUAS

2004-06-29  William Jon McCann  <mccann@jhu.edu>

	* src/callbacks.c (on_about_activate): Update copyright date.

	* src/gnome-nettool.glade: Use sentence capitalization for combobox
	labels.  Make network device combobox expand to fill space.  Make
	statistics text not expand to fill space.  Remove redundant verb
	from ping radio button label.  Fixes #144393.

	* src/gnome-nettool.glade:
	* src/main.c (load_ping_widgets_from_xml)
	(load_traceroute_widgets_from_xml, load_info_widgets_from_xml)
	(load_scan_widgets_from_xml, load_lookup_widgets_from_xml)
	(load_finger_widgets_from_xml, load_whois_widgets_from_xml):
	Activate the combobox when the label mnemonic is used.

	* src/callbacks.c (on_about_activate):
	* pixmaps/Makefile.am (pixmaps_DATA): Return the application
	icon into the pixmap directory so the .desktop file can find it.

2004-06-14  William Jon McCann  <mccann@jhu.edu>

	* src/callbacks.c (gn_quit_app): Use gboolean type for
	delete-event handler.

2004-06-23  Carlos García Campos <carlosgc@gnome.org>

	* src/callbacks.c (on_page_switch), src/finger.c (finger_do),
	src/lookup.c (lookup_do), src/netstat.c (get_active_option),
	src/nettool.[ch] (toggle_state), src/ping.c (ping_do), src/scan.c
	(scan_do), src/traceroute.c (traceroute_do), src/whois.c (whois_do):
	added status_bar messages

	* src/main.c (load_*_widgets_from_xml): added tooltips

	* src/gnome-nettool.glade: "Send unlimited requests" renamed as
	"Unlimited requests"

2004-06-14  Fernando Herrera  <fherrera@onirica.com>

	* src/info.c: (info_get_nic_information), (info_get_interfaces):
	check if ifa_addr is NULL before trying to access it. Bug #144300

2004-06-13 Jürg Billeter  <j@bitron.ch>

	Fixes #144278

	* src/info.c: add prefix for unknown interface in info_iface_desc
	to fix crash on startup

2004-06-13  Rodrigo Moya <rodrigo@gnome-db.org>

	Released 0.99.1.

2004-06-11  Carlos Garnacho Parro  <carlosg@gnome.org>

	* src/callbacks.[ch] (on_configure_button_clicked): added,
	configures the interface calling network-admin from g-s-t

	* src/gnome-nettool.glade: added the "configure" button

	* src/nettool.h: added configure button and path to network-admin
	in the struct

	* src/main.c: loaded the button from the glade XML

	* src/info.[ch]: added some logic for hiding/showing and turning
	sensitive/unsensitive the button, added a define with network-admin
	executable name

2004-06-09  William Jon McCann  <mccann@jhu.edu>

	* src/callbacks.c (on_clear_history_activate): Clear history in
	finger user and whois domain again.

	* src/nettool.c (netinfo_toggle_state): Make notebook tab bold
	when a tool is running.  This allows the user to see that a tool
	is running when another tool page is loaded.

	* src/callbacks.c (on_whois_activate): Use netinfo_validate_domain.

	* src/nettool.[ch] (netinfo_validate_domain): New function to
	validate domain.
	(netinfo_error_message): New HIGish error dialog.
	(netinfo_validate_host): use netinfo_error_message function.

2004-06-09  Carlos García Campos <carlosgc@gnome.org>

	* src/callbacks.c (on_finger_activate): s/strcmp/g_strcasecmp/

	* src/gn-combo-history.c ([sg]et_property, history_init,
	history_finalize, history_gconf_load, history_set_popdown_strings,
	gconf_history_changed, history_gconf_register_id, history_clear,
	history_[sg]et_max_history ): added a property to limit the size of
	the history (10 by defualt). Added a callback to update the history in
	real time.

	* src/gn-combo-history.h: added get/set functions to manage the
	max_history property

2004-06-09  William Jon McCann  <mccann@jhu.edu>

	* src/callbacks.c (on_finger_activate): Allow blank hostname to finger
	local system.

	* src/main.c (load_whois_widgets_from_xml): Use distinct history id again
	for whois domain.

2004-06-09  William Jon McCann  <mccann@jhu.edu>

	* src/main.c (load_info_widgets_from_xml): Use size group to align labels.
	(main): Removed spurious commented code.

2004-06-08  William Jon McCann  <mccann@jhu.edu>

	* src/gnome-nettool.glade: Replace object attributes dropped in Carlos's commit.

2004-06-08  William Jon McCann  <mccann@jhu.edu>

	* src/gnome-nettool.glade: Revert change that adds underscores to
	notebook tab labels.

2004-06-08  Carlos García Campos <carlosgc@gnome.org>

	* src/info.c (load_iface): checks if there is no network devices
	enabled

	* src/gnome-nettool.glade: s/GtkCombo/GtkComboBox and added a treeview
	to show the IP information when there are IPv6 ips.

	* src/info.c (set_nic, load_iface, ip6_masklen,
	ip6_construct_address, get_nic_information, get_interfaces),
	src/info.h, src/main.c (list_ip_addr_add_columns,
	load_info_widgets_from_xml), src/nettol.h: IPv6 support.
	When there are IPv6 addresses, a treeview is shown with
	the information about all of the ip addresses, but if there aren't IPv6
	addresses, the IPv4 information is shown in text labels.

	* src/info.c (load_iface, nic_update_stats, nic_changed), src/info.h,
	src/main.c (load_info_widgets_from_xml): Ported to GTK+ 2.4, uses
	GtkComboBox instead of GtkCombo

	* pixmaps, pixmaps/Makefile.am, configure.in: added a pixmap directory and
	moved gnome-nettol.png from src to pixmaps. Added all of the pixmaps
	needed to the new pixmap directory.

	* configure.in: checks the libraries version because now
	nettool depends on gtk+ >= 2.4

	* src/*.c, : ported to Gtk+ 2.4, uses GtkComboBox and GtkEntryCompletion
	instead of GnomeEntry (deprecated)

	* src/gnome-nettool.glade: some gui changes that make it a bit more
	HIG-Compliant

	* src/callbacks.c (on_about_activate), src/main.c (main): uses
	PIXMAPS_DIR instead of GNOME_ICONDIR and gnome-nettool.png instead of
	gnome-netinfo.png

	* src/gn-combo-history.[ch]: files added. It is an object to manage
	the history of new combo boxes

	* src/main.c (load_*_widgets_from_xml), src/callbacks
	(on_*_activate): added support for history in
	new combo boxes

	* src/callbacks.c, src/info.c, src/ping.c, src/traceroute.c,
	src/lookup.c, src/util-mii.c: added #include <glib/gprintf.h> to avoid
	compile warnings about g_sprintf ()

2004-06-06  William Jon McCann  <mccann@jhu.edu>

	* src/netstat.c (netstat_protocol_tree_insert)
	(netstat_route_tree_insert, netstat_multicast_tree_insert):
	* src/traceroute.c (traceroute_foreach_with_tree):
	* src/scan.c (scan_define_model):
	* src/lookup.c (lookup_foreach_with_tree):
	* src/ping.c (ping_foreach_with_tree):
	Remove grab_focus calls.  They steal focus away from the user
	who may be typing in another tab.

2004-06-06  William Jon McCann  <mccann@jhu.edu>

	* src/gnome-nettool.glade: Use GtkProgressBar and GtkStatusBar.

2004-06-04  William Jon McCann  <mccann@jhu.edu>

	* src/nettool.[ch] (netinfo_toggle_state, update_progress_bar)
	(netinfo_progress_indicator_stop)
	(netinfo_progress_indicator_start):

	* src/main.c (main, load_ping_widgets_from_xml)
	(load_traceroute_widgets_from_xml, load_netstat_widgets_from_xml)
	(load_info_widgets_from_xml, load_scan_widgets_from_xml)
	(load_lookup_widgets_from_xml, load_finger_widgets_from_xml)
	(load_whois_widgets_from_xml):

	* src/callbacks.[ch] (gn_quit_app, get_netinfo_for_page)
	(on_copy_activate, on_page_switch):
	Add progressbar and statusbar.  Pulse the progressbar when a
	tool is in use.  Handle page switching.  Update window title
	to reflect page label name.

2004-06-04  William Jon McCann  <mccann@jhu.edu>

	* src/gnome-nettool.glade: Use many of the label layout suggestions
	of Luca Ferretti.  Add appbar.

2004-06-04  Sebastian Heinlein <glatzor@pimpzkru.de>

	Fixes #143691

	* src/gnome-nettool.desktop.in: Add gettext marks for name
	and description in the desktop file.

2004-06-03  William Jon McCann  <mccann@jhu.edu>

	* configure.in: Remove deprecated and obsolete GNOME_PLATFORM_GNOME_2

2004-06-02  Adam Weinberger  <adamw@gnome.org>

	* configure.in: Added en_CA to ALL_LINGUAS.

2004-06-02  Gareth Owen  <gowen72@yahoo.com>

	* configure.in: Added en_GB to ALL_LINGUAS

2004-06-02  Fernando Herrera  <fherrera@onirica.com>

	* src/gnome-nettool.desktop.in: Add bugzilla info (Bug #143533)
	* src/main.c: (main): Use gtk_icon_theme for the window icon (Bug
	#143532)

2004-05-15  William Jon McCann  <mccann@jhu.edu>

	* src/gnome-nettool.glade: Replace object attributes dropped in last commit.

2004-05-11  Rodrigo Moya <rodrigo@gnome-db.org>

	* src/callbacks.c (on_about_activate):
	* src/gnome-nettool.glade: s/Info/Tool in menus and window title.

2004-05-11  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* src/nettool.c (netinfo_validate_host): Fixed warning in
	  GtkDialog.

2004-05-11  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* src/Makefile.am: Fixed variable typo (It was
	  missing after the change of the name:
	  NETINFO -> NETTOOL

2004-05-11  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* src/gnome-nettool.glade: Fixed bug #136241
	  Thanks to Billy O'Connor <billyoc@gnuyork.org>

2004-05-10  Rodrigo Moya <rodrigo@gnome-db.org>

	Renamed to gnome-nettool.

	* src/*.[ch]: use new header file

2004-03-21  Rodrigo Moya <rodrigo@gnome-db.org>

	* src/callbacks.c (on_about_activate): added Carlos and myself to list
	of authors.

2004-03-21  Carlos García Campos <carlosgc@gnome.org>

	* src/callbacks.c (on_about_activate): updated the name of the tool using
	GNOME Netinfo. Removed the "untranslated version" message.

2004-03-21  Carlos Garcia Campos <carlosgc@gnome.org>

	* src/netinfo.c (toggle_state): change the cursor to GDK_WATCH when
	a process is running

	* src/netinfo.[ch] (is_ipv6_enable): added is_ipv6_enable function to
	know if IPv6 is enabled in the system

	* src/netstat.[ch] (get_active_option, strip_protocol_line,
	strip_route_line, *_tree_insert): IPv6 support

	* src/netstat.[ch] (get_active_option): checks if IPv6 is enabled before
	use inet6 protocol

	* src/netstat.c (*_tree_insert): the tree_model doesn't change when
	you toggle between protocol and route twice

2004-03-14  Rodrigo Moya <rodrigo@gnome-db.org>

	Released 0.99.0

2004-02-11  Rodrigo Moya <rodrigo@gnome-db.org>

	* configure.in: set version to 0.99.0.

	* Makefile.am: added intltool files to EXTRA_DIST and po/ directory
	to build.

	* src/Makefile.am: removed *.gladep from EXTRA_DIST.

2004-01-24  Rodrigo Moya <rodrigo@gnome-db.org>

	* configure.in:
	* src/Makefile.am: s/gnome-network/gnome-netinfo.

2004-01-24  Rodrigo Moya <rodrigo@gnome-db.org>

	* debian/*: s/gnome-network/gnome-netinfo.

	* autogen.sh: fixed c/p typo.

	* NEWS:
	* MAINTAINERS: added new files.

2004-01-23  Rodrigo Moya <rodrigo@gnome-db.org>

	Splitted from gnome-network to its own CVS module.

2004-01-05  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* info.c:
	  callbacks.c:
	  netinfo.c:
	  netstat.[ch]:
	  ping.[ch]:
	  util-mii.c: Applied patch from Joe Marcus Clarke
	    marcus@freebsd.org, Fixed bug #128719

2004-01-05  Ulrich Neumann <U_Neumann@gne.de>

	* Makefile.am: removed redundant includedir.

2003-12-16  William Jon McCann  <mccann@jhu.edu>

	* main.c (load_finger_widgets_from_xml)
	(load_whois_widgets_from_xml): Use monospace font instead of fixed.

	* gnome-netinfo.desktop.in (Name): Capitalize name.

	* netinfo.h: Fix out of order enum fields.

	* netinfo.[ch] (netinfo_set_host): New function to set host field
	in UI.
	(netinfo_set_user): New function to set user field in UI.

	* main.c (start_initial_process_cb): New function to process
	command line requests.
	(main): Add command line options and set initial state.

	* info.[ch] (info_set_nic): New function to set interface in UI.

	* callbacks.h: Add typedef for activate callback functions.

2003-12-15  Carlos García Campos <carlosgc@gnome.org>

	* info.c (info_get_nic_information): removed invalid g_free()

2003-12-01  Bastien Nocera  <hadess@hadess.net>

	* main.c: (load_whois_widgets_from_xml): we don't have a "user"
    entry in the whois tab (fixes startup warnings)
	  fixes #128282

2003-12-04  William Jon McCann  <mccann@jhu.edu>

	* utils.c (util_legible_bytes): Fix computation of number of bytes
	sent and received.  Add single digit of precision to returned label.

2003-11-24  William Jon McCann  <mccann@jhu.edu>

	* gnome-netinfo.glade: Changed File menu to Information
	and renamed Information notebook page to Devices.

2003-11-20  William Jon McCann  <mccann@jhu.edu>

	* callbacks.c (on_clear_history_activate):
	* callbacks.h:
	* gnome-netinfo.glade: Add a Clear History menu item.

	* main.c (main, load_info_widgets_from_xml):
	* util-mii.c:
	* whois.c (whois_do, whois_foreach):
	* finger.c (finger_do, finger_foreach):
	* lookup.c (lookup_do, lookup_foreach, lookup_create_model):
	* scan.c (scan_do, scan_foreach):
	* info.c (info_load_iface, info_nic_update_stats)
	(info_copy_to_clipboard):
	* netstat.c (netstat_get_active_option2, netstat_do)
	(netstat_foreach, netstat_foreach_with_tree)
	(netstat_copy_to_clipboard, strip_protocol_line)
	(strip_multicast_line, strip_route_line):
	* traceroute.c (traceroute_do, traceroute_foreach):
	* ping.c (ping_do, ping_foreach_with_tree, strip_line):
	* netinfo.c (netinfo_get_count, netinfo_text_buffer_insert)
	(netinfo_io_text_buffer_dialog, netinfo_toggle_button):
	* ping.h:
	Clean up compiler warnings.  Mostly removed unused variables and
	added prototypes.

2003-11-19  William Jon McCann  <mccann@jhu.edu>

	* netinfo.h:
	* main.c (main):
	* gnome-netinfo.glade:
	* callbacks.h:
	* callbacks.c (on_copy_activate):
	* Makefile.am (gnome_netinfo_SOURCES):
	Added whois function.

	* main.c (load_whois_widgets_from_xml):
	* callbacks.c (on_whois_activate): New functions for whois query.

	* whois.[ch]: New files for whois query.

2003-11-18  William Jon McCann  <mccann@jhu.edu>

	* lookup.c (lookup_do): Add hostname validation to lookup function.
	At first this might seem odd.  But there is no point doing a DNS
	lookup if the name cannot be resolved.  It is also good to have
	consistent behavior from all the notebook tabs.

	* netinfo.c (netinfo_validate_host): Add a more descriptive message
	when network address is not specified.  Use markup per HIG.

	* netinfo.h:
	* main.c (load_ping_widgets_from_xml)
	(load_traceroute_widgets_from_xml, load_netstat_widgets_from_xml)
	(load_info_widgets_from_xml, load_scan_widgets_from_xml)
	(load_lookup_widgets_from_xml, load_finger_widgets_from_xml):
	Added pointer to main window to the netinfo structure.

	Based on changes sent by Carlos García Campos <carlosgc@gnome.org>
	* callbacks.[ch] (gn_quit_app), gnome-netinfo.glade:
	  kill of all the children before exit
	* netinfo.[ch] (validate_host): function to validate a host
	  fixes bug #114894
	* ping.c (ping_do), scan.c (scan_do), traceroute.c (traceroute_do):
	  validates the host before doing the action, fixes bug #114894

2003-11-18  William Jon McCann  <mccann@jhu.edu>

	* scan.c (scan_do): Work around bug in RH9 where connect always
	returns zero for IPv6.  Also reduces the number of system calls
	performed.

2003-10-02  Carlos García Campos <carlosgc@gnome.org>

	* netinfo.c (get_ip_version): added a function to get the
	  ip version (IPv4 or IPv6) of a host or ip address
	* ping.c (ping_do, strip_line): IPv6 support
	* scan.c (scan_do): IPv6 support
	* traceroute.c (traceroute_do): IPv6 support

2003-08-31  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* lookup.c (lookup_create_model):
	* netstat.c (netstat_create_protocol_model,
	  netstat_create_multicast_model):
	* ping.c (ping_create_model):
	* traceroute.c (traceroute_create_model): Fixed alignment of
	  columns

2003-08-31  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* traceroute.c (traceroute_create_model): Fixed alignmet of
	  columns.
	  (stip_line): Fixed return data when the traceroute answer
	  is error.
	  (traceroute_foreach_with_tree): Fixed display of
	  traceroute output.
	* NEWS: Updated

2003-08-31  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* traceroute.c (traceroute_do): Fixed condition to guess
	  where tcptraceroute/traceroute is installed.
	  (traceroute_create_model): Commented lines where set
	  alignment results in UTF-8 warnings.

2003-08-25  William Jon McCann  <mccann@jhu.edu>

	* gnome-netinfo.png: Added new icon found by apg on jimmac's web.

	* Makefile.am (pixmap_DATA): Added new netinfo icon.

	* traceroute.c (traceroute_create_model): Align IP address to the
	left in tree column.

	* gnome-netinfo.desktop.in: Remove GNOME from text per HIG.
	Added default icon.

	* callbacks.c (on_about_activate): Added icon to about dialog.
	(on_about_activate): Use approved Copyright designation.

	* main.c (main): Use default program icon.

2003-08-08  Rodrigo Moya <rodrigo@gnome-db.org>

	Fixes #119199

	* callbacks.c (on_about_activate): don't mark copyright message
	for translation.

2003-08-03  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* callbacks.c (on_about_activate): Fixed bug #119019

2003-07-31  William Jon McCann  <mccann@jhu.edu>

	* Makefile.am (gnome_netinfo_SOURCES): Added finger.[ch]
	(gnome_netinfo_SOURCES): Added missing util-mii-wireless.h.

	* gnome-netinfo.glade: Added Finger notebook tab.

	* netinfo.[ch] (netinfo_get_user): New function.

	* callbacks.c (on_finger_activate):
	* main.c (load_finger_widgets_from_xml): New functions.  Added finger
	support.

	* finger.[ch]: New files.

2003-07-25  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* util-mii.c: Added get_legible_bits and mii_get_basic_wireless
	* util-mii-wireless.h: Added file with definitions to get
	  the link speed from wireless cards.

2003-07-25  William Jon McCann  <mccann@jhu.edu>

	* netinfo.c (netinfo_io_text_buffer_dialog): Use waitpid instead of
	wait.

2003-07-24  William Jon McCann  <mccann@jhu.edu>

	* scan.[ch] (strip_line): New function to parse port scan output.
	(scan_do): Rewrote using a fork and pipe model.  The child process
	simply writes to the parent process through a pipe.  This allows
	us to stop the scan process.  It behaves just the same as the other
	functions except that it forks instead of spawns.
	(scan_foreach): New function to process lines of port scan output.

	* netinfo.[ch] (netinfo_io_text_buffer_dialog): Made function not
	static so that it may be used in scan.c.
	(netinfo_io_text_buffer_dialog): Added wait for child processes.

	* main.c (load_scan_widgets_from_xml): Hook up new scan_foreach function
	to process output.

2003-07-24  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* utils.[ch]: Added util_legible_bytes that convert a number
	  (in text) in another one more legible (with units).
	* info.c (info_nic_update_stats): Use of util_legible_bytes
	  for a better output.

2003-07-24  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* gnome-netinfo.glade (information tab): Added statistics
	  for transmission and reception bytes.
	* main.c (load_info_widgets_from_xml): Added new statistics
	  label widgets.
	  Deleted 'ifconfig' dependency.
	* info.c: Deleted 'ifconfig' dependency.
	  (info_nic_update_stats): Changed ifconfig by read /proc/net/dev
	  directly from Linux boxes.
	  Added statistics for transmission and reception bytes.
	* netinfo.h: Added rx_bytes and tx_bytes to Netinfo strucuture.

2003-07-24  William Jon McCann  <mccann@jhu.edu>

	* main.c (load_traceroute_widgets_from_xml): Trivial fix for
	incorrect button label being used after first press.

2003-07-24  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* utils.c (util_find_program_dialog): Verify if the parent
	  widget exists.
	* ChangeLog: Fixed a deleted entry by mistake

2003-07-24  William Jon McCann  <mccann@jhu.edu>

       * traceroute.c (traceroute_do): Added fail back to standard
       traceroute.  Also don't free unallocated strings.

2003-07-24  Abel Cheung  <maddog@linux.org.hk>

	* info.c(info_copy_to_clipboard):
	* netstat.c(netstat_copy_to_clipboard):
	  Don't mark empty string as translatable.

2003-07-23  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* scan.c (scan_do): Clean the anoying message (g_print), now
	  works only if DEBUG is defined.  (We need to work in
	  feedback for error)

2003-07-23  William Jon McCann  <mccann@jhu.edu>

	* netinfo.c (netinfo_get_host):
	* gnome-netinfo.glade: Use GnomeEntry to keep history of
	hostnames.

2003-07-23  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* callbacks.c (on_about_activate): Updated about box.

2003-07-23  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* netinfo.c (netinfo_io_text_buffer_dialog):
	* ping.c (ping_foreach_with_tree):
	* netstat.c:
	  Clean the anoying message (g_print), now works only
	  if DEBUG is defined
	* main.c (load_netstat_widgets_from_xml): Commented
	  signals for on_protocol_button_toggled.
	* util-mii.[ch] (mii_get_basic): Changed paramater to const
	  char *.

2003-07-23  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* lookup.c (lookup_do): Changed "ALL" by "ANY" in the type
	  of query.

2003-07-23  William Jon McCann  <mccann@jhu.edu>

	* lookup.c (lookup_do): Added support for selected DNS query
	types.  Changed subprocess command line creation to avoid using
	a strsplit.

	* netinfo.h:
	* gnome-netinfo.glade: Added DNS query type menu.

	* lookup.h (LOOKUP_OPTIONS): Enable use of domain search list.

	* netinfo.h:
	* main.c (main, load_info_widgets_from_xml):
	* info.h:
	* info.c (info_do, info_load_iface, info_get_nic_information):
	* callbacks.c (on_info_nic_changed):
	Consolidated netinfo_info structure into Netinfo structure to
	support copy to clipboard for info tab.

	* info.[ch] (info_copy_to_clipboard): New function to
	implement copy to clipboard for info tab.

2003-07-23  German Poo-Caaman~o  <gpoo@ubiobio.cl>

	* lookup.h: Added LOOKUP_FORMAT_MX.
	* lookup.c (split_line): Split correctly the lines for MX
	  records.

2003-07-22  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* callbacks.c: Deleted conditional #ifdef for traceroute,
	  ping and netstat.
	  Added scan.h
	* scan.h: Added scan_stop prototype.
	* scan.c: Removed conditional #ifdef

2003-07-22  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* TODO: Updated.

2003-07-22  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* Makefile.am: Added util-mii.[ch] and mii.h

2003-07-22  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* mii.h: Added file required for util-mii.[ch].
	* info.c (info_get_nic_information): Added Link Speed support
	  using mii_get_basic.

2003-07-21  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* util-mii.[ch]: Added files that provides a function
	  that will allow us to retrieve the link speed from
	  a Ethernet card (mii_get_basic).

2003-07-21  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* main.c:
	* traceroute.c:
	* lookup.c:
	* ping.c:
	  	Remove conditionals defines.  Now everything is detected
		on the fly, but info.c (ifconfig)

2003-07-21  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* lookup.[ch] (lookup_do):
	* lookup.c (lookup_copy_to_clipboard):
	* main.c (load_lookup_widgets_from_xml):
	* gnome-netinfo.glade (Lookup tab):
		Added support for GtkTreeView.

2003-07-21  German Poo-Caaman~o <gpoo@ubiobio.cl>

	Added lookup.[ch].

2003-07-21  German Poo-Caaman~o <gpoo@ubiobio.cl>

	Applied changes sent by William Jon McCann <mccann@jhu.edu>:
	* Makefile.am: Added lookup.[ch]
	* main.c (main): Added lookup definition
	  Added load_lookup_widgets_from_xml
	* callbacks.[ch]: Added on_lookup_activate.
	  (on_copy_activate): Added LOOKUP copy activation.
	* netinfo.h: Added LOOKUP to enumeration of notebook pages.

2003-07-21  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* netstat.c (netstat_copy_to_clipboard):
	  Fixed column titles.

2003-07-21  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* traceroute.c (traceroute_do):
	* ping.c (ping_do):
	* netstat.c (netstat_do):
	  Added Autodetection of programs (ping, tcptraceroute, netstat).
	* utils.[ch]: Added utilitities to find program in a path given.
	    Most code stolen from gutils.c
		util_find_program_dialog, util_tree_model_to_string,
		util_find_program_in_path, my_strchrnul.
	* TODO: Updated.

2003-07-20  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* TODO: Updated.

2003-07-20  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* main.c (load_netstat_widgets_from_xml): Added
	  netstat_copy_to_clipboard to copy_output properties.
	* netstat.[ch]: Added netstat_copy_to_clipboard prototype.

2003-07-20  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* main.c (load_scan_widgets_from_xml): Added
	  scan_copy_to_clipboard to copy_output properties.
	* scan.h: Added scan_copy_to_clipboard prototype.
	* scan.c: Added scan_copy_to_clipboard prototype.

2003-07-20  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* ping.c (ping_copy_to_clipboard): Clean the code.

2003-07-20  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* traceroute.h: Added traceroute_copy_to_clipboard prototype.
	* traceroute.c: Added  traceroute_copy_to_clipboard.
	* utils.h: Added prototype util_tree_model_to_string.
	* utils.c: Added output_foreach: Convert a text a row from a
	  GtkTreeModel.
	  Added util_tree_model_to_string to convert a GtkTreeModel to
	  a GString (text separated by tabs).
	* main.c (load_traceroute_widgets_from_xml): Added
	  traceroute_copy_to_clipboard to copy_output properties.

2003-07-20  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* main.c (load_ping_from_widgets): Added ping_copy_to_clipboard
	  to copy_output properties.
	* ping.h: Added prototype (ping_copy_to_clipboard)
	* ping.c: Added ping_copy_to_clipboard and ping_output_foreach.
	  Process a GtkTreeModel gettings its values and put them into
	  the clipboard as text separated by tabs.
	* callbacks.c (on_copy_activate): Enable conditional
	  copy_output only if a function is provided).

2003-07-20  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* netinfo.h: Fixed enum definition.
	  Added 'copy_output' pointer function to _Netinfo struct
	  (for processing copy to a clipboard from any source)
	* main.c (main): Attached Netinfo's variables to the
	  notebook.
	* callbacks.h: Retrieve data attached.

2003-07-20  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* netinfo.h: Added definition for Notebook pages (to allow
	  copy from any tab)

2003-07-20  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* callbacks.h: Added prototypes for on_about_activation
	  and on_copy_activation
	* callbacks.c: Added prototype for on_copy_activation
	* gnome-netinfo.c: Added callback on_copy_activate on tje
	  menu m_copy.

2003-07-20  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* Makefile.am, main.c: Fixed named of application localedir.

2003-07-20  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* gnome-netinfo.glade: Added callback to signal on_about_activate
	  on the menu m_about.
	* callbacks.c: Added on_about_activate to show the About box.

2003-07-13  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* gnome-netinfo.glade: Fixed defaults elements on menu.

2003-07-13  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* gnome-netinfo.glade: Fixed typo (Fixed bugs #117319,
	  #117321)

2003-07-08  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* ping.c (ping_foreach_with_tree): Fixed calculation of packet
	  transmitted.
	  (strip_total_line): Fixed parameters in sscanf.

2003-07-06  William Jon McCann  <mccann@jhu.edu>

	* ping.c (ping_do): Clear the statistics before starting ping.
	(strip_total_line): New function.
	(ping_foreach_with_tree): Fixed calculation of packet loss.
	Added packets transmitted information.

	* ping.h (PING_TOTAL): Uncomment sscanf template used to parse
	ping results summary output.  This is used to get the total number of
	packets transmitted.

	* netinfo.h:
	* main.c (load_ping_widgets_from_xml): Added support for packets
	transmitted information.

2003-07-03  William Jon McCann  <mccann@jhu.edu>

	* gnome-netinfo.glade: Changed labels on information tab
	to use colons (per HIG).  Consolidated separate statistics label
	with RTT and Transmission labels on Ping tab.  Made text entry
	tooltips consistent with labels.  Made radio button group
	horizontal on Ping tab.

2003-07-02  William Jon McCann  <mccann@jhu.edu>

	* gnome-netinfo.glade: Changed some of the language in the labels
	to be a bit clearer and more consistent.  Use HIG style
	recommendations.  Made Information on the Information tab
	selectable so that it can be cut-and-pasted.

2003-06-29  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* helpers: Added directory to host the helpers programs
	  for ping, tcptraceroute, etc.
	* helpers/gnome-ping-helper.[ch]: First implementation of
	  a ping.  It works on Linux, and compile on Solaris. It
	  need SUID, so I can't test it in a Solaris box, yet. but
	  it should be work.
	* helpers/Makefile: Just to compile gnome-ping-helper.  Besides
	  is quite simple, it should changed for Makefile.am
	* helpers/README.gnome-ping-helper: An small explanation how
	  it works.

2003-06-27  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* netinfo.c: Error output commented from g_async_with_pipes
	  in favour of Std Output.

2003-06-27  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* netstat.h: Added structs to support store line data for
	  route, protocol and multicast information.
	  Added enum NetstatOption to know what state is active
	* netstat.c: Added strip_protocol_line and netstat_get_active_option2
	  Reimplemented using GtkTreeView instead GtkTextView.
	* gnome-netinfo.glade: Changed the netstat tab to use GtkTreeView.
	* main.c: Changed signals to callbacks fro netstat.  Added
	  callbacks to process toggled button changes.

2003-06-06  Rodrigo Moya <rodrigo@gnome-db.org>

	* gnome-netinfo.desktop: moved to .desktop.in.

	* Makefile.am: added correct @INTLTOOL_DESKTOP_RULE@.

2003-02-21  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* main.c: Added "activate" handle signal to
	  load_scan_widgets_from_xml

2003-02-20  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* scan.[ch]: Added files that implement the portscan feature.
	* Makefile.am: Added scan.[ch]
	* callbacks.[ch]: Adedd on_scan_activate
	* gnome-netinfo.glade: Added "Port Scan" tab page.
	* main.c: Added load_scan_widgets_from_xml
	* netinfo.h: Added extra properties to handle ping in
	  Netinfo struct.
	* ping.c: Implemented the first part to get a summary
	  of ping output (avg, min, max, packets loss, packets received)
	* traceroute.c: Change of vidibility of traceroute_strip_line
	  and traceroute_create_model (to static, because only concerns
	  to the module).

2003-02-11  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* info.c: Added condition to get general transmission
	  at info_nic_changed (this information only is
	  available on Linux, at moment).

2003-02-11  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* utils.[ch]: Added to store utilities functions such
	  as provide g_sprintf to environments whithout
	  GNOME 2.2.
	* info.c: Added utils.h to allow use g_sprintf in
	  GNOME 2.0 environments.
	* Makefile.am: Added utils.[ch] to build.

2003-02-11  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* info.c: Added info_get_interfaces to get the network
	  interfaces by ioctl calls instead reading /proc
	  and updated info_load_iface to use it.
	  It sould be that gnome-netinfo works in Solaris.
	* TODO: Updated todo list.

2003-02-11  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* info.c: Fixed SIOCGIFNETMASK ioctl call.  Using
	  ifr_addr to get netmask address instead ifr_netmask,
	  because it seems work on more plataforms.

2003-02-11  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* info.c: Added conditional include of sys/sockio.h
	  needed for Solaris defines of socket ioctl calls.

2003-02-11  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* info.h: Added conditional definition of ifr_mtu,
	  because Solaris support SIOCGIFMTU ioctl call,
	  but store the MTU on ifr_metric.

2003-02-11  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* info.c: Added conditional execution when try
	  to get the Netmask, at least Solaris hasn't support
	  to SIOCGIFNETMASK in ioctl.

2003-02-11  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* info.c: Added conditional execution when try
	  to get HW Address, at least Solaris hasn't support
	  to SIOCGIFHWADDR in ioctl.

2003-02-11  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* gnome-netinfo.glade: Changed traceroute notebook:
	  - Changed GtkTextView by GtkTreeView
	* traceroute.h: Added definitions of traceroute_data
	  to handle the text output from tcptraceroute.
	  Added trace_source_data to handle the short description
	  when tcptraceroute starts (I'm not sure if it will
	  be useful, yet)
	  - Added enum to work with GtkTreeView
	* traceroute.c: Added traceroute_foreach_with_tree to
	  show the output of ping as GtkTreeView
	  - Added strip_line to strip each line of tcptraceroute
	  - Added traceroute_create_model to handle the
	    GtkTreeView
	* main.c: changed tracer->process_line in
	  load_traceroute_widgets_from_xml to connect to the
	  new funcion (traceroute_foreach_with_tree) to show
	  the tcptraceroute output
	* ping.c: Added ping_create_model to handle (and clean)
	  the GtkTreeView.

2003-01-14  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* gnome-netinfo.glade: Changed ping notebook:
	  - Added statistics frame to resume ping request
	  - Changed GtkTextView by GtkTreeView
	* ping.h: Added definitions of ping output from
	  differents flavours of Unix and added a structure
	  to handle each ping reply
	* ping.c: Added ping_foreach_with_tree to show the
	  output of ping as GtkTreeView
	  - Added strip_line to strip each line of ping
	    output and populate the ping_data structure.
	* main.c: changed pinger->process_line in
	  load_ping_widgets_from_xml to connect to the
	  new funcion (ping_foreach_with_tree) to show
	  the ping output
	* TODO: Updated to show pending task on ping todo
	  support *BSD.

2003-01-13  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* gnome-netinfo.glade:
	* netstat.c: Changed information to display.  Protocol
		information were changed in favour of service running
		(Internet listening sockets).

2003-01-13  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* traceroute.c:
	* traceroute.h:
	* callbacks.c:
	* gnome-netinfo.glade:
	* info.c:
	* netstat.c:
	* netstat.h:
	* ping.c:
	* main.c: Added conditional compilation if one of these programs
	          were found it by configure (PING_PROGRAM.
			  TCPTRACEROUTE_PROGRAM, NETSTAT_PROGRAM,
			  IFCONFIG_PROGRAM)
	* netinfo.c: Fixed warning in compilation
			  (netinfo_io_text_buffer_dialog)

2003-01-10  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* TODO: Updated todo list.

2003-01-10  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* netinfo.c: Add information when then channel is not
	  available (G_IO_NVAL)

2003-01-08  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* info.h: Fix type on netinfo_info typedef.

2003-01-08  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* netinfo.c: Added info_get_nic_information () to get the
	  details for each network interface.
	* info.h: Added new attributes to _netinfo_info to show
	  more information about each network interface.
	  Added constants for common text
	* main.c: Added  the new attributtes defined on info.h
	  to load_info_widgets_from_xml
	* gnome-netinfo.glade: Added new labels to show more information
	  about each network interface

2002-12-19  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* TODO: Updated TODO list.

2002-12-19  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* gnome-netinfo.glade: Removed callback for info_nic

	* main.c: Implemented load_info_widgets_from_xml and
	  called it from main

	* info.[ch] Implemented info_load_iface
	  Pseudo implemented info_nick_changed.

2002-12-17  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* main.c: Added load_netstat_widgets_from_xml

	* Makefile.am: Added netstat.[ch]

	* netstat.[ch]: Added implementation of netstat
	  netstat_do
	  netstat_stop
	  netstat_foreach
	  netstat_get_active_option

2002-12-17  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* main.c: Adapted load_traceroute_widgets_from_xml to work
	  with the Netinfo structure.

	* traceroute.[ch]: Reimplemented traceroute (using
	  tcptraceroute.  Implemented:
	  traceroute_do
	  traceroute_stop
	  traceroute_foreach

	* netinfo.[ch]: Added to CVS repository.

2002-12-17  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* Makefile.am: Added netinfo.[ch]

	* netinfo.[ch]: Added file to manage generic functions
	  to call programs such as ping, traceroute, netstat,
	  etc.
	  Functions:
	  netinfo_process_command
	  netinfo_stop_process_command
	  netinfo_text_buffer_insert
	  netinfo_get_count
	  netinfo_get_host
	  netinfo_toggle_button
	  netinfo_toggle_state

	* ping.c: Moved and renamed functions to netinfo.c, only
	  ping_do left respect the previous one.
	  Added ping_foreach to process each line from the output
	  of command.
	  Added ping_stop to stop the process when its running.

	* TODO: Updated todo list

2002-12-17  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* glade-netinfo.glade: Fixed a minimal value for
	  ping's count spin (min set to 1).

	* TODO: Added To Do file with missing features to
	  get an usable application

	* TEST_CASES: Added basics user test cases, to remind
	  me what do I need to test, after every change.

2002-12-14  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* callbacks.[ch]: Move #define's to callbacks.h
	* main.c: Added initialization of pinger->child_pid
	* ping.c: Implemented ping_stop that send a SIGINT to
	  child process if exists.
	  Changed local variables by properties of the netinfo
	  structure.
	* ping.h: Added a function pointer to allow a generic
	  uses of ping.c

2002-12-14  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* gnome-netinfo.glade: Fixed double defaults definitions
	  (it were noted when glade built the sources)
	* traceroute.c: Changed traceroute by tcptraceroute.
	* ping.h: Added properties to netinfo_ping (button,
	  running, child_pid and command_line)
	* ping.c:
	  - Changed ping_do to work with netinfo_ping
	    directly.
	  - Added netinfo_get_count to get a value of a property
	    of netinfo_ping (in the future, may be a generic
		structure netinfo).
	  - Added ping_stop.  This function must stop the
	    execution in any time that the user want.
	* callbacks.c:
	  -Added toggle_button that change a the
	   label and icon of a button (destroy and re-create)
	   to be used by any callback.
	  - Updated on_ping_* to use toggle_button.

2002-12-14  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* main.c: Fixed a crash bug in load_*_widgets_from_xml on
	  argument of gmalloc.
	* callbacks.c: Now ping can be unlimited (max 99) or
	  limited (accoring to spin).  Still is missing a "Stop"
	  feature.

2002-12-13  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* info.[ch]: Added to CVS.

2002-12-13  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* Makefile.am: Added info.[ch]
	* info.[ch]: Added modules to process the network cards
	  information.
	* callbacks.[ch]: Rewritten on_ping_host_activate and
	  on_traceroute_host_activate to support the struct
	  that contins the widgets in each notebook.
	  Added on_*_button_clicked, with a similar funcionality
	  a on*_host_activate.
	  Added on_info_nic_changed with a definition about how
	  must it work.
	* gnome-netinfo.glade: Fixed some widgets names and
	  some properties (editable).
	  The callbacks of ping_host and traceroute were deleted.
	* main.c: Added:
	     load_ping_widgets_from_xml (xml);
	     load_traceroute_widgets_from_xml (xml);
	  to read the widgets in each notebook to pass them to
	  the signals.
	* ping.c: End of funcionality.  Now the counts of ping
	  are not hard coded.

2002-12-12  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* ping.[ch]:
	  traceroute.[ch]:
	  main.c: Added copyright and license comments.

2002-12-12  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* gnome-netinfo.glade: UI improvements and normalization
	  of the name of variables.

2002-12-12  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* Makefile.am:
	* traceroute.[ch]: Added code (copied from ping.[ch])
	  to process the traceroute output.  At moment, it's
	  blocking the parent process.

	* gnome-netinfo.glade: New interfaces, MacOSX alike
	  with minimal information, ping, traceroute and netstat.

2002-12-11  Rodrigo Moya <rodrigo@gnome-db.org>

	* gnome-netinfo.desktop: fixed entry name.

2002-12-11  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* Renamed to gnome-netinfo to make it a general tool

2002-12-11  German Poo-Caaman~o <gpoo@ubiobio.cl>

	* First commit:  A minimal version of gping.