aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/message_parser.php
blob: 31fc1577a2717ff2e35c927d7094687e894ff9ad (plain)
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
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/

/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

if (!class_exists('bbcode'))
{
	// The following lines are for extensions which include message_parser.php
	// while $phpbb_root_path and $phpEx are out of the script scope
	// which may lead to the 'Undefined variable' and 'failed to open stream' errors
	if (!isset($phpbb_root_path))
	{
		global $phpbb_root_path;
	}

	if (!isset($phpEx))
	{
		global $phpEx;
	}

	include($phpbb_root_path . 'includes/bbcode.' . $phpEx);
}

/**
* BBCODE FIRSTPASS
* BBCODE first pass class (functions for parsing messages for db storage)
*/
class bbcode_firstpass extends bbcode
{
	var $message = '';
	var $warn_msg = array();
	var $parsed_items = array();

	/**
	* Parse BBCode
	*/
	function parse_bbcode()
	{
		if (!$this->bbcodes)
		{
			$this->bbcode_init();
		}

		global $user;

		$this->bbcode_bitfield = '';
		$bitfield = new bitfield();

		foreach ($this->bbcodes as $bbcode_name => $bbcode_data)
		{
			if (isset($bbcode_data['disabled']) && $bbcode_data['disabled'])
			{
				foreach ($bbcode_data['regexp'] as $regexp => $replacement)
				{
					if (preg_match($regexp, $this->message))
					{
						$this->warn_msg[] = sprintf($user->lang['UNAUTHORISED_BBCODE'] , '[' . $bbcode_name . ']');
						continue;
					}
				}
			}
			else
			{
				foreach ($bbcode_data['regexp'] as $regexp => $replacement)
				{
					// The pattern gets compiled and cached by the PCRE extension,
					// it should not demand recompilation
					if (preg_match($regexp, $this->message))
					{
						if (is_callable($replacement))
						{
							$this->message = preg_replace_callback($regexp, $replacement, $this->message);
						}
						else
						{
							$this->message = preg_replace($regexp, $replacement, $this->message);
						}
						$bitfield->set($bbcode_data['bbcode_id']);
					}
				}
			}
		}

		$this->bbcode_bitfield = $bitfield->get_base64();
	}

	/**
	* Prepare some bbcodes for better parsing
	*/
	function prepare_bbcodes()
	{
		// Ok, seems like users instead want the no-parsing of urls, smilies, etc. after and before and within quote tags being tagged as "not a bug".
		// Fine by me ;) Will ease our live... but do not come back and cry at us, we won't hear you.

		/* Add newline at the end and in front of each quote block to prevent parsing errors (urls, smilies, etc.)
		if (strpos($this->message, '[quote') !== false && strpos($this->message, '[/quote]') !== false)
		{
			$this->message = str_replace("\r\n", "\n", $this->message);

			// We strip newlines and spaces after and before quotes in quotes (trimming) and then add exactly one newline
			$this->message = preg_replace('#\[quote(=&quot;.*?&quot;)?\]\s*(.*?)\s*\[/quote\]#siu', '[quote\1]' . "\n" . '\2' ."\n[/quote]", $this->message);
		}
		*/

		// Add other checks which needs to be placed before actually parsing anything (be it bbcodes, smilies, urls...)
	}

	/**
	* Init bbcode data for later parsing
	*/
	function bbcode_init($allow_custom_bbcode = true)
	{
		global $phpbb_dispatcher;

		static $rowset;

		$bbcode_class = $this;

		// This array holds all bbcode data. BBCodes will be processed in this
		// order, so it is important to keep [code] in first position and
		// [quote] in second position.
		// To parse multiline URL we enable dotall option setting only for URL text
		// but not for link itself, thus [url][/url] is not affected.
		//
		// To perform custom validation in extension, use $this->validate_bbcode_by_extension()
		// method which accepts variable number of parameters
		$this->bbcodes = array(
			'code'			=> array('bbcode_id' => 8,	'regexp' => array('#\[code(?:=([a-z]+))?\](.+\[/code\])#uis' => function ($match) use($bbcode_class)
				{
					return $bbcode_class->bbcode_code($match[1], $match[2]);
				}
			)),
			'quote'			=> array('bbcode_id' => 0,	'regexp' => array('#\[quote(?:=&quot;(.*?)&quot;)?\](.+)\[/quote\]#uis' => function ($match) use($bbcode_class)
				{
					return $bbcode_class->bbcode_quote($match[0]);
				}
			)),
			'attachment'	=> array('bbcode_id' => 12,	'regexp' => array('#\[attachment=([0-9]+)\](.*?)\[/attachment\]#uis' => function ($match) use($bbcode_class)
				{
					return $bbcode_class->bbcode_attachment($match[1], $match[2]);
				}
			)),
			'b'				=> array('bbcode_id' => 1,	'regexp' => array('#\[b\](.*?)\[/b\]#uis' => function ($match) use($bbcode_class)
				{
					return $bbcode_class->bbcode_strong($match[1]);
				}
			)),
			'i'				=> array('bbcode_id' => 2,	'regexp' => array('#\[i\](.*?)\[/i\]#uis' => function ($match) use($bbcode_class)
				{
					return $bbcode_class->bbcode_italic($match[1]);
				}
			)),
			'url'			=> array('bbcode_id' => 3,	'regexp' => array('#\[url(=(.*))?\](?(1)((?s).*(?-s))|(.*))\[/url\]#uiU' => function ($match) use($bbcode_class)
				{
					return $bbcode_class->validate_url($match[2], ($match[3]) ? $match[3] : $match[4]);
				}
			)),
			'img'			=> array('bbcode_id' => 4,	'regexp' => array('#\[img\](.*)\[/img\]#uiU' => function ($match) use($bbcode_class)
				{
					return $bbcode_class->bbcode_img($match[1]);
				}
			)),
			'size'			=> array('bbcode_id' => 5,	'regexp' => array('#\[size=([\-\+]?\d+)\](.*?)\[/size\]#uis' => function ($match) use($bbcode_class)
				{
					return $bbcode_class->bbcode_size($match[1], $match[2]);
				}
			)),
			'color'			=> array('bbcode_id' => 6,	'regexp' => array('!\[color=(#[0-9a-f]{3}|#[0-9a-f]{6}|[a-z\-]+)\](.*?)\[/color\]!uis' => function ($match) use($bbcode_class)
				{
					return $bbcode_class->bbcode_color($match[1], $match[2]);
				}
			)),
			'u'				=> array('bbcode_id' => 7,	'regexp' => array('#\[u\](.*?)\[/u\]#uis' => function ($match) use($bbcode_class)
				{
					return $bbcode_class->bbcode_underline($match[1]);
				}
			)),
			'list'			=> array('bbcode_id' => 9,	'regexp' => array('#\[list(?:=(?:[a-z0-9]|disc|circle|square))?].*\[/list]#uis' => function ($match) use($bbcode_class)
				{
					return $bbcode_class->bbcode_parse_list($match[0]);
				}
			)),
			'email'			=> array('bbcode_id' => 10,	'regexp' => array('#\[email=?(.*?)?\](.*?)\[/email\]#uis' => function ($match) use($bbcode_class)
				{
					return $bbcode_class->validate_email($match[1], $match[2]);
				}
			)),
			'flash'			=> array('bbcode_id' => 11,	'regexp' => array('#\[flash=([0-9]+),([0-9]+)\](.*?)\[/flash\]#ui' => function ($match) use($bbcode_class)
				{
					return $bbcode_class->bbcode_flash($match[1], $match[2], $match[3]);
				}
			))
		);

		// Zero the parsed items array
		$this->parsed_items = array();

		foreach ($this->bbcodes as $tag => $bbcode_data)
		{
			$this->parsed_items[$tag] = 0;
		}

		if (!$allow_custom_bbcode)
		{
			return;
		}

		if (!is_array($rowset))
		{
			global $db;
			$rowset = array();

			$sql = 'SELECT *
				FROM ' . BBCODES_TABLE;
			$result = $db->sql_query($sql);

			while ($row = $db->sql_fetchrow($result))
			{
				$rowset[] = $row;
			}
			$db->sql_freeresult($result);
		}

		foreach ($rowset as $row)
		{
			$this->bbcodes[$row['bbcode_tag']] = array(
				'bbcode_id'	=> (int) $row['bbcode_id'],
				'regexp'	=> array($row['first_pass_match'] => str_replace('$uid', $this->bbcode_uid, $row['first_pass_replace']))
			);
		}

		$bbcodes = $this->bbcodes;

		/**
		* Event to modify the bbcode data for later parsing
		*
		* @event core.modify_bbcode_init
		* @var array	bbcodes		Array of bbcode data for use in parsing
		* @var array	rowset		Array of bbcode data from the database
		* @since 3.1.0-a3
		*/
		$vars = array('bbcodes', 'rowset');
		extract($phpbb_dispatcher->trigger_event('core.modify_bbcode_init', compact($vars)));

		$this->bbcodes = $bbcodes;
	}

	/**
	* Making some pre-checks for bbcodes as well as increasing the number of parsed items
	*/
	function check_bbcode($bbcode, &$in)
	{
		// when using the /e modifier, preg_replace slashes double-quotes but does not
		// seem to slash anything else
		$in = str_replace("\r\n", "\n", str_replace('\"', '"', $in));

		// Trimming here to make sure no empty bbcodes are parsed accidently
		if (trim($in) == '')
		{
			return false;
		}

		$this->parsed_items[$bbcode]++;

		return true;
	}

	/**
	* Transform some characters in valid bbcodes
	*/
	function bbcode_specialchars($text)
	{
		$str_from = array('<', '>', '[', ']', '.', ':');
		$str_to = array('&lt;', '&gt;', '&#91;', '&#93;', '&#46;', '&#58;');

		return str_replace($str_from, $str_to, $text);
	}

	/**
	* Parse size tag
	*/
	function bbcode_size($stx, $in)
	{
		global $user, $config;

		if (!$this->check_bbcode('size', $in))
		{
			return $in;
		}

		if ($config['max_' . $this->mode . '_font_size'] && $config['max_' . $this->mode . '_font_size'] < $stx)
		{
			$this->warn_msg[] = $user->lang('MAX_FONT_SIZE_EXCEEDED', (int) $config['max_' . $this->mode . '_font_size']);

			return '[size=' . $stx . ']' . $in . '[/size]';
		}

		// Do not allow size=0
		if ($stx <= 0)
		{
			return '[size=' . $stx . ']' . $in . '[/size]';
		}

		return '[size=' . $stx . ':' . $this->bbcode_uid . ']' . $in . '[/size:' . $this->bbcode_uid . ']';
	}

	/**
	* Parse color tag
	*/
	function bbcode_color($stx, $in)
	{
		if (!$this->check_bbcode('color', $in))
		{
			return $in;
		}

		return '[color=' . $stx . ':' . $this->bbcode_uid . ']' . $in . '[/color:' . $this->bbcode_uid . ']';
	}

	/**
	* Parse u tag
	*/
	function bbcode_underline($in)
	{
		if (!$this->check_bbcode('u', $in))
		{
			return $in;
		}

		return '[u:' . $this->bbcode_uid . ']' . $in . '[/u:' . $this->bbcode_uid . ']';
	}

	/**
	* Parse b tag
	*/
	function bbcode_strong($in)
	{
		if (!$this->check_bbcode('b', $in))
		{
			return $in;
		}

		return '[b:' . $this->bbcode_uid . ']' . $in . '[/b:' . $this->bbcode_uid . ']';
	}

	/**
	* Parse i tag
	*/
	function bbcode_italic($in)
	{
		if (!$this->check_bbcode('i', $in))
		{
			return $in;
		}

		return '[i:' . $this->bbcode_uid . ']' . $in . '[/i:' . $this->bbcode_uid . ']';
	}

	/**
	* Parse img tag
	*/
	function bbcode_img($in)
	{
		global $user, $config;

		if (!$this->check_bbcode('img', $in))
		{
			return $in;
		}

		$in = trim($in);
		$error = false;

		$in = str_replace(' ', '%20', $in);

		// Checking urls
		if (!preg_match('#^' . get_preg_expression('url') . '$#iu', $in) && !preg_match('#^' . get_preg_expression('www_url') . '$#iu', $in))
		{
			return '[img]' . $in . '[/img]';
		}

		// Try to cope with a common user error... not specifying a protocol but only a subdomain
		if (!preg_match('#^[a-z0-9]+://#i', $in))
		{
			$in = 'http://' . $in;
		}

		if ($config['max_' . $this->mode . '_img_height'] || $config['max_' . $this->mode . '_img_width'])
		{
			$imagesize = new \FastImageSize\FastImageSize();
			$size_info = $imagesize->getImageSize(htmlspecialchars_decode($in));

			if ($size_info === false)
			{
				$error = true;
				$this->warn_msg[] = $user->lang['UNABLE_GET_IMAGE_SIZE'];
			}
			else
			{
				if ($config['max_' . $this->mode . '_img_height'] && $config['max_' . $this->mode . '_img_height'] < $size_info['height'])
				{
					$error = true;
					$this->warn_msg[] = $user->lang('MAX_IMG_HEIGHT_EXCEEDED', (int) $config['max_' . $this->mode . '_img_height']);
				}

				if ($config['max_' . $this->mode . '_img_width'] && $config['max_' . $this->mode . '_img_width'] < $size_info['width'])
				{
					$error = true;
					$this->warn_msg[] = $user->lang('MAX_IMG_WIDTH_EXCEEDED', (int) $config['max_' . $this->mode . '_img_width']);
				}
			}
		}

		if ($error || $this->path_in_domain($in))
		{
			return '[img]' . $in . '[/img]';
		}

		return '[img:' . $this->bbcode_uid . ']' . $this->bbcode_specialchars($in) . '[/img:' . $this->bbcode_uid . ']';
	}

	/**
	* Parse flash tag
	*/
	function bbcode_flash($width, $height, $in)
	{
		global $user, $config;

		if (!$this->check_bbcode('flash', $in))
		{
			return $in;
		}

		$in = trim($in);
		$error = false;

		// Do not allow 0-sizes generally being entered
		if ($width <= 0 || $height <= 0)
		{
			return '[flash=' . $width . ',' . $height . ']' . $in . '[/flash]';
		}

		$in = str_replace(' ', '%20', $in);

		// Make sure $in is a URL.
		if (!preg_match('#^' . get_preg_expression('url') . '$#iu', $in) &&
			!preg_match('#^' . get_preg_expression('www_url') . '$#iu', $in))
		{
			return '[flash=' . $width . ',' . $height . ']' . $in . '[/flash]';
		}

		// Apply the same size checks on flash files as on images
		if ($config['max_' . $this->mode . '_img_height'] || $config['max_' . $this->mode . '_img_width'])
		{
			if ($config['max_' . $this->mode . '_img_height'] && $config['max_' . $this->mode . '_img_height'] < $height)
			{
				$error = true;
				$this->warn_msg[] = $user->lang('MAX_FLASH_HEIGHT_EXCEEDED', (int) $config['max_' . $this->mode . '_img_height']);
			}

			if ($config['max_' . $this->mode . '_img_width'] && $config['max_' . $this->mode . '_img_width'] < $width)
			{
				$error = true;
				$this->warn_msg[] = $user->lang('MAX_FLASH_WIDTH_EXCEEDED', (int) $config['max_' . $this->mode . '_img_width']);
			}
		}

		if ($error || $this->path_in_domain($in))
		{
			return '[flash=' . $width . ',' . $height . ']' . $in . '[/flash]';
		}

		return '[flash=' . $width . ',' . $height . ':' . $this->bbcode_uid . ']' . $this->bbcode_specialchars($in) . '[/flash:' . $this->bbcode_uid . ']';
	}

	/**
	* Parse inline attachments [ia]
	*/
	function bbcode_attachment($stx, $in)
	{
		if (!$this->check_bbcode('attachment', $in))
		{
			return $in;
		}

		return '[attachment=' . $stx . ':' . $this->bbcode_uid . ']<!-- ia' . $stx . ' -->' . trim($in) . '<!-- ia' . $stx . ' -->[/attachment:' . $this->bbcode_uid . ']';
	}

	/**
	* Parse code text from code tag
	* @access private
	*/
	function bbcode_parse_code($stx, &$code)
	{
		switch (strtolower($stx))
		{
			case 'php':

				$remove_tags = false;

				$str_from = array('&lt;', '&gt;', '&#91;', '&#93;', '&#46;', '&#58;', '&#058;');
				$str_to = array('<', '>', '[', ']', '.', ':', ':');
				$code = str_replace($str_from, $str_to, $code);

				if (!preg_match('/\<\?.*?\?\>/is', $code))
				{
					$remove_tags = true;
					$code = "<?php $code ?>";
				}

				$conf = array('highlight.bg', 'highlight.comment', 'highlight.default', 'highlight.html', 'highlight.keyword', 'highlight.string');
				foreach ($conf as $ini_var)
				{
					@ini_set($ini_var, str_replace('highlight.', 'syntax', $ini_var));
				}

				// Because highlight_string is specialcharing the text (but we already did this before), we have to reverse this in order to get correct results
				$code = htmlspecialchars_decode($code);
				$code = highlight_string($code, true);

				$str_from = array('<span style="color: ', '<font color="syntax', '</font>', '<code>', '</code>','[', ']', '.', ':');
				$str_to = array('<span class="', '<span class="syntax', '</span>', '', '', '&#91;', '&#93;', '&#46;', '&#58;');

				if ($remove_tags)
				{
					$str_from[] = '<span class="syntaxdefault">&lt;?php </span>';
					$str_to[] = '';
					$str_from[] = '<span class="syntaxdefault">&lt;?php&nbsp;';
					$str_to[] = '<span class="syntaxdefault">';
				}

				$code = str_replace($str_from, $str_to, $code);
				$code = preg_replace('#^(<span class="[a-z_]+">)\n?(.*?)\n?(</span>)$#is', '$1$2$3', $code);

				if ($remove_tags)
				{
					$code = preg_replace('#(<span class="[a-z]+">)?\?&gt;(</span>)#', '$1&nbsp;$2', $code);
				}

				$code = preg_replace('#^<span class="[a-z]+"><span class="([a-z]+)">(.*)</span></span>#s', '<span class="$1">$2</span>', $code);
				$code = preg_replace('#(?:\s++|&nbsp;)*+</span>$#u', '</span>', $code);

				// remove newline at the end
				if (!empty($code) && substr($code, -1) == "\n")
				{
					$code = substr($code, 0, -1);
				}

				return "[code=$stx:" . $this->bbcode_uid . ']' . $code . '[/code:' . $this->bbcode_uid . ']';
			break;

			default:
				return '[code:' . $this->bbcode_uid . ']' . $this->bbcode_specialchars($code) . '[/code:' . $this->bbcode_uid . ']';
			break;
		}
	}

	/**
	* Parse code tag
	* Expects the argument to start right after the opening [code] tag and to end with [/code]
	*/
	function bbcode_code($stx, $in)
	{
		if (!$this->check_bbcode('code', $in))
		{
			return $in;
		}

		// We remove the hardcoded elements from the code block here because it is not used in code blocks
		// Having it here saves us one preg_replace per message containing [code] blocks
		// Additionally, magic url parsing should go after parsing bbcodes, but for safety those are stripped out too...
		$htm_match = get_preg_expression('bbcode_htm');
		unset($htm_match[4], $htm_match[5]);
		$htm_replace = array('\1', '\1', '\2', '\1');

		$out = $code_block = '';
		$open = 1;

		while ($in)
		{
			// Determine position and tag length of next code block
			preg_match('#(.*?)(\[code(?:=([a-z]+))?\])(.+)#is', $in, $buffer);
			$pos = (isset($buffer[1])) ? strlen($buffer[1]) : false;
			$tag_length = (isset($buffer[2])) ? strlen($buffer[2]) : false;

			// Determine position of ending code tag
			$pos2 = stripos($in, '[/code]');

			// Which is the next block, ending code or code block
			if ($pos !== false && $pos < $pos2)
			{
				// Open new block
				if (!$open)
				{
					$out .= substr($in, 0, $pos);
					$in = substr($in, $pos);
					$stx = (isset($buffer[3])) ? $buffer[3] : '';
					$code_block = '';
				}
				else
				{
					// Already opened block, just append to the current block
					$code_block .= substr($in, 0, $pos) . ((isset($buffer[2])) ? $buffer[2] : '');
					$in = substr($in, $pos);
				}

				$in = substr($in, $tag_length);
				$open++;
			}
			else
			{
				// Close the block
				if ($open == 1)
				{
					$code_block .= substr($in, 0, $pos2);
					$code_block = preg_replace($htm_match, $htm_replace, $code_block);

					// Parse this code block
					$out .= $this->bbcode_parse_code($stx, $code_block);
					$code_block = '';
					$open--;
				}
				else if ($open)
				{
					// Close one open tag... add to the current code block
					$code_block .= substr($in, 0, $pos2 + 7);
					$open--;
				}
				else
				{
					// end code without opening code... will be always outside code block
					$out .= substr($in, 0, $pos2 + 7);
				}

				$in = substr($in, $pos2 + 7);
			}
		}

		// if now $code_block has contents we need to parse the remaining code while removing the last closing tag to match up.
		if ($code_block)
		{
			$code_block = substr($code_block, 0, -7);
			$code_block = preg_replace($htm_match, $htm_replace, $code_block);

			$out .= $this->bbcode_parse_code($stx, $code_block);
		}

		return $out;
	}

	/**
	* Parse list bbcode
	* Expects the argument to start with a tag
	*/
	function bbcode_parse_list($in)
	{
		if (!$this->check_bbcode('list', $in))
		{
			return $in;
		}

		// $tok holds characters to stop at. Since the string starts with a '[' we'll get everything up to the first ']' which should be the opening [list] tag
		$tok = ']';
		$out = '[';

		// First character is [
		$in = substr($in, 1);
		$list_end_tags = $item_end_tags = array();

		do
		{
			$pos = strlen($in);

			for ($i = 0, $tok_len = strlen($tok); $i < $tok_len; ++$i)
			{
				$tmp_pos = strpos($in, $tok[$i]);

				if ($tmp_pos !== false && $tmp_pos < $pos)
				{
					$pos = $tmp_pos;
				}
			}

			$buffer = substr($in, 0, $pos);
			$tok = $in[$pos];

			$in = substr($in, $pos + 1);

			if ($tok == ']')
			{
				// if $tok is ']' the buffer holds a tag
				if (strtolower($buffer) == '/list' && sizeof($list_end_tags))
				{
					// valid [/list] tag, check nesting so that we don't hit false positives
					if (sizeof($item_end_tags) && sizeof($item_end_tags) >= sizeof($list_end_tags))
					{
						// current li tag has not been closed
						$out = preg_replace('/\n?\[$/', '[', $out) . array_pop($item_end_tags) . '][';
					}

					$out .= array_pop($list_end_tags) . ']';
					$tok = '[';
				}
				else if (preg_match('#^list(=[0-9a-z]+)?$#i', $buffer, $m))
				{
					// sub-list, add a closing tag
					if (empty($m[1]) || preg_match('/^=(?:disc|square|circle)$/i', $m[1]))
					{
						array_push($list_end_tags, '/list:u:' . $this->bbcode_uid);
					}
					else
					{
						array_push($list_end_tags, '/list:o:' . $this->bbcode_uid);
					}
					$out .= 'list' . substr($buffer, 4) . ':' . $this->bbcode_uid . ']';
					$tok = '[';
				}
				else
				{
					if (($buffer == '*' || substr($buffer, -2) == '[*') && sizeof($list_end_tags))
					{
						// the buffer holds a bullet tag and we have a [list] tag open
						if (sizeof($item_end_tags) >= sizeof($list_end_tags))
						{
							if (substr($buffer, -2) == '[*')
							{
								$out .= substr($buffer, 0, -2) . '[';
							}
							// current li tag has not been closed
							if (preg_match('/\n\[$/', $out, $m))
							{
								$out = preg_replace('/\n\[$/', '[', $out);
								$buffer = array_pop($item_end_tags) . "]\n[*:" . $this->bbcode_uid;
							}
							else
							{
								$buffer = array_pop($item_end_tags) . '][*:' . $this->bbcode_uid;
							}
						}
						else
						{
							$buffer = '*:' . $this->bbcode_uid;
						}

						$item_end_tags[] = '/*:m:' . $this->bbcode_uid;
					}
					else if ($buffer == '/*')
					{
						array_pop($item_end_tags);
						$buffer = '/*:' . $this->bbcode_uid;
					}

					$out .= $buffer . $tok;
					$tok = '[]';
				}
			}
			else
			{
				// Not within a tag, just add buffer to the return string
				$out .= $buffer . $tok;
				$tok = ($tok == '[') ? ']' : '[]';
			}
		}
		while ($in);

		// do we have some tags open? close them now
		if (sizeof($item_end_tags))
		{
			$out .= '[' . implode('][', $item_end_tags) . ']';
		}
		if (sizeof($list_end_tags))
		{
			$out .= '[' . implode('][', $list_end_tags) . ']';
		}

		return $out;
	}

	/**
	* Parse quote bbcode
	* Expects the argument to start with a tag
	*/
	function bbcode_quote($in)
	{
		global $config, $user;

		$in = str_replace("\r\n", "\n", str_replace('\"', '"', trim($in)));

		if (!$in)
		{
			return '';
		}

		// To let the parser not catch tokens within quote_username quotes we encode them before we start this...
		$in = preg_replace_callback('#quote=&quot;(.*?)&quot;\]#i', function ($match) {
			return 'quote=&quot;' . str_replace(array('[', ']', '\\\"'), array('&#91;', '&#93;', '\"'), $match[1]) . '&quot;]';
		}, $in);

		$tok = ']';
		$out = '[';

		$in = substr($in, 1);
		$close_tags = $error_ary = array();
		$buffer = '';

		do
		{
			$pos = strlen($in);
			for ($i = 0, $tok_len = strlen($tok); $i < $tok_len; ++$i)
			{
				$tmp_pos = strpos($in, $tok[$i]);
				if ($tmp_pos !== false && $tmp_pos < $pos)
				{
					$pos = $tmp_pos;
				}
			}

			$buffer .= substr($in, 0, $pos);
			$tok = $in[$pos];
			$in = substr($in, $pos + 1);

			if ($tok == ']')
			{
				if (strtolower($buffer) == '/quote' && sizeof($close_tags) && substr($out, -1, 1) == '[')
				{
					// we have found a closing tag
					$out .= array_pop($close_tags) . ']';
					$tok = '[';
					$buffer = '';

					/* Add space at the end of the closing tag if not happened before to allow following urls/smilies to be parsed correctly
					* Do not try to think for the user. :/ Do not parse urls/smilies if there is no space - is the same as with other bbcodes too.
					* Also, we won't have any spaces within $in anyway, only adding up spaces -> #10982
					if (!$in || $in[0] !== ' ')
					{
						$out .= ' ';
					}*/
				}
				else if (preg_match('#^quote(?:=&quot;(.*?)&quot;)?$#is', $buffer, $m) && substr($out, -1, 1) == '[')
				{
					$this->parsed_items['quote']++;
					array_push($close_tags, '/quote:' . $this->bbcode_uid);

					if (isset($m[1]) && $m[1])
					{
						$username = str_replace(array('&#91;', '&#93;'), array('[', ']'), $m[1]);
						$username = preg_replace('#\[(?!b|i|u|color|url|email|/b|/i|/u|/color|/url|/email)#iU', '&#91;$1', $username);

						$end_tags = array();
						$error = false;

						preg_match_all('#\[((?:/)?(?:[a-z]+))#i', $username, $tags);
						foreach ($tags[1] as $tag)
						{
							if ($tag[0] != '/')
							{
								$end_tags[] = '/' . $tag;
							}
							else
							{
								$end_tag = array_pop($end_tags);
								$error = ($end_tag != $tag) ? true : false;
							}
						}

						if ($error)
						{
							$username = $m[1];
						}

						$out .= 'quote=&quot;' . $username . '&quot;:' . $this->bbcode_uid . ']';
					}
					else
					{
						$out .= 'quote:' . $this->bbcode_uid . ']';
					}

					$tok = '[';
					$buffer = '';
				}
				else if (preg_match('#^quote=&quot;(.*?)#is', $buffer, $m))
				{
					// the buffer holds an invalid opening tag
					$buffer .= ']';
				}
				else
				{
					$out .= $buffer . $tok;
					$tok = '[]';
					$buffer = '';
				}
			}
			else
			{
/**
*				Old quote code working fine, but having errors listed in bug #3572
*
*				$out .= $buffer . $tok;
*				$tok = ($tok == '[') ? ']' : '[]';
*				$buffer = '';
*/

				$out .= $buffer . $tok;

				if ($tok == '[')
				{
					// Search the text for the next tok... if an ending quote comes first, then change tok to []
					$pos1 = stripos($in, '[/quote');
					// If the token ] comes first, we change it to ]
					$pos2 = strpos($in, ']');
					// If the token [ comes first, we change it to [
					$pos3 = strpos($in, '[');

					if ($pos1 !== false && ($pos2 === false || $pos1 < $pos2) && ($pos3 === false || $pos1 < $pos3))
					{
						$tok = '[]';
					}
					else if ($pos3 !== false && ($pos2 === false || $pos3 < $pos2))
					{
						$tok = '[';
					}
					else
					{
						$tok = ']';
					}
				}
				else
				{
					$tok = '[]';
				}
				$buffer = '';
			}
		}
		while ($in);

		$out .= $buffer;

		if (sizeof($close_tags))
		{
			$out .= '[' . implode('][', $close_tags) . ']';
		}

		foreach ($error_ary as $error_msg)
		{
			$this->warn_msg[] = $error_msg;
		}

		return $out;
	}

