~ubuntu-branches/ubuntu/gutsy/gedit/gutsy

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

2006-10-01  Paolo Borelli  <pborelli@katamail.com>

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.16.1 released.

2006-10-01  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-spinner.c: sync to latest ephy code.
	Should fix bug #330415, bug #357456 and save some
	memory.

2006-09-28  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-document-saver.c: handle EINTR and plug a leak
	on a seldomly used codepath. Poited out by Alexander Larsson.

2006-09-26  Paolo Borelli  <pborelli@katamail.com>

        * bindings/python/Makefile.am: use $(MAKE) instead of 'make'
        Bug #357792. Patch by Marc Brockschmidt.

2006-09-23  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-panel.[ch]:
	* gedit/gedit-prefs-manager-app.[ch]:
	* gedit/gedit-window.c:

	Remember the active page in the side and bottom panel.
	Bug #357120.

2006-09-05  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/filebrowser/.cvsignore: changed filebrowser.schemas to
	gedit-file-browser.schemas (it got renamed)

2006-09-09  Paolo Maggi  <paolo@gnome.org>

	* gedit/sexy-icon-entry.c: updated from libsexy SVN repository

2006-09-05  Jesse van den Kieboom  <jesse@icecrew.nl>
	
	* plugins/filebrowser/gedit-file-browser-store.c:
	
	Really fixed bug 354397  crash in filebrowser plugin when going to 
	parent dir. This time the first issue mentioned in the bug report
	is fixed.

2006-09-05  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/filebrowser/gedit-file-browser-store.c:
	
	Fixed bug 354397  crash in filebrowser plugin when going to parent dir

=== gedit 2.16.0 ===

2006-09-04  Paolo Maggi  <paolo@gnome.org>

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.16.0 released. Updated dependencies.
	
