summaryrefslogtreecommitdiff
path: root/docs/reference/ChangeLog
blob: 5e61f5aa68814d3f034bc7c6a03c1300abb9d1ff (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
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
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2007-12-24  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-pangocairocairocontext.xml: fix base class name, add a
	constructor section and fix the description section.

2007-12-16  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkbox.xml: remove a duplicate in gtk.Box properties.

2007-12-16  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkwindow.xml: fix a small namespace bug.

2007-12-15  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-pangolayout.xml: mention pango.WRAP_WORD_CHAR, fix bug #400540

2007-10-29  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gdkwindow.xml: add composited window example.

2007-10-29  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtknotebook.xml: describe buildable interface. Fix #364496
	gtk.notebook_set_window_creation_hook not documented.

2007-10-25  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* Spread Buildable interface in (almost) all widgets.

2007-10-21  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gdk-functions.xml:
	* pygtk-gdkwindow.xml:
	* pygtk-gdkevent.xml:
	* pygtk-gdkkeymap.xml:
	* pygtk-gdkdisplay.xml:
	* pygtk-gdkcolor.xml: Updated with 2.12 API.

2007-10-18  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtktextview.xml: fix bug #389422.

2007-10-18  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtktreemodel.xml: fix bug #375584.

2007-10-18  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkwidget.xml: fix bug #365236.

2007-10-18  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkactiongroup.xml: fix bug #421575.

2007-10-18  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkwidget.xml: Updated with 2.12 API, fix bug #360679.
	* pygtk-gtkwindow.xml: Updated with 2.12 API.

2007-10-09  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtktreeview.xml:
	* pygtk-gtktreeviewcolumn.xml:
	* pygtk-gtktexttag.xml:
	* pygtk-gtktoolitem.xml:
	* pygtk-gtktextbuffer.xml: Updated with 2.12 API.

2007-10-07  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkstatusicon.xml:
	* pygtk-gtksettings.xml:
	* pygtk-gtkscrolledwindow.xml: Updated with 2.12 API.

2007-09-31  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkrange.xml: Updated with 2.12 API.

2007-09-30  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkpagesetup.xml: fixed a wrong parameter name and definition.
	* pygtk-gtkprintsettings.xml:
	* pygtk-gtkplug.xml:
	* pygtk-gtkprinter.xml: Updated with 2.12 API.

2007-09-29  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkpagesetup.xml:
	* pygtk-gtknotebook.xml:
	* pygtk-gtkmenushell.xml: Updated with 2.12 API.

2007-08-05  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkmenutoolbutton.xml: Update with 2.12 API.

2007-08-05  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtktooltip.xml:
	* pygtk-gtk-classes.xml: Add new gtk.Tooltip() docs.

2007-08-05  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkvolumebutton.xml:
	* pygtk-gtk-classes.xml: Add new gtk.VolumeButton() docs.

2007-08-04  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkiconview.xml: Update with 2.12 API.

2007-07-30  Paul Pogonyshev  <pogonyshev@gmx.net>

	* pygtk-pygtkgenerictreemodel.xml: Document new create_tree_iter()
	and get_user_data().

2007-07-29  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkicontheme.xml: Update with 2.12 API.

2007-07-28  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkmenuitem.xml
	* pygtk-gtkcombobox.xml
	* pygtk-gtkentrycompletion.xml
	* pygtk-gtkentry.xml
	* pygtk-gtkcellrendererprogress.xml: Update with 2.12 API.

2007-07-25  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkcelllayout.xml: Update with 2.12 API.

2007-07-25  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkaction.xml: Update with 2.12 API.

2007-07-25  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkaboutdialog.xml: Update with 2.12 API.

2007-07-25  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkscalebutton.xml:
	* pygtk-gtk-classes.xml: Add new gtk.ScaleButton() docs.

2007-07-24  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkbuildable.xml:
	* pygtk-gtk-classes.xml: Add new gtk.Buildable() docs.

	* pygtk-gtkbuilder.xml: Add note "new 2.12 method"

2007-07-22  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkbuilder.xml:
	* pygtk-gtk-classes.xml: Add new gtk.Builder() docs.

2007-07-13  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtktreeview.xml:
	(gtk_tree_view_convert_widget_to_bin_window_coords)
	(gtk_tree_view_convert_widget_to_tree_coords)
	(gtk_tree_view_convert_tree_to_bin_window_coords)
	(gtk_tree_view_convert_tree_to_widget_coords)
	(gtk_tree_view_convert_bin_window_to_tree_coords)
	(gtk_tree_view_convert_bin_window_to_widget_coords): Add.

2007-07-12  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkcontainer.xml: Make a separate section for class methods,
	fix child property as write only. Fix bug #370936

2007-07-12  Gian Mario Tagliaretti  <gianmt@gnome.org>

	* pygtk-gtkimage.xml:
	(gtk_image_new_from_file)
	(gtk_image_new_from_pixbuf)
	(gtk_image_new_from_pixmap)
	(gtk_image_new_from_image): Add, Fix #371293 

2007-03-09  Rafael Villar Burke  <pachi@rvburke.com>

	* pygtk-gtklabel.xml: Fix #41645 s/get_user_markup/get_use_markup/

2007-02-27  Rafael Villar Burke  <pachi@rvburke.com>

	* pygtk-gdkpixbuf.xml: Add missing flip method documentation
		Fix a typo s/roatate/rotate/

2007-02-15  Rafael Villar Burke  <pachi@rvburke.com>

	* pygtk2-gtkprintoperation.xml: Change variable name print with print_op
	as print is a reserved word in python

2006-10-11  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml: Remove Author info.

	* pygtk-introduction.xml: Remove Copyright and License section.

2006-08-22  Johan Dahlin  <jdahlin@async.com.br>

	* pygtk-gtkcontainer.xml (linkend): forall, spotted by 
	Tim Terlegård
	
2006-08-11  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkaction.xml (set_menu_item_type, set_tool_item_type): Add.

	* pygtk-gtkwidget.xml (get_activate_signal): Add.

2006-08-06  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkwidget.xml
	* pygtk-gtkcontainer.xml: Replace gobject-*-constants xrefs with
	link tags.

2006-08-03  John Finlay  <finlay@moeraki.com>

	* pygtk-gtklinkbutton.xml: Remove extra Returns:
	* pygtk-gtkstatusicon.xml: Add missing "
	Fixes #349862 (Nikos Kouremenos)

2006-07-19  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml: Add version and builddate entities.

	* pygtk-introduction.xml: Update.

2006-07-18  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreeselection.xml (set_select_function): Update description
	for 2.10 changes to enable full callback args.

	* pygtk-gtkmenu.xml (popup): Note func signature prior to 2.10.

2006-07-14  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkaccelmap.xml: Add.

	* pygtk-gtkaccelgroup.xml: Move accel map functions to
	pygtk-gtkaccelmap.xml

	* pygtk-gtk-classes.xml: Add pygtk-gtkaccelmap.xml

2006-07-12  John Finlay  <finlay@moeraki.com>

	* pygtk-unixprint-classes.xml: Add pygtk-unixprint-functions.xml.

	* pygtk-unixprint-functions.xml: Add gtk.unixprint.enumerate_printers.

	* pygtk-gtkprinter.xml (accepts_ps, accepts_pdf): Add.

2006-07-07  John Finlay  <finlay@moeraki.com>

	* pygtk-pangofontfamily.xml (is_monospace): Fix Returns description.
	#340108 (Wouter Bolsterlee)

	* pygtk-gtk-constants.xml (Selection Mode Constants): Add link
	to TreeSelection. #329898 (Nikos Kouremenos)

	* pygtk-gtkfilechooser.xml (FileNamesAndEncodings): Add. #327888
	(Nikos Kouremenos)

	* pygtk-gtkexpander.xml ("activate"): Add note and link about using
	"notify:expanded" instead of activate. #323403 (Murray Cummings)

	* pygtk-gtkspinbutton.xml (spin): increment defaults to 1.0

	* pygtk-pango-functions.xml 
	* pygtk-pangoattrlist.xml (pango.parse_markup): accel_marker defaults
	to u'\x00 - fix description.

	* pygtk-pangocairo-functions.xml: Fix function names and reorg.

	* pygtk-gtkcellrenderertoggle.xml ("toggled"): path is a string.
	Fixes #334473 (Alexander Konovalenko)

	======== 2.9.0 ============
2006-07-06  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml: Version 2.9.0.

	* pygtk-introduction.xml: Update for PyGTK 2.10

	* pygtk-pangofont.xml (get_font_map): Add.

	* pygtk-pangofontdescription.xml (get_size_is_absolute)
	(set_absolute_size): Add.

	* pygtk-pangoattribute.xml: Add descriptions of new text attributes.

	* pygtk-atk-constants.xml: Add Text constants.

	* pygtk-atkrectangle.xml: Add.

	* pygtk-atk-classes.xml: Add pygtk-atkrectangle.

	* pygtk-atkregistry.xml: 
	* pygtk-atkrelation.xml: 
	* pygtk-atkrelationset.xml: 
	* pygtk-atkselection.xml: 
	* pygtk-atkstateset.xml: 
	* pygtk-atkstreamablecontent.xml: 
	* pygtk-atktable.xml: 
	* pygtk-atktext.xml: 
	* pygtk-atkvalue.xml: Update to PyGTK API.

	* pygtk-atkutil.xml: Remove.

2006-06-27  John Finlay  <finlay@moeraki.com>

	* Add atk docs and new gtk 2.10 class docs.

	* Add links to ancestor properties and signals. Add new GTK 2.10
	classes, methods, functions and constants. Remove unused file
	pygtk-classes.xml

2006-06-22  John Finlay  <finlay@moeraki.com>

	* pygtk-gladexml.xml (set_custom_widget_callbacks): Fix external link.
	(signal_autoconnect): Fix typo.

2006-06-10  John Finlay  <finlay@moeraki.com>

	* pygtk-gobject-constants.xml (Type Constants): Add TYPE_PYOBJECT.

2006-06-06  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkprintjob.xml: Add.

	* pygtk-gtkprintunixdialog.xml: Add.

	* pygtk-unixprint-constants.xml: Add.

	* pygtk-gtkprinter.xml: Add.

	* pygtk-gtkpagesetupunixdialog.xml: Add.

	* pygtk-unixprint-classes.xml: Add.

	* pygtk2-ref.xml: Add pygtk-unixprint-classes.xml

2006-06-05  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkpapersize.xml: Add link to Paper Name constants.

	* pygtk-gtk-constants.xml: Add Paper Name constants.

2006-06-04  John Finlay  <finlay@moeraki.com>

	* pygtk-gtk-functions.xml: Add PageSize Functions

	* pygtk-gtk-classes.xml: Add pygtk-gtkpapersize.xml.

	* pygtk-gtkpapersize.xml: Add.

	* pygtk-gtk-constants.xml: Add Page Orientation and Unit constants.

	* pygtk-gtk-classes.xml: Add pygtk-gtkpagesetup.xml.

	* pygtk-gtkpagesetup.xml: Add.

	* pygtk-gtknotebook.xml (set_tab_detachable, get_tab_detachable)
	(set_tab_reorderable, get_tab_reorderable, get_group_id)
	(set_group_id, "page-reordered", "page-added", "page-removed")
	("tab-overlap", "tab-curvature", "arrow-spacing"): Add.

	* pygtk-gtkmessagedialog.xml (set_image, "image", "secondary-text")
	("secondary-use-markup", "text", "use-markup"): Add.

	* pygtk-gtk-functions.xml (LinkButton Functions): Add.

	* pygtk-gtk-classes.xml: Add pygtk-gtklinkbutton.xml.

	* pygtk-gtklinkbutton.xml: Add.

	* pygtk-gtkfilechooserbutton.xml (get_focus_on_click)
	(set_focus_on_click, "focus-on-click"): Add.

	* pygtk-gtkwidget.xml (input_shape_combine_mask, is_composited)
	(drag_dest_get_track_motion, drag_dest_set_track_motion)
	(get_action): Add.

	* pygtk-gtk-classes.xml: Add pygtk-gtkcellrendererspin.xml

	* pygtk-gtkcellrendererspin.xml: Add.

	* pygtk-gtkcombobox.xml (set_title, get_title): Add.

	* pygtk-gtkclipboard.xml (wait_is_rich_text_available)
	(wait_for_rich_text, request_rich_text): Add.

2006-06-03  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkentry.xml ("inner-border", "truncate-multiline")
	(set_inner_border, get_inner_border): Add.

	* pygtk-gtkcombobox.xml ("popup-shown", "tearoff-title"): Add.

	* pygtk-gtkcellrenderertext.xml ("alignment"): Add.

	* pygtk-gtkbutton.xml ("inner-border", "displace-focus")
	("image-position"): Add new property descriptions.

	* pygtk-gtkcellrendereraccel.xml: Add.

	* pygtk-gtk-classes.xml: Add pygtk-gtkcellrendereraccel.xml

	* pygtk-gtk-constants.xml (GTK CellRendererAccel Mode Constants): Add.

	* pygtk-gtkassistant.xml: Add.

	* pygtk-gtk-classes.xml: Add pygtk-gtkassistant.xml

2006-06-01  John Finlay  <finlay@moeraki.com>

	* pygtk-gtk-constants.xml (Assistant Page Type Constants): Add.

	* pygtk-gdkevent.xml (Attributes): Add common attributes into all
	Event type descriptions, Fixes #339825 (Johan Dahlin).
	Add new 2.8 attributes. Many small improvements.

	* pygtk-gdk-constants.xml: Add Owner Change constants.

2006-05-31  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkdrawable.xml (draw_layout_line): Add.

	* pygtk-gtkwidget.xml (region_intersect): Add.

	* pygtk-gdkcairocontext.xml (set_source_pixmap, region)
	(rectangle): Add.

	* pygtk-gdk-functions.xml (gtk.gdk.region_rectangle): Add link.

	* pygtk-gdkgc.xml (set_clip_region): 

	* pygtk-gdkwindow.xml (get_update_area, invalidate_region)
	(shape_combine_region, input_shape_combine_mask)
	(input_shape_combine_region): Add.

	* pygtk-gdk-classes.xml: Add pygtk-gdk-region.xml.

	* pygtk-gdkregion.xml: Add.

	* pygtk-gdk-constants.xml (overlap-type-constants): Revise description.

2006-05-29  John Finlay  <finlay@moeraki.com>

	* pygtk-gdk-functions.xml (gtk.gdk.event_handler_set): Add link.
	(gtk.gdk.set_show_events, gtk.gdk.event_get_graphics_expose) Fix
	function signatures.

2006-05-26  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreeselection.xml (set_select_function): Fix callback
	signature.

	* pygtk-gdk-constants.xml (parent-relative-constant): Add.

	* pygtk-gtkstyle.xml (Attributes): Array attribute items are
	read-write.

	* pygtk-gtkiconview.xml (set_cursor): Bring description in line with
	behavior. Fixes #343039 (Ross Burton)

2006-05-25  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkcombobox.xml (get_active): Extend description for TreeStore
	model type active items. Fixes #342555 (Tuomas Vesterinen)

2006-05-02  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkevent.xml (gtk.gdk.event_handler_set): Add description.

	* pygtk-gtk-functions.xml (gtk.init_check)
	(add_log_handlers, remove_log_handlers): Add function descriptions.

	* pygtk-gtktreesortable.xml (set_default_sort_func): Add info that
	sort_func param can be None.

	* pygtk-gtktreeviewcolumn.xml (cell_get_size): Add cell_area param.

	* pygtk-gdk-constants.xml (Pixbuf Rotation Constants): Add description.

	* pygtk-gdkpixbuf.xml (rotate_simple): Add method description

2006-05-01  John Finlay  <finlay@moeraki.com>

	* pygtk-pangolayoutline.xml (index_to_x): Fix param name.

	* pygtk-gtkcontainer.xml (list_child_properties)
	(install_child_property): Add method descriptions.
	(gtk.container_class_install_child_property)
	(gtk.container_class_list_child_properties): Add deprecation warning.

	* pygtk-gdkdrawable.xml (draw_indexed_image): Add method description.

	* pygtk-pangocairo-functions.xml (context_set_font_options)
	(context_get_font_options): Add function descriptions.

	* pygtk-gdkscreen.xml (get_rgba_colormap, gdk_screen_get_rgba_visual):
	Add these new method descriptions.

	* pygtk-gdkdragcontext.xml (set_icon_name): Add.

	* pygtk-gdkwindow.xml (set_urgency_hint): Add.

	* pygtk-gtktreeview.xml (get_visible_range): Add.

	* pygtk-gtkwidget.xml (drag_source_add_image_targets)
	(drag_source_add_uri_targets, drag_source_set_icon_name): Add.

	* pygtk-gtkdialog.xml (gtk.alternative_dialog_button_order): Add.

	* pygtk-gtk-functions.xml (gtk.alternative_dialog_button_order):
	Add.

	* pygtk-gtkclipboard.xml (request_image, wait_for_image, set_image)
	(wait_is_image_available): Add.

2005-11-29  Johan Dahlin  <jdahlin@async.com.br>

	* pygtk-gtkimage.xml: Remove in arguments from GtkImage getters TOC, 
	they're a tuple return value in PyGTK.

2005-10-22  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkdialog.xml (gtk.Dialog): Fix typo.
	Fixes #319498 (Nikos Kouremenos)

2005-10-17  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkcolorbutton.xml (gtk.ColorButton): Add initializer.

2005-10-14  John Finlay  <finlay@moeraki.com>

	* pygtk-gdk-functions.xml (gtk.gdk.pointer_grab): Fix typo.
	Fixes #318857 (Nikos Kouremenos)

2005-10-07  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkevent.xml (Constructor, copy, event_get, event_peek): 
	Remove references to free() method. Fixes #318228 (Nikos Kouremenos)

	* pygtk2-ref.xml: Change date and bump version number.

2005-09-20  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkmenu.xml (attach_to_menu): Add signatures of detach and
	menu position callbacks. Fixes #316780 (Nikos Kouremenos)

	======== 2.8.1 ============
2005-09-17  John Finlay  <finlay@moeraki.com>

	* pygtk-gobject-functions.xml (spawn_async, child_watch_add)
	(main_depth, get_current_time) : Add descriptions.

	* pygtk-gobject-constants.xml (Spawn Flag Constants): Add.

	* pygtk-gtkobject.xml (gtk.binding_entry_remove): Add.
	* pygtk-gtk-functions.xml (gtk.binding_entry_add_signal):
	Move function description to gtk.Object class description. Fix
	varname errors (#316022 Nikos Kouremenos).

	* pygtk2-ref.xml: Change date and bump version number.

	* pygtk-hierarchy.xml: Update.

	* pygtk-pangocairocairocontext.xml : Add class description.

	* pygtk-pangocairocairofontmap.xml : Add class description.

	* pygtk-pangocairo-constants.xml : Add.

	* pygtk-pangocairo-functions.xml : Add.

	* pygtk-pangolayoutline.xml : Add class description.

	* pygtk-pangolayoutiter.xml (get_line): Add.

2005-09-16  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkdrawable.xml (cairo_create): Add.

	* pygtk-pangorenderer.xml: Add pango.Renderer class description.

	* pygtk-gdkpangorenderer.xml: Add gtk.gdk.PangoRenderer class
	description.

	* pygtk-pango-constants.xml (pango.RENDER_PART): Add.

	* pygtk-gdkdragcontext.xml (set_icon_name): Remove.

	* pygtk-gdkwindow.xml (set_urgency_hint): Remove.

	* pygtk-gtktreeview.xml (get_visible_range): Remove.

	* pygtk-gtkwidget.xml (drag_source_add_image_targets)
	(drag_source_add_uri_targets, drag_source_set_icon_name): Remove.

	* pygtk-gtkdialog.xml (gtk.alternative_dialog_button_order): Remove.

	* pygtk-gtk-functions.xml (gtk.alternative_dialog_button_order):
	Remove.

	* pygtk-gtkclipboard.xml (request_image, wait_for_image, set_image)
	(wait_is_image_available): Remove.

	* pygtk-gtkaboutdialog.xml (gtk.about_dialog_set_email_hook)
	(gtk.about_dialog_set_url_hook): Add description of callback function.

	======== 2.8.0 ============
2005-09-07  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkwidget.xml (get_for_attach_widget): Add.

2005-09-06  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml: Change date and version number.

	* pygtk-pangolayoutiter.xml (free): 
	* pygtk-gdkevent.xml (free): 
	* pygtk-gtktreerowreference.xml (free): 
	* pygtk-gtktreeiter.xml (free): 
	* pygtk-gtkrequisition.xml (free): 
	* pygtk-gtkiconsource.xml (free): 
	* pygtk-gtkborder.xml (free): 
	* pygtk-gtkiconinfo.xml (free): Add deprecation warning.

	* pygtk-gdkwindow.xml (set_urgency_hint): Add.

	* pygtk-gtkwindow.xml (set_urgency_hint, get_urgency_hint): Add.
	(present_with_time): Add.

	* pygtk-gtktreeview.xml (get_visible_range): Add.

	* pygtk-gtktreeviewcolumn.xml (queue_resize): Add.

	* pygtk-gtktreerowreference.xml (get_icon_name): Add.

	* pygtk-gtktoolbutton.xml (set_icon_name, get_icon_name): Add.

	* pygtk-gtkiconsource.xml (set_icon_name, get_icon_name): Add.

	* pygtk-gtktextiter.xml (forward_visible_cursor_position)
	(backward_visible_cursor_position, forward_visible_cursor_positions)
	(backward_visible_cursor_positions, forward_visible_line)
	(backward_visible_line, forward_visible_lines, backward_visible_lines):
	Add.

	* pygtk-gtk-stock-items.xml: Add STOCK_FULLSCREEN,
	STOCK_LEAVE_FULLSCREEN and STOCK_INFO.
	Fix XMl so RTL icons display correctly.

	* pygtk-gtksizegroup.xml (set_ignore_hidden, get_ignore_hidden): Add.

	* pygtk-gtkscrolledwindow.xml (get_hscrollbar, get_vscrollbar): Add.

	* pygtk-gtkmenushell.xml (set_take_focus, get_take_focus): Add.

	* pygtk-gtkmenubar.xml (set_pack_direction, get_pack_direction)
	(set_child_pack_direction, get_child_pack_direction): Add.

	* pygtk-gtkimage.xml (clear): Add.

	* pygtk-gtkiconview.xml (create_drag_icon, enable_model_drag_dest)
	(enable_model_drag_source, get_cursor, get_dest_item_at_pos)
	(get_drag_dest_item, get_item_at_pos, get_reorderable)
	(get_visible_range, scroll_to_path, set_cursor, set_drag_dest_item)
	(set_reorderable, unset_model_drag_dest, unset_model_drag_source): Add.

	* pygtk-gtk-constants.xml (IconView Drop Position Constants)
	(Pack Direction Constants): Add.

2005-09-05  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkfilechooser.xml (get_do_overwrite, set_do_overwrite)
	("do-confirm-overwrite", confirm-overwrite): Add.

	* pygtk-gtkentrycompletion.xml (set_popup_set_width)
	(get_popup_set_width, set_popup_single_match, get_popup_single_match):
	Add.

	* pygtk-gtkaboutdialog.xml (get_wrap_license, set_wrap_license): Add.

	* pygtk-gtktextview.xml (get_iter_at_position): 

	* pygtk-gtk-stock-items.xml: Add STOCK_DISCONNECT.

	* pygtk-gtkprogressbar.xml (set_ellipsize, get_ellipsize): Add.

	* pygtk-gtkfilefilter.xml (add_pixbuf_formats): Add.

	* pygtk-gtkwidget.xml (drag_source_add_image_targets)
	(drag_source_add_uri_targets): Add.

	* pygtk-gtkclipboard.xml (request_image, wait_for_image, set_image)
	(wait_is_image_available):
	Add.

	* pygtk-gtkdialog.xml (gtk.alternative_dialog_button_order)
	(get_response_for_widget): Add description.

	* pygtk-gtkbutton.xml (get_image, set_image): Add descriptions.

	* pygtk-gtkaction.xml (get_accel_path): Add description.

2005-09-03  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkscrolledwindow.xml (set_vadjustment): Fix param name
	typo. Fixes #315202 (Nikos Kouremenos)

2005-09-02  John Finlay  <finlay@moeraki.com>

	* pygtk-gladexml.xml (set_custom_handler, bindtextdomain)
	(textdomain, set_custom_widget): Add descriptions of these functions.
	patch by Gian Mario Tagliaretti. Fixes #164078.

2005-08-16  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkdialog.xml (add_buttons): Fix description of how button
	data is passed to the method.

2005-08-12  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkwidget.xml ("drag-data-get"): Fix typo. Fixes #313351
	(Nikos Kouremenos)

2005-08-09  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkscale.xml (set_digits): Note that if "draw-value" is FALSE
	set_digits() has no effect. (Steve Langer)

2005-07-27  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkrcstyle.xml (Styles description): Add info about style
	property.

	* pygtk-gtkwidget.xml
	* pygtk-gtk-functions (widget_class_list_style_properties): Fix
	incorrectly named function.

2005-07-22  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktextbuffer.xml:  Explicitly identify params that are
	TextIters. Fixes #308835. (Nikos Kouremenos)

	* pygtk-gtknotebook.xml (switch-page): Add missing param descriptions.
	Fixes #311283 (Nikos Kouremenos)

	* pygtk-gtktreemodelsort.xml
	* pygtk-gtktreemodelfilter
	* pygtk-gtkliststore.xml
	* pygtk-gtktreestore.xml
	* pygtk-gtktreemodel.xml (Description): Add reference to tutorial and
	TreeModel description of Python protocol support.

2005-07-21  John Finlay  <finlay@moeraki.com>

	* pygtk-pangocolor.xml (pango.Color): remove parse() method and replace
	with pango.Colo()r constructor.

2005-07-19  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkwindow.xml (various): Reference GDK constants directly
	via links. Fixes #310871 (Nikos Kouremenos)
	Fix freedesktop links.

2005-07-18  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkmenu.xml (detach): Fix typo. #310745 (Nikos Kouremenos)

2005-07-10  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkwidget.xml (set_activate_signal)
	(set_scroll_adjustments_signal): Add these new PyGTK 2.8 methods.
	Fixes #155679.

2005-07-07  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkwidget.xml (render_icon): detail param defaults to None.
	Fixes #309724 (Nikos Kouremenos)

	* pygtk-gtktreestore.xml: Fix typos. Fixes #309719 (Nikos Kouremenos)

2005-07-06  John Finlay  <finlay@moeraki.com>

	* pygtk-gobject.xml (Signals): Add description of the "notify" signal.

2005-06-20  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkradioaction.xml (set_group, get_group): 
	* pygtk-gtkradiobutton.xml (set_group, get_group): 
	* pygtk-gtkradiomenuitem.xml (set_group, get_group): 
	* pygtk-gtkradiotoolbutton.xml (set_group, get_group): 
	set group can specify None to remove item from group. #170514

2005-05-29  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkdialog.xml (add_buttons): correct description of buttons
	param. (Sridhar Ratna)

2005-05-26  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkwindow.xml (set_keep_abaove, set_keep_below, move): 
	Latest attempt to track freedesktop wm standard link. (Olav Vitters)

2005-05-22  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkpixbuf.xml (save_to_callback): Add.

	* pygtk-gobject-functions.xml (markup_escape_text): Add.

	* pygtk-gtkentrycompletion.xml (get_text_column): Add description.

	* pygtk-gdk-functions.xml (notify_startup_complete)
	(get_program_class, set_program_class, get_display)
	(get_display_arg_name): Add descriptions of these new functions.

2005-05-20  John Finlay  <finlay@moeraki.com>

	* pygtk-gtksettings.xml (set_string_property, set_long_property)
	(set_double_property): Add more info about origin param.

2005-05-03  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkcellrenderer.xml (Properties): Add description of
	"sensitive" property. Fixes #302841 (Gustavo Rahal).

2005-04-27  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkiconview.xml (set_columns, get_columns, set_item_width)
	(get_item_width, set_spacing, get_spacing, set_row_spacing)
	(get_row_spacing, set_column_spacing, get_column_spacing)
	(set_margin, get_margin): Add descriptions of these methods and
	their associated properties. Fixes #302196 (brett)

	* pygtk-gtktreeview.xml (insert_column_with_attributes): Fix typo
	and correct return value description. #302309. (Nick Kouremenos)

	* pygtk-gtktreeviewcolumn.xml (set_sizing): Add link to TreeViewColumn
	sizing constants.

2005-04-13  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml: Bump version number and date.

	======== 2.6.0 ============
2005-04-10  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml: Change date and comment out revhistory.

	* pygtk-gdk-functions.xml (gtk.gdk.threads_init): Remove confusing
	and possibly erroneous description. Fixes #172615 (John Ehresman)

2005-04-08  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkkeymap.xml (translate_keyboard_state): Remove extra arg from
	example call. (Nikos Kouremenos)

2005-04-04  John Finlay  <finlay@moeraki.com>

	* pygtk-hierarchy.xml: Add new 2.6 classes. (Nikos Kouremenos)

	* pygtk-gtkwindow.xml (set_keep_above): Fix link to "Extended Window
	Manager Hints" spec. (Nikos Kouremenos)

2005-04-03  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkdialog.xml (Description, Constructor): Add links to 
	constants used for response IDs and flags. Fixes #172550 (Johan Dahlin)

2005-03-31  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkcalendar.xml (Description, get_date): Add note about
	month value starting at zero. Patch by Gian Mario Tagliaretti.

	* pygtk2-ref.xml: Bump version number and change date.

	======== 2.5.2 ============
2005-03-05  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml Bump version number and change date.

	* pygtk-introduction (Major Changes) Update description with new
	GTK+ 2.6 classes and add gtk.glade module.

2005-02-28  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkcursor.xml (gtk.gdk.Cursor): Rephrase constructor
	descriptions to clarify how to make an invisible cursor. Fixes #168755
	(get_display) Fix mangled description.

2005-02-15  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkcellrenderertext.xml (Properties): Add GTK+ 2.6
	properties ellipsize, ellipsize-set, width-chars. Alphabetize entries.
	Fixes #167504 (Rafael Villar Burke)

2005-02-03  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkcellrenderer.xml (stop_editing, "editing-started"):
	Add descriptions of these PyGTK 2.6 additions.

2005-01-18  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref-xml: Add pygtk-glade-classes.xml. Change date.

	* pygtk-glade-classes.xml
	* pygtk-gladexml.xml: Add these files created by Johan Dahlin.

	* pygtk-gladexml-classes.xml: Remove.

2005-01-15  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkentrycompletion.xml (get_text_column): Remove unimplemented
	method.
	(insert-prefix): Add description of PyGTK2.6 method.

2005-01-13  John Finlay  <finlay@moeraki.com>

	* pygtk-gtklabel.xml (get_angle, set_angle, set_max_width_chars)
	(get_max_width_chars): Add descriptions of these PyGTK 2.6 methods.
	("angle", "max-width-chars"): Add descriptions.

	* pygtk-gtk-functions.xml (gtk.get_current_event)
	(gtk.get_current_event_state): Add descriptions of these PyGTK2.6
	functions.

	* pygtk-gdkpixmap.xml
	* pygtk-gdk-functions.xml (gtk.pixmap_colormap_create_from_xpm)
	(gtk.pixmap_colormap_create_from_xpm_d)
	(gtk.pixmap_colormap_from_xpm_d):
	First arg can be a GdkDrawable.

	* pygtk-gtkcontainer.xml (gtk.container_class_install_child_property):
	Add description of this PyGTK2.4 function. Update Description.

	* pygtk-gtk-functions.xml (gtk.container_class_install_child_property):
	Add link to.

	* pygtk-gtkwidget.xml ("child-notify", "client-event")
	("proximity-in-event", "proximity-out-event") Add descriptions.
	Patch by Gian Mario Tagliaretti.

2004-12-27  John Finlay  <finlay@moeraki.com>

	* pygtk-gdk-constants.xml (event type constants): Fix Typo (Gian Mario
	Tagliaretti)

2004-12-26  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkevent.xml (Attributes): CLIENT_EVENT message_type is
	writeable.

2004-12-24  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml: Bump version number and pubdate.

	* pygtk-gtkuimanager.xml ("post-activate", "pre-activate"): Add
	action param description.

	======== 2.5.1 ============
2004-12-23  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml Update pubdate and revhistory.

	* pygtk-gdkpixbuf.xml (render_to_drawable, render_to_drawable_alpha): 
	Add deprecation warning.

	* pygtk-gtkcellview.xml (set_value, set_values, set_cell_data_func):
	Remove descriptions of removed methods.

2004-12-21  John Finlay  <finlay@moeraki.com>

	* Various Use xref tags instead of link tags where possible.

	* pygtk2-ref.xml Add revhistory, releaseinfo and edition tags.
	Remove version number from title tag and add to releaseinfo tag.

	* pygtk-gtktoolbar.xml (set_style) Add a note about ToolItem label
	display when style is TOOLBAR_BOTH_HORIZ. (Gian Mario Tagliaretti)

2004-12-10  John Finlay  <finlay@moeraki.com>

	* pygtk-gtksettings.xml (Description): Change description to indicate
	that there is one Settings object per GdkScreen (Rafael Villar Burke)

2004-12-09  John Finlay  <finlay@moeraki.com>

	* pygtk-gtk-stock-items.xml (gtk.stock_add): Add reference to
	Modifier Constants docs.

2004-12-07  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkwindow.xml (move): Fix example code.
	Fixes #160678. (Gian Mario Tagliaretti)

	* pygtk-gtkwindow.xml (set_type_hint): Add reference to window type 
	hint constants. Fixes #160669 (Gian Mario Tagliaretti)
	(set_gravity, begin_resize_drag): Add reference to constants.

2004-12-06  John Finlay  <finlay@moeraki.com>

	* pygtk-gtk-stock-items.xml Remove duplicate STOCK_WARNING.
	Fixes #160584 (Erik Grinaker).
	Add GTK+ 2.6 stock icons.

2004-12-04  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkdialog.xml (set_alternative_button_order): Add.

	* pygtk-pangolayoutiter.xml Add.

	* pygtk-pangolayout.xml (get_iter) Add description of this PyGTK 2.6
	method.

	* pygtk-gtkcellview.xml (set_cell_data) Remove.

	* pygtk-gtkfilechooserbutton.xml (set_active, get_active, "active"):
	Remove.

2004-11-20  John Finlay  <finlay@moeraki.com>

	* pygtk_gtkdialog.xml (gtk.Dialog) Fix param list bug.

2004-11-18  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkliststore.xml (remove): Document return value differences.
	(Doug Quale)

2004-11-16  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml Set pubdate. Bump version number to 2.5.1

	* pygtk-gtkselectiondata.xml (gtk.target_list_add_image_targets)
	(gtk.target_list_add_text_targets)
	(gtk.target_list_add_uri_targets): Add descriptions.

	* pygtk-gtkaboutdialog.xml (gtk.about_dialog_set_email_hook)
	(gtk.about_dialog_set_url_hook): Add descriptions.

	* pygtk-gtk-functions.xml: Add new AboutDialog, CellView, Image
	and Window functions. Fix SelectionData and Settings functions.

	======== 2.5.0 ============
2004-11-15  John Finlay  <finlay@moeraki.com>

	* pygtk-introduction.xml Update.

	* pygtk2-ref.xml Set pubdate. Bump version number to 2.5.0

	* pygtk-gdkwindow.xml (set_focus_on_map)
	(enable_synchronized_configure, configure_finished): Add descriptions

	* pygtk-gdkdragcontext.xml (drag_drop_succeeded): Add description.

	* pygtk-gdkdisplay.xml (store_clipboard)
	(request_selection_notification, supports_clipboard_persistence
	(supports_selection_notification): Add descriptions.

	* pygtk-gtktreeselection.xml (get_selected_rows): Remove model
	arg - not needed. Fixes #158397 (Ken Harris)

	* pygtk-gtkwindow.xml (gtk.window_set_default_icon_name)
	(get_icon_name, set_icon_name, get_focus_on_map, set_focus_on_map):
	Add descriptions.

	* pygtk-gtktreeview.xml (set_row_separator_func)
	(set_hover_expand, get_hover_expand, set_hover_selection)
	(get_hover_selection, set_fixed_height_mode, get_fixed_height_mode)
	("hover-selection", "hover-expand", "fixed-height-mode"):
	Add descriptions.

	* pygtk-gtktoolitem.xml (rebuild_menu): Add description
	("create-menu-proxy"): Update description.

	* pygtk-gtktextbuffer.xml (backspace, "tag-table"): Add descriptions.

2004-11-14  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkselectiondata.xml (data_targets_include_image)
	(get_uris, set_uris, get_pixbuf, set_pixbuf): Add descriptions.

	* pygtk-gtkmessagedialog.xml (format_secondary_text)
	(format_secondary_markup): Add descriptions.

	* pygtk-gtkmenutoolbutton.xml Add.

	* pygtk-gtkwidget.xml (menu_get_for_attach_widget): Add description.

	* pygtk-gtkmenu.xml ("tearoff-state") Add description.

	* pygtk-gtklabel.xml (Description): Update.
	(set_ellipsize, get_ellipsize, set_width_chars, get_width_chars)
	(get_single_line_mode, set_single_line_mode): Add descriptions.
	("ellipsize, "width-chars", "single-line-mode"): Add descriptions.

	* pygtk-pango-constant.xml Add Ellipsize Mode Constants.

	* pygtk-gtkimage.xml (gtk.image_new_from_icon_name)
	(get_icon_name, set_from_icon_name, set_pixel_size, get_pixel_size): 
	Add descriptions of these PyGTK 2.6 methods and function.
	(Description): Update.

2004-11-13  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkiconview.xml Add.
	* pygtk-gtk-classes.xml Add pygtk-pygtk-gtkiconview.xml

	* pygtk-gtkicontheme.xml (get_icon_sizes): Add description.

	* pygtk-gtkfilechooser.xml (set_show_hidden, get_show_hidden):
	Add description os these PyGTK 2.6 methods.
	(Description) Update.

	* pygtk-gtkfilechooserbutton.xml Add.

	* pygtk-gtk-classes.xml Add pygtk-gtkfilechooserbutton.xml

2004-11-12  John Finlay  <finlay@moeraki.com>

	* pygtk-gobject-functions.xml (signal_list_ids, signal_lookup)
	(signal_name, signal_query): Add descriptions of these PyGTK 2.6
	methods.

	* pygtk-gtkwidget.xml (set_accelerator): Change wording to clarify
	argument value usage. (stan@saticed.me.uk)

2004-11-10  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkentrycompletion.xml (get_text_column)
	(set_inline_completion, get_inline_completion)
	(set_popup_completion, get_popup_completion): Add descriptions of
	these PyGTK 2.6 methods.

	* pygtk-gtkwidget.xml (drag_dest_add_image_targets)
	(drag_dest_add_text_targets, drag_dest_add_uri_targets)
	(drag_source_add_text_targets, drag_source_get_target_list)
	(drag_source_set_target_list): Add descriptions of these PyGTK 2.6
	methods.

	* pygtk-gtkcombobox.xml (get_wrap_width, get_row_span_column)
	(get_column_span_column, get_active_text, get_popup_accessible)
	(get_row_separator_func, set_row_separator_func, get_add_tearoffs)
	(set_add_tearoffs, get_focus_on_click, set_focus_on_click): 
	Add descriptions of these PyGTK 2.6 methods.

	* pygtk-gtkclipboard.xml (wait_is_target_available)
	(set_can_store, store): Add documentation on these PyGTK 2.6 methods

	* pygtk-gtkcellrenderercombo.xml Add.
	* pygtk-gtkcellrendererprogress.xml Add.
	* pygtk-gtkcellview.xml Add.
	* pygtk-gtk-classes.xml Add above files.

2004-11-09  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkaboutdialog.xml Add.

	* pygtk-gtk-classes.xml Add pygtk-gtkaboutdialog.xml

2004-11-08  Johan Dahlin  <johan@gnome.org>

	* pygtk-gtkwindow.xml: s/gtk.IN/gtk.WIN/

2004-11-08  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkwindow.xml (Description, gtk.Window, set_position):
	Add link to appropriate Constants description.

2004-11-01  John Finlay  <finlay@moeraki.com>

	* pygtk-gtksettings.xml Add gtk-alternative-button-order and
	gtk-modules properties. Fix typo.

2004-10-28  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkcombobox.xml (set_model) model can be and default to None
	in PyGTK 2.4.1.

	* pygtk-gtkentrycompletion.xml (set_model) model can be and default
	to None in PyGTK 2.4.1.

2004-10-21  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkalignment.xml (gtk.Alignment) Undo changes since new
	default values are wrong.

2004-10-19  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkalignment.xml (gtk.Alignment) Note change of default values
	in 2.4. (Gustavo Niemeyer)

2004-10-12  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkwidget.xml ("destroy-event") Add description per
	Christian Reis.

	* pygtk-gtkstatusbar.xml (push) Note that the message id can be used
	with the remove() method. (Rafael Villar Burke)
	
	* pygtk-gtkwidget.xml (modify_bg) Note that bg can only be
	modified on widgets with a gdkWindow. (Rafael Villar Burke)

	* pygtk-gtkadjustment.xml (Description) Fix broken links reported by
	Antoon Pardon.

2004-10-05  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml Bump version number and set pubdate

	* pygtk-gdkgc.xml (set_clip_rectangle) Note that the clip origin
	is also set to (0, 0) per Rafael Villar Burke.

	================ 2.4.11 ==============
2004-10-03  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml Set pubdate.
	
	* pygtk-gtkuimanager.xml (insert_action_group) Add details on pos
	param.
	(add_ui) Additional info on path param. Add info on type values.
	(new_merge_id) Add info on merge ids.
	

2004-09-28  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkalignment.xml (Description) Fix example description.

2004-09-18  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkactiongroup.xml (add_actions) (add_toggle_actions)
	(add_radio_actions) Clarify entry tuple field usage.

2004-09-15  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreeview.xml (set_search_equal_func) Note that the
	comparison function should return FALSE to indicate a match. (Thomas
	Mills Hinkle)

2004-09-06  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkaction.xml (Properties) name property is construct only.

2004-08-11  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.html Bump version number.

	================ 2.4.10 ==============
2004-08-11  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml Set pubdate.
	
	* pygtk-gdkdisplay.xml pygtk-gdkdisplaymanager.xml
	* pygtk-gdkkeymap.xml pygtk-gdkpixbufloader.xml
	* pygtk-gdkscreen.xml pygtk-gtkaccelgroup.xml
	* pygtk-gtkaction.xml pygtk-gtkactiongroup.xml
	* pygtk-gtkadjustment.xml pygtk-gtkbutton.xml
	* pygtk-gtkcalendar.xml pygtk-gtkcelleditable.xml
	* pygtk-gtkcellrenderer.xml pygtk-gtkcellrenderertext.xml
	* pygtk-gtkcellrenderertoggle.xml pygtk-gtkcheckmenuitem.xml
	* pygtk-gtkcolorbutton.xml pygtk-gtkcolorselection.xml
	* pygtk-gtkcombobox.xml pygtk-gtkcontainer.xml
	* pygtk-gtkcurve.xml pygtk-gtkdialog.xml pygtk-gtkeditable.xml
	* pygtk-gtkentry.xml pygtk-gtkentrycompletion.xml
	* pygtk-gtkexpander.xml pygtk-gtkfilechooser.xml
	* pygtk-gtkfontbutton.xml pygtk-gtkhandlebox.xml
	* pygtk-gtkicontheme.xml pygtk-gtkimcontext.xml
	* pygtk-gtkinputdialog.xml pygtk-gtkitem.xml pygtk-gtklabel.xml
	* pygtk-gtklayout.xml pygtk-gtkmenu.xml pygtk-gtkmenuitem.xml
	* pygtk-gtkmenushell.xml pygtk-gtknotebook.xml
	* pygtk-gtkobject.xml pygtk-gtkoptionmenu.xml pygtk-gtkpaned.xml
	* pygtk-gtkplug.xml pygtk-gtkradioaction.xml
	* pygtk-gtkradiobutton.xml pygtk-gtkradiomenuitem.xml
	* pygtk-gtkrange.xml pygtk-gtkscale.xml
	* pygtk-gtkscrolledwindow.xml pygtk-gtksocket.xml
	* pygtk-gtkspinbutton.xml pygtk-gtkstatusbar.xml
	* pygtk-gtktextbuffer.xml pygtk-gtktexttag.xml
	* pygtk-gtktexttagtable.xml pygtk-gtktextview.xml
	* pygtk-gtktoggleaction.xml pygtk-gtktogglebutton.xml
	* pygtk-gtktoggletoolbutton.xml pygtk-gtktoolbar.xml
	* pygtk-gtktoolbutton.xml pygtk-gtktoolitem.xml
	* pygtk-gtktreemodel.xml pygtk-gtktreeselection.xml
	* pygtk-gtktreesortable.xml pygtk-gtktreeview.xml
	* pygtk-gtktreeviewcolumn.xml pygtk-gtkuimanager.xml
	* pygtk-gtkviewport.xml pygtk-gtkwidget.xml pygtk-gtkwindow.xml
	Fix signal titles.

2004-08-10  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml Undo erroneous check-in

2004-08-06  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml Bump version number and pubdate

	* pygtk-gtkclipboard.xml (Synopsis) Fix typo. (Able Daniel)

	================ 2.4.9 ==============
2004-08-03  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml Update pubdate.

2004-08-02  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkexpander.xml (gtk.expander_new_with_mnemonic)
	(gtk.Expander) Note that label is optional and defaults to None.
	(set_label) (set_label_widget) Note that label and label_widget
	can be None.

	* pygtk-gtkcomboboxentry.xml (gtk.ComboBoxEntry) Default value
	for column is -1.
	(Description) (set_text_column)
	Note that the text column can only be set once.

2004-07-31  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkmenu.xml (Properties) Swap Child and Style property titles.

2004-07-29  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreeview.xml (get_drag_dest_row) None is a valid return
	value.

	* pygtk-gtkliststore.xml (insert_before) (insert_after)
	sibling param can be None in PyGTK 2.4.

2004-07-28  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkicontheme.xml (Description) Fix broken ulink tag.

	* pygtk-gtkexpander.xml (Description) Fix bug in example code using
	"expanded" property signal. Add note about using "activate" signal.

2004-07-27  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkatom.xml (Description) Add note on support for
	Atom and string comparsion support in PyGTK 2.4.

	* pygtk-gdkwindow.xml (property_get) (property_change) Add links for
	gtk.gdk.Atom references. Fixes #148569. Thanks to Abel Daniel.

2004-07-24  John Finlay  <finlay@moeraki.com>

	* pygtk-gdk-constants.xml (Filter Return Constants) Add reference to
	gtk.gdk.Window.Add_filter() method.

	* pygtk-gdkwindow.xml (add_filter) Add initializer for data.
	Describe return value for callback.

2004-07-23  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreemodel.xml ("row-inserted") ("row-changed") Add
	detail on when these are emitted.

2004-07-22  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktextbuffer.xml (add_selection_clipboard)
	(remove_selection_clipboard)
	(cut_clipboard) (copy_clipboard) (paste_clipboard)
	These methods are available in PyGTK 2.2.

	* pygtk-gtktextview.xml (Description) Clipboard access is available
	in PyGTK 2.2.

	* pygtk-gtkwidget.xml (get_clipboard) Available in PyGTK 2.2.

2004-07-21  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkclipboard.xml (gtk.Clipboard) Add description of defaults
	for optional params.
	(gtk.clipboard_get) Add description of this PyGTK 2.4 function.

	* pygtk-gtk-functions.xml
	(gtk.clipboard_get) Add link for this PyGTK 2.4 function.

	* pygtk-gtkclipboard.xml (set_with_data) Add description of get_func
	and clear_func signatures.

2004-07-20  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreeviewcolumn.xml (set_sort_column_id) Expand description
	of this convenience method.
	(set_sort_indicator) Add note re effect of set_sort_column_id() on
	use of this method.

2004-07-19  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreesortable.xml (set_sort_func) Add description of
	comaprison function return value. Thanks to Andrew Boie.

	* pygtk-gtktreeview.xml (get_path_at_pos) Return value if no path
	is None.

2004-07-18  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkactiongroup.xml (add_actions)
	(add_toggle_actions) (add_radio_actions) Document new user_data
	param.

2004-07-15  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkbutton.xml Add description of optional use_underline
	param added in PyGTK 2.4
	* pygtk-gtktogglebutton.xml Add description of optional use_underline
	param added in PyGTK 2.4. Add missing constructor param description.
	* pygtk-gtkcheckbutton.xml Add description of optional use_underline
	param added in PyGTK 2.4.
	* pygtk-gtkradiobutton.xml Add description of optional use_underline
	param added in PyGTK 2.4.
	* pygtk-gtkcheckmenuitem.xml Add description of optional use_underline
	param added in PyGTK 2.4.
	* pygtk-gtkmenuitem.xml Add description of optional use_underline
	param added in PyGTK 2.4.
	* pygtk-gtkradiomenuitem.xml Add description of optional use_underline
	param added in PyGTK 2.4.

2004-07-12  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkwindow.xml (set_geometry_hints) Add missing param names.
	Thanks to Theo Reed in #147458.

2004-07-09  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkbin.xml ("child") Add description of this attribute.

	* pygtk-gtkcheckmenuitem ("active") Add description of this attribute.
	("indicator-size") Add description of this style property.

	* pygtk-gtkgammadialog.xml (Attributes) Add description of attributes.

2004-07-08  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkcolor.xml (gtk.gdk.parse_color) Add info on exceptions.

	* pygtk-gdkcolormap.xml (alloc_color) Modify description on
	exceptions.

2004-07-04  John Finlay  <finlay@moeraki.com>

	* pygtk-pygtkgenerictreemodel.xml Fix broken links.

	* pygtk-gtktreemodel.xml (rows_reordered) ("rows-reordered")
	Update these to indicate top level row reordering.

	* pygtk-gdkcolormap.xml (query_color) Add description of this
	PyGTK 2.4 method.

2004-07-03  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkpixbuf.xml (subpixbuf) Add description of this new
	PyGTK 2.4 method.

	* pygtk-pygtkgenerictreemodel.xml (Description) Add info on new
	methods invalidate_iters() and iter_is_valid().
	(invalidate_iters) (iter_is_valid) Add description of these
	PyGTK 2.4 methods.

	* pygtk-gtktreeview.xml (get_search_equal_func) Remove. This wasn't
	implemented.

	* pygtk-gtktreeview.xml (get_search_equal_func)
	(set_search_equal_func) Add description of these PyGTK 2.4 methods.
	Fix some typos.

	* pygtk-gobject-functions.xml (io_add_watch)

	* pygtk2-ref.html Bump version number.

	================ 2.4.8 ==============
2004-07-01  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml Change pubdate.

	* pygtk-gdkwindow.xml (set_user_data) Add info about TypeError
	exception.

	* pygtk-gtknotebook.xml (append_page) (append_page_menu)
	(prepend_page) (prepend_page_menu) (insert_page) (insert_page_menu)
	(set_tab_label) (set_menu_label)
	Describe default values for tab_label, menu_label and position params.

	* pygtk-gtkcombobox.xml (Description) Fix typo.
	* pygtk-introduction.xml Fix broken link
	* pygtk-gtkentrycompletion.xml Fix typo.
	Fixes #145239 thanks to Olav Vitters

2004-06-30  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreesortable.xml (Description)
	(get_sort_column_id) (set_sort_func_id) Add more detail on the
	meaning and use of sort column IDs.

	* pygtk-gtktreesortable.xml (set_default_sort_func) Revise
	description of sort_func param. Change
	gtk.TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID to -1.
	(set_sort_column_id) Change gtk.TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID
	to -1.

2004-06-28  John Finlay  <finlay@moeraki.com>

	* pygtk-pygtkgenerictreemodel.xml (Properties) Add description
	of the "leak-references" property.

2004-06-20  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkwidget.xml (allocation) (window) These attributes are
	writeable in PyGTK 2.4
	* pygtk-gtkwidget.xml
	* pygtk-gtk-functions.xml (widget_class_install_style_property)
	Add description of this PyGTK 2.4 function.

	* pygtk-gtkcontainer.xml
	* pygtk-gtk-functions.xml (container_class_list_child_properties)
	Add description of this PyGTK 2.4 function.

	* pygtk-gtkitemfactory.xml (Description) Add link to gtk.UIManager
	in the deprecation message. Thanks to Matthew Bull.

	* pygtk-gdkwindow.xml (set_user_data) (get_user_data) Add 
	description of these PyGTK 2.4 methods.

	* pygtk-gtknotebook.xml (insert_page) (set_tab_label) tab_label
	parameter can be None in PyGTK 2.4 and above.

	* pygtk-gtkwidget.xml ("drag-drop") Fix broken link.

	* pygtk-gtkaccelgroup.xml
	* pygtk-gtk-functions.xml (accel_groups_from_object) Add
	description of this PyGTK 2.4 function.

2004-06-14  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkwidget.xml ("drag-motion") ("drag-leave") ("drag-end")
	("drag-drop") ("drag-data-received") ("drag-data-get")
	("drag-data-delete") ("drag-begin") Update the documentation on
	these signals.

2004-06-13  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkicontheme.xml (Description) Fix typo and add exception
	handling to example. Thanks to Steve Chaplin.

	* pygtk-gtktextview.xml (Description) Add info about popup menu and
	selection clipboards.

2004-06-12  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkimage.xml ("pixbuf") Attribute contains a pixbuf not
	a pixmap. Thanks to Christian Reis.

2004-06-06  Johan Dahlin  <johan@gnome.org>

	* pygtk-gdkevent.xml : Proper documentation of all attributes, in
	sync with latest CVS. Remove the common attribute and only show
	them in the beginning of the event list.

2004-06-02  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkpaned.xml (pack1) (pack2) Change references to expand
	param to resize. Thanks to Toon Verstraelen. Fixes #143589

2004-05-31  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkwindow.xml (add_filter) Add description of this PyGTK 2.2
	method.

2004-05-30  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreemodel.xml ("rows-reordered") Note that new_order is
	a gpointer value.

	* pygtk-gtktreeview.xml ("columns-changed") Fix confusing wording.
	("test-collapse-row") ("test-expand-row") Update return value 
	wording.

	* pygtk-gtktreedragdest.xml (row_drop_possible) Add missing word.
	
2004-05-29  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreeview.xml (set_column_drag_function) Add description
	of this PyGTK2.4 method.

	* pygtk-pygtkgenerictreemodel.xml (Description) Add self as
	a param to all the methods to be implemented and use rowref
	instead of iter to avoid confusion. Correct method name from
	on_get_iter_next() to on_iter_next()

	* pygtk-gtktreemodel.xml (iter_next) Fix description.

2004-05-28  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkpixbuf.xml (save)
	(gdk.pixbuf_new_from_file)
	(gdk.pixbuf_new_from_file_at_size)
	(gdk.pixbuf_new_from_inline) Note that GError exception is
	raised on error.

	* pygtk-gdkpixbufanimation.xml (gtk.gdk.PixbufAnimation) Note that
	GError exception is raised on error.

	* pygtk-gdkpixbufloader.xml (gtk.gdk.PixbufLoader)
	(gtk.gdk.pixbuf_loader_new_with_mime_type)
	(write) (close) Note that GError exception is raised on error.

	* pygtk-gtkiconinfo.xml (load_icon) Note that GError exception
	is raised on error.

	* pygtk-gtkicontheme.xml (load_icon) Note that GError exception
	is raised on error.

	* pygtk-gtkuimanager.xml (add_ui_from_string)
	(add_ui_from_file) Note that GError exception is raised on error.

	* pygtk-gtkwindow.xml (set_icon_from_file) Add.
	(gtk.window_set_default_icon_from_file) Note that GError exception
	is raised on error.

	* pygtk-gtkfilechooser.xml (add_shortcut_folder)
	(remove_shortcut_folder)
	(add_shortcut_folder_uri)
	(remove_shortcut_folder_uri) Note that GError exception is raised
	on error.

	* pygtk-pangoattrlist.xml (pango.parse_markup) Note that GError
	exception is raised on error.

2004-05-27  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkcelllayout.xml (set_cell_data_func) Add description
	of this PyGTK 2.4 method.

	* pygtk-gtktreeviewcolumn.xml Add note that GtkTreeViewColumn
	implements the GtkCellLayout interface in PyGTK 2.4.

2004-05-25  John Finlay  <finlay@moeraki.com>

	* pygtk-introduction.xml Add reference link to www.pygtk.org
	Thanks to Rafael Villar Burke.

	* pygtk-gtkentrycompletion.xml (Description) Fix example code.

2004-05-24  John Finlay  <finlay@moeraki.com>

	* pygtk-pygtktreemodelrowiter.xml (next) Fix broken links and name.

2004-05-22  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreemodelfilter.xml (set_modify_func) Add description.
	Add to Description re modify function.

	* pygtk2-ref.xml Bump release number to 2.4.8.

2004-05-21  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreemodel.xml (iter_n_children) Change NULL to None.

2004-05-20  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreeviewcolumn.xml (pack_start)
	(pack_end) expand param can default to TRUE.

	=========== 2.4.7 ==============
2004-05-19  John Finlay  <finlay@moeraki.com>

	* pygtk-pygtktreemodelrow.xml Add.

	* pygtk-pygtktreemodelrowiter.xml Add.

	* pygtk-gtk-classes.xml Add pygtk-pygtktreemodelrow.xml and
	pygtk-pygtktreemodelrowiter.xml

	* pygtk2-ref.xml Bump release number to 2.4.7

	* pygtk-gtktreemodel.xml Add description of mapping and iterator
	protocol support.

	=========== 2.4.6 ==============
2004-05-17  John Finlay  <finlay@moeraki.com>

	* pygtk-gtk-constants.xml (gtk-selection-mode-constants) Fix typo.

	* pygtk-gtktreemodel.xml (get) Remove dangling tag.

	* pygtk2-ref.xml Bump release number to 2.4.6

2004-05-16  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreeselection.xml (set_selection_function) Fix bogus
	description of signature of func.

2004-05-15  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreeselection.xml Fix method links in Description.
	(set_mode) Add detail on selection mode and reference to selection
	constants.
	(selected_foreach) Add note.

2004-05-13  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreeselection.xml
	(get_selected) Add info that treeiter is None if no row selected.
	(get_selected_rows) Correct return value is a tuple with
	a tree modle and a list of selected paths.

2004-05-12  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreeview.xml (get_dest_row_at_pos) Change parameters
	to x and y from drag_x and drag_y.

2004-05-10  John Finlay  <finlay@moeraki.com>

	* pygtk-gtknotebook.xml (append_page) (append_page_menu)
	(prepend_page) (prepend_page_menu) (insert_page)
	(insert_page_menu) Add description of return value for PyGTK 2.4
	and above - these return a page index.

2004-05-07  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreestore.xml (remove) Fix return value explanation.

	* pygtk-gtkliststore.xml (iter_is_valid) (reorder)
	(move_before) (move_after) Change first release designation
	to PyGTK 2.2.

	* pygtk-gtktreemodel.xml (get) Add description of this PyGTK 2.4
	method.
	(get) Add column param to description.

2004-05-06  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreestore (insert) (insert_after) (insert_before)
	(append) (prepend) Add initializers to the Synopsis.

2004-05-05  John Finlay  <finlay@moeraki.com>

	* pygtk-gobject-constants (gobject-type-constants) Fix link.

	* pygtk2-ref.xml Bump release number to 2.4.5

	============= 2.4.4 =============
2004-05-05  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkmenuitem.xml (activate) Accidentally commented out
	description.

	* pygtk-introduction.xml Unscramble programlisting.

	* pygtk-gobject.xml Fix Attribute formatting.

	* pygtk-gtkaction.xml (get_visible) Fix link.

	* pygtk-gtkbox.xml (pack_start_defaults)
	(pack_end_defaults) Add deprecation warnings. Remove references in
	Description.

	* pygtk-gtkcombo.xml Fix Properties formatting.

	* pygtk-gtkcontainer.xml Fix Attribute formatting.

	* pygtk-gtkdialog.xml Fix Attribute formatting.

	* pygtk-gtkfileselection.xml Fix Attribute formatting.

	* pygtk-gtkfontselectiondialog.xml Fix Attribute formatting.

	* pygtk-gtkmessagedialog.xml Fix Attribute formatting.

	* pygtk-gtknotebook.xml Fix Attribute formatting.

	* pygtk-gtkrequisition.xml Fix Attribute formatting.

	* pygtk-gtkselectiondata.xml Fix Attribute formatting.

	* pygtk-gtkstyle.xml Fix Attribute formatting.

	* pygtk-gtktextattributes.xml Fix Attribute formatting.

	* pygtk-gtktextbuffer.xml Fix Attribute formatting.

	* pygtk-gtktogglebutton.xml Fix Attribute formatting.

	* pygtk-gtktooltips.xml Fix Attribute formatting.

	* pygtk-gtkwidget.xml Fix Attribute formatting.

	* pygtk-gtkwindow.xml Fix Attribute formatting.

	* pygtk-gdkcolor.xml Fix Attribute formatting.

	* pygtk-gdkdevice.xml Fix Attribute formatting.

	* pygtk-gdkdragcontext.xml Fix Attribute formatting.

	* pygtk-gdkdrawable.xml Fix Attribute formatting.

	* pygtk-gdkevent.xml Fix Attribute formatting.

	* pygtk-gdkgc.xml Fix Attribute formatting.

	* pygtk-gdkpixbuf.xml Fix Attribute formatting.

	* pygtk-gdkrectangle.xml Fix Attribute formatting.

	* pygtk-gdkvisual.xml Fix Attribute formatting.

	* pygtk-pangoattribute.xml Fix Attribute formatting.

	* pygtk-pangocolor.xml Fix Attribute formatting.

	* pygtk-pangoglyphstring.xml Fix Attribute formatting.

	* pygtk2-ref.xml Bump release number to 2.4.4

2004-05-04  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkmenuitem.xml (toggle_size_request) Add description.

	* pygtk-gtktextiter.xml (backward_find_char)
	(forward_find_char) Add descriptions of these methods.
	Fix spelling errors.

	* pygtk-gtktextview.xml Spell checked.

	* pygtk-gtktextbuffer.xml Spell checked.

	* pygtk-introduction.xml Add section listing major changes since 1.9.

	* pygtk-gobject-maincontext.xml Spell checked.

	* pygtk-gobject-functions.xml Spell checked.

	* pygtk-gobject-constants.xml Spell checked.

	* pygtk-gtkaccellabel.xml Spell checked.

	* pygtk-gtkaction.xml Spell checked.

2004-04-30  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml Bump release number to 2.4.3

	* pygtk-gtkaction.xml
	* pygtk-gtkactiongroup.xml
	* pygtk-gtkborder.xml
	* pygtk-gtkclipboard.xml
	* pygtk-gtkcolorbutton.xml
	* pygtk-gtkcombobox.xml
	* pygtk-gtkcomboboxentry.xml
	* pygtk-gtkentrycompletion.xml
	* pygtk-gtkexpander.xml
	* pygtk-gtkfilechooser.xml
	* pygtk-gtkfilechooserdialog.xml
	* pygtk-gtkfilechooserwidget.xml
	* pygtk-gtkfilefilter.xml
	* pygtk-gtkfontbutton.xml
	* pygtk-gtkiconinfo.xml
	* pygtk-gtkicontheme.xml
	* pygtk-gtkradioaction.xml
	* pygtk-gtktoolbutton.xml
	* pygtk-gtkseparatortoolitem.xml
	* pygtk-gtktoggleaction.xml
	* pygtk-gtktoggletoolitem.xml
	* pygtk-gtktoolbutton.xml
	* pygtk-gtktoolitem.xml
	* pygtk-gtktreemodelfilter.xml
	* pygtk-gtktreerowreference.xml
	* pygtk-gtkuimanager.xml
	Add a note indicating which release of PyGTK the above were new in.

	============ Release 2.4.2 ===============
2004-04-29  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkclipboard.xml Fix notes to correct release availabilities
	for object, constructor and methods.

	* pygtk-introduction.xml Update the introduction re: PyGTK 2.4
	and Pango. Also add description of Child Properties.

	* pygtk-gtktreestore.xml (remove) Add return value description.

	* pygtk-gtkliststore.xml (remove) Add return value description.

	* pygtk2-ref.xml Bump release level to 2.4.2

2004-04-27  John Finlay  <finlay@moeraki.com>

	* pygtk-gobject-function.xml (io_add_watch) Add description of
	callback signature.

	* pygtk2-ref.xml Bump release level to 2.4.1

===== Release 2.4 =====

2004-04-27  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkclipboard.xml Fix link to gtk.gdk.atom-intern().

	* pygtk-gtkexpander.xml Fix link to pango.parse_markup().

	* pygtk-gtkicontheme.xml Fix link to gtk.gdk.pixbuf_new_from_inline()
	function.

	* pygtk-gtkscale.xml Fix link to pango.PIXELS().

	* pygtk-gtkwidget.xml Fix link to gtk.gdk.Screen.

	* pygtk-gtkwindow.xml Fix link to Gravity Constants.
	Remove bogus link to gdk_notify_startup_complete() function.

	* pygtk-gtk-constants.xml Fix links to gtk.gdk.DragConstext.finish()
	method.

	* pygtk-pangocolor.xml Fix link to gobject.GBoxed.

	* pygtk-hierarchy.xml Tweak formatting.
	
	* pygtk-hierarchy.xml Use PyGTK 2.4 hierarchy.

	* pygtk-hierarchy.xml Remove undocumented ATK entries, etc.

	* pygtk-pango-constants.xml Remove reference to unimplemented
	functions.

	* pygtk-gdkwindow.xml Remove reference to unimplmented function.
	
	* pygtk-gdkdrawable.xml Remove reference to unimplmented function.

	* pygtk-gtkaccelgroup.xml Remove reference to unimplemnted function.

	* pygtk-gobject-ginterface.xml Add.

	* pygtk-gobject-classes.xml Add pygtk-gobject-ginterface.xml

	* pygtk2-ref.xml Update date and set version to 2.4
	
	* pygtk-gtkclipboard.xml Remove reference to unimplemnted function.
	Add initlaizers for user_data in request_* methods.

	* pygtk-gtk-classes Add pygtk-gtk-constants.xml

2004-04-26  John Finlay  <finlay@moeraki.com>

	* pygtk-gdk-constants.xml Add.

	* pygtk-gdk-classes.xml Add pygtk-gdk-constants.xml to list.

	* pygtk-pango-constants.xml Reorganize with a Synopsis and add
	a description for each set of constants.

	* pygtk-gobject-constants.xml Add.

	* pygtk-gobject-gboxed.xml Add.

	* pygtk-gobject-gboxed.xml Remove gobject from Ancestry.

	* pygtk-gobject-gboxed.xml Fix typo.

	* pygtk-gobject-maincontext.xml Add.

	* pygtk-gobject-mainloop.xml Add.

	* pygtk-gobject-classes.xml Add pygtk-gobject-gboxed.xml,
	pygtk-gobject-maincontext.xml and pygtk-gobject-mainloop.xml to
	the list of files to be processed.

	* pygtk-gobject-maincontext.xml Add description of constructor.

	* pygtk-gobject.xml Move Ancestry section ahead of Description.

	* pygtk-gobject.xml Add some attribute descriptions.

	* pygtk-gobject-gpointer.xml Add.

	* pygtk-gtk-constants.xml Add.

2004-04-25  John Finlay  <finlay@moeraki.com>

	* pygtk-pango-functions.xml Add.

	* pygtk-pangolanguage.xml Add pango functions to cover the real
	API pre-PyGTK 2.4.

	* pygtk-pango-functions.xml Remove extraneous sections.

	* pygtk-gdkscreen.xml ("size-changed") Add description.

	* pygtk-gtk-stock-items.xml (gtk.stock_lookup)
	(gtk.stock_list_ids) Add reference links.

	* pygtk-pango-markup.xml ("fallback") Add description of this
	attribute type.

	* pygtk-pangoattribute.xml Reorder attributes.

	* pygtk-pangofontmap.xml (get_shape_engine_type) Add description.

	* pygtk-gdk-classes.xml Add new xml files for processing.

	* pygtk-gdk-functions.xml Add links to all module functions.

	* pygtk-pango-classes.xml Add class references for FontsetSimple
	and pango functions for processing.

	* pygtk-pango-constants.xml Add.

	* pygtk-pango-classes.xml Add Pango Constants ref.

	* pygtk-gdkgc.xml Fix typo.

	* pygtk-gdkwindow.xml (get_state) Add to WINDOW_STATE flag list.

2004-04-24  John Finlay  <finlay@moeraki.com>

	* pygtk-pangoattribute.xml Fix typo. Reorder attributes.

	* pygtk-pangoattrlist.xml (filter) Add description of this
	PyGTK 2.4 method.

	* pygtk-pangocontext.xml Fix link in Description.

	* pygtk-pangofontface.xml (list_sizes) Add desciption of this
	PyGTK 2,4 method.

	* pygtk-pangofontfamily.xml (is_monospace) Add description of this
	PyGTK 2.4 method.

	* pygtk-pangofontset.xml Fix typo in Description.
	(foreach) Add description of this PyGTK 2.4 method.

	* pygtk-pangofontsetsimple.xml Add.

2004-04-23  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkwindow.xml (set_accept_focus) (get_group)
	Add descriptions of these methods.
	(gtk.gdk.window_lookup_for_display)
	(gtk.gdk.window_foreign_new_for_display)
	Add description for these functions.

	* pygtk-gdkatom.xml Fix constructor link.

	* pygtk-gdkdisplaymanager.xml Fix gdkdisplay link.

	* pygtk-gdkkeymap.xml Fix signal links.
	Fix keyval_get_keys link - change to lookup_key method.
	("keys-changed") Add description of this GTK+ 2.2 signal.
	(gtk.gdk.keyval_to_lower) Fix name.

	* pygtk-gdk-functions.xml
	(gtk.gdk.screen_width) (gtk.gdk.screen_height)
	(gtk.gdk.screen_width_mm) (gtk.gdk.screen_height_mm)
	Remove these descriptions - now with GdkWindow.
	Add links to all functions.

	* pygtk-gdkwindow.xml Fix links to gtk.Window.set_wmclass method.
	fix reference to gtk.gdk.window_constrain_size function

	* pygtk-gdkvisual.xml (visual_get_best_with_type)
	Add missing parameter.

	* pygtk-gdkpixbuf.xml (gtk.gdk.pixbuf_new_from_file_at_size)
	Fix parameter name.

	* pygtk-gdk-functions.xml Fix reference to gtk.gdk.atom_intern.
	Update the description. Reorder function listing.

	* pygtk-gtkvseparator.xml Fix link to constructor.

	* pygtk-gtkwindow.xml (gtk.window_set_auto_startup_notification)
	Add description for this PyGTK 2.2 function.

	* pygtk-gtkobject.xml (gtk.bindings_activate_event) Add.
	(gtk.bindings_activate) Fix name.

	* pygtk-gtk-stock-items.xml (gtk.stock_add)
	(gtk.stock_lookup) (gtk.stock_list_ids) Add description of
	these functions.

	* pygtk-gtk-functions.xml Add links to all functions and update
	description.

	* pygtk-gtkwindow.xml Fix typo.

	* pygtk-gtk-functions.xml Add gtkWidget function links.

	* pygtk-pangoattribute.xml (AttrFallback) Add description of this
	PyGTK 2.4 function.

	* pygtk-pangoattriter.xml (get_attrs) Add description of this
	PyGTK 2.4 method.

2004-04-22  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkpixbuf.xml
	(gtk.gdk.pixbuf_new_from_data) (gtk.gdk.pixbuf_new_from_array)
	Add descriptions of these PyGTK 2.2 functions.
	(gtk.gdk.pixbuf_new_from_file_at_size)
	(gtk.gdk.pixbuf_get_formats) (gtk.gdk.pixbuf.get_file_info)
	Add descriptions of these PyGTK 2.4 functions.
	("bits-per-sample"( ("colorspace") ("has-alpha") ("height")
	("n-channels") ("pixels") ("rowstride") ("width")
	Add descriptions fo these GTK+ 2.4 properties.

	* pygtk-gdkpixbuf.xml (gtk.gdk.pixbuf_get_formats) Tweak description.

	* pygtk-gdkpixbufloader.xml (set_size) (get_format)
	Add descriptions for these PyGTK 2.4 methods.
	(gtk.gdk.pixbuf_loader_new_with_mime_type)
	Add description for this PyGTK 2.4 function
	("size-prepared") Add desription of this GTK+ 2.2 signal.

	* pygtk-gdkpixmap.xml (gtk.gdk.pixmap_foreign_new_for_display)
	(gtk.gdk.pixmap_lookup_for_display) Add descriptions for these
	PyGTK 2.2 functions.

	* pygtk-gdkrectangle.xml (union) Fix typo.

	* pygtk-gdkscreen.xml Add.
	Add purpose description.

	* pygtk-gdkvisual.xml Reorder attribute list.
	(get_screen) Add desciption of this PyGTK 2.2 method.
	(query_depths) (query_visual_types)
	Add description of these PyGTK 2.4 functions.

	* pygtk-gdkwindow.xml (set_keep_above) (set_keep_below)
	(set_skip_taskbar) (set_skip_pager) (set_geometry_hints)
	(get_deskrelative_origin) (set_icon_list)
	(fullscreen) (unfullscreen)
	Add descriptions of these methods.
	(gtk.gdk.window_at_pointer)
	Add description for this function.

2004-04-21  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkgc.xml (get_screen) Add description of this PyGTK 2.2
	method

	* pygtk-gdkkeymap.xml (keymap_get_for_display) Add desciption of
	this PyGTK 2.2 function.
	(keyval_convert_case) Add description of this PyGTK 2.4 function.
	(get_entries_for_keyval)
	(get_entries_for_keycode)
	(lookup_key)
	(translate_keyboard_state) Add descriptions of these PyGTK 2.4 methods.

	* pygtk-gdkevent.xml (gtk.gdk.KEY_PRESS) Add "hardware_keycode"
	attribute description for PyGTK 2.2. Add "group" attribute
	description for PyGTK 2.4.

2004-04-20  John Finlay  <finlay@moeraki.com>

	* pygtk-gtk-classes.xml Add pygtk-gtk-stock-items.xml to list

	* pygtk-gtk-stock-items.xml Fix reference to stock_network_24.png
	and stock_new_24.png

	* pygtk-gdkatom.xml Tweak the description.

	* pygtk-gdkcolormap.xml (get_screen) Add description of
	PyGTK 2.4 method.
	(gtk.gdk.colormap_get_system) Add reference to
	gtk.gdk.Screen.get_system_colormap() method.

	* pygtk-gdkcursor.xml (get_display) Add description of this
	PyGTK 2.2 method.
	Add descriptions of 2 more constructor signatures for PyGTK 2.4.

	* pygtk-gdkdevice.xml Reorder attribute list.

	* pygtk-gdkatom.xml (atom_intern) Note that value of
	only_if_exists is ignored.

	* pygtk-gdkdisplay.xml Add.

	* pygtk-gdkdisplaymanager.xml Add.

	* pygtk-gdkdragcontext.xml (find_window_for_screen) Add description
	for this PyGTK 2.2 method.

	* pygtk-gdkdrawable.xml (get_screen) (get_display) (draw_pixbuf)
	Add descriptions of these PyGTK 2.2 methods. Update the Description.

	* pygtk-gdkdrawable.xml ("xid") ("handle")
	Add attribute descriptions.

	* pygtk-gdkevent.xml (get_state) Add note about availability.
	Added description of event masks.
	(gtk.gdk.Event) Added for PyGTK 2.2.

	* pygtk-gdkevent.xml (set_screen) (get_screen) Add descriptions of
	these PyGTK 2.2 methods.

2004-04-19  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreeview.xml (expand_to_path) (map_expanded_rows)
	(set_cursor_on_cell)
	Add descriptions of these methods added in PyGTK 2.2
	("fixed-height-mode") ("even-row-color") ("odd-row-color")
	Add descriptions of these properties.
	Add signal return value descriptions as needed.

	* pygtk-gtktreeviewcolumn.xml (set_expand) (get_expand)
	(cell_get_position)
	Add description of these PyGTK 2.4 methods.
	(focus_cell) Add description of this PyGTK 2.2 method.
	("expand") Add description of this GTK+ 2.4 signal.

	* pygtk-gtkuimanager.xml Add.

	* pygtk-gtkvbuttonbox.xml Tweak description.

	* pygtk-gtkwidget.xml (set_no_show_all) (get_no_show_all)
	(queue_resize_no_redraw) (can_activate_accel)
	(get_clipboard) (get_screen) (has_screen) (get_display)
	(get_root_window)
	Add descriptions of these PyGTK 2.4 methods.
	(gtk.widget_list_style_properties)
	Add description of this PyGTK 2.4 function.
	(get_size_request) Add description.
	(get_accessible) Remove description.
	("can-activate-accel") ("screen-changed") ("key-release-event")
	Add descriptions for these signals.

	* pygtk-gtkwindow.xml (set_screen) (get_screen) (is_active)
	(has_toplevel_focus) (activate_key) (propagate_key_event)
	(fullscreen) (unfullscreen) (set-keep-above) (set-keep-below)
	Add description for these PyGTK 2.2 and 2.4 methods.
	("accept-focus") ("decorated") ("gravity") ("role")
	("has-toplevel-focus") ("is-active") ("screen") ("skip-pager-hint")
	(skip-taskbar-hint") ("type-hint")
	Add decriptions for these GTK+ 2.2 adn 2.4 properties.
	(gtk.set_default_icon) (gtk.set_default_icon_from_file)
	Add descriptions of these functions.

	* pygtk-gtktoolitem.xml Fix reference to gtk.Button.set_relief()
	method.

	* pygtk-gtktoolbar.xml Fix reference to gtk.SeparatorToolItem class.

	* pygtk-gtkseparatortoolitem.xml Fix reference to
	gtk.SeparatorToolItem class.

	* pygtk-gtkscale.xml Fix reference to get_layout_offsets() method.

	* pygtk-gtknotebook.xml Fix formatting error.

	* pygtk-gtk-classes.xml Add missing pygtk-gtkiconinfo.xml include.

	* pygtk-gtkwindow.xml Fix references to gtk.Widget
	"window-state-event" signal.

	* pygtk-gdkatom.xml Fix reference to gtk.atom_intern() constructor.

	* pygtk-gtkwidget.xml Fix reference to
	gtk.widget_set_default_direction() function. Fix references and id
	for gtk.widget_list_style_properties function.

	* pygtk-gtkicontheme.xml Fix reference to gtk.pixbuf_new_from_inline
	function.

	* pygtk-gtk-stock-items.xml Add.

2004-04-18  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreemodelfilter.xml Add.

	* pygtk-gtktreemodelsort.xml (iter_is_valid) Add description of
	PyGTK 2.2 method.

	* pygtk-gtktreerowreference.xml Add.

	* pygtk-gtktreeselection.xml (get_selected_rows)
	(count_selected_rows) (unselect_range) Add new methods for PyGTK 2.2

	* pygtk-gtktreestore.xml (iter_is_valid) (reorder) (swap)
	(move_after) (move_before) Add descriptions for these PyGTK 2.2
	methods.

2004-04-17  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktoolbutton.xml Add.

	* pygtk-gtktoolitem.xml Add.

	* pygtk-gtktoolitem.xml (set_tooltip) tip_text and tip_private can
	default to None.

	* pygtk-gtkwindow.xml (tooltips_get_info_from_tip_window) Add 
	description of PyGTK 2.4 method.

	* pygtk-gtktreeiter.xml Add class info for TreeIter creation methods.

	* pygtk_gtktreemodel.xml (filter_new) Add description of new 
	PyGTK 2.4 method.

2004-04-16  John Finlay  <finlay@moeraki.com>

	* pygtk-gtksocket.xml ("plug-removed") Add return value description
	for this signal handler.

	* pygtk-gtkspinbutton.xml ("input") ("output") Add return value
	descriptions. Reorder property descriptions.

	* pygtk-gtkspinbutton.xml ("input") ("output") Fix typos.

	* pygtk-gtkstatusbar.xml ("has-resize-grip") Add GTK+ 2.4 property
	description.

	* pygtk-gtk-functions.xml (gtk.draw_insertion_cursor) Add.

	* pygtk-gtktable.xml (attach_defaults) Remove - it's deprecated.
	Reorder property descriptions.

	* pygtk-gtktextbuffer.xml (create_tag) Remove keyword role.
	(select_range) (add_selection_clipboard) (remove_selection_clipboard)
	(cut_clipboard) (copy_clipboard) (paste_clipboard) Add for PyGTK 2.4

	* pygtk-gtktextiter.xml (forward_visible_word_end)
	(backward_visible_word_start) (forward_visible_word_ends)
	(backward_visible_word_starts) Add descriptions for PyGTK 2.4

	* pygtk-gtktexttag.xml Reorder property descriptions.
	("event") Add return value description.

	* pygtk-gtktexttagtable.xml (foreach) Add description for PyGTK 2.4

	* pygtk-gtkaccelgroup.xml
	pygtk-gtkpaned.xml
	pygtk-gtkscrolledwindow.xml
	pygtk-gtkspinbutton.xml
	pygtk-gtktreeview.xml
	pygtk-gtkwidget.xml
	pygtk-gtkwindow.xml Make keycombos simultaneous.

	* pygtk-gtktextview.xml ("move-viewport") ("select-all") Add
	descriptions of these signals for GTK+ 2.4 and 2.2.
	("accepts-tab") ("overwrite") Add descriptions of these GTK+ 2.4
	properties.
	(set_accepts_tab) (get_accepts_tab) (set_overwrite) (get_overwrite)
	Add descriptions of these PyGTK 2,4 methods.

	* pygtk-gtktoggleaction.xml Add.

	* pygtk-gtktoggletoolbutton.xml Add.

	* pygtk-gtktoolbar.xml Add new GTK+ 2.4 method descriptions.
	Add deprecation warnings for old toolbar methods.

2004-04-15  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkmessagedialog.xml (set_markup) Add description of this
	PyGTK 2.4 method.

	* pygtk-gtknotebook.xml (get_n_pages) Add description.
	Add GTK+2.4 style properties
	Add return value description for "focus-tab" and "select-page"
	signals.

	* pygtk-gtkoptionmenu.xml Added deprecation warning for PyGTK 2.4

	* pygtk-gtkpaned.xml (get_child1) (get_child2) Add descriptions of
	these PyGTK 2.4 methods.
	("max-position") ("min-position") Add descriptions of these GTK+ 2.4
	properties.
	("resize") ("shrink") Add descriptions of these GTK+ 2.4 child
	properties.
	Add return value description for signals.

	* pygtk-gtkplug.xml (gtk.plug_new_for_display) Add description.
	(construct) Add warning - method not available since PyGTK 2.2

	* pygtk-gtkradioaction.xml Add.

	* pygtk-gtkradiobutton.xml Add description of "group-changed" signal
	for GTK+ 2.4

	* pygtk-gtkradiomenuitem.xml Add description of "group-changed" signal
	for GTK+ 2.4

	* pygtk-gtkradioaction.xml Fix description of "group" property.

	* pygtk-gtkradiotoolbutton.xml Add.

	* pygtk-gtkrange.xml Reorder property descriptions.

	* pygtk-gtkrcstyle.xml Add gtk.rc_reset_style() function for PyGTK 2.4

	* pygtk-gtkscale.xml (get_layout) (get_layout_offsets) Add
	descriptions for PyGTK 2.4

	* pygtk-gtkscrollbar.xml Reorder property descriptions.

	* pygtk-gtkscrolledwindow.xml Add "scrollbar-spacing" style property
	available in GTK+ 2.2

	* pygtk_gtkselectiondata.xml Add function description of
	gtk.selection_owner_set_for_display().

	* pygtk_gtkseparatortoolitem.xml Add. Add purpose description

	* pygtk-gtksettings.xml (gtk.settings_get_for_screen) Add description.
	Add various properties for GTK+ 2.2 and 2.4

2004-04-14  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkiconsource.xml Add gtk.icon_size_lookup_for_settings()
	function.

	* pygtk-gdkpixmap.xml Fix description and parameter list of 
	gtk.pixmap_create_from_data() function.

	* pygtk-gtkicontheme.xml Add.

	* pygtk-gtkiconinfo.xml Add.

	* pygtk-gtkinvisible.xml Add the set_screen() and get_screen() methods
	available in PyGTK 2.2

	* pygtk-gtkitemfactory.xml Add deprecation warning.

	* pygtk-gtklabel.xml Fix typo.

	* pygtk-gtkliststore.xml (set_column_types)
	(iter_is_valid) (reorder) (swap) (move_after) (move_before) Add
	descriptions for these methods.

	* pygtk-gtkmenu.xml (set_screen) (attach) (set_monitor) Add
	descriptions for these methods.

	* pygtk-gtkmenu.xml ("move-scroll") Add description for this GTK+ 2.2
	signal.	Add descriptions for the style and child properties added in
	GTK+ 2.4

	* pygtk-gtkmenuitme.xml ("toggle-size-allocate") Fix typo.

	* pygtk-gtkmenushell.xml (select_first) (cancel) Add descriptions
	for these methods in PyGTK 2.2 and 2.4 respectively.

2004-04-13  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkexpander.xml Add.

	* pygtk-gtkimcontext.xml Add return value description for
	"delete-surrounding" and "retrieve-surrounding" signals.

	* pygtk-gtkclipboard.xml Add the request_* and wait_for_targets
	method descriptions.

2004-04-10  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkactiongroup.xml (add_toggle_actions) Add description of
	is_active item in toggle action tuple.
	(add_radio_actions) Add description of value and on_change parameters.
	Remove callback description from radio action tuple.

	* pygtk-gdkatom.xml Add.

	* pygtk-gdk-functions.xml (atom_intern) Remove.
	Fix dumb error.

	* pygtk-gtkclipboard.xml Add.

	* pygtk-gdk-classes.xml Add pygtk-gdkatom.xml.
	Hide unimplemented new classes

	* pygtk-gtk-classes Hide unimplemented new classes

	* pygtk-gtkaccelgroup.xml
	* pygtk-gtkbutton.xml
	* pygtk-gtkentrycompletion.xml
	* pygtk-gtkfilechooserdialog.xml
	* pygtk-gtkfontselectiondialog.xml
	* pygtk-gtkgenericcellrenderer.xml
	* pygtk-gdkatom.xml Fix some link errors.

2004-04-09  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkaction.xml Add.

	* pygtk-gtkactiongroup.xml Add.

	* pygtk-gtkborder.xml Add.

2004-04-08  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkfilefilter.xml Fix links to get_needed() method. Fix custom
	function signature and description.

	* pygtk-gtkfontbutton.xml Add.

	* pygtk-gtkfontbutton.xml Add purpose description. Fix 
	GtkFontSelectionDialog links.

	* pygtk-gtkfontselectiondialog.xml Add note about lack of font filters,
	etc. in GTK+ 2.2 and above.

	* pygtk-gtkhandlebox.xml Add "snap-edge-set" property description.
	GTK+ 2.2 and above.

	* pygtk-gtkhbuttonbox.xml Tweak the description.

2004-04-07  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkfilechooser.xml Add.
	* pygtk-gtkfilechooserdialog.xml Add.
	* pygtk-gtkfilechooserwidget.xml Add.
	* pygtk-gtkfilefilter.xml Add.

	* pygtk-gtkfilefilter.xml (add_custom) Doesn't take keyword args.

2004-04-06  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkeventbox.xml Add new methods: set_visible_window(),
	get_visible_window(), set_above_child() and get_above_child(); and
	properties: "above-child" and "visible-window" for PyGTK 2.4 and 
	GTK+ 2.4.

2004-04-05  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkcomboboxentry.xml Add.

	* pygtk-gtkcontainer.xml Fix bug in synopsis of get_focus_chain().

	* pygtk-gtkcontainer.xml Property "child" is read-only.

	* pygtk-gtkdrawingarea.xml Tweak the description.

	* pygtk-gtkcombobox.xml 
	* pygtk-gtkcomboboxentry.xml Add gtk.CellLayout to class synopsis.

	* pygtk-gtkeditable.xml Tweak description to specify it's an interface.

	* pygtk-gtkentry.xml Add PyGTK 2,4 methods set_alignment(),
	get_alignment(), set_completion(), get_completion(). Also add GTK+2.4
	property "xalign"

	* pygtk-gtkentrycompletion.xml Add.

2004-04-04  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkcombobox.xml Add.

	* pygtk-gtkcelllayout.xml. Add.

2004-04-03  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkcheckbutton.xml Fix formatting of Ancestry description.

	* pygtk-gtkcheckmenuitem.xml Minor reformatting.

	* pygtk-gtkcolorbutton.xml Add description of GtkColorButton in
	GTK+ 2.4 and PyGTK 2.4.

	* pygtk-gtkcombo.xml Added deprecation warning for PyGTK 2.4.

2004-04-02  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkbutton.xml Added descriptions of "focus-on-click", "xalign"
	and "yalign" propertiees for GTK+ 2.4. Added descriptions of the
	set_alignment(), get_alignment(), set_focus_on_click() and
	get_focus_on_click() methods available in PyGTK 2.4

	* pygtk-gtkbuttonbox.xml Add description of get_child_secondary()
	method available in PyGTK 2.4.

	* pygtk-gtkcalendar.xml Add descriptions of get_display_options() and
	set_display_options() methods available in PyGTK 2.4. Add deprecation
	warning for display_options() method.

	* pygtk-gtkcellrenderer.xml Add description of editing_canceled()
	method available in PyGTK 2.4. Add description of "editing-canceled"
	signal available in GTK+ 2.4.

2004-04-01  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkaccelgroup.xml Added descriptions of connect_by_path()
	method,	and accel_map_add_entry(), accel_map_lock_path and
	accel_map_unlock_path() functions.

	* pygtk-gtkalignment.xml Fix small bug in get_padding() description.

2004-03-31  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkalignment.xml Add description of set_padding() and
	get_padding() methods available in PyGTK 2.4

2004-03-30  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkcellrenderertoggle.xml Add description of "inconsistent"
	property added in GTK+ 2.2. Update other property descriptions.

	* pygtk-gtkcheckmenuitem.xml Add description of "draw-as-radio"
	property fro GTK+ 2.4 and add PyGTK2.4 methods set_draw_as_radio() and
	get_draw_as_radio().

2004-03-29  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkaccelgroup.xml Add documentation on the connect() method.
	Add a description of the return value for the "accel-activate" signal.

	* pygtk-gtkadjustment.xml Add description of properties available in
	GTK+2.4. Reformat the Attributes description.

	* pygtk-gtkalignment.xml Add description of padding properties
	available in GTK+ 2.4.

	* pygtk-gtkaccessible.xml Added one line description.

	* pygtk-gtkcalendar.xml Added description of properties available in
	GTK+2.4.

	* pygtk-gtkcellrenderertext.xml Added description of properties
	available in GTK+2.4.

2004-03-25  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkwindow.xml Remove description of atom_intern function.

	* pygtk-gdk-function.xml Add description of atom_intern function. Fixes
	#137935 (thanks to Erik Grinaker).

	* pygtk-gtkdrawingarea.xml Add explanation that drawing is done on the
	contained gtk.gdk.Window using the gdk.Drawable methods. Fixes #136297.
	(thanks to pachi@mmn-arquitectos.com)

2004-03-22  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkmessagedialog.xml (MessageDialog) Remove
	gtk.DIALOG_NO_SEPARATOR from the list of valid flags. Fixes #136984.
	(thanks to j.jordens and Eric Grinaker).

2004-04-13  Erik Grinaker  <erikg@wired-networks.net>

	* pygtk-gdkwindow.xml (raise): Changed name of raise() to
	raise_(), and added a note to explain this is because
	raise is a reserved Python keyword.

2004-01-28  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktogglebutton.xml (get_mode)
	(set_mode) Clarify the use of these methods as applied to checkbuttons
	and radiobuttons and the results. (thanks to Antonio A. A.)

	* pygtk2-ref.xml Change date. Version number to 1.9

2003-11-18  John Finlay  <finlay@moeraki.com>

	* pygtk-gtktreemodel.xml (foreach) Add description of function
	signature.
	

2003-10-07  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml Change date. Version number to 1.8

	* pygtk-gtkcellrenderertext.xml Fix signature an ddescription of the
	"edited" signal	to add path and new_text arguments. (thanks to Steve
	Chaplin)

	* pygtk-gtkcellrenderertoggle.xml Fix signature and description of
	"toggled" signal to add path argument. (thanks to Steve Chaplin)

2003-08-25  John Finlay  <finlay@moeraki.com>

	* pygtk-gtkadjustment.xml (set_all) Remove deprecation note and add
	keyword	designations.

	* pygtk-gdkpixbufloader.xml (write) Set initializer on parameter count
	and change description to indicate how count is used.

	* pygtk-gtktextbuffer.xml (create_tag) tag_name defaults to None.

2003-08-23  John Finlay  <finlay@moeraki.com>

	* pygtk-gdkpixbuf.xml Note that pixel_array attribute array contents
	can be changed.

	* pygtk-gdk-functions.xml (threads_init) Remove comments about broken
	threads imiplementation which is now fixed in 1.99.17+.

	* pygtk-gtktreemodel.xml (rows_reordered) Add description of this
	method.

	* pygtk-gtktreeview.xml (enable_model_drag_source)
	(emable_model_drag_dest)
	(get_drag_dest_row)
	(get_dest_row_at_pos)
	(enable_model_drag_source)
	(enable_model_drag_dest) Add descriptions of these methods.

	* pygtk-gtkwidget.xml (drag_source_set) Fix typo.

	* pygtk-gtkdialog.xml (add_buttons) Add description of this method.

	* pygtk-gobject.xml (handler_is_connected) Add description of this
	method.

	* pygtk2-ref.xml Change date. Version number to 1.7

	* pygtk-gtkdialog.xml (add_buttons) Fix typo in synopsis.

	* pygtk-gobject.xml (handler_is_connected) Fix link in synopsis.

	* pygtk-gdkwindow.xml Fix link references to
	function-gdk--window-foreign-new and function-gdk--visual-get-system.

2003-07-20  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml Change date. Version number to 1.6

	* pygtk-gdkwindow.xml (gtk.gdk.Window) Add documentation on the
	constructor.

2003-07-17  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml Change date and version number to 1.5.

	* pygtk-gtkeditable.xml Remove extraneous "widget" parameter from 
	"insert-text" signal description. Add description indicating position
	can't be retrieved in PyGTK.

2003-07-16  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml Change date and version number to 1.4.

	* pygtk-gtkitmefactory.xml (gtk.ItemFactory)
	(construct) Change container_type to refer to PyGTK types: gtk.Menu,
	gtk.MenuBar and gtk.OptionMenu.

2003-07-15  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.html Change to version 1.3

	* pygtk-gtkliststore.xml (insert)
	(insert_after)
	(insert_before)
	(prepend)
	(append) Add an entry for the return value for these methods.

	* pygtk-gtktoolbar.xml (insert_stock) Remove extraneous stock_id entry.

2003-07-12  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.html Change version number.

	* pygtk-pangoattriter.xml Change to pango.AttrIterator to match
	GTK+and PyGTK naming.

	* pygtk-pangoattrlist.xml (get_iterator) Change to reference 
	pango.AttrIterator.

2003-07-11  John Finlay  <finlay@moeraki.com>

	* pygtk2-ref.xml Change date tag to pubdate tag so it will be
	displayed.

	* pygtk-pangolayout.xml Correct the references to the Pango Markup
	Language reference page.

	* pygtk-gtk-functions.xml Fix incorrect reference to gtk.Object class.

	* pygtk-gtktextview.xml Remove reference to pango.TabArray.free

	* Pango Add content to pango class files (they were empty):
	pygtk-pangoattribute.xml
	pygtk-pangoattriter.xml
	pygtk-pangoattrlist.xml
	pygtk-pangocolor.xml
	pygtk-pangocontext.xml
	pygtk-pangofontdescription.xml
	pygtk-pangofontface.xml
	pygtk-pangofontfamily.xml
	pygtk-pangofontmap.xml
	pygtk-pangofontmetrics.xml
	pygtk-pangofontset.xml
	pygtk-pangofont.xml
	pygtk-pangoglyphstring.xml
	pygtk-pangolanguage.xml
	pygtk-pangolayout.xml
	pygtk-pango-markup.xml
	pygtk-pangotabarray.xml

	* pygtk-pango-classes.xml Add include for:
	pygtk-pangoattribute.xml
	pygtk-pangoattriter.xml
	pygtk-pango-markup.xml

	* pygtk2-ref.html Update date and version number. Add pango class
	reference chapter.

2003-07-10  John Finlay <finlay@moeraki.com>

	* Pango Add pango class files:
	pygtk-pangoattribute.xml
	pygtk-pangoattriter.xml
	pygtk-pangoattrlist.xml
	pygtk-pangocolor.xml
	pygtk-pangocontext.xml
	pygtk-pangofontdescription.xml
	pygtk-pangofontface.xml
	pygtk-pangofontfamily.xml
	pygtk-pangofontmap.xml
	pygtk-pangofontmetrics.xml
	pygtk-pangofontset.xml
	pygtk-pangofont.xml
	pygtk-pangoglyphstring.xml
	pygtk-pangolanguage.xml
	pygtk-pangolayout.xml
	pygtk-pango-markup.xml
	pygtk-pangotabarray.xml

	* ChangeLog Add this change log

	* pygtk2-ref.xml Include ChangeLog info in reference.

	* pygtk-gtkliststore.xml (insert)
	(insert_before)
	(insert_after)
	(prepend)
	(append) Fix description of row arg to be a sequence of values.

	* pygtk-gtktreestore.xml (insert)
	(insert_before)
	(insert_after)
	(prepend)
	(append) Fix description of row arg to be a sequence of values.

2003-07-02  John Finlay <finlay@moeraki.com>
	
	* pygtk2-ref.xml Update date.

	* pygtk-gdk-functions.xml (gtk.gdk.threads_init) Update
	description of thread support.

	* ChangeLog Add change log.