	/**
	* Validate email
	*/
	function validate_email($var1, $var2)
	{
		$var1 = str_replace("\r\n", "\n", str_replace('\"', '"', trim($var1)));
		$var2 = str_replace("\r\n", "\n", str_replace('\"', '"', trim($var2)));

		$txt = $var2;
		$email = ($var1) ? $var1 : $var2;

		$validated = true;

		if (!preg_match('/^' . get_preg_expression('email') . '$/i', $email))
		{
			$validated = false;
		}

		if (!$validated)
		{
			return '[email' . (($var1) ? "=$var1" : '') . ']' . $var2 . '[/email]';
		}

		$this->parsed_items['email']++;

		if ($var1)
		{
			$retval = '[email=' . $this->bbcode_specialchars($email) . ':' . $this->bbcode_uid . ']' . $txt . '[/email:' . $this->bbcode_uid . ']';
		}
		else
		{
			$retval = '[email:' . $this->bbcode_uid . ']' . $this->bbcode_specialchars($email) . '[/email:' . $this->bbcode_uid . ']';
		}

		return $retval;
	}

	/**
	* Validate url
	*
	* @param string $var1 optional url parameter for url bbcode: [url(=$var1)]$var2[/url]
	* @param string $var2 url bbcode content: [url(=$var1)]$var2[/url]
	*/
	function validate_url($var1, $var2)
	{
		global $config;

		$var1 = str_replace("\r\n", "\n", str_replace('\"', '"', trim($var1)));
		$var2 = str_replace("\r\n", "\n", str_replace('\"', '"', trim($var2)));

		$url = ($var1) ? $var1 : $var2;

		if ($var1 && !$var2)
		{
			$var2 = $var1;
		}

		if (!$url)
		{
			return '[url' . (($var1) ? '=' . $var1 : '') . ']' . $var2 . '[/url]';
		}

		$valid = false;

		$url = str_replace(' ', '%20', $url);

		// Checking urls
		if (preg_match('#^' . get_preg_expression('url') . '$#iu', $url) ||
			preg_match('#^' . get_preg_expression('www_url') . '$#iu', $url) ||
			preg_match('#^' . preg_quote(generate_board_url(), '#') . get_preg_expression('relative_url') . '$#iu', $url))
		{
			$valid = true;
		}

		if ($valid)
		{
			$this->parsed_items['url']++;

			// if there is no scheme, then add http schema
			if (!preg_match('#^[a-z][a-z\d+\-.]*:/{2}#i', $url))
			{
				$url = 'http://' . $url;
			}

			// Is this a link to somewhere inside this board? If so then remove the session id from the url
			if (strpos($url, generate_board_url()) !== false && strpos($url, 'sid=') !== false)
			{
				$url = preg_replace('/(&amp;|\?)sid=[0-9a-f]{32}&amp;/', '\1', $url);
				$url = preg_replace('/(&amp;|\?)sid=[0-9a-f]{32}$/', '', $url);
				$url = append_sid($url);
			}

			return ($var1) ? '[url=' . $this->bbcode_specialchars($url) . ':' . $this->bbcode_uid . ']' . $var2 . '[/url:' . $this->bbcode_uid . ']' : '[url:' . $this->bbcode_uid . ']' . $this->bbcode_specialchars($url) . '[/url:' . $this->bbcode_uid . ']';
		}

		return '[url' . (($var1) ? '=' . $var1 : '') . ']' . $var2 . '[/url]';
	}

	/**
	* Check if url is pointing to this domain/script_path/php-file
	*
	* @param string $url the url to check
	* @return true if the url is pointing to this domain/script_path/php-file, false if not
	*
	* @access private
	*/
	function path_in_domain($url)
	{
		global $config, $phpEx, $user;

		if ($config['force_server_vars'])
		{
			$check_path = $config['script_path'];
		}
		else
		{
			$check_path = ($user->page['root_script_path'] != '/') ? substr($user->page['root_script_path'], 0, -1) : '/';
		}

		// Is the user trying to link to a php file in this domain and script path?
		if (strpos($url, ".{$phpEx}") !== false && strpos($url, $check_path) !== false)
		{
			$server_name = $user->host;

			// Forcing server vars is the only way to specify/override the protocol
			if ($config['force_server_vars'] || !$server_name)
			{
				$server_name = $config['server_name'];
			}

			// Check again in correct order...
			$pos_ext = strpos($url, ".{$phpEx}");
			$pos_path = strpos($url, $check_path);
			$pos_domain = strpos($url, $server_name);

			if ($pos_domain !== false && $pos_path >= $pos_domain && $pos_ext >= $pos_path)
			{
				// Ok, actually we allow linking to some files (this may be able to be extended in some way later...)
				if (strpos($url, '/' . $check_path . '/download/file.' . $phpEx) !== 0)
				{
					return false;
				}

				return true;
			}
		}

		return false;
	}
}

/**
* Main message parser for posting, pm, etc. takes raw message
* and parses it for attachments, bbcode and smilies
*/
class parse_message extends bbcode_firstpass
{
	var $attachment_data = array();
	var $filename_data = array();

	// Helps ironing out user error
	var $message_status = '';

	var $allow_img_bbcode = true;
	var $allow_flash_bbcode = true;
	var $allow_quote_bbcode = true;
	var $allow_url_bbcode = true;

	var $mode;

	/**
	* The plupload object used for dealing with attachments
	* @var \phpbb\plupload\plupload
	*/
	protected $plupload;

	/**
	* The mimetype guesser object used for attachment mimetypes
	* @var \phpbb\mimetype\guesser
	*/
	protected $mimetype_guesser;

	/**
	* Init - give message here or manually
	*/
	function parse_message($message = '')
	{
		// Init BBCode UID
		$this->bbcode_uid = substr(base_convert(unique_id(), 16, 36), 0, BBCODE_UID_LEN);
		$this->message = $message;
	}

	/**
	* Parse Message
	*/
	function parse($allow_bbcode, $allow_magic_url, $allow_smilies, $allow_img_bbcode = true, $allow_flash_bbcode = true, $allow_quote_bbcode = true, $allow_url_bbcode = true, $update_this_message = true, $mode = 'post')
	{
		global $config, $db, $user, $phpbb_dispatcher, $phpbb_container;

		$this->mode = $mode;

		foreach (array('chars', 'smilies', 'urls', 'font_size', 'img_height', 'img_width') as $key)
		{
			if (!isset($config['max_' . $mode . '_' . $key]))
			{
				$config['max_' . $mode . '_' . $key] = 0;
			}
		}

		$this->allow_img_bbcode = $allow_img_bbcode;
		$this->allow_flash_bbcode = $allow_flash_bbcode;
		$this->allow_quote_bbcode = $allow_quote_bbcode;
		$this->allow_url_bbcode = $allow_url_bbcode;

		// If false, then $this->message won't be altered, the text will be returned instead.
		if (!$update_this_message)
		{
			$tmp_message = $this->message;
			$return_message = &$this->message;
		}

		if ($this->message_status == 'display')
		{
			$this->decode_message();
		}

		// Store message length...
		$message_length = ($mode == 'post') ? utf8_strlen($this->message) : utf8_strlen(preg_replace('#\[\/?[a-z\*\+\-]+(=[\S]+)?\]#ius', ' ', $this->message));

		// Maximum message length check. 0 disables this check completely.
		if ((int) $config['max_' . $mode . '_chars'] > 0 && $message_length > (int) $config['max_' . $mode . '_chars'])
		{
			$this->warn_msg[] = $user->lang('CHARS_' . strtoupper($mode) . '_CONTAINS', $message_length) . '<br />' . $user->lang('TOO_MANY_CHARS_LIMIT', (int) $config['max_' . $mode . '_chars']);
			return (!$update_this_message) ? $return_message : $this->warn_msg;
		}

		// Minimum message length check for post only
		if ($mode === 'post')
		{
			if (!$message_length || $message_length < (int) $config['min_post_chars'])
			{
				$this->warn_msg[] = (!$message_length) ? $user->lang['TOO_FEW_CHARS'] : ($user->lang('CHARS_POST_CONTAINS', $message_length) . '<br />' . $user->lang('TOO_FEW_CHARS_LIMIT', (int) $config['min_post_chars']));
				return (!$update_this_message) ? $return_message : $this->warn_msg;
			}
		}

		/**
		* This event can be used for additional message checks/cleanup before parsing
		*
		* @event core.message_parser_check_message
		* @var bool		allow_bbcode			Do we allow BBCodes
		* @var bool		allow_magic_url			Do we allow magic urls
		* @var bool		allow_smilies			Do we allow smilies
		* @var bool		allow_img_bbcode		Do we allow image BBCode
		* @var bool		allow_flash_bbcode		Do we allow flash BBCode
		* @var bool		allow_quote_bbcode		Do we allow quote BBCode
		* @var bool		allow_url_bbcode		Do we allow url BBCode
		* @var bool		update_this_message		Do we alter the parsed message
		* @var string	mode					Posting mode
		* @var string	message					The message text to parse
		* @var string	bbcode_bitfield			The bbcode_bitfield before parsing
		* @var string	bbcode_uid				The bbcode_uid before parsing
		* @var bool		return					Do we return after the event is triggered if $warn_msg is not empty
		* @var array	warn_msg				Array of the warning messages
		* @since 3.1.2-RC1
		* @change 3.1.3-RC1 Added vars $bbcode_bitfield and $bbcode_uid
		*/
		$message = $this->message;
		$warn_msg = $this->warn_msg;
		$return = false;
		$bbcode_bitfield = $this->bbcode_bitfield;
		$bbcode_uid = $this->bbcode_uid;
		$vars = array(
			'allow_bbcode',
			'allow_magic_url',
			'allow_smilies',
			'allow_img_bbcode',
			'allow_flash_bbcode',
			'allow_quote_bbcode',
			'allow_url_bbcode',
			'update_this_message',
			'mode',
			'message',
			'bbcode_bitfield',
			'bbcode_uid',
			'return',
			'warn_msg',
		);
		extract($phpbb_dispatcher->trigger_event('core.message_parser_check_message', compact($vars)));
		$this->message = $message;
		$this->warn_msg = $warn_msg;
		$this->bbcode_bitfield = $bbcode_bitfield;
		$this->bbcode_uid = $bbcode_uid;
		if ($return && !empty($this->warn_msg))
		{
			return (!$update_this_message) ? $return_message : $this->warn_msg;
		}

		// Get the parser
		$parser = $phpbb_container->get('text_formatter.parser');

		// Set the parser's options
		($allow_bbcode)       ? $parser->enable_bbcodes()       : $parser->disable_bbcodes();
		($allow_magic_url)    ? $parser->enable_magic_url()     : $parser->disable_magic_url();
		($allow_smilies)      ? $parser->enable_smilies()       : $parser->disable_smilies();
		($allow_img_bbcode)   ? $parser->enable_bbcode('img')   : $parser->disable_bbcode('img');
		($allow_flash_bbcode) ? $parser->enable_bbcode('flash') : $parser->disable_bbcode('flash');
		($allow_quote_bbcode) ? $parser->enable_bbcode('quote') : $parser->disable_bbcode('quote');
		($allow_url_bbcode)   ? $parser->enable_bbcode('url')   : $parser->disable_bbcode('url');

		// Set some config values
		$parser->set_vars(array(
			'max_font_size'  => $config['max_' . $this->mode . '_font_size'],
			'max_img_height' => $config['max_' . $this->mode . '_img_height'],
			'max_img_width'  => $config['max_' . $this->mode . '_img_width'],
			'max_smilies'    => $config['max_' . $this->mode . '_smilies'],
			'max_urls'       => $config['max_' . $this->mode . '_urls']
		));

		// Parse this message
		$this->message = $parser->parse(htmlspecialchars_decode($this->message, ENT_QUOTES));

		// Remove quotes that are nested too deep
		if ($config['max_quote_depth'] > 0)
		{
			$this->remove_nested_quotes($config['max_quote_depth']);
		}

		// Check for "empty" message. We do not check here for maximum length, because bbcode, smilies, etc. can add to the length.
		// The maximum length check happened before any parsings.
		if ($mode === 'post' && utf8_clean_string($this->message) === '')
		{
			$this->warn_msg[] = $user->lang['TOO_FEW_CHARS'];
			return (!$update_this_message) ? $return_message : $this->warn_msg;
		}

		// Remove quotes that are nested too deep
		if ($config['max_quote_depth'] > 0)
		{
			$this->message = $phpbb_container->get('text_formatter.utils')->remove_bbcode(
				$this->message,
				'quote',
				$config['max_quote_depth']
			);
		}

		// Check for errors
		$errors = $parser->get_errors();
		if ($errors)
		{
			foreach ($errors as $i => $args)
			{
				// Translate each error with $user->lang()
				$errors[$i] = call_user_func_array(array($user, 'lang'), $args);
			}
			$this->warn_msg = array_merge($this->warn_msg, $errors);

			return (!$update_this_message) ? $return_message : $this->warn_msg;
		}

		if (!$update_this_message)
		{
			unset($this->message);
			$this->message = $tmp_message;
			return $return_message;
		}

		$this->message_status = 'parsed';
		return false;
	}

	/**
	* Formatting text for display
	*/
	function format_display($allow_bbcode, $allow_magic_url, $allow_smilies, $update_this_message = true)
	{
		global $phpbb_container, $phpbb_dispatcher;

		// If false, then the parsed message get returned but internal message not processed.
		if (!$update_this_message)
		{
			$tmp_message = $this->message;
			$return_message = &$this->message;
		}

		$text = $this->message;
		$uid = $this->bbcode_uid;

		/**
		* Event to modify the text before it is parsed
		*
		* @event core.modify_format_display_text_before
		* @var string	text				The message text to parse
		* @var string	uid					The bbcode uid
		* @var bool		allow_bbcode		Do we allow bbcodes
		* @var bool		allow_magic_url		Do we allow magic urls
		* @var bool		allow_smilies		Do we allow smilies
		* @var bool		update_this_message	Do we update the internal message
		*									with the parsed result
		* @since 3.1.6-RC1
		*/
		$vars = array('text', 'uid', 'allow_bbcode', 'allow_magic_url', 'allow_smilies', 'update_this_message');
		extract($phpbb_dispatcher->trigger_event('core.modify_format_display_text_before', compact($vars)));

		$this->message = $text;
		$this->bbcode_uid = $uid;
		unset($text, $uid);

		// NOTE: message_status is unreliable for detecting unparsed text because some callers
		//       change $this->message without resetting $this->message_status to 'plain' so we
		//       inspect the message instead
		//if ($this->message_status == 'plain')
		if (!preg_match('/^<[rt][ >]/', $this->message))
		{
			// Force updating message - of course.
			$this->parse($allow_bbcode, $allow_magic_url, $allow_smilies, $this->allow_img_bbcode, $this->allow_flash_bbcode, $this->allow_quote_bbcode, $this->allow_url_bbcode, true);
		}

		// There's a bug when previewing a topic with no poll, because the empty title of the poll
		// gets parsed but $this->message still ends up empty. This fixes it, until a proper fix is
		// devised
		if ($this->message === '')
		{
			$this->message = $phpbb_container->get('text_formatter.parser')->parse($this->message);
		}

		$this->message = $phpbb_container->get('text_formatter.renderer')->render($this->message);

		$text = $this->message;
		$uid = $this->bbcode_uid;

		/**
		* Event to modify the text after it is parsed
		*
		* @event core.modify_format_display_text_after
		* @var string	text				The message text to parse
		* @var string	uid					The bbcode uid
		* @var bool		allow_bbcode		Do we allow bbcodes
		* @var bool		allow_magic_url		Do we allow magic urls
		* @var bool		allow_smilies		Do we allow smilies
		* @var bool		update_this_message	Do we update the internal message
		*									with the parsed result
		* @since 3.1.0-a3
		*/
		$vars = array('text', 'uid', 'allow_bbcode', 'allow_magic_url', 'allow_smilies', 'update_this_message');
		extract($phpbb_dispatcher->trigger_event('core.modify_format_display_text_after', compact($vars)));

		$this->message = $text;
		$this->bbcode_uid = $uid;

		if (!$update_this_message)
		{
			unset($this->message);
			$this->message = $tmp_message;
			return $return_message;
		}

		$this->message_status = 'display';
		return false;
	}

	/**
	* Decode message to be placed back into form box
	*/
	function decode_message($custom_bbcode_uid = '', $update_this_message = true)
	{
		// If false, then the parsed message get returned but internal message not processed.
		if (!$update_this_message)
		{
			$tmp_message = $this->message;
			$return_message = &$this->message;
		}

		($custom_bbcode_uid) ? decode_message($this->message, $custom_bbcode_uid) : decode_message($this->message, $this->bbcode_uid);

		if (!$update_this_message)
		{
			unset($this->message);
			$this->message = $tmp_message;
			return $return_message;
		}

		$this->message_status = 'plain';
		return false;
	}

	/**
	* Replace magic urls of form http://xxx.xxx., www.xxx. and xxx@xxx.xxx.
	* Cuts down displayed size of link if over 50 chars, turns absolute links
	* into relative versions when the server/script path matches the link
	*/
	function magic_url($server_url)
	{
		// We use the global make_clickable function
		$this->message = make_clickable($this->message, $server_url);
	}

	/**
	* Parse Smilies
	*/
	function smilies($max_smilies = 0)
	{
		global $db, $user;
		static $match;
		static $replace;

		// See if the static arrays have already been filled on an earlier invocation
		if (!is_array($match))
		{
			$match = $replace = array();

			// NOTE: obtain_* function? chaching the table contents?

			// For now setting the ttl to 10 minutes
			switch ($db->get_sql_layer())
			{
				case 'mssql':
				case 'mssql_odbc':
				case 'mssqlnative':
					$sql = 'SELECT *
						FROM ' . SMILIES_TABLE . '
						ORDER BY LEN(code) DESC';
				break;

				// LENGTH supported by MySQL, IBM DB2, Oracle and Access for sure...
				default:
					$sql = 'SELECT *
						FROM ' . SMILIES_TABLE . '
						ORDER BY LENGTH(code) DESC';
				break;
			}
			$result = $db->sql_query($sql, 600);

			while ($row = $db->sql_fetchrow($result))
			{
				if (empty($row['code']))
				{
					continue;
				}

				// (assertion)
				$match[] = preg_quote($row['code'], '#');
				$replace[] = '<!-- s' . $row['code'] . ' --><img src="{SMILIES_PATH}/' . $row['smiley_url'] . '" alt="' . $row['code'] . '" title="' . $row['emotion'] . '" /><!-- s' . $row['code'] . ' -->';
			}
			$db->sql_freeresult($result);
		}

		if (sizeof($match))
		{
			if ($max_smilies)
			{
				// 'u' modifier has been added to correctly parse smilies within unicode strings
				// For details: http://tracker.phpbb.com/browse/PHPBB3-10117
				$num_matches = preg_match_all('#(?<=^|[\n .])(?:' . implode('|', $match) . ')(?![^<>]*>)#u', $this->message, $matches);
				unset($matches);

				if ($num_matches !== false && $num_matches > $max_smilies)
				{
					$this->warn_msg[] = sprintf($user->lang['TOO_MANY_SMILIES'], $max_smilies);
					return;
				}
			}

			// Make sure the delimiter # is added in front and at the end of every element within $match
			// 'u' modifier has been added to correctly parse smilies within unicode strings
			// For details: http://tracker.phpbb.com/browse/PHPBB3-10117

			$this->message = trim(preg_replace(explode(chr(0), '#(?<=^|[\n .])' . implode('(?![^<>]*>)#u' . chr(0) . '#(?<=^|[\n .])', $match) . '(?![^<>]*>)#u'), $replace, $this->message));
		}
	}

	/**
	* Parse Attachments
	*/
	function parse_attachments($form_name, $mode, $forum_id, $submit, $preview, $refresh, $is_message = false)
	{
		global $config, $auth, $user, $phpbb_root_path, $phpEx, $db, $request;

		$error = array();

		$num_attachments = sizeof($this->attachment_data);
		$this->filename_data['filecomment'] = $request->variable('filecomment', '', true);
		$upload = $request->file($form_name);
		$upload_file = (!empty($upload) && $upload['name'] !== 'none' && trim($upload['name']));

		$add_file		= (isset($_POST['add_file'])) ? true : false;
		$delete_file	= (isset($_POST['delete_file'])) ? true : false;

		// First of all adjust comments if changed
		$actual_comment_list = $request->variable('comment_list', array(''), true);

		foreach ($actual_comment_list as $comment_key => $comment)
		{
			if (!isset($this->attachment_data[$comment_key]))
			{
				continue;
			}

			if ($this->attachment_data[$comment_key]['attach_comment'] != $actual_comment_list[$comment_key])
			{
				$this->attachment_data[$comment_key]['attach_comment'] = $actual_comment_list[$comment_key];
			}
		}

		$cfg = array();
		$cfg['max_attachments'] = ($is_message) ? $config['max_attachments_pm'] : $config['max_attachments'];
		$forum_id = ($is_message) ? 0 : $forum_id;

		if ($submit && in_array($mode, array('post', 'reply', 'quote', 'edit')) && $upload_file)
		{
			if ($num_attachments < $cfg['max_attachments'] || $auth->acl_get('a_') || $auth->acl_get('m_', $forum_id))
			{
				$filedata = upload_attachment($form_name, $forum_id, false, '', $is_message);
				$error = $filedata['error'];

				if ($filedata['post_attach'] && !sizeof($error))
				{
					$sql_ary = array(
						'physical_filename'	=> $filedata['physical_filename'],
						'attach_comment'	=> $this->filename_data['filecomment'],
						'real_filename'		=> $filedata['real_filename'],
						'extension'			=> $filedata['extension'],
						'mimetype'			=> $filedata['mimetype'],
						'filesize'			=> $filedata['filesize'],
						'filetime'			=> $filedata['filetime'],
						'thumbnail'			=> $filedata['thumbnail'],
						'is_orphan'			=> 1,
						'in_message'		=> ($is_message) ? 1 : 0,
						'poster_id'			=> $user->data['user_id'],
					);

					$db->sql_query('INSERT INTO ' . ATTACHMENTS_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_ary));

					$new_entry = array(
						'attach_id'		=> $db->sql_nextid(),
						'is_orphan'		=> 1,
						'real_filename'	=> $filedata['real_filename'],
						'attach_comment'=> $this->filename_data['filecomment'],
						'filesize'		=> $filedata['filesize'],
					);

					$this->attachment_data = array_merge(array(0 => $new_entry), $this->attachment_data);
					$this->message = preg_replace_callback('#\[attachment=([0-9]+)\](.*?)\[\/attachment\]#', function ($match) {
						return '[attachment='.($match[1] + 1).']' . $match[2] . '[/attachment]';
					}, $this->message);

					$this->filename_data['filecomment'] = '';

					// This Variable is set to false here, because Attachments are entered into the
					// Database in two modes, one if the id_list is 0 and the second one if post_attach is true
					// Since post_attach is automatically switched to true if an Attachment got added to the filesystem,
					// but we are assigning an id of 0 here, we have to reset the post_attach variable to false.
					//
					// This is very relevant, because it could happen that the post got not submitted, but we do not
					// know this circumstance here. We could be at the posting page or we could be redirected to the entered
					// post. :)
					$filedata['post_attach'] = false;
				}
			}
			else
			{
				$error[] = $user->lang('TOO_MANY_ATTACHMENTS', (int) $cfg['max_attachments']);
			}
		}

