summaryrefslogtreecommitdiff
path: root/docs/reference/ChangeLog
blob: fe145cc6ddf727e94394413ddbd97b8881a31b29 (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
2004-10-12  John Finlay  <finlay@moeraki.com>

	* 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.