2006-08-28  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/filebrowser/gedit-file-browser-plugin.c: disable showing
	an error message when the error occurred when setting a root directory
	automatically (either on load or when the first document is loaded)

	* plugins/filebrowser/Makefile.am:
	* plugins/filebrowser/filebrowser.schemas.in:
	* plugins/filebrowser/gedit-file-browser.schemas.in:
	
	Renamed filebrowser.schemas.in to gedit-file-browser-schemas.in

	* plugins/filebrowser/gedit-file-browser-store.c:
	* plugins/filebrowser/gedit-file-bookmarks-store.c:
	
	Removed unnecessary g_warning calls
	
	* plugins/filebrowser/gedit-file-browser-plugin.c:
	* plugins/filebrowser/gedit-file-browser-store.[ch]:
	* plugins/filebrowser/gedit-file-browser-widget.[ch]:
	
	Renamed variable 'virtual' to 'virtual_root' (since virtual is a
	C++ keyword

2006-08-27  Paolo Borelli  <pborelli@katamail.com>

	* plugins/externaltools/tools/manager.py: link updates docs.

=== gedit 2.15.9 ===

2006-08-26  Paolo Borelli  <pborelli@katamail.com>

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.15.9 released.

2006-08-26  Steve Frécinaux  <steve@istique.net>

	Fix bug #352854  modelines should revert to pref values when a
	modeline part is removed

	* plugins/modelines/modelines.py: read parameters that are not in the
	modelines anymore from gconf.

2006-08-26  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-python-module.c:
	* gedit/gedit-window.c:

	Run the garbage collector both at the start and at the end of 
	gedit_window_dispose, in order to enforce correct object lifetime.
	Should fix bug #350776.

2006-08-25  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-tab.c: plug tiny leak when loading remote files.

2006-08-25  Paolo Borelli  <pborelli@katamail.com>

	* plugins/filebrowser/gedit-file-browser-plugin.c:
	fix up patch conflict.

2006-08-25  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/filebrowser/gedit-file-browser-plugin.c:
	* plugins/filebrowser/gedit-file-browser-utils.[ch]:
	* plugins/filebrowser/gedit-file-browser-widget.c:
	
	Make use of gedit_utils_uri_has_file_scheme instead of using
	gedit_file_browser_utils_is_local
	
	* plugins/filebrowser/gedit-file-browser-plugin.c: do not open file
	browser at first opened document when it is a remote file (to avoid
	problems with bug #352824)
	
2006-08-25  Paolo Maggi  <paolo@gnome.org>

	Really fixes bug #352717  gedit silently ignores saving errors when
	saving remote files
	
	* gedit/gedit-document-saver.c (manage_completed_phase): new function,
	it splits up the code related to the management of the "COMPLETED"
	phase in async_xfer_ok.
	(async_xfer_ok): returns just after calling manage_completed_phase in
	the COMPLETED phase. In this way we avoid emitting the "saving" signal
	from a potentially finalized saver
	 (async_xfer_error): does not set the error if it was already set
	 in a previous interaction
	 (async_xfer_progress): better debugging messages

2006-08-25  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-document-loader.c: fix a couple of typos.

2006-08-24  Paolo Borelli  <pborelli@katamail.com>

	Fixed bug #352717  gedit silently ignores saving errors when saving
	remote files
	
	* gedit/gedit-document-saver.c: properly handle xfer errors.

2006-08-24  Paolo Maggi  <paolo@gnome.org>

	Fixed bug #352680  Save on close for readonly files does not work as
	expected
	
	* gedit/dialogs/gedit-close-confirmation-dialog.c
	(set_logout_mode): add a "Save As" button instead of a "Save" one when
	in single mode and the document to close is untitled or readonly

	* gedit/gedit-commands-file.c (file_save): call file_save_as for
	readonly files too

2006-08-24  Paolo Borelli  <pborelli@katamail.com>

	Fixed bug #352677  Critical warning when opening a empty remote file
	
	* gedit/gedit-document-loader.c: handle remote zero lenght files
	correctly.

2006-08-24  Paolo Maggi  <paolo@gnome.org>

	Fixes bug #352658  print preview state machine issue.
	
	* gedit/gedit-tab.c (print_preview_destroyed): add a comment and
	check that the state is "printing" in the "else" case  
	(print_finished_cb) (print_cancelled): If we are printing while 
	showing the print preview, close the print preview when done or 
	cancelled

2006-08-24  Paolo Maggi  <paolo@gnome.org>

	Fixes bug #352662  Opening non-existing remote file from command line
	should report an error

	* gedit/gedit-document.c (document_loader_loaded): ignore the 
	"create" flag is the file is not local

	* gedit/gedit-utils.c (gedit_utils_uri_has_file_scheme): returns FALSE
	if the uri is a chained uri.

2006-08-23  Paolo Borelli  <pborelli@katamail.com>

	* plugins/filetree/gedit-file-browser-plugin.c: plug a leak.

2006-08-23  Paolo Maggi  <paolo@gnome.org>

	* gedit/gedit-languages-manager.c
	(gedit_languages_manager_get_language_from_mime_type): gives
	priority to exact matches.

2006-08-23  Paolo Maggi  <paolo@gnome.org>

	Fixes bug #324191  the xml.lang syntax file should include 
	application/vnd.mozilla.xul+xml
	
	* gedit/gedit-languages-manager.c
	(gedit_languages_manager_get_available_languages_sorted)
	(get_languages_cache) (get_language_from_cache)
	(add_language_to_cache)
	(gedit_languages_manager_get_language_from_mime_type): get the language
	associated to a given mime-type. It takes care for mime-types 
	inheritance. It also uses a cache of already matched mime-type in order 
	to improve performace for frequently used mime-types.

	* gedit/gedit-languages-manager.h: new prototype for function
	gedit_languages_manager_get_language_from_mime_type
	
	* gedit/gedit-document.c (set_uri): uses the new function
	gedit_languages_manager_get_language_from_mime_type

2006-08-23  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-python-plugin.c: fix a small leak.

2006-08-23  Jesse van den Kieboom  <jesse@icecrew.nl>

	* gedit/gedit.c: initialize gnome authentication manager before 
	plugins (since the file browser plugin might need it). Fixes Bug 
	352339  Remote root location for filebrowser makes gedit crash on load

2006-08-23  Paolo Maggi  <paolo@gnome.org>

	* gedit/dialogs/gedit-close-confirmation-dialog.c
	(gedit_close_confirmation_dialog_init): Skips taskbar hint as for
	standard gtk+ message dialogs

=== gedit 2.15.8 ===

2006-08-21  Paolo Borelli  <pborelli@katamail.com>

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.15.8 released.

2006-08-21  Paolo Maggi  <paolo@gnome.org>

	* gedit/gedit-document-saver.c: drop executable permissions from
	backup files. Bug #327031.

2006-08-21  Paolo Maggi  <paolo@gnome.org>

	* tools/plugin_template/gedit-plugin-helper.py (__del__): added a 
	missing ":"

2006-08-21  Paolo Maggi  <paolo@gnome.org>

	* gedit/gedit-encodings.c: added support for UTF-16LE, UTF-16BE 
	and UTF-32

2006-08-22  Paolo Borelli  <pborelli@katamail.com>

	* plugins/snippets/SnippetsDialog.py: link help to the proper
	section.

2006-08-20  Steve Frécinaux  <steve@istique.net>

	* plugins/externaltools/tools/__init__.py: add forgotten strings to be
	translated.

2006-08-20  Paolo Borelli  <pborelli@katamail.com>

	* plugins/filebrowser/gedit-file-bookmarks-store.c:

	do not leak the list of volumes.

2006-08-18  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-commands-file.c: do not leak the doc list.

2006-08-18  Steve Frécinaux  <steve@istique.net>

	* plugins/externaltools/tools/__init__.py:
	* plugins/externaltools/tools/functions.py:
	* plugins/externaltools/tools/manager.py:
	* plugins/pythonconsole/pythonconsole/__init__.py:
	
	Fix translation of python plugins.

2006-08-17  Paolo Borelli  <pborelli@katamail.com>

	* gedit/dialogs/gedit-preferences-dialog.c: do not crash if no
	lang files are found.

2006-08-17  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-io-error-message-area.c: small memory leaks on error.

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

	* gedit/gedit-window.c:
	* gedit/gedit-app.[ch]:

	properly use window::dispose to drop the references to the ui
	manager and to disconnect the recents_changed callback. It should
	fix warning and crashes. Also turn the lockdown changed handler
	in a simple method so that we avoid headaches tracking the lifetime
	of the window itself.

2006-08-16  Steve Frécinaux  <steve@istique.net>

	* plugins/modelines/modelines.py: fix warning on activation.

2006-08-15  Paolo Borelli  <pborelli@katamail.com>

	* gedit-window.c (gedit_window_finalize): remove the
	recent_manager_changed callback.

2006-08-15  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/filebrowser/gedit-file-browser-store.c: changed 
	g_value_set_string to g_value_take_string to save a string dup

2006-08-15  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/filebrowser/gedit-file-bookmarks-store.[ch]: fixed
	bug 350553  Filebrowser plugin: Double separators if remote loc. 
	list is empty

=== gedit 2.15.7 ===

2006-08-07  Paolo Borelli  <pborelli@katamail.com>

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.15.7 released.

2006-08-11  Paolo Borelli  <pborelli@katamail.com>

	* gedit-prefs-manager-app.[ch]:
	* gedit-window.c:
	* gedit-app.c:

	small cleanup in setting/getting the window size.

2006-08-11  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-document-saver.c: preserve xattrs, patch by James
	Antill. Bug #350805.

2006-08-09  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-message-area.c:
	* gedit/gedit-notebook.c:
	* gedit/gedit-panel.c:
	* gedit/gedit-statusbar.c:
	* gedit/gedit-view.c:

	use g_object_ref_sink, patch by John Luke.

2006-08-09  Paolo Borelli  <pborelli@katamail.com>

	* plugins/spell/gedit-spell-plugin.c: fix autospell state when
	switching tab.

2006-08-08  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-window.c: fix a crash in recents file code.

=== gedit 2.15.6 ===

2006-08-07  Paolo Borelli  <pborelli@katamail.com>

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.15.6 released.

2006-08-07  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-document.[ch]:
	* gedit/gedit-window.c:

	use the has-selection property of GtkTextBuffer 2.10.

2006-08-07  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-view.c: use the indent-on-tab feature of sourceview 1.7.2

2006-08-07  Paolo Borelli  <pborelli@katamail.com>

	* gedit/recent-files/*:	throw away the eggs, they were past due.

	* gedit/gedit-window.[ch]:
	* gedit/gedit-tab.c:
	* gedit/gedit.c:

	New recent-files implementation using GtkRecent.

2006-08-05  Jesse van den Kieboom  <jesse@icecrew.nl>
	
	* gedit/gedit-commands-file.c: changed opening of multiple files
	behavior (bug 143646), patch by Paolo Maggi
	* gedit/gedit-io-error-message-area.c: changed already opened message
	to reflect this new behavior

2006-08-05  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/filebrowser/filebrowser.schemas.in: moved default values 
	out of the locale tag because they shouldn't be translated
	
2006-08-05  Jesse van den Kieboom  <jesse@icecrew.nl>

	* gedit/gedit-window.c: added calling update_ui when editability 
	changes
	* plugins/snippets/snippets/SnippetController.py: added honoring the
	editability of the buffer
	
2006-08-05  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/filebrowser/gedit-file-browser-plugin.c:
	
	Fixed restoring of remote location (problem introduced by previous
	commit)

2006-08-04  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/filebrowser/gedit-file-browser-utils.[ch]:
	* plugins/filebrowser/gedit-file-browser-plugin.c:
	* plugins/filebrowser/gedit-file-browser-widget.c:
	
	Fixed checking for uri to be local
	
2006-08-02  Jesse van den Kieboom  <jesse@icecrew.nl>
	* plugins/filebrowser/gedit-file-browser-widget.c: changed tooltips
	for back and forward to match nautilus

	* plugins/filebrowser/gedit-file-browser-widget.c:
	* plugins/filebrowser/gedit-file-browser-view.c:
	
	Fixed bug when opening a directory which is expanded.
	
	* plugins/filebrowser/gedit-file-browser-widget-ui.xml:
	* plugins/filebrowser/gedit-file-browser-widget.c:

	Added keyboard navigation (Alt+Left, Alt+Right, Alt+Up, Backspace) and
	directory up action.
	
2006-08-02  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/filebrowser/gedit-file-browser-widget.c: fixed problem
	introduced by cleaning up the memory leaks
	* plugins/filebrowser/gedit-file-browser-store.c: fixed warning
	about gnome_vfs_mime_type_get_equivalence

2006-08-02  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/filebrowser/.cvsignore: added ignore file

	* plugins/filebrowser/gedit-file-bookmarks-store.c:
	* plugins/filebrowser/gedit-file-browser-plugin.c:
	* plugins/filebrowser/gedit-file-browser-store.c:
	* plugins/filebrowser/gedit-file-browser-widget.c:
	* plugins/filebrowser/gedit-file-browser-plugin.c:
	
	Fix several memory leaks. The plugin should now be memory leak free.

2006-08-01  Steve Frécinaux  <steve@istique.net>

	* plugins/snippets/snippets/snippets.glade: add a translator comment
	on the "tab trigger" string. The issue is that "tab" means "tab key"
	as well as "notebook tab", and some translators understood it the
	wrong way.

2006-07-31  Steve Frécinaux  <steve@istique.net>

	* plugins/filebrowser/gedit-file-browser-store.c: fix bug
	349411 – Filebrowser plugin crash when renaming. Now 
	FileBrowserNodeDir uses an internal "parent" FileBrowserNode.

2006-07-26  Steve Frécinaux  <steve@istique.net>

	* plugins/filebrowser/filebrowser.schemas.in: fix bug 348670 –
	activate browser plugins raises an gconf error.

=== gedit 2.15.5 ===

2006-07-24  Paolo Borelli  <pborelli@katamail.com>

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.15.5 released.

2004-07-24  Steve Frécinaux  <steve@istique.net>

	Fix bug #348558 – Snippets use language.get_name() instead of .get_id()
	
	* plugins/snippets/snippets/SnippetController.py:
	* plugins/snippets/snippets/SnippetPluginInstance.py:
	
	Replace SourceLanguage.get_name() calls with SourceLanguage.get_id()
	ones. Rename SnippetController.language_name into
	SnippetController.language_id to avoid confusion.
	
	* plugins/snippets/snippets/SnippetsDialog.py: get_language() now
	returns the id of the language instead of its name.

2006-07-24  Steve Frécinaux  <steve@istique.net>

	Fix build errors due to missing file.

	* gedit/plugins/filebrowser/Makefile.am:
	* gedit/plugins/filebrowser/gedit-file-browser-enum-types.h.template:
	* gedit/plugins/filebrowser/gedit-file-browser-enum-types.c.template:
	* gedit/plugins/filebrowser/gedit-file-browser-enum-register.c.template:

	Generate enum type description using glib-mkenums.
	
	* gedit/plugins/filebrowser/gedit-file-browser-error.h: create a file to
	contain the Error enum.
	
	* plugins/filebrowser/gedit-file-browser-plugin.c:
	* plugins/filebrowser/gedit-file-browser-store.c:
	* plugins/filebrowser/gedit-file-browser-widget.c:
	
	Adapt for above changes.

2006-07-24  Jesse van den Kieboom  <jesse@icecrew.nl>

	* gedit/plugins/filebrowser/*: let there be a file tree pane.

2006-07-17  Jesse van den Kieboom  <jesse@icecrew.nl>

	* gedit/gedit-plugin.h: added convenient macros for registering
	additional GTypes in plugins

	* plugins/taglist/gedit-taglist-plugin.c:
	* plugins/taglist/gedit-taglist-plugin-panel.c:
	
	make use of the new macros

2006-07-17  Jesse van den Kieboom  <jesse@icecrew.nl>

	* gedit/dialogs/gedit-close-confirmation-dialog.c: fixed using 
	g_slist_length on a GList.

2006-07-13  Steve Frécinaux  <steve@istique.net>

	* gedit/gedit-python-module.c: expose a gedit.version tuple in python.
	
	* configure.ac: define version components separately, and add
	GEDIT_(MAJOR|MINOR|MICRO)_VERSION definition to config.h.
	
	Note: maybe we'd like to have a gedit.require_version() function, too.

=== gedit 2.15.4 ===

2006-07-10  Jesse van den Kieboom  <jesse@icecrew.nl>

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.15.4 released.
	
	* docs/reference/gedit-sections.txt: added gedit-sections.txt

	* Makefile.am: added --enable-gtk-doc to DISTCHECK_CONFIGURE_FLAGS

2006-06-20  Steve Frécinaux  <steve@istique.net>

	* configure.ac: fix Bug 344655 – configure uses old-style automake
	init. Patch by Christian Persch.

2006-06-20  Jesse van den Kieboom  <jesse@ocecrew.nl>

	* plugins/snippets/snippets/SnippetController.py: fixed jumping to
	first placeholder when a snippet is inserted while in a placeholder
	another snippet. Fixes bug 345095
	
2006-06-19  Jesse van den Kieboom  <jesse@ocecrew.nl>

	* bindings/python/Makefile.am:
	* bindings/python/geditcommands.defs:
	* bindings/python/geditcommands.override:
	
	added new gedit.commands python module containing the
	load_uri and load_uris functions
	
	* gedit/gedit-python-module.c: added initialising gedit.commands
	python module
	
2006-06-19  Paolo Maggi  <paolo@gnome.org>

	* plugins/docinfo/gedit-docinfo-plugin.c
	(docinfo_dialog_response_cb) (update_ui_real): Disable the "Update"
	button when there is no open document

2006-06-18  Steve Frécinaux  <steve@istique.net>

	* gedit/dialogs/Makefile.am: add $(builddir) to INCLUDES (fix out of
	tree build)

2006-06-18  Paolo Maggi  <paolo@gnome.org>

	Reorganization of the Search menu
	
	* gedit/gedit-commands-search.c (_gedit_cmd_search_goto_line): focus
	the view
	(_gedit_cmd_search_interactive_search): new method

	* gedit/gedit-commands.h: new method 
	_gedit_cmd_search_interactive_search

	* gedit/gedit-ui.h: new action "SearchInteractiveSearch"

	* gedit/gedit-ui.xml: added "Interactive search..." menu item and
	some placeholder and separator to the Search menu

	* gedit/gedit-window.c (set_sensitivity_according_to_tab): set
	the sensitivity of the "SearchInteractiveSearch" action

2006-06-18  Paolo Maggi  <paolo@gnome.org>

	Fixed bug #344026 – Find - Replace

	* gedit/dialogs/gedit-search-dialog.c (show_replace): new function
	(gedit_search_dialog_class_init): register the new signal "show_replace"
	and bind Ctrl+H to it

	* gedit/dialogs/gedit-search-dialog.h: new signal "show_replace"

2006-06-18  Paolo Maggi  <paolo@gnome.org>

	* gedit/gedit-commands-help.c (_gedit_cmd_help_about): added
	Steve Frécinaux and Jesse van den Kieboom to authors. Welcome guys :)

2006-06-18  Paolo Maggi  <paolo@gnome.org>

	* gedit/gedit-utils.c (gedit_warning): set the window group and 
	removed gtk_dialog_run

2006-06-15  Steve Frecinaux  <steve@istique.net>

	* gedit/gedit-panel.c: (create_small_button):
	* gedit/gedit-notebook.c: (build_tab_label):

	Fix the fix of the fix of the cropped button issue (bug #318461) by
	using the same trick as Epiphany does.

2006-06-15  Steve Frécinaux  <steve@istique.net>

	Fix for bug #165568 – Support global lockdown keys (second part)

	* gedit/gedit-window.c: disable some menu entries according the current 
	lockdown state; listen to app's lockdown property changes to update the
	menus sensitivity and autosave status accordingly.
	
	* gedit/gedit-ui.h: move FilePageSetup from always sensitive actions.

	* gedit/gedit-tab.c: do not enable autosave if save_to_disk is disabled.
	
	* gedit/dialogs/gedit-close-confirmation-dialog.c: adapt the dialog to
	the case save_to_disk is disabled.

2006-06-13  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-panel.c: (create_small_button):
	* gedit/gedit-notebook.c: (build_tab_label):

	Fix yesterday's fix.

2006-06-13  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-panel.c: (create_small_button):
	* gedit/gedit-notebook.c: (build_tab_label):

	Fix bug #318461 – tab and panel close buttons are cropped.

2006-06-13  Steve Frécinaux  <steve@istique.net>

	* bindings/python/Makefile.am: make sure gedit-enum-types.h is generated
	before the bindings are built.

	* gedit/Makefile.am: fix generation of gedit-enum-types.h in $builddir
	instead of $srcdir.

2006-06-13  Steve Frécinaux  <steve@istique.net>

	* gedit/gedit-tab.c:
	* gedit/gedit-window.c:

	Update property definitions to use the new enum GTypes.

	* bindings/python/gedit.defs: 
	* bindings/python/gedit.override:
	
	Update enum types to actually use the new GTypes. Add bindings for
	several new methods (GeditDocument.get_enable_search_highlighting,
	GeditDocument.get_enable_search_highlighting, GeditWindow.close_tabs,
	GeditWindow.get_tab_from_uri and GeditApp.get_lockdown)
	
=== gedit 2.15.3 ===

2006-06-12  Steve Frécinaux  <steve@istique.net>

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.15.3 released.

	* gedit/Makefile.am: fixed gedit-enum-types.[ch] generation.

2006-06-11  Elijah Newren  <newren gmail com>

	* bindings/python/Makefile.am: Add $PYTHON_LOC_LIB to ensure
	python library gets found.  #344539

2006-06-11  Steve Frécinaux  <steve@istique.net>

	Fix for bug #165568 – Support global lockdown keys (first part)

	* gedit/gedit-app.[ch]: define GeditLockdownMask as a flag type, add a 
	'lockdown' property to GeditApp, of type GeditLockdownMask, and define
	its getter/setter.
	
	* gedit/gedit-prefs-manager.[ch]: define a new helper function
	gedit_prefs_manager_get_lockdown.
	
	* gedit/gedit-prefs-manager-app.c: Listen to lockdown GConf folder
	changes. Update GeditApp's lockdown properties when a lockdown key is
	changed.
	
	* gedit/gedit-enum-types.h.template:
	* gedit/gedit-enum-types.c.template:
	* gedit/Makefile.am:
	
	Autogenerate type definitions for exported enums using glib-mkenums.

	* configure.ac: add GLIB_MKENUMS definition.

2006-06-03  Steve Frécinaux  <steve@istique.net>

	* bindings/python/geditutils.override: override menu_position_* to
	conform to pygtk format for GtkMenuPositionFunc (you still have to use a
	lambda to provude user_data anyway)
	
	* gedit/gedit-python-module.c: call pygeditutils_register_classes (fix
	crasher bug)

2006-05-31  Paolo Maggi  <paolo@gnome.org>

	Added a couple of helper functions for plugins.
	
	* gedit/gedit-commands-file.c
	(gedit_commands_load_uri) (gedit_commands_load_uris): new public 
	functions
	(_gedit_cmd_load_files): removed
	(open_dialog_response_cb): uses gedit_commands_load_uris instead of
	_gedit_cmd_load_files
	(open_location_dialog_response_cb): ditto
	(_gedit_cmd_file_open_recent): ditto

	* gedit/gedit-commands.h 
	(gedit_commands_load_uri) (gedit_commands_load_uris): new public 
	functions

	* gedit/gedit-window.c (drag_data_received_cb): uses 
	gedit_commands_load_uris instead of _gedit_cmd_load_files
	(gedit_window_get_unsaved_documents): refactored
	(gedit_window_get_tab_from_uri): new function

	* gedit/gedit-window.h (gedit_window_get_tab_from_uri): new function

2006-05-31  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-commands-file.c (confirm_overwrite_callback): fix
	use after free. Patch by Sylvain Defresne (bug #343480)

2006-05-29  Paolo Maggi  <paolo@gnome.org>

	* gedit/gedit-app.c (window_delete_event): s/gedit_cmd/_gedit_cmd/

	* gedit/gedit-commands-documents.c
	(_gedit_cmd_documents_previous_document)
	(_gedit_cmd_documents_next_document)
	(_gedit_cmd_documents_move_to_new_window): ditto

	* gedit/gedit-commands-edit.c (_gedit_cmd_edit_undo)
	(_gedit_cmd_edit_redo) (_gedit_cmd_edit_cut) (_gedit_cmd_edit_copy)
	(_gedit_cmd_edit_paste) (_gedit_cmd_edit_delete)
	(_gedit_cmd_edit_select_all) (_gedit_cmd_edit_preferences): ditto

	* gedit/gedit-commands-file-print.c (_gedit_cmd_file_page_setup)
	(_gedit_cmd_file_print_preview) (_gedit_cmd_file_print): ditto

	* gedit/gedit-commands-file.c (_gedit_cmd_file_new)
	(_gedit_cmd_load_files) (_gedit_cmd_load_files_from_prompt)
	(open_dialog_response_cb) (_gedit_cmd_file_open)
	(open_location_dialog_response_cb) (_gedit_cmd_file_open_uri)
	(_gedit_cmd_file_open_recent) (_gedit_cmd_file_save)
	(_gedit_cmd_file_save_as) (_gedit_cmd_file_save_all)
	(_gedit_cmd_file_revert) (_gedit_cmd_file_close)
	(_gedit_cmd_file_close_all) (_gedit_cmd_file_quit): ditto

	* gedit/gedit-commands-help.c (_gedit_cmd_help_contents)
	(_gedit_cmd_help_about): ditto

	* gedit/gedit-commands-search.c (_gedit_cmd_search_find)
	(_gedit_cmd_search_replace) (_gedit_cmd_search_find_next)
	(_gedit_cmd_search_find_prev) (_gedit_cmd_search_clear_highlight)
	(_gedit_cmd_search_goto_line): ditto

	* gedit/gedit-commands-view.c (_gedit_cmd_view_show_toolbar)
	(_gedit_cmd_view_show_statusbar) (_gedit_cmd_view_show_side_pane)
	(_gedit_cmd_view_show_bottom_pane): ditto

	* gedit/gedit-commands.h: ditto

	* gedit/gedit-ui.h: ditto
	
	* gedit/gedit-window.c (open_recent_gtk) (open_recent_uim)
	(drag_data_received_cb): ditto

	* gedit/gedit.c (on_message_received) (main): ditto

	* gedit/gedit-prefs-manager.c: gedit_gconf_client_set_color is now a 
	static function

2006-05-24  Jesse van den Kieboom  <jesse@icecrew.nl>

	* tools/plugin_template/gedit-plugin.c: fixed missing semicolon and 
	private struct definition (missed a _)

2006-05-24  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/functions.py: oops, removed debug 
	print...

2006-05-24  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/functions.py:
	* plugins/snippets/snippets/Snippet.py:
	
	added replacing tabs with spaces when insert_spaces_instead_of_tabs is 
	true (closes #341109)

2006-05-23  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/data/ruby.xml:
	* plugins/snippets/data/php.xml:
	
	fixed invalid tab triggers

2006-05-23  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/SnippetPlaceholders.py: fix timeout_id
	to be None instead of 0 when not active because the value can be 
	0 in python placeholders (it's used for storing the default sigalarm
	handler which can be 0, and it wasn't properly restored because of 
	this). Added a new exception TimeoutError so the timeout is handled 
	differently from other errors. Show other errors to the user 
	(like syntax etc).
	
	* plugins/snippets/snippets/SnippetController.py: make sure to
	remove placeholders that need updates from the updates list when they
	are removed so that when the update runs the placeholders that don't
	exist anymore aren't tried to be updated
	
2006-05-23  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/SnippetsLibrary.py: fixed a problem with
	removing the last user snippet in a user library. The library would 
	signal the store that it should be removed and that causes the 
	container to be removed. After that the remove_snippet function would
	try to remove the snippet from the container causing a ValueError.
	Only IndexErrors were caught. The fix is to catch every error.

2006-05-22  Steve Frécinaux  <steve@istique.net>

	* gedit/gedit-ui.h: define GTK_STOCK_SELECT_ALL if not defined, to
	avoid the need of bumping gtk requirement to 2.9 (marked as FIXME)

2006-05-22  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-session.c (client_die_cb): do not call shutdown functions.

2006-05-21  Steve Frécinaux  <steve@istique.net>

	* tools/generate-plugin.py: Removed hint for gconf code generation in
	plugin generator (gconf usage is not generic enough)
	
	* tools/plugin_template/gedit-plugin-helper.py:
	* tools/plugin_template/gedit-plugin-nohelper.py:
	* tools/plugin_template/gedit-plugin.c:
	
	Added support for --with-menu generation option.

2006-05-21  Steve Frécinaux  <steve@istique.net>

	* tools/generate-plugins.py:
	* tools/preprocessor.py:

	New plugin generator, able to generate python and C plugin skeletons.
	See ./generate-plugins.py --help

	* tools/plugin_template/Makefile.am:
	* tools/plugin_template/gedit-plugin.desktop.in:
	* tools/plugin_template/gedit-plugin-helper.py:
	* tools/plugin_template/gedit-plugin-nohelper.py:
	* tools/plugin_template/gedit-plugin.c:
	* tools/plugin_template/gedit-plugin.h:

	Templates for the generator.

	* tools/.cvsignore: ignore *.pyc files.

2006-05-21  Paolo Maggi  <paolo@gnome.org>

	Fixed bug #342208 - show 'next tab' and 'previous tab' menu items
	
	* gedit/gedit-commands-documents.c
	(gedit_cmd_documents_previous_document)
	(gedit_cmd_documents_next_document): new methods

	* gedit/gedit-commands.h: new 
	gedit_cmd_documents_[previous|next]_document methods

	* gedit/gedit-ui.h: added icon to "Select All", added new actions
	for "Next|Previous Document"

	* gedit/gedit-ui.xml:  added new menu items
	for "Next|Previous Document"

	* gedit/gedit-window.c (update_next_prev_doc_sensitivity)
	(update_next_prev_doc_sensitivity_per_window)
	(set_sensitivity_according_to_tab) (notebook_tab_added)
	(notebook_tab_removed) (notebook_tabs_reordered): update sensitivity
	of "Next|Previous Document" menu item

2006-05-20  Steve Frécinaux  <steve@istique.net>

	* gedit/Makefile.am: Add gedit-prefs-manager-private.h to
	NOINST_H_FILES.
	
	* docs/reference/Makefile.am:
	* docs/reference/gedit.types:
	* docs/reference/gedit-docs.sgml:
	
	Ignore private header files when generating the docs (typically, NOINST
	and cut'n'pasted files).
	
	* docs/reference/tmpl/*: Add template files.

2006-05-20  Paolo Maggi  <paolo@gnome.org>

	* gedit/gedit-window.c (create_language_menu_item)
	(create_languages_menu) (update_languages_menu): use "None" instead of
	"Normal" in the Highlight Mode menu

2006-05-19  Steve Frécinaux  <steve@istique.net>

	* gedit/Makefile.am: Build gedit as a static library before including it
	in the binary (needed for gtk-doc gobject inspection)
	
	* configure.ac:
	* Makefile.am:
	* docs/Makefile.am:
	* docs/reference/Makefile.am:
	* docs/reference/gedit-docs.sgml:
	* docs/reference/gedit-overrides.txt:
	* docs/reference/gedit.types:
	
	Initial setup of gtk-doc for gedit.

	* .cvsignore:
	* bindings/python/.cvsignore:
	* doc/.cvsignore:
	* doc/reference/.cvsignore:
	* m4/.cvsignore:
	
	Update some CVSIGNORE files.

2006-05-19  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-commands-search.c
	* gedit/gedit-document-saver.c
	* gedit/gedit-document.c
	* gedit/gedit-prefs-manager.c
	* gedit/gedit-python-module.c
	* gedit/gedit-spinner.h
	* gedit/gedit-window.c
	* gedit/gedit.c

	Fix a bunch of compiler warnings from the ICC compiler.

=== gedit 2.15.2 ===

2006-05-15  Steve Frécinaux  <steve@istique.net>

	* configure.ac: bump intltool requirement to 0.35.0

	* configure.ac:
	* NEWS:
	* README:
	
	gedit 2.15.2 released

2006-05-15  Steve Frécinaux  <steve@istique.net>

	* bindings/python/gedit.defs: Remove gedit_ prefix from functions, and
	add gedit_-prefixed ones marked as deprecated.
	
	* bindings/python/gedit.override: Add overrides for deprecated functions
	issuing a DeprecationWarning when used.
	
	* plugins/externaltools/tools/__init__.py:
	* plugins/externaltools/tools/functions.py:
	* plugins/snippets/snippets/SnippetComplete.py:
	* plugins/snippets/snippets/SnippetsDialog.py:
	* plugins/snippets/snippets/__init__.py:
	
	Use the new function names.

2006-05-15  Paolo Borelli  <pborelli@katamail.com>

	* plugins/sort/gedit-sort-plugin.c: handle empty lines correctly.
	bug #341117.

2006-05-14  Steve Frécinaux  <steve@istique.net>

	* bindings/python/Makefile.am:
	* bindings/python/geditutils.defs:
	* bindings/python/geditutils.override:
	
	New gedit.utils python module binding a few functions from gedit-utils.h

	* gedit/gedit-python-module.c: (gedit_python_module_init_python): import
	the new above-mentioned module.

2006-05-02  Steve Frécinaux  <steve@istique.net>

	* gedit/gedit-plugin-manager.c: destroy the popup menu when the dialog
	is closed.
	
	* plugins/modelines/modelines.py: fix a warning (typo).

2006-05-02  Steve Frécinaux  <steve@istique.net>

	* gedit/gedit-plugin-manager.c: new layout for the plugin manager:
	hide the treeview headers and add a title. Add a context menu to the
	plugin list.
	
	* gedit/gedit-plugins-engine.c
	(gedit_plugin_engine_get_plugin_icon_name): fallback to default icon
	when the specified icon is invalid or unavailable.

	* gedit/gedit-utils.[ch] (gedit_utils_menu_position_under_tree_view):
	new helper function allowing to position a popup menu under the active
	row of a tree view.

2006-05-01  Jesse van den Kieboom  <jesse@icecrew.nl>
	
	* gedit/plugins/snippets/snippets/SnippetPlaceholders.py: added 
	sigalarm timeout for python placeholders. Cleaned up python 
	placeholders. Make updating mirror placeholders abort when one of the 
	updates fails (like for example a timeout)
	
2006-05-01  Jesse van den Kieboom  <jesse@icecrew.nl>

	* gedit/plugins/snippets/snippets/SnippetController.py: added check
	for valid snippets. Fixed check for valid accelerator.

2006-05-01  Jesse van den Kieboom  <jesse@icecrew.nl>

	* gedit/plugins/snippets/snippets/SnippetsDialog.py: 
	* gedit/plugins/snippets/snippets/SnippetsLibrary.py:
	* gedit/plugins/snippets/snippets/functions.py:
	* gedit/plugins/snippets/snippets/snippets.glade:
	
	Added snippet validation (by tab trigger and accelerator). Added error 
	message for invalid tab triggers

2006-04-28  Steve Frécinaux  <steve@istique.net>

	* gedit/gedit-plugins-engine.[ch]: add support for an 'Icon' field in
	the plugins description file. New function to access this icon field:
	gedit_plugin_engine_get_plugin_icon_name.
	
	* gedit/gedit-plugin-manager.c: show the above defined icon in the
	plugin about boxes and in the plugin list.
	
	* plugins/indent/indent.gedit-plugin.desktop.in:
	* plugins/pythonconsole/pythonconsole.gedit-plugin.desktop.in:
	* plugins/sort/sort.gedit-plugin.desktop.in:
	* plugins/spell/spell.gedit-plugin.desktop.in:
	
	Define custom icons.

2006-04-26  Benoît Dejean  <benoit@placenet.org>

	* gedit/gedit-languages-manager.c: (string_to_tag_style): Cleanup.
	Closes #172352.

2006-04-26  Paolo Maggi  <paolo@gnome.org>

	Fixed bug #336954 – Does not work with arabic dictionary
	
	* plugins/spell/gedit-spell-checker.c: add Arabic and Arabic Egypt 
	to the list of known languages.
	Patch by Mohammed Sameer <Uniball@gmx.net>

2006-04-25  Steve Frécinaux  <steve@istique.net>

	* gedit/gedit-panel.c: Remove some unused non-working code.

=== gedit 2.15.1 ===

2006-04-24  Paolo Borelli  <pborelli@katamail.com>

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.15.1 released

2006-04-24  Paolo Maggi  <paolo@gnome.org>

	Fixed bug #339597 - gedit Manual Page Bugs
	
	* data/gedit.1: fix the doubled occurences of the
	string 'gedit' in the manpage. Removed the section about piper since
	they are not supported anymore. Based on a patch by 
	Richard Laager <rlaager@users.sf.net>

2006-04-24  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/SnippetsLibrary.py:
	* plugins/snippets/snippets/SnippetsDialog.py:
	
	Fixed a bug where reverting a snippet results in the system snippet 
	disappearing. The fix involves setting the correct namespaced id when 
	the library of a snippet changes and putting the system snippet id in
	the loaded_ids list when reverted

2006-04-24  Steve Frécinaux  <steve@istique.net>

	* gedit/gedit-plugin-manager.c: sort the plugin list alphabetically.

2006-04-22  Jesse van den Kieboom  <jesse@icecrew.nl>
	
	Fixed bug #339396 - Snippets plugin could support GEDIT_CURRENT_WORD 
	variable expansion
	
	* plugins/snippets/snippets/SnippetController.py:
	* plugins/snippets/snippets/functions.py:
	
	Added the GEDIT_CURRENT_WORD variable and implemented the removal of 
	the current word from the buffer prior to the insertion of the 
	snippet	when the variable is used
	
2006-04-22  Jesse van den Kieboom  <jesse@icecrew.nl>

	Fixed bug #339398 - Bottom panel: size changes when resizing window, 
	size is not properly restored after restart
	
	* gedit/gedit-window.c: pack the main notebook in the paned with
	stretch = TRUE so the bottom panel size doesn't change when resizing
	the paned
	
2006-04-22  Jesse van den Kieboom  <jesse@icecrew.nl>
	
	Fixed bug #339397 - Accelerator snippets don't work when gedit is just 
	started
	
	* plugins/snippets/snippets/SnippetController.py:
	* plugins/snippets/snippets/functions.py:
	* plugins/snippets/snippets/SnippetsDialog.py:
	
	Loads the snippets when the a valid accelerator is activated in a 
	buffer while the snippets library wasn't yet loaded
	
2006-04-22  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/SnippetController.py: fix wrong index
	caused by the addition of an extra mark

2006-04-22  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/data/latex.xml: fixed the 
	'Wrap Selection in Command' snippet
	* plugins/snippets/snippets/SnippetsDialog.py: enable F1/F12 
	accelerators
	* plugins/snippets/snippets/SnippetController.py: use gtk.keysyms 
	instead of gtk.gdk.keyval_from_name
	
2006-04-22  Jesse van den Kieboom  <jesse@icecrew.nl>

	* snippets/Snippet.py: enabled shell and python placeholders. Added 
	python placeholder align function (can be used by python placeholders 
	to align/tabelize text). Cleaned the parsing code. Added an extra mark 
	on snippet insertion which is positioned at the end of the snippet
	* snippets/SnippetController.py: use timeout instead of idle to update
	mirrors (this enables semi instant-update if we want it). Apply 
	placeholder.leave() when the cursor leaves the placeholder
	* snippets/SnippetPlaceholders.py: fixed making string literals used 
	for inserting mirror text into shell and python placeholders. Added 
	separate mirror handler which handles mirrored items which apply after 
	leaving the dependent placeholder. Moved general expander placeholder 
	code to	PlaceholderExpand. Added private namespace for python 
	placeholders which enables python snippets to define global 
	variables/functions which can be used throughout the snippet.

2006-04-21  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/functions.py: add custom xml writer to have 
	nice formatted xml output (closes bug #328161). Remove obsolete outfile 
	class
	* plugins/snippets/snippets/SnippetsLibrary.py: use custom xml writer

2006-04-20  Paolo Maggi  <paolo@gnome.org>

	Fixed bug #338912 – Find Next/Previous wrap around even when 
	wrapping is off

	* gedit/gedit-commands-search.c (do_find_again): uses LastSearchData
	to remember if during the last search "Wrap Around" was on or off

2006-04-20  Paolo Borelli  <pborelli@katamail.com>

	* data/gedit.pc.in: remove eel leftover.

2006-04-20  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-document-loader.c:
	* gedit/gedit-document-saver.c:

	Fix includes to make it compile on DragonFly BSD.

2006-04-20  Paolo Maggi  <paolo@gnome.org>

	Fixes bug #338173 - Gedit show keyring store password on the window 
	title bar
	
	* gedit/gedit-utils.[ch] (gedit_utils_format_uri_for_display): new
	function similar to gnome_vfs_format_uri_for_display but that hides
	the password if needed
	
	* gedit/gedit-commands-file.c (load_file_list)
	(replace_read_only_file) (save_dialog_response_cb): use
	gedit_utils_format_uri_for_display instead of 
	gnome_vfs_format_uri_for_display

	* gedit/gedit-io-error-message-area.c
	(gedit_unrecoverable_loading_error_message_area_new)
	(gedit_unrecoverable_reverting_error_message_area_new)
	(gedit_conversion_error_while_loading_message_area_new)
	(gedit_conversion_error_while_saving_message_area_new)
	(gedit_file_already_open_warning_message_area_new)
	(gedit_externally_modified_saving_error_message_area_new)
	(gedit_no_backup_saving_error_message_area_new)
	(gedit_unrecoverable_saving_error_message_area_new): ditto

	* gedit/gedit-tab.c (show_saving_message_area): ditto
	
	* gedit/gedit-document.c (gedit_document_get_uri_for_display): hides
	the password if needed

	* gedit/gedit-window.c (recent_tooltip_func_gtk)
	(recent_tooltip_func_uim): uses gedit_utils_format_uri_for_display 
	instead of egg_recent_item_get_uri_for_display

2006-04-18  Steve Frécinaux  <steve@istique.net>

	* pixmaps/*.png: add Andreas Nilsson's puzzle icon (gedit-plugin.png).
	Get rid of gedit-icon.png and gedit-plugin-manager.png since they are
	not used anymore.

	* pixmaps/Makefile.am: install the logo into $prefix/share/gedit-2/logo
	and the plugin icon into $prefix/share/gedit-2/icons.

	* gedit/Makefile.am: define GEDIT_DATADIR and GEDIT_ICONDIR, and
	remove GNOME_ICONDIR which is not used anymore.
	
	* gedit/gedit-commands-help.c: update the logo path.

	* gedit/gedit.c: add GEDIT_ICONDIR to the icon theme lookup directories.

	* gedit/gedit-plugin-manager.c: use the gedit-plugin icon from icon
	theme in the plugin about box.

	* configure.ac: Remove unused definition of GEDIT_DATA_DIR in config.h.

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

	* configure.ac: Use IT_PROG_INTLTOOL instead of AC_PROG_INTLTOOL.

	* po/LINGUAS: Format following guidelines from
	http://live.gnome.org/GnomeGoals/PoLinguas.

2006-04-16  Vincent Untz  <vuntz@gnome.org>

	* gedit/gedit.c: (main): enhance help output
	Fix bug #335015

2006-04-12  Paolo Maggi  <paolo@gnome.org>

	* configure.ac: require intltool 0.34.90 and fix the way we manage
	ALL_LINGUAS

2006-04-10  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-commands-help.c: unref the logo pixbuf.
	Bug #336880, Brian Pepple.

2006-04-09  Steve Frécinaux  <steve@istique.net>

	* configure.ac:
	* po/LINGUAS:
	
	Move ALL_LANGUAGES content to the po/LINGUAS file, to make our
	translators' life easier.

2006-04-08  Paolo Borelli  <pborelli@katamail.com>

	* gedit/debug.[ch]:
	* gedit/gedit-document-loader.c:
	* gedit/gedit-document-saver.c:

	add some execution tracing annotations.

2006-04-06  Steve Frécinaux  <steve@istique.net>

	* plugins/snippets/data/c++.xml:
	* plugins/snippets/data/c.xml:
	
	Fix the gpl snippet.

2006-04-06  Steve Frécinaux  <steve@istique.net>

	* plugins/externaltools/tools/functions.py: fix checking for existing
	accelerators (modificators mismatch). Save the data file as UTF-8,
	avoiding text corruption (bug #335823)
	
	* plugins/externaltools/tools/manager.py: wrong tool was cited in error
	message when trying to bind a already used accelerator to another tool.
	Also fix two warnings.
	
2006-04-01  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/SnippetsLibrary.py: added removal from 
	container when user snippet gets removed	

2006-03-30  Steve Frécinaux  <steve@istique.net>

	* gedit/gedit-python-module.c: allow import of python modules with a '.'
	(bug 336403). Patch by Johan Dahlin.

2006-03-30  Steve Frécinaux  <steve@istique.net>

	* configure.ac:
	* plugins/pythonconsole/Makefile.am:
	* plugins/pythonconsole/pythonconsole/Makefile.am:
	* plugins/pythonconsole/pythonconsole/__init__.py:
	* plugins/pythonconsole/pythonconsole/console.py:
	* plugins/pythonconsole/pythonconsole.gedit-plugin.desktop.in:

	New interactive python console, more terminal-looking and less space
	consuming than the old one.

2006-03-25  Julio M. Merino Vidal  <jmmv@NetBSD.org>

	* configure.ac: Get rid of explicit libbonobo and bonobo-activation
	checks now that they are not directly required by gedit.

2006-03-23  Jesse van den Kieboom  <jesse@icecrew.nl>

	* gedit/dialogs/gedit-search-dialog.c: tweak focus handling some
	more. Bug 335169.

2006-03-23  Steve Frécinaux  <steve@istique.net>

	* gedit/gedit-plugin-manager.c: show a description of the plugins
	in the plugin manager window, the way Epiphany does. (bug 326917)
	Patch by Przemysław Grzegorczyk.

2006-03-23  Steve Frécinaux  <steve@istique.net>

	* plugins/externaltools/tools/functions.py: enable syntax
	highlighting on the file created by the tool if relevant.
	
2006-03-23  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/SnippetsLibrary.py: fixes the disappearance
	of a snippet when it is reverted and it is the last user snippet in 
	the language (bug #334305). The fix simply sets the library of
	the snippet back to the system library before removing the snippet from 
	the user library, thus not causing it to be removed itself when the user
	library (and all its snippets) is removed from the container.

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

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

2006-03-21  Steve Frécinaux  <steve@istique.net>

	* plugin/externaltools/tools/functions.py: fix bug 335302 (tools input
	methods). Patch by Juha Sahakangas.

2006-03-19  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/SnippetsLibrary.py: fix bug 334638
	patch by Arthur Peters.

2006-03-19  Christian Persch  <chpe@cvs.gnome.org>

	* gedit/gedit.c: (main): Call bind_textdomain_codeset before 
	using gettext. Bug #335119.

2006-03-19  Jérémy Ar Floc'h  <jeremy.lefloch@gmail.com>

	* po/br.po: Added Breton translation.
	* configure.ac: Added Breton translation.

2006-03-19  Steve Frécinaux  <steve@istique.net>

	* gedit/plugins/externaltools/tools/manager.py:
	* gedit/plugins/externaltools/tools/tools.glade: 
	
	Fake autoapply by updating the menu when the manager looses
	focus (bug 334963)

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

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

=== gedit 2.14.1 ===

2006-03-16  Jesse van den Kieboom  <jesse@icecrew.nl>

	* gedit/plugins/snippets/data/latex.xml: escape \.

2006-03-16  Jesse van den Kieboom  <jesse@icecrew.nl>

	* gedit/plugins/snippets/data/*: do not use ctrl+shift accels.

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

	* gedit/dialogs/gedit-close-confirmation-dialog.[ch]:
	* gedit/gedit-commands-file.c:
	* gedit/gedit-session.c:

	do not leak the list of selected documents.
	Noticed by Vincent Geddes (bug 333882).

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

	* gedit/gedit-commands-search.c: fix sanity check, typo spotted
	by Krzysiek Szczuka.

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

	* gedit/gedit.c: do not open a new display at every launch.

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

	* gedit/gedit-tab.c: fix a compiler warning.

=== gedit 2.14.0 ===

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

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.14.0 released

=== gedit 2.13.93 ===

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

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.13.93 released

2006-03-05  Jesse van den Kieboom  <jesse@icecrew.nl>

	* gedit/dialogs/gedit-search-dialog.c: grab focus on the entry.

2006-03-05  Steve Frécinaux  <steve@istique.net>

	* plugins/snippets/snippets/SnippetsDialog.py:
	* plugins/snippets/snippets/snippets.glade:
	* plugins/externaltools/tools/manager.py:
	
	Show the Plugin page from gedit help when clicking on the Help button
	of the Snippets and External Tools dialogs

2006-03-05  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/SnippetController.py:
	fixed Ctrl+space being stopped from handling even if snippets doesn't
	show a popup dialog (see bug #333326). Fixed handling of single
	non-alphanumeric tab triggers
	
	* plugins/snippets/snippets/SnippetsLibrary.py:
	fixed loading of duplicate system snippets (see bug #332384)
	
2006-03-04  Paolo Maggi  <paolo@gnome.org>

	* gedit/gedit-languages-manager.c (string_to_tag_style):
	fixed a mem leak (see bug #172352)

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

	* gedit/gedit-spinner.c: sync the code to latest epiphany code. Should
	fix multihead issues.

2006-03-03  Paolo Maggi  <paolo@gnome.org>

	Fixed bug #333129 – [Multihead] cannot launch multiple instances of 
	                    gedit on different heads
	
	* gedit/gedit-app.c (gedit_app_create_window): added screen argument
	(is_in_workspace): new function
	(_gedit_app_get_window_in_workspace): fixed to me multihead aware

	* gedit/gedit-app.h: updated gedit_app_create_window prototype

	* gedit/gedit-window.c (clone_window): update to call 
	gedit_app_create_window with a screen parameter

	* gedit/gedit.c (on_message_received) (send_bacon_message) (main):
	updated the client/server protocol used to support single application
	instances so that display name and screen number are communicated from
	client to server
	
	* bindings/python/gedit.defs:
	* bindings/python/gedit.override: updated binding for create_window(), 
	overridden so that the screen param is optional

2006-03-02  Steve Frécinaux  <steve@istique.net>

	* plugins/modelines/modelines.py: 
	
	- parse every modelines instead of just	the first one, and merge the
	  options (from kate specs and bugs when using python charset)
	- fix vim and kate modelines parsing
	- use python list comprehensions and other pythonic beautifiations

	* plugins/modelines/gedit-plugin.desktop.in: updated information

2006-02-28  Christian Kirbach  <Christian.Kirbach@student.uni-siegen.de>

	* gedit/gedit-metadata-manager.c:
	* gedit/gedit-prefs-manager.c:
	fix 27 gcc4 compiler warnings, mostly pointer targets differing in 
	signedness

2006-02-28  Steve Frécinaux  <steve@istique.net>

	* plugins/pythonconsole/pythonconsole.py: fix python console history 
	(bug #332861)

=== gedit 2.13.92 ===

2006-02-26  Paolo Borelli  <pborelli@katamail.com>

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.13.92 released

2006-02-26  Steve Frécinaux  <steve@istique.net>

	* plugins/externaltools/tools/capture.py:
	* plugins/externaltools/tools/manager.py:
	* plugins/externaltools/tools/functions.py:
	
	Fix a few python exceptions.

2006-02-24  Steve Frécinaux  <steve@istique.net>

	* gedit/gedit-ui.xml:
	* gedit/gedit-ui.h:
	* gedit/gedit-commands.h:
	* gedit/gedit-commands-search.c:

	Add a new menu entry: Search -> Clear highlight

2006-02-24  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-ui.h: s/Panel/Pane as per ui review.
	* gedit/gedit-command-view.c: make naming consistent with the above.
	* gedit/gedit-window.c: ditto.

2006-02-24  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-view.c: use gtk_accelerator_get_default_mod_mask
	instead of hardcoding SHIFT | CONTROL.

2006-02-24  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-ui.h: change Replace accel to ctrl+H as mandated, by the
	HIG.

2006-02-22  Steve Frécinaux  <steve@istique.net>

	* plugins/externaltools/tools/tools.glade:
	* plugins/externaltools/tools/manager.py:

	Use a GtkSourceView and text wrapping for command text view.
	Also fix bug #331114 by removing all the size requests.

2006-02-22  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/SnippetsLibrary.py: fixed get_snippets()
	to return a copy of the snippets data instead of the data itself.

2006-02-19  Paolo Borelli  <pborelli@katamail.com>

	* plugins/spell/gedit-spell-plugin.c: fix thinko (returning NULL
	iconditionally is not a good idea). Fixes bug 331811.

2006-02-19  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-command-file.c:
	* gedit/gedit-command-view.c:
	* gedit/gedit-tab.[ch]:

	fix compiler warnings.

2006-02-19  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-document.[ch]:
	* gedit/gedit-document-loader.[ch]:
	* gedit/gedit-tab.[ch]:
	* gedit/gedit-command-file.c:

	make the file load api return null in all the involved functions to
	reflect that it is async. Handle correctly valid uris that however
	return a null vfs-uri.

2006-02-19  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/SnippetsLibrary.py: inspect files as lazy as
	possible. Files will be scanned now on first request for snippet data from
	the plugin (either dialog or controller in the view)
	* plugins/snippets/snippets/__init__.py: remove old error message code,
	call SnippetsLibrary().set_dirs instead of SnippetsLibrary().set_data

2006-02-18  Paolo Maggi  <paolo@gnome.org>

	Lazy loading of taglists (improve gedit startup time when taglist plugin
	is active)
	
	* plugins/taglist/gedit-taglist-plugin-panel.c (expose_event_cb):
	If needed load taglists from files at the first expose and populate the
	combobox
	(gedit_taglist_plugin_panel_init): do not show_all the panel and do
	not populate the combox. Connect the expose-eveng signal.

	* plugins/taglist/gedit-taglist-plugin-parser.c (free_taglist): return
	immediately if taglist is NULL

	* plugins/taglist/gedit-taglist-plugin.c
	(gedit_taglist_plugin_init): does not load taglists

2006-02-18  Paolo Maggi  <paolo@gnome.org>

	* gedit/gedit-message-area.c (style_set): removed a debug message

	* gedit/gedit-view.c (reset_searched_text): ditto

2006-02-18  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/SnippetsLibrary.py: give more informative
	error messages when loading a file fails. Only add snippets once the
	whole file loaded ok.
	* plugins/snippets/snippets/SnippetPluginInstance.py: fix adding 
	SnippetControllers to views in the window when activating the snippets
	plugin
	* po/POTFILES.in: removed plugins/snippets/snippets/__init__.py as it
	no longer contains translatable strings
	
2006-02-14  Steve Frécinaux  <steve@istique.net>

	* plugins/externaltools/tools/tools.glade: use "Accelerator" instead
	of "Shortcut Key".

2006-02-14  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/SnippetsLibrary.py: check if
	the language has libraries.

=== gedit 2.13.91 ===

2006-02-13  Paolo Borelli  <pborelli@katamail.com>

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.13.91 released

2006-02-13  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/*: reworked to use new storage format, should fix
	some of the bugs and performance issues.

2006-02-13  Steve Frécinaux  <steve@istique.net>

	* plugins/externaltools/tools/capture.py: convert to unicode the
	what we get from the pipe.

2006-02-13  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-ui.xml: add placeholders in the File menu in case
	someone wants to give SaveCopy or New From Template a try.

2006-02-13  Steve Frécinaux  <steve@istique.net>

	* plugins/externaltools/tools/outputanel.py:
	* plugins/externaltools/tools/functions.py:
	
	replace blue status messages with italic/bold ones. Make some strings
	localizables. Revert the idle cursor on new documents when appropriated.

	* plugins/externaltools/tools/manager.py: reset accelerator entry when
	focus out and no accelerator was set.

2006-02-13  Paolo Borelli  <pborelli@katamail.com>

	* plugins/snippets/snippets.gedit-plugin.desktop.in: mark name for
	translation.

2006-02-12  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-tab.c: do not install autosave timeout when in CLOSING
	state. Fixes bug 330516.

2006-02-12  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-document.c: fix off by one bug in goto line.

2006-02-12  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-view.c: be robust to the case where the view is destroyed
	before the idle-scroll-to-line hack runs.
	* gedit/gedit-tab.c: check for NULLness before destroying a GTimer.

2006-02-12  Paolo Maggi  <paolo@gnome.org>

	* gedit/gedit-utils.c (gedit_utils_make_valid_utf8): replace
	unknown characters by the Unicode replacement character
	instead of '?', and don't append "(invalid encoding)".

2006-02-12  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-view.c: use gtk_widget_get_clipboard instead of
	gtk_clipboard_get.

2006-02-12  Steve Frécinaux <steve@istique.net>

	* gedit/gedit-window.[ch]: handle the visibility changes of panels, 
	toolbar and statusbar connecting to the show and hide signals.

	* gedit/gedit-commands-view.c:
	* gedit/gedit-session.c:

	adapt for above changes (use directly gtk_widget_show/hide instead of a
	custom function)

2006-02-12  Paolo Maggi  <paolo@gnome.org>

	* plugins/externaltools/tools/tools.glade: use GTK_SHADOW_IN for
	the scrolled window in the output panel

2006-02-08  James Livingston  <jrl@ids.org.au>

	* gedit/gedit-document.c: (gedit_document_replace_all): disable
	search highlighting during replace all, as it can be done at the end
	and can be slow.

2006-02-08  Paolo Borelli  <pborelli@katamail.com>

	* plugins/externaltools/tools/manager.py: properly clear the fields
	and handle sensitivity when adding and removing tools.

2006-02-04  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-commands-search.c: fix cut&paste error.

2006-02-04  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-document.c: disable bracket matching during replace_all,
	in order to avoid wasting time. Patch by James Livingston.

2006-02-01  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-document-saver.c:
	* gedit/gedit-window.c:
	* gedit/sexy-icon-entry.c:
	* plugins/docinfo/gedit-docinfo-plugin.c:

	fix some C99-style variable initializations, patch by Jens Granseuer.

2006-01-30  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-file-chooser-dialog.c: add some application/x-foo
	mime types to the "All text files" white list. Spotted Mathieu Pillard.

2006-01-31  Michael Terry  <mterry@cvs.gnome.org>

	* gedit/gedit.c:
	* configure.ac:

	Convert from popt to goption (bug 329375).

=== gedit 2.13.90 ===

2006-01-30  Paolo Borelli  <pborelli@katamail.com>

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.13.90 released

2006-01-30  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-python-module.c: be robust to python modules import
	failure.

2006-01-30  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-document-saver.c: remove the temporary backup in the
	fallback saving strategy if the user specified that he doesn't want
	backup files to be kept. (bug 329178)

2006-01-30  Paolo Borelli  <pborelli@katamail.com>

	* gedit/recent-files/*: sync with libegg.

2006-01-29  Steve Frécinaux  <steve@istique.net>

	* gedit/gedit-view.c: hide cursor when interactive search is active

2006-01-27  Paolo Borelli  <pborelli@katamail.com>

	* remove outdated files, patch by Stephane Loeuillet.

2006-01-21  Paolo Borelli  <pborelli@katamail.com>

	* data/gedit-desktop.in.in: add GNOME/GTK categories to the
	.desktop file. (bug 328013)

2006-01-21  Steve Frécinaux  <steve@istique.net>

	* plugins/externaltools/tools/functions.py: implement applicability
	(gray unusable tools, allow to run a command on unsaved document)
	* plugins/externaltools/tools/__init__.py: adapt for applicability;
	remove debug message
	* plugins/externaltools/tools/manager.py: correct a bug related to
	keyboard navigation; allow reordering the tools in the tree and in the
	main window menu; update the right pane title when a tool is renamed
	* plugins/externaltools/tools/tools.glade: name the hpaned
	* plugins/externaltools/tools/outputpanel.py: show the panel when a
	tool is ran

2006-01-21  Steve Frécinaux  <steve@istique.net>

	* plugins/snippets/snippets/SnippetsDialog.py: remove the gconf stuff

=== gedit 2.13.4 ===

2006-01-20  Paolo Borelli  <pborelli@katamail.com>

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.13.4 released

2006-01-20  Paolo Borelli  <pborelli@katamail.com>

	* configure.ac: depend on the brand new gnome-python-desktop
	instead of gnome-python-extras.

2006-01-20  Paolo Borelli  <pborelli@katamail.com>

	* gedit/bacon-message-connection.[ch]: update from libbacon, fixes
	crash on startup reported in bug 326247. Patch by Marco Barisione.

2006-01-20  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-document-saver.c: actually use the PRESERVE_BACKUP
	flag introduced with the autosave patch.

2006-01-20  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-window.c: fix warning introduced by my last patch.
	Do some cleanup while we are at it.

2006-01-19  Paolo Maggi  <paolo@gnome.org>

	* gedit/gedit-io-error-message-area.c
	(gedit_unrecoverable_loading_error_message_area_new)
	(gedit_unrecoverable_reverting_error_message_area_new)
	(gedit_conversion_error_while_loading_message_area_new)
	(gedit_conversion_error_while_saving_message_area_new)
	(gedit_externally_modified_saving_error_message_area_new)
	(gedit_no_backup_saving_error_message_area_new)
	(gedit_unrecoverable_saving_error_message_area_new): use
	g_markup_printf_escaped instead of g_strdup_printf when needed

	* gedit/gedit-tab.c (show_loading_message_area)
	(show_saving_message_area) (_gedit_tab_get_tooltips): ditto

	* gedit/gedit-utils.c (gedit_utils_get_glade_widgets): ditto

2006-01-19  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-window.c: properly restore the bottom panel size
	on startup.

2006-01-19  Paolo Maggi  <paolo@gnome.org>

	Re-added autosave feature. 
	Based on a patch by Sergio Villar Senin <svillar@igalia.com>
	
	* gedit/gedit-debug.[ch]: s/GEDIT_DEBUG_FILE/GEDIT_DEBUG_TAB

	* gedit/gedit-document.c (gedit_document_finalize)
	(gedit_document_init) (set_readonly) (gedit_document_get_encoding):
	remove autosave related functions (moved to gedit-tab.c)

	* gedit/gedit-document.h: remove autosave related functions (moved to 
	gedit-tab.h)

	* gedit/gedit-prefs-manager-app.c
	(gedit_prefs_manager_auto_save_changed): use new functions for autosave

	* gedit/gedit-tab.c (install_auto_save_timeout)
	(install_auto_save_timeout_if_needed) (remove_auto_save_timeout)
	(gedit_tab_get_property) (gedit_tab_set_property)
	(gedit_tab_finalize) (gedit_tab_class_init)
	(document_uri_notify_handler)
	(recoverable_loading_error_message_area_response)
	(unrecoverable_reverting_error_message_area_response)
	(show_loading_message_area) (show_saving_message_area)
	(message_area_set_progress) (document_loading) (document_loaded)
	(document_saving) (end_saving)
	(unrecoverable_saving_error_message_area_response)
	(no_backup_error_message_area_response)
	(externally_modified_error_message_area_response)
	(recoverable_saving_error_message_area_response) (document_saved)
	(gedit_tab_init) (_gedit_tab_load) (_gedit_tab_revert)
	(_gedit_tab_save) (gedit_tab_auto_save) (_gedit_tab_save_as)
	(gedit_tab_get_auto_save_enabled) (gedit_tab_set_auto_save_enabled)
	(gedit_tab_get_auto_save_interval)
	(gedit_tab_set_auto_save_interval): implemented autosave feature.
	It works in the following way:
	- the auto_save_timeout timeout is used to call gedit_document_auto_save
	  every X minutes
	- when a file is loaded or saved the timeout is removed (to avoid the 
	  case in which autosave is called while loading/saving)
	- when a file has been loaded/saved, if needed, the timeout is 
	  re-created and so gedit_document_auto_save will be called after X 
	  minutes again
	  
	* gedit/gedit-tab.h: new functions related to autosave

	* bindings/python/gedit.defs: updated

2006-01-19  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-panel.c: fix warning.
	* gedit-ui.h: make view bottom pane action sensitive.
	* gedit/gedit-window.c: handle view bottom pane sensitivity according
	to the presence of items in the bottom pane.

2006-01-19  Paolo Borelli  <pborelli@katamail.com>

	* bindings/python/gedit.defs: bind new panel function.
	* gedit/gedit-panel.[ch]: add item_added and item_removed signals and
	a function to get the number of items in a panel.
	* gedit/gedit-window.c: hide the bottom panel when all the items are
	removed.

2006-01-18  Steve Frécinaux  <steve@istique.net>

	* plugins/externaltools/tools/capture.py: corrected freeze bug when 
	an input was specified. End signal is sent *after* the other signals.

	* plugins/externaltools/tools/functions.py: corrected syntax errors.
	System-wide env vars are passed to the child process (allow to launch
	X apps). new GEDIT_DOCUMENTS_(PATH|URI) and GEDIT_CURRENT_DOCUMENT_NAME
	environment variables. Ensure "replace" output options effectively
	replace previous content. User feedback: wait cursor and locked view.
	Load an empty tree if no file found (instead of None)

	* plugin/externaltools/tools/stock-tools.xml: Update with new sample
	tools using the new features.

2006-01-18  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit.c (main): call gnome_accelerators_sync before
	exit to save the custom accels.

2006-01-17  Adam Weinberger  <adamw@gnome.org>

	* plugins/snippets/snippets/__init__.py: Spelling
	  and grammar tweak. Fixes bug #57553.

=== gedit 2.13.3 ===

2006-01-16  Jesse van den Kieboom  <jesse@icecrew.nl>

	* gedit/gedit-python-module.c: added gettext support
	* po/POTFILES.in: added snippets translatable files
	* plugins/snippets/*: gettext'ed strings
	* plugins/snippets/snippets/snippets.glade: changed title to 
	  Snippets Manager
	* plugins/snippets/snippets/__init__.py:
	  plugins/snippets/snippets/SnippetsDialog.py:
	  plugins/snippets/snippets/SnippetPluginInstance.py:
	  
	  added support having the same accelerator for multiple snippets
	
2006-01-16  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-document-loader.c: use new vfs api to guess the mime
	directly from the mmapped data.

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

	* configure.ac: bump gnome-vfs requirements
	* gedit/gedit-document.c: use the new vfs api to guess the mime type
	from a filename, so that gedit foo.c uses the right highlighting.

2006-01-16  Steve Frécinaux  <nud@apinc.org>

	plugins/externaltools/*: new plugin to execute shell commands.

2006-01-15  Paolo Maggi  <paolo@gnome.org>

	* gedit/gedit-document-loader.c (load_local_file_real): removed
	a debug message

	* gedit/gedit-utils.c (gedit_utils_uri_exists): use DEBUG_UTILS
	instead of DEBUG_FILE

2006-01-14  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/snippets/Snippet.py:
	* plugins/snippets/snippets/functions.py: apply autoindentation at 
	all cases

2006-01-14  Jesse van den Kieboom  <jesse@icecrew.nl>

	* plugins/snippets/*: new snippets plugin
	
2006-01-13  Frank Arnold  <farnold@cvs.gnome.org>

	* gedit/gedit-io-error-message-area.c:
	* gedit/gedit-tab.c:
	* gedit/gedit-utils.c: Moved markup out of gettext messages.

=== gedit 2.13.2 ===

2006-01-11  Paolo Borelli  <pborelli@katamail.com>

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.13.2 released

2006-01-09  Paolo Borelli  <pborelli@katamail.com>

	* configure.ac: bump gnome-python-extras requirement to 2.12.0 since
	we need gtksourceview.defs installed.

2006-01-09  Paolo Borelli  <pborelli@katamail.com>

	* gedit/Makefile.am:
	* gedit/gedittextregion.[ch]:
	* gedit/gtktextregion.[ch]:
	* gedit/gedit-document.c:
	* gedit/update-gedittextregion.sh:

	move the local copy of textregion to gedittextregion to avoid
	symbols conflicts with the sourceview copy. Add a simple shell
	script to automate updating.

2006-01-09  Nickolay V. Shmyrev <nshmyrev@yandex.ru>

	* gedit/gedit-metadata-manager.c: (parseItem), (save_item):
	use long int when working with time_t. Fix for the bug
	#326248.

2006-01-09  Paolo Maggi  <paolo@gnome.org>

	Patch by Steve Frécinaux  <nud@apinc.org>

	* gedit/gedit-panel.c (gedit_panel_add_item): crop the image to
	GTK_ICON_SIZE_MENU size. 

	* plugins/pythonconsole/pythonconsole.py: use GTK_ICON_SIZE_MENU size
	for the icon

2006-01-08  Paolo Maggi  <paolo@gnome.org>

	* gedit/sexy-icon-entry.c:
	* gedit/sexy-icon-entry.h: updated from libsexy SVN repository

2006-01-08  Paolo Maggi  <paolo@gnome.org>

	* gedit/gedit-python-module.c (gedit_python_module_init_python):
	does not allow python to manage SIGINT signal: this is needed to avoid
	the crash reported on bug #326191 (Crash when pressing Ctrl+C 
	from terminal) 

2006-01-07  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-plugins-engine.c: make sure the garbage collector
	runs before we unload C plugins. Fix crash on exit.

2006-01-07  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-document.c: fix typos.
	* gedit/gtktextregion.[ch]: ditto.

2006-01-06  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-plugins-engine.[ch]
	* gedit/gedit-python-module.[ch]
	* gedit/gedit-window.c:

	Run the python Garbage Collector when closing a window or a tab
	in order to force python to release references to our objects.

2006-01-06  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-plugin.[ch]:
	* gedit/gedit-python-plugin.c:

	implement configure_dialog support for python plugins and make
	sure to chain up to the default gedit-plugin methods if a python
	plugin doesn't override a method.
	Patch from Jesse Van Den Kieboom and Raphael Slinckx.

2006-01-05  Paolo Maggi  <paolo@gnome.org>

	* gedit/gedit-view.c (gedit_view_class_init): added reset_searched_text
	signal and keybinding
	(reset_searched_text): new function

	* gedit/gedit-view.h: added  reset_searched_text signal

2006-01-05  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-document.c (compute_num_of_lines): make utf8-aware.

2005-01-05  Steve Frécinaux  <nud@apinc.org>
 
 	* gedit/gedit-view.c : larger timeout for the search box, scroll back
 	only on <escape> (cf. Bug #105196) ; hide the search box when the window
 	looses focus.
 
2006-01-05  Paolo Maggi  <paolo@gnome.org>

	Implemented search highligthing: all the occurences of the searched
	text are highlighted
	
	* data/gedit.schemas.in: added editor/search_highlighting/enable key

	* gedit/Makefile.am: compile gtktextregion.[ch]
	
	* gedit/gtktextregion.[ch]: new files

	* gedit/gedit-document.c (gedit_document_finalize): destroy 
	to_search_region if needed
	(gedit_document_get_property): get the enable-search-highlighting 
	property
	(gedit_document_set_property): new function
	(gedit_document_class_init): added enable-search-highlighting property
	and search_highlight_updated signal
	(gedit_document_init): initialize enable-search-highlighting property
	and connect "insert-text" and "delete-rande" signals
	(compute_num_of_lines): new function
	(gedit_document_set_search_text): update search hl if needed
	(gedit_document_get_can_search_again): fixed to manage the case 
	in which search_text is empty
	(search_region): new funtion
	(to_search_region_range): ditto
	(_gedit_document_search_region): ditto
	(insert_text_cb): ditto
	(delete_range_cb): ditto
	(gedit_document_set_enable_search_highlighting): ditto
	(gedit_document_get_enable_search_highlighting): ditto

	* gedit/gedit-document.h: added search_highlight_updated signal and
	declare gedit_document_[set|get]_enable_search_highlighting and 
	_gedit_document_search_region functions

	* gedit/gedit-prefs-manager-app.c (gedit_prefs_manager_app_init)
	(gedit_prefs_manager_syntax_hl_enable_changed)
	(gedit_prefs_manager_search_hl_enable_changed): added support for 
	editor/search_highlighting/enable key

	* gedit/gedit-prefs-manager.[ch]: added support for 
	editor/search_highlighting/enable key

	* gedit/gedit-view.c (gedit_view_class_init): set expose_event default
	handler
	(gedit_view_new): connect to "search_highlight_updated" signal
	(gedit_view_expose)(search_highlight_updated_cb): new functions

2006-01-03  Paolo Maggi  <paolo@gnome.org>

	Fixes drag&drop of files from file-roller
	
	* gedit/gedit-utils.c (gedit_utils_is_valid_uri): fixed a compiler 
	warning
	(gedit_utils_make_canonical_uri_from_shell_arg): new function

	* gedit/gedit-utils.h: new function 
	gedit_utils_make_canonical_uri_from_shell_arg

	* gedit/gedit-window.c (drag_data_received_cb): use the new
	gedit_utils_make_canonical_uri_from_shell_arg

	* gedit/gedit.c (gedit_get_command_line_data): use the new
	gedit_utils_make_canonical_uri_from_shell_arg function

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

	* gedit/gedit-app.c: fix startup race condition on active_window.
	* gedit/gedit-utils.c: sanity check arguments.

2006-01-03  Paolo Maggi  <paolo@gnome.org>

	* data/gedit.schemas.in: added restore_cursor_position key

	* gedit/gedit-prefs-manager.c
	(gedit_prefs_manager_get_restore_cursor_position): new function

	* gedit/gedit-prefs-manager.h: add restore_cursor_position key and
	gedit_prefs_manager_get_restore_cursor_position function

	* gedit/gedit-document.c (document_loader_loaded): restore the previous
	cursor position if gedit_prefs_manager_get_restore_cursor_position 
	return TRUE

2006-01-03  Paolo Maggi  <paolo@gnome.org>

	* gedit/gedit-commands-search.c (phrase_found): modified the string
	shown in the statusbar for the case occurrences == 1

2006-01-03  Paolo Maggi  <paolo@gnome.org>

	Fixes Replace All button sensitivity in the Find/Replace dialog.
	
	* gedit/dialogs/gedit-search-dialog.c (search_options_changed): function
	removed
	(gedit_search_dialog_init): do not connect search_options_changed
	(gedit_search_dialog_set_search_text): set "Replace All" button 
	sensitivity

	* gedit/gedit-commands-search.c (do_find) (do_replace_all): not set
	"Replace All" button sensitivity
	
=== gedit 2.13.1 ===

2006-01-02  Paolo Borelli  <pborelli@katamail.com>

	* configure.ac:
	* README:
	* NEWS:

	gedit 2.13.1 released

2006-01-02  Paolo Borelli  <pborelli@katamail.com>

	* plugins/spell/gedit-spell-plugin.c: remove bogus assertion.

2006-01-02  Paolo Maggi  <paolo@gnome.org>

	New Modelines plugin by Steve Frécinaux  <nud@apinc.org>

	* configure.ac: added plugins/modelines/Makefile to AC_OUTPUT

	* data/gedit.schemas.in: added modelines to the list of default plugins

	* plugins/Makefile.am: added modelines to [DIST_]SUBDIRS

	* plugins/modelines/Makefile.am:
	* plugins/modelines/modelines.gedit-plugin.desktop.in:
	* plugins/modelines/modelines.py: new modelines plugin

2006-01-02  Paolo Borelli  <pborelli@katamail.com>

	* gedit/dialogs/gedit-search-dialog.c: make sure Replace All
	is sensitive when search options become less strict (#325377)

2006-01-02  Steve Frécinaux  <nud@apinc.org>

	* gedit/gedit-panel.[ch]: reworked layout of panels, given their
	orientation:
	 - add "orientation" construction property
	 - remove tab labels from left panel, show them for bottom one
	 - ellipsize left panel title
 	 - remove title bar from bottom panel
 	 - placeholder for future panel toolbars
	to get panel orientation
	
	* gedit/gedit-window.c: adapt for the above changes
	
	* bindings/python/gedit.defs: add GeditPanel.get_orientation()

2005-12-30  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-ui.xml: add a placeholder in the tab popup.

2005-12-29  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-utils.[ch]: add some string escaping utils.
	
	* gedit/gedit-window.c: properly escape action names and labels.

2005-12-29  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit.c: make sure window is realized before setting the
	startup timestamp.

2005-12-28  Steve Frécinaux  <nudrema@gwash.com>

	* plugins/indent/gedit-indent-plugin.c: retrieve tab settings
	directly from GtkSourceView instead of using the prefs-manager.

2005-12-18  Michael Terry  <mterry@cvs.gnome.org>

	* .cvsignore:
	* Makefile.am:
	* configure.ac:

	Convert help system to gnome-doc-utils (bug #318486).
	Further changes documented in help/ChangeLog.

2005-12-15  Paolo Borelli  <pborelli@katamail.com>

	* plugins/spell/gedit-spell-plugin.c: add ellipsis to the
	"Set Language" menu item, as per HIG. (bug #314964)

2005-12-14  Paolo Borelli  <pborelli@katamail.com>

	* gedit/gedit-ui.h:
	* gedit/gedit-widow-private.h:
	* gedit/gedit-widow.c:

	Move Quit and View menitems to separate groups so that they
	are sensitive even when there are no tabs. (bug #324078)

2005-12-12  Paolo Borelli  <pborelli@katamail.com>

	* all files: too many changes to list, this is the merge of
	the new_mdi cvs branch, featuring almost a rewrite of the whole
	gedit codebase.
	Here is an excerpt from Paolo Maggi's mail describing the merge
	to the developement list:

	The "new_mdi" branch has been used for a substantial rework of
	the gedit internals with the goal of fixing various longstanding
	issues and improving the quality of the whole codebase.

	The main issues we wanted to fix were the ones related to the
	way gedit handled its tabbed interface (see bug #131953), but
	then a lot of other improvements have been put in.

	In particular:
	- GtkUIManager is now used for menus and toolbar instead of
	  libbonoboui
	- A side panel and a bottom panel have been added
	- A new gobject-based plugin system has been implemented
	- Plugins can now be written in Python
	- Reading and writing of files are now handled in an
	  asynchronous way (so the user interface never blocks)
	- Local files are read using mmap (when possible)
	- Incremental search is supported (use Ctrl+K)
	- A lot of usability improvements with some new UI experiment
	  are featured
	- Startup time and performaces have been improved
	- Remote file saving is supported (for a limited configurable
	  set of VFS methods)

2005-12-12  Paolo Borelli  <pborelli@katamail.com>

	* ChangeLog: fork off a new ChangeLog for the big merge of the
	new_mdi branch.