		if ($preview || $refresh || sizeof($error))
		{
			if (isset($this->plupload) && $this->plupload->is_active())
			{
				$json_response = new \phpbb\json_response();
			}

			// Perform actions on temporary attachments
			if ($delete_file)
			{
				include_once($phpbb_root_path . 'includes/functions_admin.' . $phpEx);

				$index = array_keys($request->variable('delete_file', array(0 => 0)));
				$index = (!empty($index)) ? $index[0] : false;

				if ($index !== false && !empty($this->attachment_data[$index]))
				{
					// delete selected attachment
					if ($this->attachment_data[$index]['is_orphan'])
					{
						$sql = 'SELECT attach_id, physical_filename, thumbnail
							FROM ' . ATTACHMENTS_TABLE . '
							WHERE attach_id = ' . (int) $this->attachment_data[$index]['attach_id'] . '
								AND is_orphan = 1
								AND poster_id = ' . $user->data['user_id'];
						$result = $db->sql_query($sql);
						$row = $db->sql_fetchrow($result);
						$db->sql_freeresult($result);

						if ($row)
						{
							phpbb_unlink($row['physical_filename'], 'file');

							if ($row['thumbnail'])
							{
								phpbb_unlink($row['physical_filename'], 'thumbnail');
							}

							$db->sql_query('DELETE FROM ' . ATTACHMENTS_TABLE . ' WHERE attach_id = ' . (int) $this->attachment_data[$index]['attach_id']);
						}
					}
					else
					{
						delete_attachments('attach', array(intval($this->attachment_data[$index]['attach_id'])));
					}

					unset($this->attachment_data[$index]);
					$this->message = preg_replace_callback('#\[attachment=([0-9]+)\](.*?)\[\/attachment\]#', function ($match) use($index) {
						return ($match[1] == $index) ? '' : (($match[1] > $index) ? '[attachment=' . ($match[1] - 1) . ']' . $match[2] . '[/attachment]' : $match[0]);
					}, $this->message);

					// Reindex Array
					$this->attachment_data = array_values($this->attachment_data);
					if (isset($this->plupload) && $this->plupload->is_active())
					{
						$json_response->send($this->attachment_data);
					}
				}
			}
			else if (($add_file || $preview) && $upload_file)
			{
				if ($num_attachments < $cfg['max_attachments'] || $auth->acl_gets('m_', 'a_', $forum_id))
				{
					$filedata = upload_attachment($form_name, $forum_id, false, '', $is_message, false, $this->mimetype_guesser, $this->plupload);
					$error = array_merge($error, $filedata['error']);

					if (!sizeof($error))
					{
						$sql_ary = array(
							'physical_filename'	=> $filedata['physical_filename'],
							'attach_comment'	=> $this->filename_data['filecomment'],
							'real_filename'		=> $filedata['real_filename'],
							'extension'			=> $filedata['extension'],
							'mimetype'			=> $filedata['mimetype'],
							'filesize'			=> $filedata['filesize'],
							'filetime'			=> $filedata['filetime'],
							'thumbnail'			=> $filedata['thumbnail'],
							'is_orphan'			=> 1,
							'in_message'		=> ($is_message) ? 1 : 0,
							'poster_id'			=> $user->data['user_id'],
						);

						$db->sql_query('INSERT INTO ' . ATTACHMENTS_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_ary));

						$new_entry = array(
							'attach_id'		=> $db->sql_nextid(),
							'is_orphan'		=> 1,
							'real_filename'	=> $filedata['real_filename'],
							'attach_comment'=> $this->filename_data['filecomment'],
							'filesize'		=> $filedata['filesize'],
						);

						$this->attachment_data = array_merge(array(0 => $new_entry), $this->attachment_data);
						$this->message = preg_replace_callback('#\[attachment=([0-9]+)\](.*?)\[\/attachment\]#', function ($match) {
							return '[attachment=' . ($match[1] + 1) . ']' . $match[2] . '[/attachment]';
						}, $this->message);
						$this->filename_data['filecomment'] = '';

						if (isset($this->plupload) && $this->plupload->is_active())
						{
							$download_url = append_sid("{$phpbb_root_path}download/file.{$phpEx}", 'mode=view&amp;id=' . $new_entry['attach_id']);

							// Send the client the attachment data to maintain state
							$json_response->send(array('data' => $this->attachment_data, 'download_url' => $download_url));
						}
					}
				}
				else
				{
					$error[] = $user->lang('TOO_MANY_ATTACHMENTS', (int) $cfg['max_attachments']);
				}

				if (!empty($error) && isset($this->plupload) && $this->plupload->is_active())
				{
					// If this is a plupload (and thus ajax) request, give the
					// client the first error we have
					$json_response->send(array(
						'jsonrpc' => '2.0',
						'id' => 'id',
						'error' => array(
							'code' => 105,
							'message' => current($error),
						),
					));
				}
			}
		}

		foreach ($error as $error_msg)
		{
			$this->warn_msg[] = $error_msg;
		}
	}

	/**
	* Get Attachment Data
	*/
	function get_submitted_attachment_data($check_user_id = false)
	{
		global $user, $db, $phpbb_root_path, $phpEx, $config;
		global $request;

		$this->filename_data['filecomment'] = $request->variable('filecomment', '', true);
		$attachment_data = $request->variable('attachment_data', array(0 => array('' => '')), true, \phpbb\request\request_interface::POST);
		$this->attachment_data = array();

		$check_user_id = ($check_user_id === false) ? $user->data['user_id'] : $check_user_id;

		if (!sizeof($attachment_data))
		{
			return;
		}

		$not_orphan = $orphan = array();

		foreach ($attachment_data as $pos => $var_ary)
		{
			if ($var_ary['is_orphan'])
			{
				$orphan[(int) $var_ary['attach_id']] = $pos;
			}
			else
			{
				$not_orphan[(int) $var_ary['attach_id']] = $pos;
			}
		}

		// Regenerate already posted attachments
		if (sizeof($not_orphan))
		{
			// Get the attachment data, based on the poster id...
			$sql = 'SELECT attach_id, is_orphan, real_filename, attach_comment, filesize
				FROM ' . ATTACHMENTS_TABLE . '
				WHERE ' . $db->sql_in_set('attach_id', array_keys($not_orphan)) . '
					AND poster_id = ' . $check_user_id;
			$result = $db->sql_query($sql);

			while ($row = $db->sql_fetchrow($result))
			{
				$pos = $not_orphan[$row['attach_id']];
				$this->attachment_data[$pos] = $row;
				$this->attachment_data[$pos]['attach_comment'] = $attachment_data[$pos]['attach_comment'];

				unset($not_orphan[$row['attach_id']]);
			}
			$db->sql_freeresult($result);
		}

		if (sizeof($not_orphan))
		{
			trigger_error('NO_ACCESS_ATTACHMENT', E_USER_ERROR);
		}

		// Regenerate newly uploaded attachments
		if (sizeof($orphan))
		{
			$sql = 'SELECT attach_id, is_orphan, real_filename, attach_comment, filesize
				FROM ' . ATTACHMENTS_TABLE . '
				WHERE ' . $db->sql_in_set('attach_id', array_keys($orphan)) . '
					AND poster_id = ' . $user->data['user_id'] . '
					AND is_orphan = 1';
			$result = $db->sql_query($sql);

			while ($row = $db->sql_fetchrow($result))
			{
				$pos = $orphan[$row['attach_id']];
				$this->attachment_data[$pos] = $row;
				$this->attachment_data[$pos]['attach_comment'] = $attachment_data[$pos]['attach_comment'];

				unset($orphan[$row['attach_id']]);
			}
			$db->sql_freeresult($result);
		}

		if (sizeof($orphan))
		{
			trigger_error('NO_ACCESS_ATTACHMENT', E_USER_ERROR);
		}

		ksort($this->attachment_data);
	}

	/**
	* Parse Poll
	*/
	function parse_poll(&$poll)
	{
		global $auth, $user, $config;

		$poll_max_options = $poll['poll_max_options'];

		// Parse Poll Option text
		$tmp_message = $this->message;

		$poll['poll_options'] = explode("\n", trim($poll['poll_option_text']));
		$poll['poll_options_size'] = sizeof($poll['poll_options']);

		foreach ($poll['poll_options'] as &$poll_option)
		{
			$this->message = $poll_option;
			$poll_option = $this->parse($poll['enable_bbcode'], ($config['allow_post_links']) ? $poll['enable_urls'] : false, $poll['enable_smilies'], $poll['img_status'], false, false, $config['allow_post_links'], false, 'poll');
		}
		unset($poll_option);
		$poll['poll_option_text'] = implode("\n", $poll['poll_options']);

		// Parse Poll Title
		$this->message = $poll['poll_title'];
		if (!$poll['poll_title'] && $poll['poll_options_size'])
		{
			$this->warn_msg[] = $user->lang['NO_POLL_TITLE'];
		}
		else
		{
			if (utf8_strlen(preg_replace('#\[\/?[a-z\*\+\-]+(=[\S]+)?\]#ius', ' ', $this->message)) > 100)
			{
				$this->warn_msg[] = $user->lang['POLL_TITLE_TOO_LONG'];
			}
			$poll['poll_title'] = $this->parse($poll['enable_bbcode'], ($config['allow_post_links']) ? $poll['enable_urls'] : false, $poll['enable_smilies'], $poll['img_status'], false, false, $config['allow_post_links'], false, 'poll');
			if (strlen($poll['poll_title']) > 255)
			{
				$this->warn_msg[] = $user->lang['POLL_TITLE_COMP_TOO_LONG'];
			}
		}

		if (sizeof($poll['poll_options']) == 1)
		{
			$this->warn_msg[] = $user->lang['TOO_FEW_POLL_OPTIONS'];
		}
		else if ($poll['poll_options_size'] > (int) $config['max_poll_options'])
		{
			$this->warn_msg[] = $user->lang['TOO_MANY_POLL_OPTIONS'];
		}
		else if ($poll_max_options > $poll['poll_options_size'])
		{
			$this->warn_msg[] = $user->lang['TOO_MANY_USER_OPTIONS'];
		}

		$poll['poll_max_options'] = ($poll['poll_max_options'] < 1) ? 1 : (($poll['poll_max_options'] > $config['max_poll_options']) ? $config['max_poll_options'] : $poll['poll_max_options']);

		$this->message = $tmp_message;
	}

	/**
	* Remove nested quotes at given depth in current parsed message
	*
	* @param  integer $max_depth Depth limit
	* @return null
	*/
	public function remove_nested_quotes($max_depth)
	{
		global $phpbb_container;

		if (preg_match('#^<[rt][ >]#', $this->message))
		{
			$this->message = $phpbb_container->get('text_formatter.utils')->remove_bbcode(
				$this->message,
				'quote',
				$max_depth
			);

			return;
		}

		// Capture all [quote] and [/quote] tags
		preg_match_all('(\\[/?quote(?:=&quot;(.*?)&quot;)?:' . $this->bbcode_uid . '\\])', $this->message, $matches, PREG_OFFSET_CAPTURE);

		// Iterate over the quote tags to mark the ranges that must be removed
		$depth = 0;
		$ranges = array();
		$start_pos = 0;
		foreach ($matches[0] as $match)
		{
			if ($match[0][1] === '/')
			{
				--$depth;
				if ($depth == $max_depth)
				{
					$end_pos = $match[1] + strlen($match[0]);
					$length = $end_pos - $start_pos;
					$ranges[] = array($start_pos, $length);
				}
			}
			else
			{
				++$depth;
				if ($depth == $max_depth + 1)
				{
					$start_pos = $match[1];
				}
			}
		}

		foreach (array_reverse($ranges) as $range)
		{
			list($start_pos, $length) = $range;
			$this->message = substr_replace($this->message, '', $start_pos, $length);
		}
	}

	/**
	* Setter function for passing the plupload object
	*
	* @param \phpbb\plupload\plupload $plupload The plupload object
	*
	* @return null
	*/
	public function set_plupload(\phpbb\plupload\plupload $plupload)
	{
		$this->plupload = $plupload;
	}

	/**
	* Setter function for passing the mimetype_guesser object
	*
	* @param \phpbb\mimetype\guesser $mimetype_guesser The mimetype_guesser object
	*
	* @return null
	*/
	public function set_mimetype_guesser(\phpbb\mimetype\guesser $mimetype_guesser)
	{
		$this->mimetype_guesser = $mimetype_guesser;
	}

	/**
	* Function to perform custom bbcode validation by extensions
	* can be used in bbcode_init() to assign regexp replacement
	* Example: 'regexp' => array('#\[b\](.*?)\[/b\]#uise' => "\$this->validate_bbcode_by_extension('\$1')")
	*
	* Accepts variable number of parameters
	*
	* @return mixed Validation result
	*/
	public function validate_bbcode_by_extension()
	{
		global $phpbb_dispatcher;

		$return = false;
		$params_array = func_get_args();

		/**
		* Event to validate bbcode with the custom validating methods
		* provided by extensions
		*
		* @event core.validate_bbcode_by_extension
		* @var array	params_array	Array with the function parameters
		* @var mixed	return			Validation result to return
		*
		* @since 3.1.5-RC1
		*/
		$vars = array('params_array', 'return');
		extract($phpbb_dispatcher->trigger_event('core.validate_bbcode_by_extension', compact($vars)));

		return $return;
	}
}
2004-03-25 15:55 Antoine Ginies <aginies@mandrakesoft.com> * kolab_wizard/Kolab.pm: add some require in needed_rpm 2004-03-25 12:42 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: release 2.12-3mdk 2004-03-25 12:39 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.pl: rename check_rpm to check_rpm_local (misc) 2004-03-24 19:44 Albert Astals Cid <astals11@terra.es> * po/ca.po: Unfuzzying 2004-03-24 15:58 Jos JORGE <jjorge@free.fr> * po/pt.po: saraiva 2004-03-23 11:48 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: release 2.12-2mdk 2004-03-23 11:47 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: set default RAMSIZE to 48000 2004-03-23 11:46 Antoine Ginies <aginies@mandrakesoft.com> * nfs_wizard/NFS.pm: typo fix (Arys P. Deloso) 2004-03-22 22:29 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: he.po, tl.po: updated po file 2004-03-22 21:14 Dovix <dovix2003@yahoo.com> * po/he.po: [no log message] 2004-03-22 11:20 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, fi.po, hi.po: updated po file 2004-03-21 10:14 Youcef Rabah Rahal <rahal@arabeyes.org> * po/ar.po: Committing Arabeyes.org's Arabic translation 2004-03-21 04:35 Thomas Backlund <tmb@mandrake.org> * po/fi.po: fully translated, was 1 fuzzy, 2 untranslated 2004-03-20 15:57 Pablo Saratxaga <pablo@mandrakesoft.com> * po/fa.po: updated po file 2004-03-19 16:39 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tl.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2004-03-19 12:10 Alice Lafox <alice@lafox.com.ua> * po/ru.po: updated 2004-03-19 10:26 Antoine Ginies <aginies@mandrakesoft.com> * nfs_wizard/NFS.pm: fix typo (P.deloso) 2004-03-19 09:43 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: es.po, uk.po: updated po file 2004-03-19 04:07 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2004-03-19 01:19 Pablo Saratxaga <pablo@mandrakesoft.com> * po/nb.po: updated po file 2004-03-19 01:14 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: fr.po, tl.po: Corrected most of the more ashaming French errors 2004-03-18 17:39 Antoine Ginies <aginies@mandrakesoft.com> * po/fr.po: fix typo error 2004-03-18 17:39 Funda Wang <fundawang@linux.net.cn> * po/zh_CN.po: Updated Simplified Chinese translation 2004-03-18 17:23 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: release 2.12-1mdk 2004-03-18 16:52 Antoine Ginies <aginies@mandrakesoft.com> * po/fr.po: updated 2004-03-18 13:36 Pablo Saratxaga <pablo@mandrakesoft.com> * po/cy.po: updated po file 2004-03-18 01:07 Pablo Saratxaga <pablo@mandrakesoft.com> * po/et.po: updated po file 2004-03-17 22:44 Pablo Saratxaga <pablo@mandrakesoft.com> * dns_wizard/Bind.pm, po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tl.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: fixed typo and updated pot file 2004-03-17 20:02 Pablo Saratxaga <pablo@mandrakesoft.com> * po/zh_TW.po: converted to utf-8 2004-03-17 19:31 Pablo Saratxaga <pablo@mandrakesoft.com> * po/lv.po: converted to utf-8 2004-03-17 17:31 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ko.po: updated po files 2004-03-17 16:53 Antoine Ginies <aginies@mandrakesoft.com> * nfs_wizard/NFS.pm: add information 2004-03-17 16:41 Antoine Ginies <aginies@mandrakesoft.com> * postfix_wizard/Postfix.pm: fix missing concatenation 2004-03-17 16:39 Pablo Saratxaga <pablo@mandrakesoft.com> * po/hu.po: updated po files 2004-03-17 16:39 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm: fix info 2004-03-17 16:04 Antoine Ginies <aginies@mandrakesoft.com> * postfix_wizard/Postfix.pm: add info 2004-03-16 18:30 Thierry Vignaud <tvignaud@mandrakesoft.com> * kolab_wizard/Kolab.pm: misc perl_checker cleanups 2004-03-16 18:28 Thierry Vignaud <tvignaud@mandrakesoft.com> * .perl_checker: blacklist a few more modules 2004-03-16 18:25 Thierry Vignaud <tvignaud@mandrakesoft.com> * kolab_wizard/Kolab.pm: security: hide password 2004-03-15 17:45 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, ca.po, cs.po, he.po, hi.po, hu.po: updated po files 2004-03-14 21:53 Youcef Rabah Rahal <rahal@arabeyes.org> * po/ar.po: Weekly Arabeyes' Arabic translation. 2004-03-14 18:54 Albert Astals Cid <astals11@terra.es> * po/ca.po: updating 2004-03-14 12:03 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: fa.po, fi.po, fr.po, uk.po: updated po file 2004-03-14 11:14 Thomas Backlund <tmb@mandrake.org> * po/fi.po: fully translated, was 5 fuzzy, 6 untranslated 2004-03-13 22:54 Pablo Saratxaga <pablo@mandrakesoft.com> * po/et.po: updated po file 2004-03-13 16:30 Pablo Saratxaga <pablo@mandrakesoft.com> * po/cy.po: updated po file 2004-03-13 11:24 Pablo Saratxaga <pablo@mandrakesoft.com> * po/fa.po: updated po file 2004-03-13 08:30 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: Updated translation 2004-03-13 02:18 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: uz.po, uz@Latn.po: updated po files 2004-03-12 22:26 Pablo Saratxaga <pablo@mandrakesoft.com> * po/it.po: updated po file 2004-03-12 19:51 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated 2004-03-12 17:15 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: drakwizard.pot, nb.po, zh_CN.po, zh_TW.po: updated po files 2004-03-12 12:53 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: release 2.11-6mdk 2004-03-12 12:45 Antoine Ginies <aginies@mandrakesoft.com> * kolab_wizard/Kolab.pm: fix typo error in bn_pwd 2004-03-12 12:32 Funda Wang <fundawang@linux.net.cn> * po/zh_CN.po: Updated Simplified Chinese translation 2004-03-12 12:17 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: cy.po, drakwizard.pot, tl.po: updated po files 2004-03-12 11:50 Antoine Ginies <aginies@mandrakesoft.com> * postfix_wizard/Postfix.pm: fix pb of relayhost 2004-03-12 11:29 Antoine Ginies <aginies@mandrakesoft.com> * postfix_wizard/Postfix.pm: add localhost in inet_interface 2004-03-12 09:40 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2004-03-12 00:08 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2004-03-11 23:07 Dovix <dovix2003@yahoo.com> * po/he.po: [no log message] 2004-03-11 16:13 Antoine Ginies <aginies@mandrakesoft.com> * samba_wizard/Samba.pm: fix printer sharing appear when not selected 2004-03-11 15:16 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tl.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2004-03-11 12:06 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: release 2.11-5mdk 2004-03-11 11:55 Antoine Ginies <aginies@mandrakesoft.com> * postfix_wizard/Postfix.pm: remove debug 2004-03-11 11:54 Antoine Ginies <aginies@mandrakesoft.com> * kolab_wizard/Kolab.pm: fix pb of password add test to password (mismatch or null password) 2004-03-11 11:01 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: release 2.11-4mdk 2004-03-11 11:01 Antoine Ginies <aginies@mandrakesoft.com> * Makefile, drakwizard.pl: add kolab Wizard 2004-03-11 10:59 Antoine Ginies <aginies@mandrakesoft.com> * kolab_wizard/Kolab.pm: now backup_conf 2004-03-11 10:43 Antoine Ginies <aginies@mandrakesoft.com> * kolab_wizard/Kolab.pm: - add backup of previous file - display warning - chkconfig level 35 off some services 2004-03-11 10:34 Antoine Ginies <aginies@mandrakesoft.com> * postfix_wizard/Postfix.pm: fix pb of cannonical file 2004-03-11 09:09 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: new label in PXE menu 2004-03-11 08:55 Antoine Ginies <aginies@mandrakesoft.com> * po/fr.po: updated 2004-03-10 23:26 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tl.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, pxe_wizard/Pxe.pm, web_wizard/Apache.pm: updated pot file 2004-03-10 17:40 Antoine Ginies <aginies@mandrakesoft.com> * postfix_wizard/Postfix.pm: fix cannonical configuration problem 2004-03-10 16:38 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: add mandrake release in menu 2004-03-10 16:01 Antoine Ginies <aginies@mandrakesoft.com> * kolab_wizard/Kolab.pm, news_wizard/Inn.pm, pxe_wizard/Pxe.pm, web_wizard/Apache.pm: typo fix (Arys P. Deloso, Michalis Avraam) 2004-03-10 15:49 Antoine Ginies <aginies@mandrakesoft.com> * kolab_wizard/Makefile: add Makefile 2004-03-10 15:47 Antoine Ginies <aginies@mandrakesoft.com> * installsrv_wizard/Installsrv.pm, kolab_wizard/Kolab.pm, nisautofs_wizard/Nisautofs.pm, pxe_wizard/Pxe.pm: various typo fix (Diego Iastrubni, Reinout van Schouwen) 2004-03-10 15:39 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tl.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pt file 2004-03-10 15:22 Antoine Ginies <aginies@mandrakesoft.com> * kolab_wizard/Kolab.pm: set basic configuration 2004-03-09 20:07 Dovix <dovix2003@yahoo.com> * po/he.po: [no log message] 2004-03-09 17:35 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: improve PXE menu test 2004-03-09 13:41 Antoine Ginies <aginies@mandrakesoft.com> * installsrv_wizard/Installsrv.pm: - s/cooker/10/ 2004-03-09 13:41 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm: cant access add/remove hosts if host is a DNS slave 2004-03-08 20:21 Pablo Saratxaga <pablo@mandrakesoft.com> * kolab_wizard/Kolab.pm, po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: updated pot file 2004-03-08 14:47 Youcef Rabah Rahal <rahal@arabeyes.org> * po/ar.po: Doing a sync with Arabeyes.org's CVS... There should be no stat differences anymore. 2004-03-08 12:35 Antoine Ginies <aginies@mandrakesoft.com> * dhcp_wizard/Dhcp.pm, installsrv_wizard/Installsrv.pm, kolab_wizard/Kolab.pm, ldap_wizard/ldap.pm, nisautofs_wizard/Nisautofs.pm, pxe_wizard/Pxe.pm: typo fix (Reinout Van Schouwen) 2004-03-08 02:34 Reinout van Schouwen <reinout@cs.vu.nl> * po/nl.po: Updated Dutch (nl) translation by Reinout van Schouwen <reinout@cs.vu.nl> 2004-03-07 15:47 Thomas Backlund <tmb@mandrake.org> * po/fi.po: fully translated, was 6 fuzzy, 1 untranslated... 2004-03-07 14:51 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, es.po, pl.po: updated po file 2004-03-07 05:56 Youcef Rabah Rahal <rahal@arabeyes.org> * po/ar.po: Committing Arabeyes.org's Arabic translation of the week... 2004-03-06 12:48 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: Updated translation 2004-03-06 05:51 Funda Wang <fundawang@linux.net.cn> * po/zh_CN.po: update 2004-03-05 13:05 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2004-03-04 21:54 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ca.po, da.po, et.po: updated po file 2004-03-04 20:24 Albert Astals Cid <astals11@terra.es> * po/ca.po: Unfuzzying 2004-03-04 18:30 Keld Jrn Simonsen <keld@dkuug.dk> * po/da.po: Updates soft/ftw/po/da.po soft/mdkonline/po/da.po soft/wizard_perl/po/da.po 2004-03-04 18:20 Antoine Ginies <aginies@mandrakesoft.com> * installsrv_wizard/Installsrv.pm: use check_started, add restart nfsd 2004-03-04 18:05 Pablo Saratxaga <pablo@mandrakesoft.com> * po/nb.po: updated po file 2004-03-04 14:39 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2004-03-04 10:59 Antoine Ginies <aginies@mandrakesoft.com> * kolab_wizard/Kolab.pm: updated 2004-03-03 17:44 Pablo Saratxaga <pablo@mandrakesoft.com> * po/he.po: updated po file 2004-03-03 12:57 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: es.po, fi.po, pl.po, pt_BR.po: updated po files 2004-03-02 21:04 Alice Lafox <alice@lafox.com.ua> * po/ru.po: transl. updated 2004-03-02 20:36 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: updated 2004-03-02 14:01 Thomas Backlund <tmb@mandrake.org> * po/fi.po: Finnish translation 100% again... 2004-03-02 13:04 Pablo Saratxaga <pablo@mandrakesoft.com> * po/el.po: updated po file 2004-03-02 12:03 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: da.po, nb.po: updated po files 2004-03-02 11:53 Alice Lafox <alice@lafox.com.ua> * po/ru.po: updated 2004-03-02 00:58 Keld Jrn Simonsen <keld@dkuug.dk> * po/da.po: updates soft/menu-messages/da.po soft/control-center/po/da.po soft/ftw/po/da.po soft/mdkonline/po/da.po soft/wizard_perl/po/da.po 2004-03-02 00:24 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ca.po, cy.po: updated po file 2004-03-02 00:08 Albert Astals Cid <astals11@terra.es> * po/ca.po: Updating and unzuffying 2004-03-01 22:06 Pablo Saratxaga <pablo@mandrakesoft.com> * po/et.po: updated po file 2004-03-01 21:26 Funda Wang <fundawang@linux.net.cn> * po/zh_CN.po: update 2004-03-01 20:54 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2004-03-01 19:25 Antoine Ginies <aginies@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm: revert due to error (autofs rpm) 2004-03-01 19:20 Antoine Ginies <aginies@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm: add autofs in needed_rpm 2004-03-01 19:06 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: - remove --auto-select when installing autofs rpm. - release 2.11-3mdk 2004-03-01 18:59 Antoine Ginies <aginies@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm: remove --auto-select to install autofs and ypserv 2004-03-01 17:57 Warly <warly@mandrakesoft.com> * kolab_wizard/Kolab.pm: basic structure of the kolab wizard 2004-03-01 17:29 Warly <warly@mandrakesoft.com> * kolab_wizard/Kolab.pm: new (empty ATM) kolab wizard 2004-03-01 11:00 Pablo Saratxaga <pablo@mandrakesoft.com> * po/pt_BR.po: updated po file 2004-02-29 23:55 Pablo Saratxaga <pablo@mandrakesoft.com> * po/nb.po: updated po file 2004-02-29 21:08 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, cs.po: updated po files 2004-02-29 14:23 Youcef Rabah Rahal <rahal@arabeyes.org> * po/ar.po: Committing Arabeyes.org's Arabic translation for the past week :-) 2004-02-28 20:58 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: cy.po, hi.po: updated po files 2004-02-28 20:56 Pablo Saratxaga <pablo@mandrakesoft.com> * po/tr.po: updated po file 2004-02-28 14:44 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ca.po, fr.po: updated po file 2004-02-28 13:48 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2004-02-28 10:28 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: Updated translation 2004-02-27 18:58 Antoine Ginies <aginies@mandrakesoft.com> * postfix_wizard/Postfix.pm: fix typo (P.Karlsen) 2004-02-27 18:17 Albert Astals Cid <astals11@terra.es> * po/ca.po: unfuzzying 2004-02-27 14:52 Funda Wang <fundawang@linux.net.cn> * po/zh_CN.po: update 2004-02-27 14:11 Thomas Backlund <tmb@mandrake.org> * po/fi.po: fully translated again 2004-02-27 14:08 Pablo Saratxaga <pablo@mandrakesoft.com> * po/nl.po: updated po file 2004-02-27 12:44 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2004-02-27 11:13 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: et.po, nb.po: updated po files 2004-02-27 02:39 Pablo Saratxaga <pablo@mandrakesoft.com> * ftp_wizard/Proftpd.pm, news_wizard/Inn.pm, po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, postfix_wizard/Postfix.pm, web_wizard/Apache.pm: rescued a some ~50 strings strings and updated pot file. capitalized "Internet" 2004-02-26 19:43 Keld Jrn Simonsen <keld@dkuug.dk> * po/da.po: update soft/wizard_perl/po/da.po 2004-02-26 18:12 Antoine Ginies <aginies@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm, ftp_wizard/Proftpd.pm: fix typo (thx Per yvind Karlsen) 2004-02-26 16:50 Keld Jrn Simonsen <keld@dkuug.dk> * po/da.po: Updates soft/wizard_perl/po/da.po 2004-02-26 15:00 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: - bug fix in Pxe.pm - updated po - typos and grammar recommendation (M.Bukovjan) 2004-02-26 14:56 Antoine Ginies <aginies@mandrakesoft.com> * time_wizard/Ntp.pm: perl_checker fix 2004-02-26 14:55 Antoine Ginies <aginies@mandrakesoft.com> * web_wizard/Apache.pm: typo fix 2004-02-26 14:43 Antoine Ginies <aginies@mandrakesoft.com> * samba_wizard/Samba.pm, time_wizard/Ntp.pm: fix typo 2004-02-26 14:35 Antoine Ginies <aginies@mandrakesoft.com> * news_wizard/Inn.pm, nisautofs_wizard/Nisautofs.pm: fix typo 2004-02-26 14:33 Antoine Ginies <aginies@mandrakesoft.com> * ftp_wizard/Proftpd.pm: typo fix 2004-02-26 14:28 Antoine Ginies <aginies@mandrakesoft.com> * dhcp_wizard/Dhcp.pm, installsrv_wizard/Installsrv.pm: fix typo 2004-02-26 14:16 Antoine Ginies <aginies@mandrakesoft.com> * nfs_wizard/NFS.pm: typo fix 2004-02-26 12:18 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ca.po, he.po: updated po file 2004-02-26 10:21 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: fix bug modify all.rdz option (another one) 2004-02-25 23:23 Thomas Backlund <tmb@mandrake.org> * po/fi.po: fully translated! 2004-02-25 22:11 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: Updated.... wwwrrrrrrrr. so many strings after RC? 2004-02-25 21:20 Albert Astals Cid <astals11@terra.es> * po/ca.po: Unfuzzying 2004-02-25 16:39 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: et.po, he.po: updated po files 2004-02-25 15:36 Funda Wang <fundawang@linux.net.cn> * po/zh_CN.po: update 2004-02-25 13:06 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2004-02-25 10:16 Antoine Ginies <aginies@mandrakesoft.com> * postfix_wizard/Postfix.pm: Typos and gramatical mistakes (Michal Bukovjan) 2004-02-25 10:15 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: Typos and gramatical mistakes (Michal Bukovjan) 2004-02-25 03:16 Thomas Backlund <tmb@mandrake.org> * po/fi.po: updated translations, was: 56 fuzzy, 12 untranslated, is now: 17 fuzzy, 10 untranslated 2004-02-24 22:26 Albert Astals Cid <astals11@terra.es> * po/ca.po: some more unfuzzyin 2004-02-24 18:07 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, ca.po, ja.po, ms.po: updated po files 2004-02-24 15:17 Youcef Rabah Rahal <rahal@arabeyes.org> * po/ar.po: Committing Arabeyes.org's Arabic translation 2004-02-23 23:58 Albert Astals Cid <astals11@terra.es> * po/ca.po: Some unfuzzying 2004-02-23 18:18 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: az.po, es.po, et.po, fi.po, sk.po, zh_CN.po: updated po files 2004-02-23 12:49 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2004-02-23 02:35 Tibor Pittich <Tibor.Pittich@phuture.sk> * po/sk.po: updated slovak translation 2004-02-22 22:57 Funda Wang <fundawang@linux.net.cn> * po/zh_CN.po: update 2004-02-22 21:58 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2004-02-22 20:16 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: Updated 2004-02-22 02:26 Reinout van Schouwen <reinout@cs.vu.nl> * po/nl.po: Updated translation by Peter van Zaanen <petrvz@gmx.net> 2004-02-21 21:45 Keld Jrn Simonsen <keld@dkuug.dk> * po/da.po: Updates indexhtml/po/da.po soft/control-center/po/da.po soft/ftw/po/da.po soft/mdkonline/po/da.po soft/rpmdrake/po/da.po soft/wizard_perl/po/da.po 2004-02-21 15:12 hilbert * po/zh_TW.po: In the Chinese translation module wizard_perl (drakwizard), there are few errors to report. Environment: Mandrake linux 9.2 + Kbable number:277 msgid: This wizard will help you configuring the Internet Mail services for your network, or configure an Internet Mail server. The error above should be that configuring tense error. In English, help is followed by configure, not configuring!!! 2004-02-21 03:45 Tibor Pittich <Tibor.Pittich@phuture.sk> * po/sk.po: updated slovak translation 2004-02-20 23:38 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: bug fix in PXE (option in all.rdz boot) 2004-02-20 23:35 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm, ftp_wizard/Proftpd.pm, installsrv_wizard/Installsrv.pm, nisautofs_wizard/Nisautofs.pm, postfix_wizard/Postfix.pm: add information 2004-02-20 16:16 Antoine Ginies <aginies@mandrakesoft.com> * ftp_wizard/Proftpd.pm: add some information 2004-02-20 16:03 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: add comment and information 2004-02-20 16:01 Pablo Saratxaga <pablo@mandrakesoft.com> * po/et.po: updated po file 2004-02-19 16:33 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: fix pb of modify all.rdz options 2004-02-19 16:30 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: es.po, et.po, fr.po, nb.po, pl.po: updated po files 2004-02-18 21:45 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: Partially updated data 2004-02-18 16:02 Funda Wang <fundawang@linux.net.cn> * po/zh_CN.po: update 2004-02-17 18:34 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.pl: use default icon for now until we've the new icons for the new banner widget 2004-02-17 12:36 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2004-02-17 02:55 Pablo Saratxaga <pablo@mandrakesoft.com> * po/et.po: updated po file 2004-02-16 23:02 Pablo Saratxaga <pablo@mandrakesoft.com> * ldap_wizard/ldap.pm, po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: fixed typo 2004-02-16 22:45 Pablo Saratxaga <pablo@mandrakesoft.com> * client_wizard/Bind_client.pm, po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: fixed typo 2004-02-16 16:50 Pablo Saratxaga <pablo@mandrakesoft.com> * po/wa.po: updated po file 2004-02-16 14:25 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: cs.po, fi.po, hi.po, pt_BR.po, uz.po, uz@Latn.po: updated po files 2004-02-16 11:59 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2004-02-16 03:29 Tibor Pittich <Tibor.Pittich@phuture.sk> * po/sk.po: updated slovak translation 2004-02-15 14:06 Funda Wang <fundawang@linux.net.cn> * po/zh_CN.po: Updated Simplified Chinese translation 2004-02-15 10:48 Youcef Rabah Rahal <rahal@arabeyes.org> * po/ar.po: Committing Arabeyes.org's Arabic translation 2004-02-14 18:08 Funda Wang <fundawang@linux.net.cn> * po/zh_CN.po: Updated Simplified Chinese translation 2004-02-14 13:34 Albert Astals Cid <astals11@terra.es> * po/ca.po: Small updates to catalan translations 2004-02-14 10:43 Keld Jrn Simonsen <keld@dkuug.dk> * po/da.po: Updates soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po 2004-02-14 08:03 Keld Jrn Simonsen <keld@dkuug.dk> * po/nb.po: Updates. I wanted to use this as my base for my Danish translations, so I thought I just translate this too. Hope that is OK. soft/wizard_perl/po/nb.po 2004-02-14 02:07 Thierry Vignaud <tvignaud@mandrakesoft.com> * postfix_wizard/Postfix.pm: example of use of "complete" callback 2004-02-14 02:06 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.pl: add "complete" callback support in order to provide an easy way to check for errors and reports them through popups 2004-02-13 21:22 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.spec: fix changelog 2004-02-13 19:25 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: resync 2004-02-13 19:21 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fr.po: update 2004-02-13 19:21 Thierry Vignaud <tvignaud@mandrakesoft.com> * ldap_wizard/ldap.pm: merge small hunks of text into understanble strings for translators 2004-02-13 19:14 Thierry Vignaud <tvignaud@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm: upcase nfs too 2004-02-13 19:14 Thierry Vignaud <tvignaud@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm: upcase protocol name!!! 2004-02-13 19:10 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.spec: bump 2004-02-13 17:13 Warly <warly@mandrakesoft.com> * drakwizard.spec, time_wizard/Ntp.pm: stricter ntp config 2004-02-13 13:46 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2004-02-13 09:34 Pablo Saratxaga <pablo@mandrakesoft.com> * ldap_wizard/ldap.pm, po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, pxe_wizard/Pxe.pm: updated pot file; fixed typo 2004-02-13 03:40 Tibor Pittich <Tibor.Pittich@phuture.sk> * po/sk.po: updated slovak translation 2004-02-12 17:36 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: Typo fixes 2004-02-12 17:33 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm, samba_wizard/Samba.pm: typo fix (Karlsen) 2004-02-12 16:21 Antoine Ginies <aginies@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm: typo fix 2004-02-12 15:25 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: fix option in PXE wizard 2004-02-12 15:23 Vincent Guardiola <vguardiola@mandrakesoft.com> * ldap_wizard/ldap.pm: Add Entry add user posix 2004-02-12 15:22 Vincent Guardiola <vguardiola@mandrakesoft.com> * ldap_wizard/fcldap.pm: Add function add_user_posix 2004-02-12 15:17 Antoine Ginies <aginies@mandrakesoft.com> * ldap_wizard/ldap.pm: some perl_checker fix 2004-02-12 11:14 Funda Wang <fundawang@linux.net.cn> * po/zh_CN.po: Updated Simplified Chinese translation 2004-02-12 10:07 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: - updated po file 2004-02-11 23:29 Albert Astals Cid <astals11@terra.es> * po/ca.po: Today's work 2004-02-11 22:53 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: cy.po, fi.po: updated po files 2004-02-11 21:50 Pablo Saratxaga <pablo@mandrakesoft.com> * po/hi.po: updated po file 2004-02-11 19:27 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2004-02-11 18:07 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fr.po: update 2004-02-11 15:29 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: - check httpd for apache-1.3, httpd for apache2 (V.Meyer bug report) - fix problem of DNS master wizard 2004-02-11 15:28 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm: fix problem detecting master server 2004-02-11 13:23 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2004-02-11 10:03 Antoine Ginies <aginies@mandrakesoft.com> * web_wizard/Apache.pm: check httpd for apace-1.3, httpd for apache2 2004-02-10 21:55 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2004-02-10 20:42 Funda Wang <fundawang@linux.net.cn> * po/zh_CN.po: Updated Simplified Chinese translation 2004-02-10 18:28 Albert Astals Cid <astals11@terra.es> * po/ca.po: Updates, unfuzzying and spell checking 2004-02-10 17:48 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: use 'needimg' check for remove/modify Boot PXE image 2004-02-10 17:21 Antoine Ginies <aginies@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm: - use ENV{__WIZ_HOME__} variable to be able to test directly from the CVS tree change "choose a country" to "choose a city" 2004-02-10 17:20 Antoine Ginies <aginies@mandrakesoft.com> * installsrv_wizard/Installsrv.pm, dns_wizard/Bind.pm: - use ENV{__WIZ_HOME__} variable to be able to test directly from the CVS tree 2004-02-10 17:17 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: - bug fix in PXE (add all.rdz boot image) 2004-02-10 17:13 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2004-02-10 17:12 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: - fix pb of copying vmlinuz - use ip addr show if IPADDR is null - add test before modify/remove Boot image 2004-02-10 16:54 Warly <warly@mandrakesoft.com> * drakwizard.pl, drakwizard.spec, po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, samba_wizard/Samba.pm, time_wizard/Ntp.pm: fix list_printers function readd ENV{__WIZ_HOME__} variable to be able to test directly from the CVS tree change "choose a country" to "choose a city" 2004-02-10 16:09 Tibor Pittich <Tibor.Pittich@phuture.sk> * po/sk.po: updated slovak translation 2004-02-10 15:31 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: remove debug msg 2004-02-10 15:30 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: fix problem of all.rdz image 2004-02-10 14:52 Warly <warly@mandrakesoft.com> * samba_wizard/Samba.pm: fix list_printers function 2004-02-10 14:28 Funda Wang <fundawang@linux.net.cn> * po/zh_CN.po: Updated Simplified Chinese translation 2004-02-10 09:07 Pablo Saratxaga <pablo@mandrakesoft.com> * dns_wizard/Bind.pm, po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: some typo fixes 2004-02-10 02:13 Albert Astals Cid <astals11@terra.es> * po/ca.po: Some small updates. Hope my first commit doesn't breaks anything 2004-02-08 15:48 Funda Wang <fundawang@linux.net.cn> * po/zh_CN.po: update 2004-02-08 14:14 hilbert * po/zh_TW.po: still many problems: (21:00:32) hilbert: In the soft/wizard_perl/zh_TW.po:81, "So i can't add/remove host." should be "So I can't add/remove host." (21:03:09) hilbert: In the soft/wizard_perl/zh_TW.po:68, "So if you need it and know your ip forwarder enter IP address of it, if you dont know leave it blank" should be "If you need it and know your IP forwarder enter IP address of it, if you dont know leave it blank" (21:03:27) hilbert: Firstly the So in the beginning is not understandable. (21:03:37) hilbert: Secondly the ip should be upper cased. ---- Sun Feb 8 21:07:49 2004 s ---- (21:08:26) hilbert: In the soft/wizard_perl/zh_TW.po:87, "Client with this identification will be removed to your DNS" should be "Client with this identification will be removed from your DNS" 2004-02-08 13:18 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, nb.po: updated po files 2004-02-08 11:50 Youcef Rabah Rahal <rahal@arabeyes.org> * po/ar.po: Committing Arabeyes.org Arabic translation 2004-02-06 20:38 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: es.po, et.po, pt_BR.po: updated po files 2004-02-06 19:38 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2004-02-06 17:22 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2004-02-06 16:13 Antoine Ginies <aginies@mandrakesoft.com> * web_wizard/Apache.pm: - add wait message - use check_started 2004-02-06 16:06 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm, samba_wizard/Samba.pm: now use check_started 2004-02-06 16:03 Antoine Ginies <aginies@mandrakesoft.com> * postfix_wizard/Postfix.pm, proxy_wizard/Squid.pm: now use check_started 2004-02-06 15:47 Antoine Ginies <aginies@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm: now use check_started 2004-02-06 13:17 Antoine Ginies <aginies@mandrakesoft.com> * nfs_wizard/NFS.pm: now use check_started 2004-02-06 13:09 Antoine Ginies <aginies@mandrakesoft.com> * dhcp_wizard/Dhcp.pm, ftp_wizard/Proftpd.pm: now use check_started 2004-02-06 12:54 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: update changelog inof for 2.9-5mdk release 2004-02-06 12:52 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm: use check_started from Wizcommon 2004-02-06 12:51 Antoine Ginies <aginies@mandrakesoft.com> * common/Wizcommon.pm: add check_started to check if service has been started or not 2004-02-05 21:51 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ca.po, cs.po, et.po, sl.po, tr.po: updated po files 2004-02-05 18:57 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2004-02-05 16:30 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: add more changelog info 2004-02-05 16:14 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: use dnsdomainename instead of domainname 2004-02-05 16:13 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm, dhcp_wizard/Dhcp.pm: use IPADDR or result of ip sh dev eth0 2004-02-05 11:45 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: et.po, tr.po: updated po files 2004-02-04 22:27 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2004-02-03 18:57 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: add postfix changelog 2004-02-03 18:55 Antoine Ginies <aginies@mandrakesoft.com> * postfix_wizard/Postfix.pm: - fix weird line - fix internal Mail server configuration 2004-02-03 12:21 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2004-02-02 17:53 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2004-02-02 16:28 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: changed Uzbek files to default to cyrillic 2004-02-02 16:12 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: drakwizard-2.9-5mdk 2004-02-02 16:09 Antoine Ginies <aginies@mandrakesoft.com> * samba_wizard/Samba.pm: disable printer sharing for the moment to get a wizard working 2004-02-02 14:57 Antoine Ginies <aginies@mandrakesoft.com> * time_wizard/Ntp.pm: typo ifx [Michal Bukovjan] 2004-02-02 14:55 Antoine Ginies <aginies@mandrakesoft.com> * samba_wizard/Samba.pm: typo fix [Michal Bukovjan] 2004-02-02 14:52 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm, ldap_wizard/ldap.pm, pxe_wizard/Pxe.pm: typo fix [Michal Bukovjan] 2004-02-02 14:51 Antoine Ginies <aginies@mandrakesoft.com> * ftp_wizard/Proftpd.pm: typo fix 2004-02-02 08:52 hilbert * po/zh_TW.po: conflict found 2004-02-01 19:35 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2004-02-01 11:26 Youcef Rabah Rahal <rahal@arabeyes.org> * po/ar.po: Committing Arabeyes.org's Arabic translation. 2004-02-01 10:51 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: da.po, de.po, zh_CN.po: updated po files 2004-01-31 02:24 Keld Jrn Simonsen <keld@dkuug.dk> * po/da.po: updates soft/ftw/po/da.po soft/initscripts/po/da.po soft/menudrake/po/da.po soft/urpmi/po/da.po soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po 2004-01-30 18:36 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: see changelog 2004-01-30 18:35 Antoine Ginies <aginies@mandrakesoft.com> * installsrv_wizard/Makefile: add image 2004-01-30 17:30 Pablo Saratxaga <pablo@mandrakesoft.com> * po/et.po: updated po file 2004-01-30 16:06 Pablo Saratxaga <pablo@mandrakesoft.com> * po/et.po: updated po file 2004-01-30 16:04 Pablo Saratxaga <pablo@mandrakesoft.com> * installsrv_wizard/Installsrv.pm, po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Cyrl.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: updated pot file 2004-01-30 15:41 Pablo Saratxaga <pablo@mandrakesoft.com> * pxe_wizard/Pxe.pm: fixed typo 2004-01-30 15:12 Thierry Vignaud <tvignaud@mandrakesoft.com> * installsrv_wizard/Installsrv.pm, po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Cyrl.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: typo fix 2004-01-30 11:34 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: et.po, fi.po: updated po files 2004-01-29 15:53 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: az.po, et.po, hi.po, nb.po, tr.po: updated po files 2004-01-29 14:21 Thierry Vignaud <tvignaud@mandrakesoft.com> * ftp_wizard/Proftpd.pm, po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Cyrl.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: typo fix (s/transfert/transfer/) 2004-01-29 10:17 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: fix error from previous correction (pxe was unable to read old conf!) 2004-01-29 10:05 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: update changelog 2004-01-28 20:31 Antoine Ginies <aginies@mandrakesoft.com> * po/fr.po: update strings 2004-01-28 19:54 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2004-01-28 16:25 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm: use dnsdomainame instead of domainaname 2004-01-28 16:24 Antoine Ginies <aginies@mandrakesoft.com> * dhcp_wizard/Dhcp.pm: enable/disabel pxe 2004-01-28 16:17 Antoine Ginies <aginies@mandrakesoft.com> * proxy_wizard/Squid.pm: fix typo 2004-01-28 15:56 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fr.po: update 2004-01-28 15:53 Thierry Vignaud <tvignaud@mandrakesoft.com> * ftp_wizard/: Proftpd.pm: upcase protocol name 2004-01-28 15:42 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.spec: fix changelog: - do not reference error regarding unreleased commits (we describe what's new *since next release*) [btw do not change "upcase" into "update"] - do not put understanble logs about low level perl code - make a few setences be understandable 2004-01-28 12:13 Antoine Ginies <aginies@mandrakesoft.com> * postfix_wizard/Postfix.pm: few fix, and add menu 2004-01-28 12:12 Antoine Ginies <aginies@mandrakesoft.com> * proxy_wizard/Squid.pm: - val to fixed_val in summary - fix typo 2004-01-27 18:29 Antoine Ginies <aginies@mandrakesoft.com> * postfix_wizard/Postfix.pm: update, before leaving laval (go to paris) and get last file on cvs server 2004-01-27 17:54 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: see changelog 2004-01-27 16:13 Antoine Ginies <aginies@mandrakesoft.com> * ftp_wizard/Proftpd.pm: few correction/debug (nonotor report) 2004-01-27 11:35 Antoine Ginies <aginies@mandrakesoft.com> * ftp_wizard/Proftpd.pm: - correct some typo - add test of bash in /etc/shells - rewrite fonction to allow/deny from internet/intranet - force selection of intranet or internet to continue wizard 2004-01-26 18:34 Thierry Vignaud <tvignaud@mandrakesoft.com> * common/Wizcommon.pm: fix warning in high level wizards 2004-01-26 11:30 Antoine Ginies <aginies@mandrakesoft.com> * ftp_wizard/Proftpd.pm: correction after bug-report from Arnaud 2004-01-26 04:57 hilbert * po/zh_TW.po: No more ҽk½Ķ. 2004-01-26 01:04 hilbert * po/zh_TW.po: (08:00:53) hilbert: In wizard_perl/po/zh_TW.po, the 229 is the same with the 232 (08:02:14) hilbert: in the 246, should "Nis directory:" be "NIS directory:" (uppercased)? (08:03:07) hilbert: In the 248, should "Nfs exports:" be "NFS exports:" (uppercased)? 2004-01-25 18:14 Youcef Rabah Rahal <rahal@arabeyes.org> * po/ar.po: Committing Arabeyes.org translation. 2004-01-25 15:25 Pablo Saratxaga <pablo@mandrakesoft.com> * ldap_wizard/ldap.pm, po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Cyrl.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: fixed typo 2004-01-25 15:16 hilbert * po/zh_TW.po: 156: "wich operation on LDAP:" 156: should be "which operation on LDAP:" 2004-01-24 15:20 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: s/Address IP/IP Address/ 2004-01-24 15:15 Thierry Vignaud <tvignaud@mandrakesoft.com> * dns_wizard/Bind.pm: s/Address IP/IP Address/ (Per yvind Karlsen) 2004-01-23 13:36 Pablo Saratxaga <pablo@mandrakesoft.com> * po/et.po: updated po file 2004-01-23 01:35 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated po files 2004-01-22 23:08 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, dns_wizard/Bind.pm, nisautofs_wizard/Nisautofs.pm, po/uk.po, po/uz.po, po/uz@Cyrl.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: s/egal/equal/ 2004-01-22 23:05 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, installsrv_wizard/Installsrv.pm, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Cyrl.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, pxe_wizard/Pxe.pm: s/wich/which/ 2004-01-22 21:53 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated po files 2004-01-22 21:24 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.pl, client_wizard/Bind_client.pm, common/IFCFG.pm, common/Varspaceval.pm, common/Wizcommon.pm, installsrv_wizard/Installsrv.pm, ldap_wizard/ldap.pm, news_wizard/Inn.pm, nfs_wizard/NFS.pm, nisautofs_wizard/Nisautofs.pm, proxy_wizard/Squid.pm, pxe_wizard/Pxe.pm, samba_wizard/Samba.pm, time_wizard/Ntp.pm, web_wizard/Apache.pm: perl_checker fixes 2004-01-22 20:57 Thierry Vignaud <tvignaud@mandrakesoft.com> * ftp_wizard/Proftpd.pm, dns_wizard/Bind.pm, Wiztemplate.pm: perl_checker fixes 2004-01-22 20:47 Thierry Vignaud <tvignaud@mandrakesoft.com> * ftp_wizard/Proftpd.pm: (true) make it look like real perl 2004-01-22 20:44 Thierry Vignaud <tvignaud@mandrakesoft.com> * ldap_wizard/.perl_checker: blacklist some bad modules to that perl_checker is able to parse ldap.pm 2004-01-22 20:40 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fr.po: - further update - fix typos 2004-01-22 20:39 Thierry Vignaud <tvignaud@mandrakesoft.com> * dns_wizard/Bind.pm: make some strings understandable 2004-01-22 20:37 Thierry Vignaud <tvignaud@mandrakesoft.com> * ldap_wizard/ldap.pm: try to ease translators job: - upcase protocol name and acronyms - merge in short technical strings and simple words into long strings so that translators may be able to understand what the author meant 2004-01-22 20:31 Thierry Vignaud <tvignaud@mandrakesoft.com> * pxe_wizard/Pxe.pm: upcate TFTP protocol name 2004-01-22 20:29 Thierry Vignaud <tvignaud@mandrakesoft.com> * pxe_wizard/Pxe.pm: upcase acpi and apic 2004-01-22 20:19 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: merge in typo fixes 2004-01-22 20:17 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fr.po: update 2004-01-22 20:17 Thierry Vignaud <tvignaud@mandrakesoft.com> * client_wizard/Bind_client.pm, dns_wizard/Bind.pm: s/ip number/IP address/ 2004-01-22 19:39 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: merge 2004-01-22 19:25 Thierry Vignaud <tvignaud@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm: typo fix 2004-01-22 16:43 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm: update typo 2004-01-22 16:10 Antoine Ginies <aginies@mandrakesoft.com> * po/fr.po: update fr translation 2004-01-22 15:40 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: split modify wizard to fit wizard window 2004-01-22 13:45 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm: - fix pb of remove host - fix some typo - clear CLIENTNAME CLIENTIP when add a new host 2004-01-22 11:57 Antoine Ginies <aginies@mandrakesoft.com> * installsrv_wizard/Installsrv.pm, nisautofs_wizard/Nisautofs.pm: typo fix 2004-01-22 11:50 Antoine Ginies <aginies@mandrakesoft.com> * nisautofs_wizard/: Makefile, Nisautofs.pm: reference to correct image name 2004-01-22 11:39 Antoine Ginies <aginies@mandrakesoft.com> * data/Client.desktop.in: remove obsoloete file, now client add is in DNS wizard 2004-01-22 11:37 Antoine Ginies <aginies@mandrakesoft.com> * installsrv_wizard/images/Install.png: add image 2004-01-22 11:32 Antoine Ginies <aginies@mandrakesoft.com> * nisautofs_wizard/images/nisautofs.png: add new image 2004-01-22 11:22 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: fix problem of list image 2004-01-21 18:36 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: - some fix after receiving erwan test report :-) 2004-01-21 17:28 Antoine Ginies <aginies@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm: perl_cehcker recommendation 2004-01-21 17:21 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm, postfix_wizard/Postfix.pm: perl_checker recommendation 2004-01-21 17:12 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm: perl_checker recommendation 2004-01-21 16:27 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: fix doble entry 2004-01-21 16:19 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: typo fix (s/todo/to do/) 2004-01-21 16:16 Thierry Vignaud <tvignaud@mandrakesoft.com> * dns_wizard/Bind.pm, ldap_wizard/ldap.pm, nisautofs_wizard/Nisautofs.pm, pxe_wizard/Pxe.pm: use N("...") rather than N('...') for perl_checker 2004-01-21 16:14 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fr.po: further merge 2004-01-21 16:07 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fr.po: update 2004-01-21 16:01 Thierry Vignaud <tvignaud@mandrakesoft.com> * installsrv_wizard/Installsrv.pm: fix doble space 2004-01-21 16:00 Thierry Vignaud <tvignaud@mandrakesoft.com> * dns_wizard/Bind.pm: upcase first letter/factorize strings 2004-01-21 15:59 Thierry Vignaud <tvignaud@mandrakesoft.com> * dns_wizard/Bind.pm: typo fix (s/todo/to do/) 2004-01-21 15:57 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.pl: s/Mdk/Mandrake/ 2004-01-21 15:57 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.pl: upcase protocol names 2004-01-21 15:52 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, eu.po, fa.po, fi.po, fr.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, zh_CN.po, zh_TW.po: merge 2004-01-21 15:51 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.spec: further changelog fix 2004-01-21 15:48 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.spec: fix changelog 2004-01-21 14:45 Warly <warly@mandrakesoft.com> * drakwizard.spec: 2.9 2004-01-21 14:20 Pablo Saratxaga <pablo@mandrakesoft.com> * po/et.po: updated po file 2004-01-21 12:17 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: drakwizard.pot, he.po, wa.po: updated po files 2004-01-21 11:41 Antoine Ginies <aginies@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm: now use var in $o->{} 2004-01-21 04:46 Funda Wang <fundawang@linux.net.cn> * po/zh_CN.po: update 2004-01-20 19:25 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: see changelog 2004-01-20 19:23 Antoine Ginies <aginies@mandrakesoft.com> * installsrv_wizard/Installsrv.pm: - restart needed service - http and nfs installation are always enabled 2004-01-20 18:50 Antoine Ginies <aginies@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm: - fix typo in waiting screen - fix pb of nisdomainname check 2004-01-20 18:38 Antoine Ginies <aginies@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm: fix typo 2004-01-20 18:07 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: see changelog 2004-01-20 18:06 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: - add domainanme test - now configure /etc/pxe.conf 2004-01-20 17:45 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: see changelog 2004-01-20 17:43 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm: decomment needed_rpm bind 2004-01-20 17:43 Antoine Ginies <aginies@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm: add a nisdomain test 2004-01-20 16:46 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: see changelog 2004-01-20 16:42 Antoine Ginies <aginies@mandrakesoft.com> * dhcp_wizard/: Dhcp.pm, scripts/dhcpd.conf.default: add pxe support in dhcp server 2004-01-20 16:36 Vincent Guardiola <vguardiola@mandrakesoft.com> * ldap_wizard/fcldap.pm: Function for Wizard LDAP 2004-01-20 16:35 Vincent Guardiola <vguardiola@mandrakesoft.com> * ldap_wizard/ldap.pm: Wizard LDAP 2004-01-20 16:34 Keld Jrn Simonsen <keld@dkuug.dk> * po/da.po: da.dk problems, still unsolved soft/wizard_perl/po/da.po 2004-01-20 14:58 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm: add comment in db.DOMAINANME.hosts and db.ipreverse.hosts 2004-01-20 12:54 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: merge 2004-01-20 12:36 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: fix duplicate string 2004-01-20 12:35 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm: remove duplicate strings 2004-01-20 12:30 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/Makefile: fix string extraction 2004-01-20 12:29 Thierry Vignaud <tvignaud@mandrakesoft.com> * common/Varspaceval.pm: fix stro,gs extraction 2004-01-20 12:28 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fake_c.pl: remove useless script 2004-01-20 12:27 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/Makefile: fix build by getting rid of "fake perl code as c code" 2004-01-20 01:38 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.pl: adjust label for nisautofs and dns 2004-01-20 01:34 Antoine Ginies <aginies@mandrakesoft.com> * data/: installsrv.desktop.in, nis.desktop.in, pxe.desktop.in: new file for new drakwizard 2004-01-20 01:33 Antoine Ginies <aginies@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm: fix typo 2004-01-20 01:32 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm: add check procedure in init 2004-01-20 01:31 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm, installsrv_wizard/Installsrv.pm: update comment 2004-01-19 23:45 Keld Jrn Simonsen <keld@dkuug.dk> * po/da.po: Trying to get rid of "Translated to da.po" problem - did not work:-( soft/menu-messages/da.po soft/control-center/po/da.po soft/drakcronat/po/da.po soft/ftw/po/da.po soft/GtkMdkWidgets/po/da.po soft/kdebase-servicemenu/po/da.po soft/krozat/po/da.po soft/mandrake-menu-directory/po/da.po soft/mdkkdm/po/da.po soft/mdklaunchhelp/po/da.po soft/menudrake/po/da.po soft/rpmdrake/po/da.po soft/urpmi/po/da.po soft/userdrake2/po/da.po soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po soft/galaxy/thememdk/mandrake_client/po/da.po 2004-01-19 17:11 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: remove blank line in help.txt PXE file 2004-01-19 17:09 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm: fix typo 2004-01-19 16:13 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: adjust comment in file 2004-01-19 15:38 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm: debug remove host in DNS 2004-01-19 14:47 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm: - debug in add host (similar ip) 2004-01-19 14:10 Antoine Ginies <aginies@mandrakesoft.com> * Makefile, drakwizard.pl, drakwizard.spec: update to fit new dns wizard 2004-01-19 14:05 Antoine Ginies <aginies@mandrakesoft.com> * dns_wizard/Bind.pm: - new Bind wizard, full re-write based on Cluster tools 2004-01-18 10:58 Funda Wang <fundawang@linux.net.cn> * po/zh_CN.po: update 2004-01-17 22:28 Thierry Vignaud <tvignaud@mandrakesoft.com> * pxe_wizard/Pxe.pm: fix some strings (remaining problems sent to antoine by mail) 2004-01-17 22:25 Thierry Vignaud <tvignaud@mandrakesoft.com> * pxe_wizard/Pxe.pm: (remve a boot image step) - fix repeated string - reprahse 2004-01-16 15:21 Antoine Ginies <aginies@mandrakesoft.com> * installsrv_wizard/Installsrv.pm: - add nfslock reload - few correction 2004-01-16 14:50 Thierry Vignaud <tvignaud@mandrakesoft.com> * placeholder.h: remove useless file 2004-01-16 14:49 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/Makefile: placeholder.h translations already are in gi domain 2004-01-16 14:27 Thierry Vignaud <tvignaud@mandrakesoft.com> * placeholder.h, po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Cyrl.po, po/vi.po, po/wa.po: s/Next ->/Next/ and s/<- Previous/Previous/ as requested by interface team 2004-01-16 14:13 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fr.po: update 2004-01-16 14:02 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.pl: perl_checker fixes 2004-01-16 12:23 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: update changelog 2004-01-16 11:39 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: - can modify option in boot img - read old conf in boot disk - drakwizard now loop for add/remove/modify img (R1) 2004-01-15 17:43 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: option in boot disk 2004-01-15 14:52 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: now in remove image can choose in list entry 2004-01-15 11:30 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.pl: add PXe and installsrv 2004-01-15 11:27 Antoine Ginies <aginies@mandrakesoft.com> * drakwizard.spec: see changelog 2004-01-15 11:25 Antoine Ginies <aginies@mandrakesoft.com> * Makefile: add pxe and installsrv wizard 2004-01-15 11:15 Antoine Ginies <aginies@mandrakesoft.com> * installsrv_wizard/: Installsrv.pm, Makefile: drak Mandrake Install server 2004-01-14 19:28 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: now can remove entry in PXE 2004-01-14 18:03 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fr.po: update 2004-01-14 18:02 Thierry Vignaud <tvignaud@mandrakesoft.com> * pxe_wizard/Pxe.pm: typo fixes 2004-01-14 17:31 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: can set default pxe, and add an image in PXE menu 2004-01-14 11:00 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/default: complete example of default pxe file 2004-01-13 16:31 Antoine Ginies <aginies@mandrakesoft.com> * ftp_wizard/: Proftpd.pm, scripts/proftpd.conf.default: put default option in configuration file 2004-01-13 16:21 Frederic Crozat <fcrozat@mandrakesoft.com> * data/: Client.desktop.in, DHCP.desktop.in, DNS.desktop.in, Time.desktop.in, Web.desktop.in, ftp.desktop.in, news.desktop.in, postfix.desktop.in, proxy.desktop.in, samba.desktop.in, server.desktop.in: Sync with MCC 2004-01-13 15:48 Antoine Ginies <aginies@mandrakesoft.com> * ftp_wizard/: Proftpd.pm, scripts/proftpd.conf.default: new default configuration file, and add new options in wizard 2004-01-13 11:09 Antoine Ginies <aginies@mandrakesoft.com> * proxy_wizard/Squid.pm: add wiating dialog box 2004-01-13 10:13 Antoine Ginies <aginies@mandrakesoft.com> * postfix_wizard/Postfix.pm: add wiating dialog box, and myorigin var 2004-01-06 14:17 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fr.po: update 2004-01-06 12:49 Pablo Saratxaga <pablo@mandrakesoft.com> * po/zh_TW.po: updated po file 2004-01-05 14:33 Pablo Saratxaga <pablo@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm, po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Cyrl.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: updated pot file 2004-01-05 13:30 Thierry Vignaud <tvignaud@mandrakesoft.com> * pxe_wizard/Pxe.pm: typo fixes 2004-01-05 13:01 Pablo Saratxaga <pablo@mandrakesoft.com> * po/eu.po: updated po file 2004-01-02 19:41 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, eu.po, fa.po, fi.po, fr.po, he.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2004-01-02 15:27 Alice Lafox <alice@lafox.com.ua> * po/ru.po: updated 2003-12-26 16:11 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: et.po, hi.po: updated po files 2003-12-22 19:38 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.spec: advertize new NIS wizard too 2003-12-22 19:27 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.spec: 2.8-2mdk 2003-12-22 17:48 Thierry Vignaud <tvignaud@mandrakesoft.com> * web_wizard/Apache.pm: fix a few message layouts 2003-12-21 18:14 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: et.po, fi.po, hi.po, nb.po, ro.po: updated po files 2003-12-21 08:25 Thierry Vignaud <tvignaud@mandrakesoft.com> * pxe_wizard/Pxe.pm: one should never commit non workable code 2003-12-21 08:20 Thierry Vignaud <tvignaud@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm: let support --testing mode 2003-12-20 19:33 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: Updated translation 2003-12-19 15:11 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fr.po: fix missing space in french translation 2003-12-18 18:10 Vincent Guardiola <vguardiola@mandrakesoft.com> * ldap_wizard/fcldap.pm: [no log message] 2003-12-18 17:30 Keld Jrn Simonsen <keld@dkuug.dk> * po/da.po: updates soft/control-center/po/da.po soft/mdkkdm/po/da.po soft/urpmi/po/da.po soft/userdrake2/po/da.po soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po 2003-12-18 15:31 Thierry Vignaud <tvignaud@mandrakesoft.com> * web_wizard/Apache.pm: fix too long label 2003-12-18 13:14 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2003-12-17 10:37 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Cyrl.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, pxe_wizard/Pxe.pm: updated pot file 2003-12-16 23:25 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2003-12-16 17:56 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: cleaning VAR (too much in pxe_cluster.pm) 2003-12-16 17:39 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/: Makefile, drakpxe.old: old drakpxe 2003-12-16 15:48 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Makefile: needed 2003-12-16 15:43 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: few update in wizard structure 2003-12-16 15:34 Antoine Ginies <aginies@mandrakesoft.com> * pxe_wizard/Pxe.pm: struct of futur PXE wizard 2003-12-15 14:43 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2003-12-15 11:14 Antoine Ginies <aginies@mandrakesoft.com> * Makefile, drakwizard.pl: add nisautofs entry 2003-12-15 11:13 Antoine Ginies <aginies@mandrakesoft.com> * nisautofs_wizard/Nisautofs.pm: correct typo in package name 2003-12-15 11:04 Antoine Ginies <aginies@mandrakesoft.com> * nisautofs_wizard/: Makefile, Nisautofs.pm: add nis+autofs Server and client side 2003-12-12 15:41 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ja.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2003-12-11 12:14 Warly <warly@mandrakesoft.com> * drakwizard.spec, samba_wizard/Samba.pm: 2.8, samba wizards fixes 2003-12-10 21:38 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: Updated 2003-12-05 13:16 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ca.po: updated po file 2003-12-03 19:23 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ro.po: updated po file 2003-12-03 03:48 Pablo Saratxaga <pablo@mandrakesoft.com> * po/pt.po: updated po file 2003-12-03 00:40 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ja.po: Added Japanese file 2003-12-01 16:02 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2003-11-26 12:54 Pablo Saratxaga <pablo@mandrakesoft.com> * po/it.po: updated po file 2003-11-26 11:10 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.pl: - translate error dialog titles - make error messages use upcase as first letter 2003-11-24 12:34 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: eu.po, tg.po: updated po files 2003-11-23 11:31 Keld Jrn Simonsen <keld@dkuug.dk> * po/da.po: Updates soft/control-center/po/da.po soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po 2003-11-20 18:04 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: cy.po, et.po, nb.po: updated po files 2003-11-18 22:36 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2003-11-17 23:25 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.spec: 2.7-1mdk 2003-11-17 23:04 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: merge in fixed escaped strings 2003-11-17 23:01 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fake_c.pl: fix escaping 2003-11-17 22:48 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fake_c.pl: fix xgettext vs perl bug: perl need special caraters "$", "@", "*" and "%" to be escaped in doble quotes strings but xgettext doesn't know anything about that and just hapilly extract "blabla \@users blabla" whereas perl will pass "blabla @users blabla" to gettext at runtime which will make gettext to fail :-( 2003-11-17 22:16 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: Updated polish 2003-11-17 21:56 Thierry Vignaud <tvignaud@mandrakesoft.com> * samba_wizard/Samba.pm: fix another dobled message 2003-11-17 17:24 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fr.po: use french quotes 2003-11-17 17:22 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fr.po: better french on main window 2003-11-17 16:27 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, time_wizard/Ntp.pm, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Cyrl.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: typo fix 2003-11-17 16:21 Thierry Vignaud <tvignaud@mandrakesoft.com> * Makefile: fix localsrpm target 2003-11-17 16:17 Thierry Vignaud <tvignaud@mandrakesoft.com> * Makefile: localrpm/localsrpm targets 2003-11-17 16:14 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.spec: 2.6-3mdk 2003-11-17 16:14 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fr.po: translate all messages 2003-11-17 16:08 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: resync with latest i18n fixes 2003-11-17 16:00 Thierry Vignaud <tvignaud@mandrakesoft.com> * time_wizard/Ntp.pm: fix broken layout on time server error which result in 80% of the explanation not to be displayed and in hidding the next button 2003-11-17 15:59 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: uz.po, uz@Cyrl.po: updated po files 2003-11-17 15:42 Thierry Vignaud <tvignaud@mandrakesoft.com> * samba_wizard/Samba.pm: fix doble message 2003-11-17 15:36 Thierry Vignaud <tvignaud@mandrakesoft.com> * proxy_wizard/Squid.pm: translate some untranslated strings 2003-11-17 15:35 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.pl: translate entries in wizards pull-down menu in main drakwizard interface 2003-11-17 15:31 Thierry Vignaud <tvignaud@mandrakesoft.com> * dns_wizard/Bind.pm, ftp_wizard/Proftpd.pm, news_wizard/Inn.pm, postfix_wizard/Postfix.pm, proxy_wizard/Squid.pm, samba_wizard/Samba.pm: translate wizard's main window titles 2003-11-17 12:16 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: cy.po, et.po, eu.po, pt_BR.po: updated po files 2003-11-14 17:03 Thierry Vignaud <tvignaud@mandrakesoft.com> * Makefile: no changelog commit for localrpm 2003-11-14 17:02 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.spec: 2.6-2mdk 2003-11-14 16:01 Thierry Vignaud <tvignaud@mandrakesoft.com> * Makefile: add localrpm target in order to build test packages 2003-11-14 16:00 Thierry Vignaud <tvignaud@mandrakesoft.com> * nfs_wizard/NFS.pm: perl_checker fixes 2003-11-14 15:03 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: resync: remove doble congratulations message due to typos 2003-11-14 15:00 Thierry Vignaud <tvignaud@mandrakesoft.com> * client_wizard/Bind_client.pm, dhcp_wizard/Dhcp.pm: typo fix: s/Congratulationss/Congratulations/ 2003-11-14 14:59 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/fr.po: translate all strings into french 2003-11-14 14:45 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: msgmerge 2003-11-14 14:33 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/drakwizard.pot: resync with sources 2003-11-14 14:32 Thierry Vignaud <tvignaud@mandrakesoft.com> * wiz2fake_c.pl, wpo2po.pl, server_wizard/scripts/Serverconf.pm, web_wizard/Apache.pm: perl_checker fixes 2003-11-14 14:31 Thierry Vignaud <tvignaud@mandrakesoft.com> * samba_wizard/Samba.pm: - fix quotes in strings - perl_checker fixes 2003-11-14 14:29 Thierry Vignaud <tvignaud@mandrakesoft.com> * news_wizard/Inn.pm, postfix_wizard/Postfix.pm, proxy_wizard/Squid.pm: fix quotes in strings 2003-11-14 14:28 Thierry Vignaud <tvignaud@mandrakesoft.com> * Wiztemplate.pm: typo fix 2003-11-14 14:05 Thierry Vignaud <tvignaud@mandrakesoft.com> * .perl_checker: blacklist some bad modules in order to let perl_checker smoothly parse drakwizards 2003-11-14 13:48 Thierry Vignaud <tvignaud@mandrakesoft.com> * Wiztemplate.pm, proxy_wizard/Squid.pm, samba_wizard/Samba.pm, time_wizard/Ntp.pm, web_wizard/Apache.pm: do not mark empty strings as translatable 2003-11-14 13:44 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/drakwizard.pot: resync with sources 2003-11-14 13:43 Thierry Vignaud <tvignaud@mandrakesoft.com> * Wiztemplate.pm, client_wizard/Bind_client.pm, dns_wizard/Bind.pm, ftp_wizard/Proftpd.pm, news_wizard/Inn.pm, nfs_wizard/NFS.pm, postfix_wizard/Postfix.pm, proxy_wizard/Squid.pm, samba_wizard/Samba.pm, time_wizard/Ntp.pm, web_wizard/Apache.pm: fix N() encapsuled strings not seen as "to be extracted" strings when generating the pot 2003-11-14 13:20 Thierry Vignaud <tvignaud@mandrakesoft.com> * dhcp_wizard/Dhcp.pm: - fix typo - perl_checker fixes 2003-11-08 19:53 Warly <warly@mandrakesoft.com> * drakwizard.spec, po/Makefile: remove dependency upon perl-XML-Parse 2003-11-05 17:57 Warly <warly@mandrakesoft.com> * drakwizard.pl, drakwizard.spec, client_wizard/Bind_client.pm, dns_wizard/Bind.pm, ftp_wizard/Proftpd.pm, time_wizard/Ntp.pm: fix ftp anonymous mode fix ntp wizard fix bind config 2003-11-05 10:44 Warly <warly@mandrakesoft.com> * dns_wizard/Bind.pm, nfs_wizard/NFS.pm, time_wizard/Ntp.pm: add forgotten modules 2003-10-20 12:51 Warly <warly@mandrakesoft.com> * Wizard.dtd, drakwizard.pl, client_wizard/Bind_client.pm, client_wizard/client.wiz, client_wizard/scripts/Clientconf.pm, client_wizard/scripts/do_it_client.sh, common/IFCFG.pm, common/Varspaceval.pm, common/Wizcommon.pm, common/scripts/DrakconnectConf.pm, common/scripts/IFCFG.pm, common/scripts/Vareqval.pm, common/scripts/Varspaceval.pm, common/scripts/check.sh, common/scripts/check_root.sh, common/scripts/functions.sh, common/scripts/test.pl, dhcp_wizard/Dhcp.pm, dhcp_wizard/dhcp.wiz, dhcp_wizard/scripts/Dhcpconf.pm, dhcp_wizard/scripts/do_it_dhcp.sh, dns_wizard/dns.wiz, dns_wizard/scripts/Dnsconf.pm, ftp_wizard/Proftpd.pm, ftp_wizard/ftp.wiz, ftp_wizard/scripts/ProFtpconf.pm, news_wizard/Inn.pm, news_wizard/news.wiz, news_wizard/scripts/Newsconf.pm, postfix_wizard/Postfix.pm, postfix_wizard/postfix.wiz, proxy_wizard/Squid.pm, proxy_wizard/proxy.wiz, proxy_wizard/scripts/Squidconf.pm, samba_wizard/Samba.pm, samba_wizard/samba.wiz, samba_wizard/scripts/Smbconf.pm, time_wizard/time.wiz, time_wizard/scripts/NTPConf.pm, time_wizard/scripts/compute_liste.sh, web_wizard/Apache.pm, web_wizard/apache2.wiz, web_wizard/web.wiz, web_wizard/scripts/Apache2conf.pm, web_wizard/scripts/Webconf.pm, web_wizard/scripts/mytest.pl: change copyright remove old xml related files 2003-10-09 07:38 Keld Jrn Simonsen <keld@dkuug.dk> * po/da.po: some corrections soft/control-center/po/da.po soft/wizard_perl/po/da.po 2003-09-26 14:18 Pablo Saratxaga <pablo@mandrakesoft.com> * po/tg.po: updated po file 2003-09-23 09:57 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: bs.po, pt_BR.po: updated po files 2003-09-19 22:42 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: de.po, sv.po: updated po files 2003-09-19 13:50 Pablo Saratxaga <pablo@mandrakesoft.com> * postfix_wizard/Postfix.pm: fixed typo 2003-09-19 13:46 Warly <warly@mandrakesoft.com> * drakwizard.spec: 2.5 2003-09-19 12:33 Warly <warly@mandrakesoft.com> * Makefile, Wiztemplate.pm, drakwizard.pl, drakwizard.spec, client_wizard/Bind_client.pm, dhcp_wizard/Dhcp.pm, ftp_wizard/Proftpd.pm, news_wizard/Inn.pm, postfix_wizard/Postfix.pm, proxy_wizard/Squid.pm, samba_wizard/Samba.pm, web_wizard/Apache.pm: fix typo in .pm 2003-09-18 15:57 Pablo Saratxaga <pablo@mandrakesoft.com> * po/sq.po: updated po file 2003-09-17 21:19 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: Makefile, drakwizard.pot, hi.po: updated Hindi file; 2003-09-17 21:15 Warly <warly@mandrakesoft.com> * po/Makefile: readd wiz fake_c processor 2003-09-17 21:07 Warly <warly@mandrakesoft.com> * po/Makefile: keep old wiz parsing for old strings 2003-09-17 20:55 Warly <warly@mandrakesoft.com> * po/Makefile: do not read .wiz files 2003-09-17 20:54 Warly <warly@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, is.po, it.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: revert good po 2003-09-17 20:34 Warly <warly@mandrakesoft.com> * Makefile: 2.4 2003-09-17 20:18 Warly <warly@mandrakesoft.com> * drakwizard.spec, Makefile: 2.4 2003-09-17 19:41 Warly <warly@mandrakesoft.com> * drakwizard.pl, drakwizard.spec, client_wizard/Bind_client.pm, dhcp_wizard/Dhcp.pm, ftp_wizard/Proftpd.pm, news_wizard/Inn.pm, po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Cyrl.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, postfix_wizard/Postfix.pm, proxy_wizard/Squid.pm, samba_wizard/Samba.pm, web_wizard/Apache.pm: better check of ip addresses in dhcp check that server has been run in client dns check that the program is run as root in drakwizard remove bad quotes in po 2003-09-17 09:45 Pablo Saratxaga <pablo@mandrakesoft.com> * po/he.po: update po file 2003-09-16 12:59 Pablo Saratxaga <pablo@mandrakesoft.com> * po/is.po: Added Icelandic file 2003-09-15 20:24 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/it.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Cyrl.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, postfix_wizard/Postfix.pm: updated pot file; fixed errors (unescaped quotedbl) in perl files 2003-09-15 13:10 Warly <warly@mandrakesoft.com> * Makefile, drakwizard.pl, drakwizard.spec, client_wizard/Bind_client.pm, common/IFCFG.pm, dhcp_wizard/Dhcp.pm, dhcp_wizard/scripts/dhcpd.conf.default, ftp_wizard/Proftpd.pm, news_wizard/Inn.pm, po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/it.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Cyrl.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, postfix_wizard/Postfix.pm, proxy_wizard/Squid.pm, proxy_wizard/scripts/squid.conf.default, samba_wizard/Samba.pm, samba_wizard/scripts/smb.conf.default, web_wizard/Apache.pm: fix apache fix dns_client adding a \n at the end of the line of the configuration file fix squid fix inn fix ftp fix samba add a init function in drakwizard.pl for case such as apache which need to initialize some parameters separate region/country in ntp wizard 2003-09-15 08:26 Pablo Saratxaga <pablo@mandrakesoft.com> * po/hu.po: updated po file 2003-09-14 11:28 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: fa.po, hu.po: updated po files 2003-09-13 11:05 Pablo Saratxaga <pablo@mandrakesoft.com> * po/tg.po: updated po file 2003-09-13 02:54 Pablo Saratxaga <pablo@mandrakesoft.com> * placeholder.h, po/Makefile, po/ar.po, po/az.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/he.po, po/hi.po, po/hu.po, po/id.po, po/it.po, po/ko.po, po/lv.po, po/mk.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Cyrl.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: updated pot file; added comment for difficult string 2003-09-12 21:03 Keld Jrn Simonsen <keld@dkuug.dk> * po/da.po: corrections soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po 2003-09-12 16:22 Pablo Saratxaga <pablo@mandrakesoft.com> * po/vi.po: updated po file 2003-09-12 12:32 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ro.po: updated po file 2003-09-12 01:59 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: sk.po, tr.po: updated po files 2003-09-11 17:14 Pablo Saratxaga <pablo@mandrakesoft.com> * po/wa.po: updated po file 2003-09-10 23:29 Tibor Pittich <Tibor.Pittich@phuture.sk> * po/sk.po: updated slovak translation 2003-09-10 11:29 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: de.po, mt.po, pt_BR.po: updated po files 2003-09-09 20:19 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: fr.po, nl.po: updated po files 2003-09-09 15:25 Keld Jrn Simonsen <keld@dkuug.dk> * po/da.po: updates soft/GtkMdkWidgets/po/da.po soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po 2003-09-09 10:39 Pablo Saratxaga <pablo@mandrakesoft.com> * po/uk.po: updated po file 2003-09-08 16:51 Pablo Saratxaga <pablo@mandrakesoft.com> * po/az.po: updated po file 2003-09-08 15:18 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: es.po, et.po, nb.po, pt.po: updated po files 2003-09-08 13:41 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2003-09-08 13:15 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: cs.po, cy.po, fi.po, hu.po: updated po files 2003-09-07 13:15 Pablo Saratxaga <pablo@mandrakesoft.com> * po/eu.po: updated po files 2003-09-07 11:40 Alice Lafox <alice@lafox.com.ua> * po/ru.po: last update, passed spellchecking 2003-09-07 11:12 Pablo Saratxaga <pablo@mandrakesoft.com> * po/zh_CN.po: updated po file 2003-09-07 10:01 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: 1 entry 2003-09-07 01:41 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, it.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2003-09-05 19:46 Warly <warly@mandrakesoft.com> * Makefile, drakwizard.pl, common/Wizcommon.pm, postfix_wizard/Postfix.pm, samba_wizard/Samba.pm: 2.1 2003-09-05 13:51 Warly <warly@mandrakesoft.com> * drakwizard.pl: [no log message] 2003-09-05 13:42 Warly <warly@mandrakesoft.com> * Makefile, drakwizard.pl, drakwizard.spec, client_wizard/Bind_client.pm, dhcp_wizard/Dhcp.pm, ftp_wizard/Proftpd.pm, news_wizard/Inn.pm, postfix_wizard/Postfix.pm, proxy_wizard/Squid.pm, samba_wizard/Samba.pm, web_wizard/Apache.pm: [no log message] 2003-09-05 02:35 Pablo Saratxaga <pablo@mandrakesoft.com> * po/fa.po: updated po file 2003-09-04 20:15 Pablo Saratxaga <pablo@mandrakesoft.com> * po/sq.po: updated po file 2003-09-04 18:17 Pablo Saratxaga <pablo@mandrakesoft.com> * po/zh_CN.po: updated po file 2003-09-04 15:28 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: uk.po, vi.po: updated po files 2003-09-04 10:18 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: eu.po, pt.po, sk.po: updated po files 2003-09-03 23:03 Tibor Pittich <Tibor.Pittich@phuture.sk> * po/sk.po: updated slovak translation 2003-09-03 21:54 Pablo Saratxaga <pablo@mandrakesoft.com> * po/cs.po, po/cy.po, po/tr.po, postfix_wizard/Postfix.pm: updated pot files 2003-09-03 19:30 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, it.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2003-09-03 14:10 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: One string 2003-09-03 14:08 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: Updated 2003-09-03 10:25 Keld Jrn Simonsen <keld@dkuug.dk> * po/da.po: updates soft/userdrake2/po/da.po soft/wizard_perl/po/da.po 2003-09-03 00:20 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: cy.po, fi.po, hu.po: updated po files 2003-09-02 18:13 Pablo Saratxaga <pablo@mandrakesoft.com> * po/et.po: updated po file 2003-09-02 13:48 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: Makefile, ar.po, az.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hi.po, hu.po, id.po, it.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: Added *.pm files in the search for translatable strings 2003-09-02 04:35 Pablo Saratxaga <pablo@mandrakesoft.com> * po/eu.po: updated po file 2003-09-02 00:35 Pablo Saratxaga <pablo@mandrakesoft.com> * po/bs.po: updated po file 2003-09-01 14:19 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: az.po, de.po, sk.po, zh_CN.po: updated po files 2003-08-31 17:26 Tibor Pittich <Tibor.Pittich@phuture.sk> * po/sk.po: updated slovak translation 2003-08-30 20:09 Stefan Siegel <siegel@linux-mandrake.com> * po/de.po: updates 2003-08-30 13:21 Stefan Siegel <siegel@linux-mandrake.com> * po/de.po: updates 2003-08-30 13:08 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: drakwizard.pot, vi.po: updated Vietnamese file 2003-08-29 23:15 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ro.po: updated po file 2003-08-29 23:10 Pablo Saratxaga <pablo@mandrakesoft.com> * po/pl.po: updated po file 2003-08-29 13:53 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: bg.po, da.po: updated po files 2003-08-29 09:26 Keld Jrn Simonsen <keld@dkuug.dk> * po/da.po: Updates soft/menu-messages/da.po soft/GtkMdkWidgets/po/da.po soft/urpmi/po/da.po soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po 2003-08-28 14:41 Pablo Saratxaga <pablo@mandrakesoft.com> * po/az.po: Added Azeri file 2003-08-27 22:32 Pablo Saratxaga <pablo@mandrakesoft.com> * po/nl.po: updated po file 2003-08-27 15:41 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: es.po, hi.po, sq.po: Added Hindi file 2003-08-27 02:51 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: Updated Spanish translations 2003-08-26 22:42 Pablo Saratxaga <pablo@mandrakesoft.com> * po/pt.po: updated po file 2003-08-26 22:24 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: cy.po, fi.po, nb.po, sv.po: updated po files 2003-08-26 16:33 Pablo Saratxaga <pablo@mandrakesoft.com> * po/cs.po: updated po file 2003-08-26 15:46 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: et.po, hu.po, uk.po: updated po files 2003-08-25 21:47 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: Updated polish translation 2003-08-25 20:50 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: fa.po, ru.po, wa.po: updated po files 2003-08-25 20:11 Alice Lafox <alice@lafox.com.ua> * po/ru.po: updated 2003-08-25 16:50 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, he.po, hu.po, id.po, it.po, ko.po, lv.po, mk.po, ms.po, mt.po, nb.po, nl.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sq.po, sr.po, sr@Latn.po, sv.po, ta.po, tg.po, tr.po, uk.po, uz.po, uz@Cyrl.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2003-08-23 17:50 Thierry Vignaud <tvignaud@mandrakesoft.com> * postfix_wizard/Postfix.pm: - fix service restart in postfix wizard - calling N("") resulted in po breakage in the past - misc perl_checker fixes 2003-08-23 17:49 Thierry Vignaud <tvignaud@mandrakesoft.com> * common/Wizcommon.pm: prevent perl_checker to complain about missing argument we just do not use anyway 2003-08-22 23:29 Warly <warly@mandrakesoft.com> * Makefile, Wiztemplate.pm, drakwizard.pl, client_wizard/Bind_client.pm, common/IFCFG.pm, common/Varspaceval.pm, common/Wizcommon.pm, dhcp_wizard/Dhcp.pm, ftp_wizard/Proftpd.pm, news_wizard/Inn.pm, postfix_wizard/Postfix.pm, proxy_wizard/Squid.pm, samba_wizard/Samba.pm, web_wizard/Apache.pm: fix the IFCFG reset of PATH env var which breaks packages installation 2003-08-22 21:59 Warly <warly@mandrakesoft.com> * Makefile, Wiztemplate.pm, drakwizard.pl, drakwizard.spec, client_wizard/Bind_client.pm, client_wizard/Makefile, common/IFCFG.pm, common/Varspaceval.pm, common/Wizcommon.pm, data/Client.desktop.in, data/DHCP.desktop.in, data/DNS.desktop.in, data/Time.desktop.in, data/Web.desktop.in, data/ftp.desktop.in, data/news.desktop.in, data/postfix.desktop.in, data/proxy.desktop.in, data/samba.desktop.in, dhcp_wizard/Dhcp.pm, dhcp_wizard/scripts/Dhcpconf.pm, ftp_wizard/Proftpd.pm, news_wizard/Inn.pm, postfix_wizard/Postfix.pm, proxy_wizard/Squid.pm, samba_wizard/Samba.pm, web_wizard/Apache.pm, web_wizard/scripts/Apache2conf.pm: switch to perl only 2003-08-22 16:20 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: bg.po, ms.po: Added Malay file 2003-08-22 01:49 Pablo Saratxaga <pablo@mandrakesoft.com> * po/bg.po: updated po file 2003-08-19 09:49 Pablo Saratxaga <pablo@mandrakesoft.com> * po/mt.po: updated po file 2003-08-18 21:22 Pablo Saratxaga <pablo@mandrakesoft.com> * po/bs.po: updated po file 2003-08-18 12:17 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: uz.po, uz@Cyrl.po: updated po files 2003-08-13 03:37 Pablo Saratxaga <pablo@mandrakesoft.com> * po/eu.po: updated po file 2003-08-11 15:45 Pablo Saratxaga <pablo@mandrakesoft.com> * po/bg.po: updated po file 2003-08-10 13:53 Pablo Saratxaga <pablo@mandrakesoft.com> * po/eu.po: updated po file 2003-08-09 16:53 Pablo Saratxaga <pablo@mandrakesoft.com> * po/eo.po: updated po file 2003-08-08 17:15 Pablo Saratxaga <pablo@mandrakesoft.com> * po/sr.po: fixed error 2003-08-08 14:54 David Baudens <baudens@mandrakesoft.com> * drakwizard.spec, po/sr.po, samba_wizard/images/samba.png, time_wizard/images/Time.png: Update 2003-08-08 14:39 David Baudens <baudens@mandrakesoft.com> * client_wizard/images/DNS.png, dhcp_wizard/images/DHCP.png, dns_wizard/images/DNS.png, ftp_wizard/images/FTP.png, news_wizard/images/news.png, nfs_wizard/images/NFS.png, postfix_wizard/images/courrier.png, proxy_wizard/images/proxy.png, server_wizard/images/intranet.png, web_wizard/images/apache.png: Update 2003-08-07 02:55 Pablo Saratxaga <pablo@mandrakesoft.com> * po/fa.po: Added Farsi file 2003-08-02 14:17 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: bg.po, pt_BR.po: updated po files 2003-07-29 01:22 Pablo Saratxaga <pablo@mandrakesoft.com> * po/bg.po: updated po files 2003-07-28 18:23 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: drakwizard.pot, uz.po, uz@Cyrl.po: Added Uzbek file 2003-06-28 17:53 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: nb.po, no.po: Moved Bokmaal file to nb.po 2003-06-04 17:18 Pablo Saratxaga <pablo@mandrakesoft.com> * po/uk.po: updated po file 2003-05-28 21:21 Pablo Saratxaga <pablo@mandrakesoft.com> * po/sq.po: updated po file 2003-05-16 22:19 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: sp.po, sr.po, sr@Latn.po: renamed Serbian files 2003-04-23 14:21 Pablo Saratxaga <pablo@mandrakesoft.com> * po/pt_BR.po: updated po file 2003-03-31 14:48 Pablo Saratxaga <pablo@mandrakesoft.com> * po/de.po: updated po file 2003-03-31 12:42 Pablo Saratxaga <pablo@mandrakesoft.com> * po/sq.po: Added Albanian po file 2003-03-22 12:45 Pablo Saratxaga <pablo@mandrakesoft.com> * po/tg.po: Added Tajik file 2003-03-17 23:19 Alice Lafox <alice@lafox.com.ua> * po/ru.po: spellchecked and typos corrected 2003-03-15 16:25 Pablo Saratxaga <pablo@mandrakesoft.com> * po/he.po: updated po file 2003-03-14 13:49 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: pt.po, tr.po: updated po files 2003-03-13 13:12 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: eo.po, id.po: updated po files 2003-03-12 18:50 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: drakwizard.pot, fr.po: updated po file 2003-03-11 15:15 Warly <warly@mandrakesoft.com> * drakwizard.spec, po/fr.po, time_wizard/scripts/NTPConf.pm: add server in ntp.conf in time wizard 2003-03-11 11:23 David Baudens <baudens@mandrakesoft.com> * client_wizard/images/DNS.png: Update banner 2003-03-11 11:19 David Baudens <baudens@mandrakesoft.com> * drakwizard.spec, dhcp_wizard/images/DHCP.png, dns_wizard/images/DNS.png, ftp_wizard/images/FTP.png, news_wizard/images/news.png, postfix_wizard/images/courrier.png, proxy_wizard/images/proxy.png, samba_wizard/images/samba.png, time_wizard/images/Time.png, web_wizard/images/apache.png: Update banners 2003-03-09 12:48 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: da.po, el.po: updated po files 2003-03-09 08:10 Warly <warly@mandrakesoft.com> * drakwizard.spec, dhcp_wizard/scripts/Dhcpconf.pm: send the servier IP in dhcp wizard if 127.0.0.1 is its nameserver 2003-03-08 17:39 Warly <warly@mandrakesoft.com> * drakwizard.spec, dhcp_wizard/scripts/Dhcpconf.pm: choose another dns than 127.0.0.1 if available for dhcp server 2003-03-08 04:26 Pablo Saratxaga <pablo@mandrakesoft.com> * po/he.po: updated po files 2003-03-07 13:31 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: nl.po, sk.po: updated po file 2003-03-07 03:08 Tibor Pittich <Tibor.Pittich@phuture.sk> * po/sk.po: updated slovak translation change codepage to utf-8 2003-03-06 17:58 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ta.po: updated po file 2003-03-05 21:15 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, es.po, et.po, eu.po, fi.po, fr.po, he.po, hu.po, id.po, it.po, ko.po, lv.po, mk.po, mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sp.po, sr.po, sv.po, ta.po, tr.po, uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2003-03-05 18:38 Warly <warly@mandrakesoft.com> * Makefile, drakwizard.spec, server_wizard/server.wiz, server_wizard/scripts/Serverconf.pm, server_wizard/scripts/check_config.sh, server_wizard/scripts/liste_device.sh: various fixes in server wizard deactivate firewall wizard 2003-03-05 18:16 Pablo Saratxaga <pablo@mandrakesoft.com> * po/vi.po: updated po file 2003-03-04 23:54 Pablo Saratxaga <pablo@mandrakesoft.com> * po/cs.po: updated po file 2003-03-04 02:43 Pablo Saratxaga <pablo@mandrakesoft.com> * po/cy.po: updated po file 2003-03-03 21:41 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: no.po, ro.po: updated po files 2003-03-03 13:48 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ru.po: updated po file 2003-03-03 12:01 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: Makefile, ar.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, es.po, et.po, eu.po, fi.po, fr.po, he.po, hu.po, id.po, it.po, ko.po, lv.po, mk.po, mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sp.po, sr.po, sv.po, ta.po, tr.po, uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated po files 2003-03-03 12:01 Warly <warly@mandrakesoft.com> * drakwizard.pl, drakwizard.spec: gc fixes UTF8 problem 2003-03-02 17:23 Warly <warly@mandrakesoft.com> * drakwizard.spec, web_wizard/web.wiz: fix conflict in drakwizard.pl 2003-03-02 17:09 Warly <warly@mandrakesoft.com> * drakwizard.pl, drakwizard.spec, ftp_wizard/ftp.wiz, ftp_wizard/scripts/ProFtpconf.pm, po/drakwizard.pot: removed unused dir asked in ftp wizard 2003-03-02 16:40 Warly <warly@mandrakesoft.com> * drakwizard.pl, po/drakwizard.pot, proxy_wizard/scripts/Squidconf.pm: fix summary not returning right combo boxes values 2003-03-02 15:12 Warly <warly@mandrakesoft.com> * po/drakwizard.pot, proxy_wizard/scripts/Squidconf.pm, samba_wizard/scripts/Smbconf.pm: use services.pm to restart smb in samba wizard 2003-03-02 14:21 Warly <warly@mandrakesoft.com> * drakwizard.spec, po/drakwizard.pot, postfix_wizard/postfix.wiz, postfix_wizard/scripts/Postfixconf.pm: fix postfix wizard (use correct hostname, restart postfix at the end, fix paths) 2003-03-02 13:46 Warly <warly@mandrakesoft.com> * ftp_wizard/ftp.wiz, news_wizard/scripts/Newsconf.pm, nfs_wizard/scripts/NFSConf.pm: start nfs server if not running at the end of nfs wizard 2003-03-02 05:13 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, et.po, fi.po, it.po: updated po files 2003-03-01 06:49 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: hu.po, zh_CN.po: updated po files 2003-02-28 23:36 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: updated 2003-02-28 23:03 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: sp.po, sr.po, sv.po: updated po files 2003-02-28 22:19 Fabian Mandelbaum <fabman@mandrakesoft.com> * po/es.po: updated Spanish translations 2003-02-28 21:10 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, el.po, es.po, et.po, eu.po, fi.po, fr.po, he.po, hu.po, id.po, it.po, ko.po, lv.po, mk.po, mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sp.po, sr.po, sv.po, ta.po, tr.po, uk.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2003-02-28 20:09 Warly <warly@mandrakesoft.com> * common/scripts/IFCFG.pm: some fixes for dhcp 2003-02-28 19:48 Warly <warly@mandrakesoft.com> * common/scripts/IFCFG.pm, dhcp_wizard/scripts/Dhcpconf.pm, dhcp_wizard/scripts/dhcpd.conf.default, ftp_wizard/ftp.wiz, ftp_wizard/scripts/ProFtpconf.pm, po/drakwizard.pot: remove unknow fields from dhcpd.conf and add ip of the gateway and dnsserver 2003-02-28 17:12 Warly <warly@mandrakesoft.com> * client_wizard/scripts/Clientconf.pm, po/drakwizard.pot: fix client_dhcp (remove call to date and replace it by gmtime) 2003-02-28 16:58 Warly <warly@mandrakesoft.com> * dns_wizard/scripts/Dnsconf.pm, po/drakwizard.pot: fix dns config 2003-02-28 16:26 Warly <warly@mandrakesoft.com> * drakwizard.pl, common/scripts/IFCFG.pm, dhcp_wizard/dhcp.wiz, dhcp_wizard/scripts/Dhcpconf.pm, po/drakwizard.pot: fix dhcp wizard 2003-02-28 13:02 Warly <warly@mandrakesoft.com> * web_wizard/: Makefile, apache2.wiz, scripts/Apache2conf.pm, scripts/Webconf.pm: try to add apache2 module and fix apache one 2003-02-28 11:38 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: drakwizard.pot, uz.po: Added Uzbek file 2003-02-28 11:06 Warly <warly@mandrakesoft.com> * Makefile, drakwizard.pl, po/drakwizard.pot, web_wizard/Makefile, web_wizard/apache2.wiz: - change Makefile not to change __WIZ_HOME__ in drakwizard.pl before installation - add apache2 wizard 2003-02-25 16:59 Pablo Saratxaga <pablo@mandrakesoft.com> * po/hu.po: updated po file 2003-02-21 14:51 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: cy.po, drakwizard.pot, sp.po, sr.po, sv.po: updated pot file 2003-02-20 19:03 Pablo Saratxaga <pablo@mandrakesoft.com> * po/tr.po: updated po file 2003-02-18 12:08 Pablo Saratxaga <pablo@mandrakesoft.com> * po/el.po: Added Greek file 2003-02-17 19:58 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ta.po: updated po file 2003-02-17 02:07 Pablo Saratxaga <pablo@mandrakesoft.com> * po/he.po: updated po file 2003-02-14 05:17 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ar.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/es.po, po/et.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/ko.po, po/lv.po, po/mk.po, po/mt.po, po/nl.po, po/no.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sp.po, po/sr.po, po/sv.po, po/ta.po, po/tr.po, po/uk.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, samba_wizard/samba.wiz: fixed typo 2003-02-12 18:35 Pablo Saratxaga <pablo@mandrakesoft.com> * po/zh_CN.po: updated po file 2003-02-11 12:53 Pablo Saratxaga <pablo@mandrakesoft.com> * po/he.po: Added Hebrew file 2003-02-09 14:59 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: drakwizard.pot, sv.po, tr.po: updated po files 2003-02-07 16:31 Pablo Saratxaga <pablo@mandrakesoft.com> * po/mk.po: updated po file 2003-02-07 12:53 Pablo Saratxaga <pablo@mandrakesoft.com> * po/nl.po: updated po file 2003-02-05 18:17 Pablo Saratxaga <pablo@mandrakesoft.com> * po/nl.po: updated po file 2003-02-02 20:58 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ro.po, sk.po, sp.po, sr.po: updated po files 2003-02-01 17:45 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: sp.po, sr.po, sv.po: Added Serbian files 2003-02-01 01:48 Pablo Saratxaga <pablo@mandrakesoft.com> * po/cy.po: updated po file 2003-01-31 22:34 Pablo Saratxaga <pablo@mandrakesoft.com> * po/da.po: updated po file 2003-01-31 15:48 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ar.po: updated po file 2003-01-30 16:18 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ar.po: updated po file 2003-01-30 02:56 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: da.po, nl.po: updated po files 2003-01-28 17:10 Pablo Saratxaga <pablo@mandrakesoft.com> * po/no.po: updated po file 2003-01-27 11:55 Pablo Saratxaga <pablo@mandrakesoft.com> * po/vi.po: updated po file 2003-01-25 11:30 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ru.po: updated po file 2003-01-24 23:15 Pablo Saratxaga <pablo@mandrakesoft.com> * po/es.po: updated po file 2003-01-22 19:23 Pablo Saratxaga <pablo@mandrakesoft.com> * po/pt.po: updated po file 2003-01-22 12:38 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: et.po, fi.po, uk.po: updated po files 2003-01-21 10:23 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: fuzzy removed 2003-01-21 08:16 Pablo Saratxaga <pablo@mandrakesoft.com> * dns_wizard/dns.wiz, ftp_wizard/ftp.wiz, nfs_wizard/nfs.wiz, po/ar.po, po/bg.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/es.po, po/et.po, po/eu.po, po/fi.po, po/fr.po, po/hu.po, po/id.po, po/it.po, po/ko.po, po/lv.po, po/mk.po, po/mt.po, po/nl.po, po/no.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sv.po, po/ta.po, po/tr.po, po/uk.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po, postfix_wizard/postfix.wiz, proxy_wizard/proxy.wiz, samba_wizard/samba.wiz, server_wizard/server.wiz, time_wizard/time.wiz, web_wizard/web.wiz: English proofreading by Stew Benedict 2003-01-20 12:50 Pablo Saratxaga <pablo@mandrakesoft.com> * po/tr.po: updated po file 2003-01-19 16:55 Pablo Saratxaga <pablo@mandrakesoft.com> * po/da.po: updated po file 2003-01-15 23:32 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: drakwizard.pot, es.po: updated po file 2003-01-12 14:17 Pablo Saratxaga <pablo@mandrakesoft.com> * po/sv.po: updated po file 2002-12-23 05:32 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, es.po, et.po, eu.po, fi.po, fr.po, hu.po, id.po, it.po, ko.po, lv.po, mk.po, mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sv.po, ta.po, tr.po, uk.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated po files 2002-12-20 18:40 Arnaud Desmons <adesmons@mandrakesoft.com> * ftp_wizard/scripts/ProFtpconf.pm: open before use :-) 2002-12-20 12:46 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile: last fix for Makefile 2002-12-20 11:07 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: buildrequire gettext-base 2002-12-20 11:04 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile: conflicts 2002-12-20 11:00 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile: update makefile for WIZ_HOME subs 2002-12-19 22:31 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ta.po: Converted Tamil file to UTF-8 2002-12-19 17:42 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: require drakxtools 2002-12-19 17:06 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile: makefile fix 2002-12-18 10:33 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile, drakwizard.pl, client_wizard/client.wiz, db_wizard/db.wiz, dhcp_wizard/dhcp.wiz, dns_wizard/dns.wiz, firewall_wizard/firewall.wiz, ftp_wizard/ftp.wiz, news_wizard/news.wiz, nfs_wizard/nfs.wiz, po/drakwizard.pot, postfix_wizard/postfix.wiz, proxy_wizard/proxy.wiz, samba_wizard/samba.wiz, server_wizard/server.wiz, time_wizard/time.wiz, web_wizard/web.wiz: some gtk2 bug fix 2002-12-16 12:58 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: updated 2002-12-15 17:10 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: drakwizard.pot, pl.po, pt_BR.po: updated po file 2002-12-09 18:24 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl, client_wizard/scripts/Clientconf.pm, common/scripts/IFCFG.pm, dhcp_wizard/scripts/Dhcpconf.pm, dns_wizard/scripts/Dnsconf.pm, dns_wizard/scripts/check_ext_dns.sh, ftp_wizard/ftp.wiz, ftp_wizard/scripts/ProFtpconf.pm, news_wizard/scripts/Newsconf.pm, nfs_wizard/scripts/NFSConf.pm, postfix_wizard/scripts/Postfixconf.pm, proxy_wizard/scripts/Squidconf.pm, samba_wizard/scripts/Smbconf.pm, time_wizard/scripts/NTPConf.pm, web_wizard/scripts/Webconf.pm: No more use of drakconnect_conf, use of IFCFG.pm instead of DrakconnectConf.pm 2002-12-06 18:17 Arnaud Desmons <adesmons@mandrakesoft.com> * common/scripts/: IFCFG.pm, test.pl: instead of deprecated drakconnect conf parsor 2002-12-04 18:10 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: format in combos changed 2002-12-04 15:35 Arnaud Desmons <adesmons@mandrakesoft.com> * ftp_wizard/scripts/ProFtpconf.pm, samba_wizard/scripts/Smbconf.pm: ProFtp bug fix EOF 2002-11-18 09:52 Arnaud Desmons <adesmons@mandrakesoft.com> * ftp_wizard/Makefile: removed sh 2002-11-18 09:51 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: cf cl 2002-11-16 21:17 Pablo Saratxaga <pablo@mandrakesoft.com> * po/mk.po: Added Macedonian file 2002-11-16 17:47 Pablo Saratxaga <pablo@mandrakesoft.com> * po/uk.po: Added Ukranian file 2002-11-14 12:58 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ro.po: updated po file 2002-11-13 13:59 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: cf cl 2002-11-13 13:46 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: replaced _() N() 2002-11-13 12:06 Pablo Saratxaga <pablo@mandrakesoft.com> * po/et.po: updated po file 2002-11-11 16:51 Pablo Saratxaga <pablo@mandrakesoft.com> * po/et.po: Added Estonian file 2002-11-11 16:49 Pablo Saratxaga <pablo@mandrakesoft.com> * po/Makefile: Added "N" as a tag for translatable strings 2002-11-07 14:01 Pablo Saratxaga <pablo@mandrakesoft.com> * po/fi.po: updated po file 2002-11-07 13:16 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: cf cl 2002-11-05 22:43 Pablo Saratxaga <pablo@mandrakesoft.com> * po/fi.po: updated po file 2002-11-05 12:38 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: cf cl 2002-11-05 12:37 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/Makefile, dns_wizard/Makefile, nfs_wizard/Makefile, samba_wizard/Makefile: cleaned Makefile 2002-11-04 11:19 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: drakwizard.pot, sk.po: updated po file 2002-11-04 10:00 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/client.wiz: fixed __WIZ_HOME__ 2002-11-04 09:56 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/client.wiz: fixed __WIZ_HOME__ 2002-11-01 11:52 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: pt_BR.po, ru.po: updated po files 2002-10-30 12:50 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: pt.po, vi.po: updated po files 2002-10-30 00:08 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: updated translation 2002-10-29 21:08 Pablo Saratxaga <pablo@mandrakesoft.com> * po/zh_CN.po: updated po file 2002-10-29 16:26 Thierry Vignaud <tvignaud@mandrakesoft.com> * drakwizard.spec: BuildRequires: gettext perl-XML-Parser (Stefan van der Eijk) 2002-10-28 22:29 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, es.po, eu.po, fi.po, fr.po, hu.po, id.po, it.po, ko.po, lv.po, mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sv.po, ta.po, tr.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2002-10-23 12:04 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/: samba.wiz, scripts/Smbconf.pm, scripts/smb.conf.default: acces restriction 2002-10-22 17:37 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: eu.po, pt.po, ru.po, sk.po: updated po files 2002-10-18 22:55 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: pt_BR.po, ro.po, ru.po, vi.po, zh_CN.po: Added Brazilian file 2002-10-18 15:36 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/: samba.wiz, scripts/Smbconf.pm: new improved samba wizard, network access selection under construction 2002-10-17 17:42 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: updated translation 2002-10-17 16:59 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: greyed partial bugfix 2002-10-16 22:37 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, es.po, eu.po, fi.po, fr.po, hu.po, id.po, it.po, ko.po, lv.po, mt.po, nl.po, no.po, pl.po, pt.po, ro.po, ru.po, sk.po, sv.po, ta.po, tr.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2002-10-15 18:10 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile, drakwizard.pl, dhcp_wizard/scripts/Dhcpconf.pm, ftp_wizard/ftp.wiz, ftp_wizard/scripts/ProFtpconf.pm, news_wizard/news.wiz, nfs_wizard/nfs.wiz, nfs_wizard/scripts/NFSConf.pm, postfix_wizard/postfix.wiz, proxy_wizard/proxy.wiz, proxy_wizard/scripts/Squidconf.pm, samba_wizard/samba.wiz, samba_wizard/scripts/Smbconf.pm, samba_wizard/scripts/smb.conf.default, time_wizard/time.wiz, time_wizard/scripts/NTPConf.pm, web_wizard/web.wiz, web_wizard/scripts/Webconf.pm: wiz update, nfs fixed 2002-10-15 16:09 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: updated translation 2002-10-15 10:52 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: scrollbar workaround 2002-10-14 10:40 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ca.po, eu.po, vi.po, zh_CN.po: Added Catalan file 2002-10-11 16:12 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, bg.po, bs.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, es.po, eu.po, fi.po, fr.po, hu.po, id.po, it.po, ko.po, lv.po, mt.po, nl.po, no.po, pl.po, pt.po, ro.po, ru.po, sk.po, sv.po, ta.po, tr.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file 2002-10-11 10:10 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: bool fillfunc enable/disable 2002-10-10 18:46 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/samba.wiz: printer improvement 2002-10-10 18:46 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: chooser fillfunc, widget "is" tag 2002-10-08 13:27 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: really hide \'field\' 2002-10-07 17:52 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: disable works 2002-10-04 12:13 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: exec summaryFunc 2002-10-04 12:05 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: shortcuts 2002-10-03 10:35 Arnaud Desmons <adesmons@mandrakesoft.com> * ftp_wizard/scripts/do_it_ftp.sh: obsolet 2002-10-03 10:05 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/samba.wiz: fixed typo 2002-10-02 17:06 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/scripts/Smbconf.pm: commit wiz_dir also if file sharing is disabled, better explanations 2002-10-02 17:03 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/scripts/: check_banner.sh, check_services.sh, check_workgroup.sh, do_it_samba.sh: translated into perl 2002-10-02 17:01 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/scripts/smbconfig.pl: obsolet 2002-10-02 16:55 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/scripts/smb.conf.default: nothing by default 2002-10-02 15:28 Arnaud Desmons <adesmons@mandrakesoft.com> * po/fr.po: updated po 2002-10-02 13:30 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/scripts/Smbconf.pm: test file sharing before changing path to avoid void values 2002-10-02 11:55 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/scripts/Smbconf.pm: s|patch|path| to change the path of the shared dir 2002-10-01 18:00 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: summary mode started 2002-09-30 17:46 Arnaud Desmons <adesmons@mandrakesoft.com> * web_wizard/: web.wiz, scripts/Webconf.pm: added user mod 2002-09-30 15:46 Arnaud Desmons <adesmons@mandrakesoft.com> * web_wizard/: web.wiz, scripts/Webconf.pm: added doc root field 2002-09-28 07:40 Pablo Saratxaga <pablo@mandrakesoft.com> * po/da.po: corrected encoding 2002-09-25 18:37 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ro.po: updated po file 2002-09-25 14:24 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/scripts/Smbconf.pm: added shared dir page 2002-09-24 13:08 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ro.po: updated po file 2002-09-23 20:27 Pablo Saratxaga <pablo@mandrakesoft.com> * po/fi.po: Added Finnish file 2002-09-23 17:41 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/scripts/dhcpd.conf.default: del server-identifier 2002-09-23 14:45 Pablo Saratxaga <pablo@mandrakesoft.com> * po/hu.po: Added Catalan file 2002-09-23 10:53 Pablo Saratxaga <pablo@mandrakesoft.com> * po/zh_TW.po: Added Chinese file 2002-09-22 20:34 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: cy.po, hu.po, id.po, lv.po: Added Indonesian file 2002-09-20 16:21 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/dhcp.wiz: finish if dhcp client 2002-09-20 16:04 Arnaud Desmons <adesmons@mandrakesoft.com> * news_wizard/news.wiz: require leafnode 2002-09-20 15:46 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: cf cl 2002-09-20 15:44 Arnaud Desmons <adesmons@mandrakesoft.com> * nfs_wizard/: nfs.wiz, scripts/NFSConf.pm: added chooser for access restriction 2002-09-20 13:06 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/scripts/Clientconf.pm: __WIZ_HOME__ fix 2002-09-20 11:44 Arnaud Desmons <adesmons@mandrakesoft.com> * dns_wizard/scripts/Dnsconf.pm: test /etc/named.conf 2002-09-20 11:09 Pablo Saratxaga <pablo@mandrakesoft.com> * po/da.po: updated po file 2002-09-19 12:09 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/: client.wiz, scripts/Clientconf.pm: added dhcp check 2002-09-19 11:57 Arnaud Desmons <adesmons@mandrakesoft.com> * time_wizard/: time.wiz, scripts/NTPConf.pm: fix test while 2002-09-19 10:35 Arnaud Desmons <adesmons@mandrakesoft.com> * web_wizard/web.wiz: s|Internet and Intranet|Internet| 2002-09-18 14:21 Arnaud Desmons <adesmons@mandrakesoft.com> * proxy_wizard/scripts/Squidconf.pm: missed \n between commented string and new string 2002-09-17 22:07 Pablo Saratxaga <pablo@mandrakesoft.com> * po/no.po: updated po file 2002-09-17 14:42 Pablo Saratxaga <pablo@mandrakesoft.com> * po/tr.po: updated po file 2002-09-17 11:40 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: lv.po, sk.po: Added Latvian file 2002-09-16 17:39 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ru.po: updated po file 2002-09-16 16:46 Pablo Saratxaga <pablo@mandrakesoft.com> * po/pt.po: updated po file 2002-09-16 12:16 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: cs.po, ru.po, sv.po: Added Russian file 2002-09-14 09:47 Pablo Saratxaga <pablo@mandrakesoft.com> * po/zh_CN.po: updated po file 2002-09-13 22:52 Pablo Saratxaga <pablo@mandrakesoft.com> * po/da.po: updated po file 2002-09-13 21:46 Pablo Saratxaga <pablo@mandrakesoft.com> * po/vi.po: updated po file 2002-09-13 16:04 Pablo Saratxaga <pablo@mandrakesoft.com> * po/zh_CN.po: updated po file 2002-09-13 15:55 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/client.wiz, dns_wizard/dns.wiz: rpm bind 2002-09-13 15:54 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/samba.wiz: s|samba|samba-server| 2002-09-13 15:53 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: bind install fix, installation failed warn 2002-09-13 13:57 Pablo Saratxaga <pablo@mandrakesoft.com> * po/sk.po: updated po file 2002-09-13 12:19 Pablo Saratxaga <pablo@mandrakesoft.com> * po/hu.po: updated po file 2002-09-13 10:18 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: updated fuzzy 2002-09-12 23:27 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, bg.po, bs.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, es.po, eu.po, fr.po, hu.po, it.po, ko.po, mt.po, nl.po, no.po, pl.po, pt.po, ro.po, sk.po, sv.po, ta.po, tr.po, vi.po, wa.po, zh_CN.po: updated po files 2002-09-12 20:42 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: utf8 fix 2002-09-12 18:59 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: use of translate 2002-09-12 16:09 Arnaud Desmons <adesmons@mandrakesoft.com> * time_wizard/time.wiz: suppressed "... or specify one" text because of none combo list 2002-09-12 13:41 Pablo Saratxaga <pablo@mandrakesoft.com> * po/sk.po: updated po file 2002-09-12 12:23 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: traduction now ok (I hope) 2002-09-12 11:07 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/: samba.wiz, scripts/Smbconf.pm: added some check func and globalize old conf 2002-09-12 11:03 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: install package before loading modules to avoid file error 2002-09-12 00:40 Pablo Saratxaga <pablo@mandrakesoft.com> * po/mt.po: updated po file 2002-09-11 18:41 Pixel <pixel@mandrakesoft.com> * drakwizard.pl: fix i18n handling (needs new drakxtools) 2002-09-11 16:45 Pablo Saratxaga <pablo@mandrakesoft.com> * drakwizard.pl, po/Makefile, po/ar.po, po/bg.po, po/bs.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/es.po, po/eu.po, po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/nl.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/ta.po, po/tr.po, po/vi.po, po/wa.po, po/zh_CN.po: Make buttons (Cancel, Next etc) translatable 2002-09-11 15:34 Frederic Crozat <fcrozat@mandrakesoft.com> * data/: Client.desktop.in, DNS.desktop.in, Time.desktop.in, ftp.desktop.in, news.desktop.in, postfix.desktop.in, samba.desktop.in: Fix icons 2002-09-11 15:22 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/scripts/Smbconf.pm: titi's error msg 2002-09-11 15:19 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/scripts/Smbconf.pm: doesn't load conf outside of a function to prevent no samba file 2002-09-11 15:18 Thierry Vignaud <tvignaud@mandrakesoft.com> * nfs_wizard/nfs.wiz, po/ar.po, po/bg.po, po/bs.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/es.po, po/eu.po, po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/nl.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/ta.po, po/tr.po, po/vi.po, po/wa.po, po/zh_CN.po: s/succesfully/successfully/g 2002-09-10 16:28 Arnaud Desmons <adesmons@mandrakesoft.com> * po/fr.po: updated 2002-09-10 13:29 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: some fixes 2002-09-09 18:40 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: test draknet_conf 2002-09-09 18:39 Arnaud Desmons <adesmons@mandrakesoft.com> * common/scripts/DrakconnectConf.pm: added a return value 2002-09-09 18:24 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ko.po, vi.po: updated po files 2002-09-09 16:38 Pablo Saratxaga <pablo@mandrakesoft.com> * po/bs.po: Added Bosnian file 2002-09-09 16:08 Pablo Saratxaga <pablo@mandrakesoft.com> * po/vi.po: updated po file 2002-09-06 18:01 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/samba.wiz: s|samba-server|samba| 2002-09-06 17:23 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/scripts/dhcpd.conf.default: not authoritative 2002-09-06 16:58 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/scripts/Dhcpconf.pm: added check 2002-09-06 15:41 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: cf cl 2002-09-06 15:05 Arnaud Desmons <adesmons@mandrakesoft.com> * web_wizard/web.wiz: require apache instead of apache-conf 2002-09-06 14:28 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/: dhcp.wiz, scripts/Dhcpconf.pm: test if is already a dhcp client 2002-09-06 14:06 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/scripts/Dhcpconf.pm: test dhcpd.conf before cp 2002-09-06 13:45 Arnaud Desmons <adesmons@mandrakesoft.com> * time_wizard/scripts/NTPConf.pm: test before copying step-tickers 2002-09-06 13:24 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/: dhcp.wiz, scripts/Dhcpconf.pm: temporary no check 2002-09-06 13:11 Arnaud Desmons <adesmons@mandrakesoft.com> * time_wizard/scripts/NTPConf.pm: bug in cp of zoneinfo 2002-09-06 13:03 Pablo Saratxaga <pablo@mandrakesoft.com> * po/pl.po: updated po file 2002-09-06 10:31 Pablo Saratxaga <pablo@mandrakesoft.com> * po/da.po: updated po file 2002-09-06 09:09 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: no.po, pt.po: updated po files 2002-09-06 01:38 Pablo Saratxaga <pablo@mandrakesoft.com> * po/tr.po: updated po file 2002-09-06 00:49 Pablo Saratxaga <pablo@mandrakesoft.com> * po/da.po: updated po file 2002-09-05 21:30 Pablo Saratxaga <pablo@mandrakesoft.com> * po/sk.po: updated po file 2002-09-05 19:50 Pablo Saratxaga <pablo@mandrakesoft.com> * po/hu.po: updated po file 2002-09-05 19:00 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: cs.po, ta.po: updated po files 2002-09-05 18:27 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: s|translate|_| 2002-09-05 18:11 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: Makefile, ar.po, bg.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, es.po, eu.po, fr.po, hu.po, it.po, ko.po, mt.po, nl.po, no.po, pl.po, pt.po, ro.po, sk.po, sv.po, ta.po, tr.po, vi.po, wa.po, zh_CN.po: updated po files 2002-09-05 17:40 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile: removed global_wizard (hard) 2002-09-05 17:38 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile: removed global_wizard 2002-09-05 17:36 Arnaud Desmons <adesmons@mandrakesoft.com> * po/fr.po: new update 2002-09-05 17:05 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: changed requires 2002-09-05 15:56 Pablo Saratxaga <pablo@mandrakesoft.com> * po/hu.po: updated po files 2002-09-05 14:29 Arnaud Desmons <adesmons@mandrakesoft.com> * time_wizard/time.wiz: removed title in info 2002-09-05 14:27 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: added rpm missing translation 2002-09-05 14:22 Arnaud Desmons <adesmons@mandrakesoft.com> * po/Makefile: added rpm missing translation 2002-09-05 14:11 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, bg.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, es.po, eu.po, fr.po, hu.po, it.po, ko.po, mt.po, nl.po, no.po, pl.po, pt.po, ro.po, sk.po, sv.po, ta.po, tr.po, vi.po, wa.po, zh_CN.po: updated po files 2002-09-05 13:57 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: cf cl 2002-09-05 13:39 Arnaud Desmons <adesmons@mandrakesoft.com> * po/Makefile: added enabled disabled 2002-09-05 13:15 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/client.wiz, dhcp_wizard/dhcp.wiz, dns_wizard/dns.wiz, firewall_wizard/firewall.wiz, ftp_wizard/ftp.wiz, news_wizard/news.wiz, postfix_wizard/postfix.wiz, proxy_wizard/proxy.wiz, samba_wizard/samba.wiz, server_wizard/server.wiz, web_wizard/web.wiz: s|Configure|Next| 2002-09-05 12:15 Arnaud Desmons <adesmons@mandrakesoft.com> * time_wizard/Makefile: added NTPConf.pm 2002-09-05 10:04 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: cf cl 2002-09-05 09:52 Arnaud Desmons <adesmons@mandrakesoft.com> * postfix_wizard/scripts/Postfixconf.pm: added a true return value 2002-09-05 09:47 Arnaud Desmons <adesmons@mandrakesoft.com> * common/Makefile: removed gif install 2002-09-05 09:38 Arnaud Desmons <adesmons@mandrakesoft.com> * ftp_wizard/scripts/Ftpconf.pm: removed - we now use ProFtpd 2002-09-05 09:37 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/scripts/do_it_client.sh, client_wizard/scripts/test_client.sh, common/scripts/check.sh, common/scripts/check_root.sh, common/scripts/functions.sh, dhcp_wizard/scripts/check_range.sh, dhcp_wizard/scripts/compute_range1.sh, dhcp_wizard/scripts/compute_range2.sh, dhcp_wizard/scripts/dhcpd.conf.default, dhcp_wizard/scripts/dhcpd.patch, dhcp_wizard/scripts/do_it_dhcp.sh, dns_wizard/scripts/127.0.0.rev.default, dns_wizard/scripts/check_ext_dns.sh, dns_wizard/scripts/do_it_dns.sh, dns_wizard/scripts/domain.db.default, dns_wizard/scripts/host.conf.default, dns_wizard/scripts/ipnet.rev.default, dns_wizard/scripts/named.conf.default, dns_wizard/scripts/root.hints.default, firewall_wizard/scripts/bastille-firewall.cfg.default, firewall_wizard/scripts/check_ext_device.sh, firewall_wizard/scripts/compute_ext_device.sh, firewall_wizard/scripts/compute_level_name.sh, firewall_wizard/scripts/do_it_firew.sh, firewall_wizard/scripts/firew.sh, firewall_wizard/scripts/liste_ext_device.sh, firewall_wizard/scripts/store_fwall.sh, ftp_wizard/scripts/do_it_ftp.sh, ftp_wizard/scripts/proftpd.conf.default, news_wizard/scripts/check_news_server.sh, news_wizard/scripts/check_valid_hours.sh, news_wizard/scripts/config.default, news_wizard/scripts/do_it_news.sh, news_wizard/scripts/news.cron, nfs_wizard/scripts/do_it_nfs.sh, postfix_wizard/scripts/check_masquerade.sh, postfix_wizard/scripts/check_relay.sh, postfix_wizard/scripts/compute_mail_relay.sh, postfix_wizard/scripts/compute_masquerade.sh, postfix_wizard/scripts/postfix_do_it.sh, postfix_wizard/scripts/testlabel.pl, proxy_wizard/scripts/dfh.sh, proxy_wizard/scripts/do_it_squid.sh, proxy_wizard/scripts/echolevel.sh, proxy_wizard/scripts/printservices.sh, proxy_wizard/scripts/showlevel.sh, proxy_wizard/scripts/squid.conf.default, proxy_wizard/scripts/testport.sh, samba_wizard/scripts/check_banner.sh, samba_wizard/scripts/check_services.sh, samba_wizard/scripts/check_workgroup.sh, samba_wizard/scripts/do_it_samba.sh, samba_wizard/scripts/smbconfig.pl, server_wizard/scripts/check_config.sh, server_wizard/scripts/check_domain.sh, server_wizard/scripts/check_network.sh, server_wizard/scripts/check_server_ip.sh, server_wizard/scripts/compute_domain.sh, server_wizard/scripts/compute_ipnet.sh, server_wizard/scripts/compute_server_ip.sh, server_wizard/scripts/do_it_last.sh, server_wizard/scripts/do_it_net.sh, server_wizard/scripts/liste_device.sh, server_wizard/scripts/set_ip.sh, server_wizard/scripts/test.pl, server_wizard/scripts/test.sh, web_wizard/scripts/commonhttpd.conf, web_wizard/scripts/do_it_web.sh, web_wizard/scripts/mytest.pl, web_wizard/scripts/sedscript, web_wizard/scripts/test.sed: untouched 2002-09-05 00:41 Pablo Saratxaga <pablo@mandrakesoft.com> * po/bg.po: updated po file 2002-09-04 20:52 Pablo Saratxaga <pablo@mandrakesoft.com> * po/mt.po: updated po file 2002-09-04 18:42 David Baudens <baudens@mandrakesoft.com> * client_wizard/images/DNS.png, db_wizard/images/SQL.png, dhcp_wizard/images/DHCP.png, dns_wizard/images/DNS.png, firewall_wizard/images/firewall.png, ftp_wizard/images/FTP.png, news_wizard/images/news.png, nfs_wizard/images/NFS.png, postfix_wizard/images/courrier.png, proxy_wizard/images/proxy.png, samba_wizard/images/samba.png, server_wizard/images/intranet.png, time_wizard/images/Time.png, web_wizard/images/apache.png: Update banners 2002-09-04 17:30 Pablo Saratxaga <pablo@mandrakesoft.com> * client_wizard/client.wiz, po/pt.po: updated po file; changed a strign to avoid losing translations 2002-09-03 17:12 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/client.wiz, client_wizard/scripts/Clientconf.pm, news_wizard/news.wiz, news_wizard/scripts/Newsconf.pm: fill func 2002-09-03 17:11 Arnaud Desmons <adesmons@mandrakesoft.com> * common/scripts/Vareqval.pm: now work with a white space before equal 2002-09-03 15:28 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile, drakwizard.pl, dhcp_wizard/dhcp.wiz, dhcp_wizard/scripts/Dhcpconf.pm, firewall_wizard/firewall.wiz, proxy_wizard/proxy.wiz, proxy_wizard/scripts/Squidconf.pm, server_wizard/Makefile: some fillfunc 2002-09-03 15:27 Arnaud Desmons <adesmons@mandrakesoft.com> * dns_wizard/: dns.wiz, scripts/Dnsconf.pm: added some fillfunc's 2002-09-03 07:21 Pablo Saratxaga <pablo@mandrakesoft.com> * nfs_wizard/nfs.wiz, po/fr.po, po/zh_CN.po: updated Chinese file; fixed errors 2002-09-03 02:16 Pablo Saratxaga <pablo@mandrakesoft.com> * po/bg.po: Added Bulgarian file 2002-09-03 00:31 Pablo Saratxaga <pablo@mandrakesoft.com> * po/nl.po: Added Dutch file 2002-09-02 21:31 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: da.po, es.po: Added Spanish file 2002-09-02 21:11 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: cs.po, pl.po: updated po files 2002-09-02 17:36 Arnaud Desmons <adesmons@mandrakesoft.com> * news_wizard/scripts/Newsconf.pm: some shortcuts and remove of mdk_serv update 2002-09-02 16:11 Arnaud Desmons <adesmons@mandrakesoft.com> * time_wizard/scripts/: handle_local_internet.sh, handle_no_network.sh, install_rpm.sh, save_config.sh, test_timeservers.sh, test_tools.sh: deprecated 2002-09-02 16:07 Arnaud Desmons <adesmons@mandrakesoft.com> * time_wizard/: time.wiz, scripts/NTPConf.pm: perl traduction 2002-09-02 16:04 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/: scripts/Clientconf.pm, client.wiz: use of drakconnect db 2002-09-02 12:34 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: drakwizard.pot, tr.po: updated po files 2002-09-01 01:42 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: drakwizard.pot, hu.po: updated po file 2002-08-31 23:12 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: tr.po, wa.po: Added Turkish file 2002-08-31 17:31 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: sv.po, ta.po, vi.po: updated po files 2002-08-31 13:05 Pablo Saratxaga <pablo@mandrakesoft.com> * po/vi.po: updated po file 2002-08-30 23:59 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, eu.po, fr.po, hu.po, it.po, ko.po, mt.po, no.po, pl.po, pt.po, ro.po, sk.po, sv.po, ta.po, vi.po, wa.po, zh_CN.po: Updated pot file, added Walloon file 2002-08-30 17:01 Arnaud Desmons <adesmons@mandrakesoft.com> * nfs_wizard/Makefile: added NFSConf.pm install 2002-08-30 16:54 Arnaud Desmons <adesmons@mandrakesoft.com> * nfs_wizard/Makefile: changed prefix 2002-08-30 16:49 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: cf cl 2002-08-30 16:40 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: added nfs wizard 2002-08-30 16:36 Arnaud Desmons <adesmons@mandrakesoft.com> * nfs_wizard/: Makefile, nfs.wiz, images/NFS.png, scripts/NFSConf.pm: first release 2002-08-30 11:34 Arnaud Desmons <adesmons@mandrakesoft.com> * postfix_wizard/scripts/Postfixconf.pm: canonical bug bis 2002-08-30 10:13 Arnaud Desmons <adesmons@mandrakesoft.com> * postfix_wizard/scripts/Postfixconf.pm: canonical bug 2002-08-30 09:54 Pablo Saratxaga <pablo@mandrakesoft.com> * dns_wizard/dns.wiz, po/ar.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/eu.po, po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/ta.po, po/vi.po, po/zh_CN.po: Added Welsh file 2002-08-29 18:26 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: cf cl 2002-08-29 18:24 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl, ftp_wizard/scripts/Ftpconf.pm, ftp_wizard/scripts/ProFtpconf.pm, proxy_wizard/scripts/Squidconf.pm, samba_wizard/samba.wiz, samba_wizard/scripts/smb.conf.default: dhcp fix and script improvements and little fixes 2002-08-29 18:12 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/scripts/Dhcpconf.pm: append INTERFACE in /etc/sysconfig/dhcpd only if not already in 2002-08-29 17:41 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ta.po: updated po file 2002-08-29 16:20 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ta.po: Added Tamil file 2002-08-29 14:35 Arnaud Desmons <adesmons@mandrakesoft.com> * time_wizard/scripts/: handle_no_network.sh, test_timeservers.sh: changed some __WIZ_HOME__ prefix 2002-08-29 14:29 Arnaud Desmons <adesmons@mandrakesoft.com> * time_wizard/scripts/: handle_local_internet.sh, handle_no_network.sh, install_rpm.sh, save_config.sh, test_tools.sh: first revision 2002-08-29 14:10 Arnaud Desmons <adesmons@mandrakesoft.com> * time_wizard/scripts/: compute_liste.sh, test_timeservers.sh: changed some __WIZ_HOME__ prefix 2002-08-29 14:06 Arnaud Desmons <adesmons@mandrakesoft.com> * time_wizard/time.wiz: fixed variableName and shellVariable conflicts and removed the clock step 2002-08-29 14:05 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: fixed chooser : keep description value and environnement value in separate places 2002-08-29 02:14 Pablo Saratxaga <pablo@mandrakesoft.com> * po/eu.po: Added Basque file 2002-08-28 11:51 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: ar.po, cs.po, da.po, de.po, fr.po, it.po, ko.po, mt.po, no.po, pl.po, pt.po, ro.po, sk.po, vi.po, zh_CN.po: updated po files 2002-08-28 11:44 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: hu.po, sv.po: updated po files 2002-08-27 18:30 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot, po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po, po/zh_CN.po, time_wizard/time.wiz: s/ask to that server/ask from that server/ 2002-08-27 18:28 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot, po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po, po/zh_CN.po, time_wizard/time.wiz: s/can now act has a time server/can now act as a time server/g 2002-08-27 18:27 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot, po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po, po/zh_CN.po, proxy_wizard/proxy.wiz: s/the level that suit to your needs/the level that suits your needs/g" 2002-08-27 18:26 Thierry Vignaud <tvignaud@mandrakesoft.com> * news_wizard/news.wiz, po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot, po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po, po/zh_CN.po: s/internet new server/internet news server/ 2002-08-27 18:25 Thierry Vignaud <tvignaud@mandrakesoft.com> * ftp_wizard/ftp.wiz, po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot, po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po, po/zh_CN.po: s/a FTP Server/an FTP Server/g 2002-08-27 18:23 Thierry Vignaud <tvignaud@mandrakesoft.com> * ftp_wizard/ftp.wiz, po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot, po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po, po/zh_CN.po, web_wizard/web.wiz: s/may doesn't work/may not work/g 2002-08-27 18:21 Thierry Vignaud <tvignaud@mandrakesoft.com> * firewall_wizard/firewall.wiz, po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot, po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po, po/zh_CN.po: s/The firewall need to know/The firewall needs to know/ 2002-08-27 18:20 Thierry Vignaud <tvignaud@mandrakesoft.com> * dns_wizard/dns.wiz: s!!correspondence!g' 2002-08-27 18:19 Thierry Vignaud <tvignaud@mandrakesoft.com> * client_wizard/client.wiz, db_wizard/db.wiz, po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot, po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po, po/zh_CN.po, postfix_wizard/postfix.wiz, proxy_wizard/proxy.wiz, samba_wizard/samba.wiz, time_wizard/time.wiz: s!before launch this wizard!before launching this wizard!g 2002-08-27 18:18 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot, po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po, po/zh_CN.po, proxy_wizard/proxy.wiz: s/acces/access/ 2002-08-27 18:17 Thierry Vignaud <tvignaud@mandrakesoft.com> * po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot, po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po, po/zh_CN.po, server_wizard/server.wiz: s/identifing/identifying/ 2002-08-27 18:13 Thierry Vignaud <tvignaud@mandrakesoft.com> * news_wizard/news.wiz, po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot, po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po, po/zh_CN.po, samba_wizard/samba.wiz, time_wizard/time.wiz: s/intervall/interval s/theirs/their/ s/existant/existent 2002-08-27 17:08 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: __ for enabled and disbable 2002-08-27 16:08 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/dhcp.wiz, dns_wizard/dns.wiz, firewall_wizard/firewall.wiz, news_wizard/news.wiz, postfix_wizard/postfix.wiz, proxy_wizard/proxy.wiz, samba_wizard/samba.wiz, web_wizard/web.wiz: removed check.sh need_net, need_root, DEBUG 2002-08-27 14:45 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/client.wiz, db_wizard/db.wiz, dhcp_wizard/dhcp.wiz, dns_wizard/dns.wiz, firewall_wizard/firewall.wiz, ftp_wizard/ftp.wiz, news_wizard/news.wiz, proxy_wizard/proxy.wiz, samba_wizard/samba.wiz, time_wizard/time.wiz: removed old net test 2002-08-27 14:42 Arnaud Desmons <adesmons@mandrakesoft.com> * postfix_wizard/postfix.wiz: __WIZ_HOME__ 2002-08-27 14:25 Arnaud Desmons <adesmons@mandrakesoft.com> * postfix_wizard/scripts/Postfixconf.pm: oscar du meilleur bug 2002-08-27 12:43 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: hu.po, ro.po: updated po files 2002-08-26 15:36 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile: s/perl -pe -i/perl -i -pe/ 2002-08-26 15:16 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/scripts/Smbconf.pm: OO and get_workgroup, get_banner fillfunc 2002-08-26 14:06 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/images/DNS.png, db_wizard/images/SQL.png, dhcp_wizard/images/DHCP.png, dns_wizard/images/DNS.png, firewall_wizard/images/firewall.png, ftp_wizard/images/FTP.png, news_wizard/images/news.png, postfix_wizard/images/courrier.png, proxy_wizard/images/proxy.png, samba_wizard/images/samba.png, server_wizard/images/intranet.png, time_wizard/images/Time.png, web_wizard/images/apache.png: from 8.2 jpg 2002-08-26 14:00 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: added debug mode and fixed default printing 2002-08-26 13:00 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/scripts/Dhcpconf.pm: s/system touch/MDK::Common::touch/ 2002-08-26 12:57 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: missed sourcing libScript 2002-08-26 11:44 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/scripts/Dhcpconf.pm: explanations and pixel shortcuts 2002-08-26 10:49 Arnaud Desmons <adesmons@mandrakesoft.com> * common/scripts/DrakconnectConf.pm: added narcissist header 2002-08-26 10:47 Arnaud Desmons <adesmons@mandrakesoft.com> * dns_wizard/scripts/Dnsconf.pm: added explanations 2002-08-26 10:45 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: hu.po, zh_CN.po: updated po files 2002-08-25 11:34 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: da.po, hu.po, ko.po: Added Korean file 2002-08-24 20:57 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: updated translation 2002-08-24 18:04 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: sv.po, vi.po: updated po files 2002-08-23 21:19 Pablo Saratxaga <pablo@mandrakesoft.com> * client_wizard/client.wiz, news_wizard/news.wiz, po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot, po/fr.po, po/hu.po, po/it.po, po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po, po/zh_CN.po, samba_wizard/samba.wiz, server_wizard/server.wiz, time_wizard/time.wiz: updated pot file 2002-08-23 17:37 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: cf cl 2002-08-23 17:33 Arnaud Desmons <adesmons@mandrakesoft.com> * dns_wizard/dns.wiz: fixed no Grid tag 2002-08-23 17:27 Arnaud Desmons <adesmons@mandrakesoft.com> * firewall_wizard/firewall.wiz: fixed variableName missing 2002-08-23 17:22 Arnaud Desmons <adesmons@mandrakesoft.com> * firewall_wizard/firewall.wiz: added .../scripts/... to scripts paths 2002-08-23 16:59 Arnaud Desmons <adesmons@mandrakesoft.com> * time_wizard/Makefile: missed .wiz install :-\ 2002-08-23 16:47 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/Makefile: cleaned blank lines 2002-08-23 16:46 Arnaud Desmons <adesmons@mandrakesoft.com> * time_wizard/Makefile: missed .wiz install :-\ 2002-08-23 16:29 Arnaud Desmons <adesmons@mandrakesoft.com> * time_wizard/Makefile: install png instead of jpg and removed wpo 2002-08-23 15:24 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/: samba.wiz, scripts/Smbconf.pm: added homes 2002-08-23 12:10 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: updated translation 2002-08-23 11:06 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: wiz chooser sort fix 2002-08-23 10:46 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/scripts/smb.conf.default: public was in double 2002-08-23 09:58 Arnaud Desmons <adesmons@mandrakesoft.com> * postfix_wizard/postfix.wiz: added usage of fillfunc 2002-08-23 09:52 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: no.po, vi.po: Added Norwegian file 2002-08-23 02:50 Pablo Saratxaga <pablo@mandrakesoft.com> * wiz2fake_c.pl, po/Makefile, po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot, po/fake_c.pl, po/fr.po, po/hu.po, po/it.po, po/mt.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po, po/zh_CN.po, time_wizard/time.wiz: copied fake_c.pl from other modules, and converted wiz2pot into wiz2fake_c; so now the pot file can be easily rebuild to match the source files. 2002-08-22 18:36 Frederic Crozat <fcrozat@mandrakesoft.com> * Makefile, client_wizard/client.wiz, client_wizard/scripts/Clientconf.pm, common/scripts/DrakconnectConf.pm, db_wizard/db.wiz, dhcp_wizard/dhcp.wiz, dhcp_wizard/scripts/Dhcpconf.pm, dns_wizard/dns.wiz, dns_wizard/scripts/Dnsconf.pm, firewall_wizard/firewall.wiz, firewall_wizard/scripts/FWconf.pm, ftp_wizard/ftp.wiz, ftp_wizard/scripts/Ftpconf.pm, ftp_wizard/scripts/ProFtpconf.pm, news_wizard/news.wiz, news_wizard/scripts/Newsconf.pm, postfix_wizard/postfix.wiz, postfix_wizard/scripts/Postfixconf.pm, proxy_wizard/proxy.wiz, proxy_wizard/scripts/Squidconf.pm, samba_wizard/samba.wiz, samba_wizard/scripts/Smbconf.pm, server_wizard/server.wiz, server_wizard/scripts/Serverconf.pm, time_wizard/time.wiz, web_wizard/web.wiz, web_wizard/scripts/Webconf.pm: Fix search and replace for __WIZ_HOME__ and fix wrongly committed files 2002-08-22 18:19 Frederic Crozat <fcrozat@mandrakesoft.com> * po/.cvsignore: Clean cvs output 2002-08-22 18:18 Frederic Crozat <fcrozat@mandrakesoft.com> * Makefile, drakwizard.spec, client_wizard/client.wiz, client_wizard/scripts/Clientconf.pm, common/scripts/DrakconnectConf.pm, data/.cvsignore, data/Client.desktop.in, data/DHCP.desktop.in, data/DNS.desktop.in, data/Makefile, data/ServerConfig.directory.in, data/Time.desktop.in, data/Web.desktop.in, data/ftp.desktop.in, data/intltool-merge, data/news.desktop.in, data/postfix.desktop.in, data/proxy.desktop.in, data/samba.desktop.in, data/server-settings.vfolder-info, data/server.desktop.in, db_wizard/db.wiz, dhcp_wizard/dhcp.wiz, dhcp_wizard/scripts/Dhcpconf.pm, dns_wizard/dns.wiz, dns_wizard/scripts/Dnsconf.pm, firewall_wizard/firewall.wiz, firewall_wizard/scripts/FWconf.pm, ftp_wizard/ftp.wiz, ftp_wizard/scripts/Ftpconf.pm, ftp_wizard/scripts/ProFtpconf.pm, news_wizard/news.wiz, news_wizard/scripts/Newsconf.pm, po/.cvsignore, po/Makefile, postfix_wizard/postfix.wiz, postfix_wizard/scripts/Postfixconf.pm, proxy_wizard/proxy.wiz, proxy_wizard/scripts/Squidconf.pm, samba_wizard/samba.wiz, samba_wizard/scripts/Smbconf.pm, server_wizard/server.wiz, server_wizard/scripts/Serverconf.pm, time_wizard/time.wiz, web_wizard/web.wiz, web_wizard/scripts/Webconf.pm: Add support for server-settings: for GNOME 2 2002-08-22 17:50 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: cf cl 2002-08-22 16:30 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: chooser alpha sorted 2002-08-22 16:25 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/client.wiz, db_wizard/db.wiz, dhcp_wizard/dhcp.wiz, dns_wizard/dns.wiz, firewall_wizard/firewall.wiz, ftp_wizard/ftp.wiz, news_wizard/news.wiz, postfix_wizard/postfix.wiz, proxy_wizard/proxy.wiz, samba_wizard/samba.wiz, server_wizard/server.wiz, time_wizard/time.wiz, web_wizard/web.wiz: changed image path 2002-08-22 15:13 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: $::Wizard_pix_up 2002-08-22 15:09 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/Makefile, dhcp_wizard/Makefile, dns_wizard/Makefile, firewall_wizard/Makefile, ftp_wizard/Makefile, news_wizard/Makefile, postfix_wizard/Makefile, proxy_wizard/Makefile, samba_wizard/Makefile, server_wizard/Makefile, web_wizard/Makefile: s/jpg/png/ 2002-08-22 15:03 Pablo Saratxaga <pablo@mandrakesoft.com> * po/ar.po: updated po file 2002-08-22 15:01 Arnaud Desmons <adesmons@mandrakesoft.com> * Zwiffer.pl: wiz cleaner 2002-08-22 14:56 Arnaud Desmons <adesmons@mandrakesoft.com> * time_wizard/time.wiz: default version 2002-08-22 11:18 Pablo Saratxaga <pablo@mandrakesoft.com> * po/fr.po: updated po file 2002-08-22 01:00 Pablo Saratxaga <pablo@mandrakesoft.com> * po/hu.po: updated po file 2002-08-21 21:31 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: Removed unused translations 2002-08-21 17:44 Arnaud Desmons <adesmons@mandrakesoft.com> * postfix_wizard/scripts/Postfixconf.pm, drakwizard.pl: fillfunc added 2002-08-21 17:42 Pablo Saratxaga <pablo@mandrakesoft.com> * po/cs.po: updated po file 2002-08-21 15:35 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: pt.po, vi.po: updated po files 2002-08-21 12:23 Arnaud Desmons <adesmons@mandrakesoft.com> * postfix_wizard/scripts/Postfixconf.pm: use of drakconnect db and bug fixes 2002-08-21 11:42 Pablo Saratxaga <pablo@mandrakesoft.com> * firewall_wizard/firewall.wiz: update 2002-08-21 10:58 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: no previous on first page also when launched via the wizard chooser 2002-08-21 10:56 Arnaud Desmons <adesmons@mandrakesoft.com> * postfix_wizard/postfix.wiz: error in previous commit (no relative paths) 2002-08-21 10:06 Arnaud Desmons <adesmons@mandrakesoft.com> * postfix_wizard/postfix.wiz: added "scripts/" in some paths 2002-08-21 09:56 Pablo Saratxaga <pablo@mandrakesoft.com> * po/sk.po: updated po file 2002-08-21 09:55 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: cs.po, da.po, de.po, drakwizard.pot, fr.po, hu.po, it.po, mt.po, pl.po, pt.po, ro.po, sk.po, sv.po, vi.po, zh_CN.po: Fixed a small typo 2002-08-21 09:42 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: mt.po, pt.po, ro.po: Added Maltese file 2002-08-21 00:59 Pablo Saratxaga <pablo@mandrakesoft.com> * po/hu.po: Added Hungarian file 2002-08-20 18:07 Arnaud Desmons <adesmons@mandrakesoft.com> * web_wizard/scripts/Webconf.pm: replaced localhost by 127.0.0.1 2002-08-20 18:04 Arnaud Desmons <adesmons@mandrakesoft.com> * ftp_wizard/scripts/ProFtpconf.pm: changed localhost to 127.0.0.1 2002-08-20 17:57 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: removed no sense no_cancel 2002-08-20 17:52 Arnaud Desmons <adesmons@mandrakesoft.com> * postfix_wizard/Makefile: added install of Postfixconf.pm 2002-08-20 17:48 Arnaud Desmons <adesmons@mandrakesoft.com> * ftp_wizard/ftp.wiz: canBack at false for first page 2002-08-20 17:37 Arnaud Desmons <adesmons@mandrakesoft.com> * ftp_wizard/scripts/ProFtpconf.pm: added localhost for internal use 2002-08-20 17:23 Arnaud Desmons <adesmons@mandrakesoft.com> * proxy_wizard/proxy.wiz: added perlModule 2002-08-20 17:20 Arnaud Desmons <adesmons@mandrakesoft.com> * proxy_wizard/scripts/Squidconf.pm: now fonctionnal 2002-08-20 16:37 Pablo Saratxaga <pablo@mandrakesoft.com> * po/cs.po, po/da.po, po/de.po, po/drakwizard.pot, po/fr.po, po/it.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po, po/zh_CN.po, proxy_wizard/proxy.wiz, server_wizard/server.wiz: Added Czech file 2002-08-20 11:51 Pablo Saratxaga <pablo@mandrakesoft.com> * po/sk.po: Added Slovak file 2002-08-20 10:10 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/Makefile, dhcp_wizard/Makefile, dns_wizard/Makefile, firewall_wizard/Makefile, ftp_wizard/Makefile, news_wizard/Makefile, postfix_wizard/Makefile, proxy_wizard/Makefile, samba_wizard/Makefile, server_wizard/Makefile, web_wizard/Makefile: removed wpo without \b 2002-08-20 10:07 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: updated translation 2002-08-20 10:04 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/Makefile, dhcp_wizard/Makefile, dns_wizard/Makefile, firewall_wizard/Makefile, ftp_wizard/Makefile, news_wizard/Makefile, postfix_wizard/Makefile, proxy_wizard/Makefile, samba_wizard/Makefile, server_wizard/Makefile, web_wizard/Makefile: removed wpo 2002-08-20 01:37 Pablo Saratxaga <pablo@mandrakesoft.com> * dhcp_wizard/dhcp.wiz, po/da.po, po/de.po, po/drakwizard.pot, po/fr.po, po/it.po, po/pl.po, po/pt.po, po/ro.po, po/sv.po, po/vi.po, po/zh_CN.po: some i18n fixes 2002-08-19 18:55 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: updated translation 2002-08-19 17:40 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: fixed Wizard_title 2002-08-19 17:19 Arnaud Desmons <adesmons@mandrakesoft.com> * dns_wizard/scripts/Dnsconf.pm: use of drakconnect db 2002-08-19 17:19 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/scripts/Smbconf.pm: cleaned some comments 2002-08-19 16:10 Pablo Saratxaga <pablo@mandrakesoft.com> * po/fr.po: updated po file 2002-08-19 15:34 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: da.po, de.po, drakwizard.pot, fr.po, it.po, pl.po, pt.po, ro.po, sv.po, vi.po, zh_CN.po: updated po files 2002-08-19 15:19 Arnaud Desmons <adesmons@mandrakesoft.com> * news_wizard/news.wiz: replaced Integer by Freetext for newsFreq 2002-08-19 15:08 Pablo Saratxaga <pablo@mandrakesoft.com> * client_wizard/client.wiz, db_wizard/db.wiz, dhcp_wizard/dhcp.wiz, dns_wizard/dns.wiz, firewall_wizard/firewall.wiz, ftp_wizard/ftp.wiz, news_wizard/news.wiz, po/drakwizard.pot, postfix_wizard/postfix.wiz, proxy_wizard/proxy.wiz, samba_wizard/samba.wiz, server_wizard/server.wiz, web_wizard/web.wiz: merged strings of wiz files, to make them translator-friendly and generated a *.po file 2002-08-19 14:31 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile: conflict 2002-08-19 14:28 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile: added .sh for __WIZ_HOME__ replacement 2002-08-19 14:17 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: added entry menu 2002-08-19 14:15 Arnaud Desmons <adesmons@mandrakesoft.com> * proxy_wizard/proxy.wiz: removed perlmodule not ready 2002-08-18 22:43 Stefan Siegel <siegel@linux-mandrake.com> * po/de.po: new german version 2002-08-17 11:31 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: vi.po, zh_CN.po: Added Vietnamese and Chinese files 2002-08-16 15:50 Pablo Saratxaga <pablo@mandrakesoft.com> * po/pt.po: Added Portuguese file 2002-08-16 12:38 Pablo Saratxaga <pablo@mandrakesoft.com> * po/da.po: Added Danish file 2002-08-15 13:17 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: en.po, fr.po: Removed empty file 2002-08-15 13:14 Pablo Saratxaga <pablo@mandrakesoft.com> * po/: fr.po, ro.po, sv.po: Added Romanian and Swedish files, updated French file 2002-08-14 21:13 Stefan Siegel <siegel@linux-mandrake.com> * po/de.po: initial german version 2002-08-14 17:22 Pablo Saratxaga <pablo@mandrakesoft.com> * wiz2pot.pl, wpo2po.pl, po/de.po, po/es.po, po/fr.po, po/it.po, po/pl.po: Merged po files with pot fixed the date format string (there is no space before the %z (num. time zone)) remove empty files (so it is clear in stats page that they are not translated) 2002-08-14 15:20 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: next strings 2002-08-14 14:32 Arnaud Desmons <adesmons@mandrakesoft.com> * po/drakwizard.pot: changed title 2002-08-14 14:31 Arnaud Desmons <adesmons@mandrakesoft.com> * po/drakwizard.pot: added an header 2002-08-14 13:50 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: updated translation 2002-08-14 12:06 Arnaud Desmons <adesmons@mandrakesoft.com> * po/drakwizard.pot, wiz2pot.pl: added nextButtonText wizardTitle description 2002-08-14 11:17 Arnaud Desmons <adesmons@mandrakesoft.com> * po/drakwizard.pot, wiz2pot.pl: missed \n case 2002-08-14 11:14 Arnaud Desmons <adesmons@mandrakesoft.com> * po/drakwizard.pot: pot for all wizards generated by wiz2pot.pl and msgcat 2002-08-14 11:12 Arnaud Desmons <adesmons@mandrakesoft.com> * wiz2pot.pl: wiz2pot :-) 2002-08-14 09:41 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: update 2002-08-13 17:58 Arnaud Desmons <adesmons@mandrakesoft.com> * common/scripts/DrakconnectConf.pm: added is_dhcp 2002-08-13 17:46 Arnaud Desmons <adesmons@mandrakesoft.com> * ftp_wizard/Makefile: changed for proftpd 2002-08-13 17:46 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile: cd .. need to be redone each time 2002-08-13 15:46 Arnaud Desmons <adesmons@mandrakesoft.com> * ftp_wizard/ftp.wiz, ftp_wizard/scripts/ProFtpconf.pm, web_wizard/web.wiz, web_wizard/scripts/Webconf.pm: use drakconnect db 2002-08-13 15:43 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: \n replacement and some minor changes 2002-08-13 15:33 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: updated translation (not fully) 2002-08-12 18:03 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: see cl 2002-08-12 17:55 Arnaud Desmons <adesmons@mandrakesoft.com> * ftp_wizard/ftp.wiz: use proftpd now 2002-08-12 17:54 Arnaud Desmons <adesmons@mandrakesoft.com> * ftp_wizard/scripts/ProFtpconf.pm: First proftpd parser 2002-08-12 17:49 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl> * po/pl.po: started translation 2002-08-09 16:22 Arnaud Desmons <adesmons@mandrakesoft.com> * po/: de.po, en.po, es.po, fr.po, it.po: added "disabled" and "enabled" msgid 2002-08-09 15:23 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: added find-lang and made some clean up 2002-08-09 15:21 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile: remove no sense header 2002-08-09 15:20 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile: very shorter 2002-08-09 11:36 Arnaud Desmons <adesmons@mandrakesoft.com> * po/Makefile: changed prefix 2002-08-09 10:42 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile, drakwizard.pl: po support 2002-08-09 10:39 Arnaud Desmons <adesmons@mandrakesoft.com> * po/Makefile: plagiarized from urpmi 2002-08-09 09:41 Arnaud Desmons <adesmons@mandrakesoft.com> * po/: de.po, en.po, es.po, fr.po, it.po: generated by ../wpo2pl.pl 2002-08-08 18:40 Arnaud Desmons <adesmons@mandrakesoft.com> * wpo2po.pl: add an antislash to special char like \q, \a, etc... 2002-08-08 17:49 Arnaud Desmons <adesmons@mandrakesoft.com> * wpo2po.pl: old .wpo translation file to .po perl converter 2002-08-07 16:17 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: no prev when it is impossible 2002-08-07 13:25 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/scripts/Smbconf.pm: use of Drakconnect conf 2002-08-07 13:23 Arnaud Desmons <adesmons@mandrakesoft.com> * common/scripts/Vareqval.pm: fixed when an empty line is read and interpreted as data 2002-08-07 11:51 Arnaud Desmons <adesmons@mandrakesoft.com> * common/scripts/DrakconnectConf.pm: drakconnect conf file parser 2002-08-06 11:08 Arnaud Desmons <adesmons@mandrakesoft.com> * db_wizard/db.wiz: added rpm section 2002-08-06 11:04 Arnaud Desmons <adesmons@mandrakesoft.com> * db_wizard/db.wiz: fixed missing page 2002-08-06 10:59 Arnaud Desmons <adesmons@mandrakesoft.com> * firewall_wizard/scripts/FWconf.pm: remove use strict 2002-08-06 09:56 Arnaud Desmons <adesmons@mandrakesoft.com> * news_wizard/news.wiz: bad dir for scripts 2002-08-06 09:46 Arnaud Desmons <adesmons@mandrakesoft.com> * proxy_wizard/proxy.wiz: added rpm section 2002-08-06 09:42 Arnaud Desmons <adesmons@mandrakesoft.com> * proxy_wizard/proxy.wiz: missed tag "variableName=" 2002-08-05 17:26 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: added Chooser support 2002-08-05 15:16 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: print enabled or disabled instead of 1 or 0 2002-08-05 10:53 Arnaud Desmons <adesmons@mandrakesoft.com> * postfix_wizard/scripts/Postfixconf.pm: added a return value to do_it 2002-08-05 10:46 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/dhcp.wiz, ftp_wizard/ftp.wiz, postfix_wizard/postfix.wiz: Added rpm section 2002-08-05 10:10 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/samba.wiz: variableName="doFileSharing" missing in freetext 2002-08-02 18:32 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: add asking for package concerned by the wizard (see rpm section in the xml) and install if desired 2002-08-02 17:16 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: see changelog 2002-08-02 17:13 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: improved subWizard by catching cancel and fixed cancel warnings 2002-08-02 15:51 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: added subWizard support 2002-08-02 14:49 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/samba.wiz: changed name function and return value for do_it 2002-08-02 14:47 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/scripts/Smbconf.pm: changed absolute path name 2002-08-02 13:23 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/client.wiz, dhcp_wizard/dhcp.wiz, dns_wizard/dns.wiz, firewall_wizard/firewall.wiz, ftp_wizard/ftp.wiz, news_wizard/news.wiz, postfix_wizard/postfix.wiz, proxy_wizard/proxy.wiz, samba_wizard/samba.wiz, server_wizard/server.wiz, web_wizard/web.wiz: removed "wizdrake" in the title 2002-08-02 10:05 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: see changelog 2002-08-02 09:57 Arnaud Desmons <adesmons@mandrakesoft.com> * server_wizard/scripts/Serverconf.pm: mismatched chars and chomps 2002-08-02 09:55 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl, server_wizard/server.wiz: navigation bug fix 2002-08-01 18:01 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: see changelog 2002-08-01 17:03 Arnaud Desmons <adesmons@mandrakesoft.com> * dns_wizard/Makefile: install perl Module 2002-08-01 17:01 Arnaud Desmons <adesmons@mandrakesoft.com> * dns_wizard/dns.wiz: added perl module 2002-08-01 17:00 Arnaud Desmons <adesmons@mandrakesoft.com> * dns_wizard/scripts/Dnsconf.pm: Pixel line's optimisations and bug fixes 2002-08-01 15:44 Arnaud Desmons <adesmons@mandrakesoft.com> * .cvsignore: ignore test 2002-08-01 15:33 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile: added test section 2002-08-01 15:00 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile: added $RPM and $VERSION default values 2002-08-01 14:02 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/scripts/Smbconf.pm: added explanations and some Pixel shortcuts 2002-08-01 11:49 Arnaud Desmons <adesmons@mandrakesoft.com> * dns_wizard/scripts/Dnsconf.pm: changed the return value 2002-08-01 11:48 Arnaud Desmons <adesmons@mandrakesoft.com> * dns_wizard/scripts/Dnsconf.pm: supressed debug print, added a return value to do_it 2002-08-01 11:39 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/scripts/Smbconf.pm: Pixel power 2002-08-01 11:32 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: change summary 2002-08-01 10:26 Arnaud Desmons <adesmons@mandrakesoft.com> * common/Makefile: added install of perl modules 2002-08-01 10:11 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: mismateched parenthesis 2002-08-01 09:58 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: Added require perl-XML-Parser and a Provides section 2002-08-01 09:44 Arnaud Desmons <adesmons@mandrakesoft.com> * Wizard.dtd: xml desc 2002-08-01 09:39 Arnaud Desmons <adesmons@mandrakesoft.com> * .cvsignore: ignore *~ 2002-07-31 17:40 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: $::isWizard missed 2002-07-30 11:23 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/Makefile: added install of the perl module 2002-07-30 11:22 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/client.wiz: use perl module 2002-07-30 11:21 Arnaud Desmons <adesmons@mandrakesoft.com> * client_wizard/scripts/Clientconf.pm: first perl traduction 2002-07-29 17:57 Arnaud Desmons <adesmons@mandrakesoft.com> * firewall_wizard/scripts/FWconf.pm: cleaned some debug info and erased a mismatched parenthesis 2002-07-26 18:53 Arnaud Desmons <adesmons@mandrakesoft.com> * web_wizard/web.wiz: fixed: perl func return value was not tested 2002-07-26 18:43 Arnaud Desmons <adesmons@mandrakesoft.com> * postfix_wizard/postfix.wiz, server_wizard/server.wiz: fixed: func return value was not tested 2002-07-26 18:37 Arnaud Desmons <adesmons@mandrakesoft.com> * firewall_wizard/firewall.wiz, ftp_wizard/ftp.wiz, news_wizard/news.wiz, dhcp_wizard/dhcp.wiz, web_wizard/web.wiz: fixed : func return value was not tested 2002-07-26 17:32 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: added jump test for func element and jumpScript element back compatibility 2002-07-26 17:15 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/scripts/Dhcpconf.pm: added a return value and fixed a bug 2002-07-26 14:18 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/dhcp.wiz, dns_wizard/dns.wiz, firewall_wizard/firewall.wiz, ftp_wizard/ftp.wiz, news_wizard/news.wiz, postfix_wizard/postfix.wiz, proxy_wizard/proxy.wiz, samba_wizard/samba.wiz, server_wizard/server.wiz, web_wizard/web.wiz: xml wizard 2002-07-26 14:14 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/scripts/Dhcpconf.pm: need to chomp result of mktemp 2002-07-26 13:51 Arnaud Desmons <adesmons@mandrakesoft.com> * dns_wizard/scripts/Dnsconf.pm: clean tmp 2002-07-26 13:44 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/scripts/Dhcpconf.pm: clean tmp 2002-07-26 11:55 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.spec: build one big rpm and obsolete all wizards rpms 2002-07-26 11:41 Arnaud Desmons <adesmons@mandrakesoft.com> * server_wizard.pl: replaced by drakwizard.pl 2002-07-26 11:36 Arnaud Desmons <adesmons@mandrakesoft.com> * dhcp_wizard/Makefile, dns_wizard/Makefile, firewall_wizard/Makefile, news_wizard/Makefile, postfix_wizard/Makefile, proxy_wizard/Makefile, samba_wizard/Makefile, server_wizard/Makefile, web_wizard/Makefile: adding install for *.pm 2002-07-26 11:35 Arnaud Desmons <adesmons@mandrakesoft.com> * news_wizard/scripts/Newsconf.pm: first perl traduction 2002-07-26 11:27 Arnaud Desmons <adesmons@mandrakesoft.com> * samba_wizard/scripts/Smbconf.pm, web_wizard/scripts/Webconf.pm: first perl traduction 2002-07-26 11:19 Arnaud Desmons <adesmons@mandrakesoft.com> * dns_wizard/scripts/Dnsconf.pm, common/scripts/Vareqval.pm, common/scripts/Varspaceval.pm, firewall_wizard/scripts/FWconf.pm, postfix_wizard/scripts/Postfixconf.pm, proxy_wizard/scripts/Squidconf.pm, server_wizard/scripts/Serverconf.pm, dhcp_wizard/scripts/Dhcpconf.pm: first perl traduction 2002-07-26 11:09 Arnaud Desmons <adesmons@mandrakesoft.com> * ftp_wizard/scripts/Ftpconf.pm: ftp conf perl module, just do_it 2002-07-26 11:07 Arnaud Desmons <adesmons@mandrakesoft.com> * ftp_wizard/Makefile: added install of Ftpconf.pm 2002-07-26 10:55 Arnaud Desmons <adesmons@mandrakesoft.com> * Makefile: build only one big rpm 2002-07-26 10:48 Arnaud Desmons <adesmons@mandrakesoft.com> * drakwizard.pl: new launcher allow perlModule loading 2002-06-12 18:12 Mael Dodin * server_wizard.pl: fix a bug when wizard are loaded 2002-06-12 14:51 Mael Dodin * server_wizard.pl: fix some bug with interaction between wizard and script shell 2002-05-28 11:11 Mael Dodin * server_wizard.pl: -second commit after pixelisation and debug 2002-05-28 10:12 Mael Dodin * server_wizard.pl: -first commit