~ubuntu-branches/ubuntu/hardy/glib2.0/hardy-proposed

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
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
2008-09-12  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.16.6 ===

2008-07-19  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.16.5 === 

2008-07-01  Matthias Clasen  <mclasen@redhat.com>
	
	* === Released 2.16.4 ===

2008-04-08  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.16.3 ===

2008-04-07  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/unicode.sgml: Updates for Unicode 5.1

2008-03-31  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.16.2 ===

2008-03-10  Matthias Clasen  <mclasen@redhat.com>
	
	* === Released 2.16.1 ===

2008-03-10  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.16.0 ===

2008-03-10  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/linked_lists_double.sgml:
	* glib/tmpl/linked_lists_single.sgml: Remove docs that have
	been inlined.

2008-03-10  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/types.sgml: Add a Since marker for goffset (#521013,
	Charles Kerr)

2008-02-29  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/linked_lists_double.sgml: Move docs inline

2008-02-25  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.15.6 ===

2008-02-23  Matthias Clasen  <mclasen@redhat.com>

	* gio/gio-sections.txt: Updates

2008-02-21  Tor Lillqvist  <tml@novell.com>

	* glib/running.sgml: Clarify character set issues on Windows.

2008-02-13  Ryan Lortie  <desrt@desrt.ca>

        * gio/gio-sections.txt: add G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT

2008-02-12  Matthias Clasen <mclasen@redhat.com>

	* gio/migration.xml: Add a note about mime monitoring

2008-02-11  Matthias Clasen <mclasen@redhat.com>

	* === Released 2.15.5 ===

2008-02-11  Matthias Clasen <mclasen@redhat.com>

	* gio/gio-docs.xml:
	* gio/gio-sections.txt:
	* gio/overview.xml: Documentation additions

2008-02-10  Philip Withnall  <pwithnall@svn.gnome.org>

	* glib/tmpl/modules.sgml: Improve the documentation for
	the G_MODULE_EXPORT macro. (#514470)

2008-02-09  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/i18n.sgml: Improve the documentation for the
	N_() macro.  (#514053, Tommi Vainikainen)

2008-01-29  Christian Persch  <chpe@gnome.org>

	* glib/tmpl/macros_misc.sgml: G_GNUC_[PRETTY_]FUNCTION are
	deprecated since 2.16, not 2.14.

2008-01-28  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.15.4 ===

2008-01-27  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/trees-nary.sgml: Move docs inline

2008-01-27  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/macros_misc.sgml: Document G_GNUC_(PRETTY)_FUNCTION
	as deprecated.

2008-01-24  Matthias Clasen  <mclasen@redhat.com>

	* gio/migration.xml: Some more

2008-01-23  Matthias Clasen  <mclasen@redhat.com>

	* gio/migration.xml: Add something on trash handling
	and some very sketchy information on gnome_vfs_xfer

2008-01-23  Matthias Clasen  <mclasen@redhat.com>

	* gio/overview.xml: Document environment
	variables used by GIO.

2008-01-21  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.15.3 ===

2008-01-20  Matthias Clasen  <mclasen@redhat.com>

	* gio/gio-sections.txt: Additions

2008-01-14  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.15.2 ===

2008-01-11  Matthias Clasen  <mclasen@redhat.com>
	
	* glib/*: Hook up gtestutils docs.
	
2008-01-08  Alexander Larsson  <alexl@redhat.com>

        * gio/gio-docs.xml:
        * gio/migrating.xml:
	Remove GDirectoryMonitor refernces

008-01-07  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.15.1 ===

2008-01-07  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt:
	* gio/gio-sections.txt: Update to api changes

2008-01-06  Matthias Clasen  <mclasen@redhat.com>

	* glib/building.sgml: Document new dependencies and 
	configure options.

2007-12-31  Wouter Bolsterlee  <wbolster@svn.gnome.org>

	* gio/migrating.xml: Fixed invalid XML entity

2007-12-31  Wouter Bolsterlee  <wbolster@svn.gnome.org>

	* glib/tmpl/macros_misc.sgml: Fixed typo

2007-12-30  Matthias Clasen  <mclasen@redhat.com>

	* gio/Makefile.am:
	* gio/gio-sections.txt: Updates

2007-12-29  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/spawn.sgml: Add a warning about allowed functions
	between fork() and exec().

2007-12-24  Benjamin Otte  <otte@gnome.org>

	* glib/tmpl/timers.sgml: Add a warning about g_thread_init
	invalidating timers. (#491218)

2007-12-24  Mathias Hasselmann  <mathias@openismus.com>

	Fix typo in g_try_new0 docs (#505195, Felix Riemann).

	* docs/reference/glib/tmpl/memory.sgml: Reference
	n_structs, instead of non-existant n_counts argument.

2007-12-22  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/gtypemodule.sgml: Fix a typo

2007-12-20  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.15.0 ===

2007-12-19  Alexander Larsson  <alexl@redhat.com>

	* gio/migrating.xml:
	* gio/overview.xml:
	Some minor fixes and additions.
	
2007-12-17  Matthias Clasen <mclasen@redhat.com>

	* gio: Flesh out the overview and migration docs.

2007-12-17  Matthias Clasen <mclasen@redhat.com>

	* gio/migration.xml: Stub of a migration chapter
	* gio/overview.xml: Stub of an overview
	* gio/gvfs-overview.{odg,png}: Overview diagram taken
	from Alex Guadec slides.

	* gio/Makefile.am:
	* gio/gio-docs.xml: Include these

2007-12-17  Matthias Clasen <mclasen@redhat.com>

	* gio/gio-sections.txt: Updates

2007-12-14  Matthias Clasen <mclasen@redhat.com>

	* glib/tmpl/hash_tables.sgml:
	* glib/glib-sections.txt: Add hash iterator functions

2007-12-10  Matthias Clasen <mclasen@redhat.com>

	* gio/gio-sections.txt:
	* gio/gio-docs.xml:
	* gio/gio.types: Add gdesktopappinfo

2007-12-10  Bastien Nocera  <hadess@hadess.net>

	* glib/tmpl/keyfile.sgml: Mention the difference
	in handling booleans between GKeyFile and .INI files
	(Closes: #468882)

2007-12-10  Alexander Larsson  <alexl@redhat.com>

	* gio/Makefile.am:
	Remove more internal headers.
	
	* gio/gio-sections.txt:
	Update for changes

2007-12-10  Matthias Clasen  <mclasen@redhat.com>

	* gio/Makefile.am: Ignore gioalias.h
	* gio/gio-sections.txt: Updates

2007-12-07  Behdad Esfahbod  <behdad@gnome.org>

	* glib/tmpl/date.sgml: Fix tiny grammar typo.

2007-12-04  Emmanuele Bassi  <ebassi@gnome.org>

	* glib/glib-sections.txt: Add GChecksum public API.

	* glib/tmpl/checksum.sgml:
	* glib/glib-docs.sgml: Add the checksums API page.

2007-11-29  Behdad Esfahbod  <behdad@gnome.org>

	Bug 500361 – Improve docs for g_array_free() and g_ptr_array_free()

	* glib/tmpl/arrays.sgml:
	* glib/tmpl/arrays_pointer.sgml:
	Document how to free the return value.

2007-11-28  Matthias Clasen  <mclasen@redhat.com>

	* gio/gio-sections.txt: More cleanup

	* gio/gio.types: Remove internal types

2007-11-27  Matthias Clasen  <mclasen@redhat.com>

	* gio/gio-sections.txt: Remove nonexisting functions

2007-11-27  Matthias Clasen  <mclasen@redhat.com>

	* gio/gio-sections.txt: Some additions

2007-11-27  Matthias Clasen  <mclasen@redhat.com>

	* gio/gio-sections.txt:
	* gio/gio-docs.xml:
	* gio/gio.types: Update for api changes

2007-11-26  Alexander Larsson  <alexl@redhat.com>

	* Makefile.am:
	* gio/Makefile.am:
	* gio/gio-docs.xml:
	* gio/gio-sections.txt:
	* gio/gio.types:
	* gio/version.xml.in:
	Add gio docs

2007-11-23  Matthias Clasen <mclasen@redhat.com>

	* glib/tmpl/i18n.sgml:
	* glib/glib-sections.txt: Add g_dpgettext(), C_()

2007-11-18  Matthias Clasen <mclasen@redhat.com>

	* glib/tmpl/option.sgml: Update the example to demonstrate
	error handling.  (#497033, Matti Katila)

2007-11-09  Matthias Clasen <mclasen@redhat.com>

	* glib/tmpl/patterns.sgml: Add a warning about strlen vs
	g_utf8_strlen.  (#455725, Michael Rasmussen)

	* glib/tmpl/date.sgml: Add a footnote explaining leap years.
	(#491982, Areg Beketovski)

	* glib/tmpl/date.sgml: Improve g_date_clamp docs.  (#491970,
	Areg Beketovski)

2007-11-08  Matthias Clasen <mclasen@redhat.com>

	* glib/tmpl/memory.sgml
	* glib/tmpl/hooks.sgml: Cleanups and fixes

2007-11-08  Matthias Clasen <mclasen@redhat.com>

	* glib/tmpl/thread_pools.sgml: Fix the GThreadPool docs. 
	(#491959, Areg Beketovski)

2007-11-07  Matthias Clasen <mclasen@redhat.com>

	* glib/glib-sections.txt: Add g_markup_parse_context_get_element_stack

2007-11-07  Matthias Clasen <mclasen@redhat.com>

	* glib/building.sgml: Fix a typo

2007-11-07  Matthias Clasen <mclasen@redhat.com>

	* === Released 2.14.3 ===

2007-11-05  Mathias Hasselmann  <mathias@openismus.com>

	* docs/reference/gobject/tut_gtype.xml: Use correct naming conventions
	when explaining maman_bar_get_type(). (#493688) Mention G_DEFINE_TYPE.

2007-10-16  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/gparamspec.sgml: Small update  (#477704, Ross Burton)

2007-10-16  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.14.2 ===

2007-10-16  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/param_value_types.sgml: Add some discussion on 
	g_value_set_object() vs g_value_take_object().  (#477957, Davyd
	Madeley)

2007-09-19  Behdad Esfahbod  <behdad@gnome.org>

	* glib/building.sgml: Fix gettext URL. (#478349, kraai ftbfs.org)

2007-09-19  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.14.1 ===

2007-09-16  Matthias Clasen  <mclasen@redhat.com>
	
	* glib/Makefile.am: Remove reference to trio

2007-09-11  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/error_reporting.sgml: Add an example.  (#474229,
	Rob Bradford)

2007-09-09  Behdad Esfahbod  <behdad@gnome.org>

	* glib/tmpl/warnings.sgml: Improve G_BREAKPOINT docs. (#474899)

2007-09-05  Behdad Esfahbod  <behdad@gnome.org>

	* glib/tmpl/glib-unused.sgml:
	* glib/tmpl/macros_misc.sgml:
	* glib/tmpl/main.sgml:
	* gobject/tmpl/gparamspec.sgml:

Tue Aug 28 19:04:12 2007  Tim Janik  <timj@gtk.org>

	* glib/tmpl/memory_slices.sgml: clarified alignment
	expectations for g_slice_alloc().

2007-08-20  Behdad Esfahbod  <behdad@gnome.org>

	* glib/tmpl/unicode.sgml: Document that GUnicodeScript is
	interchangeable with PangoScript.

2007-08-20  Behdad Esfahbod  <behdad@gnome.org>

	* glib/tmpl/spawn.sgml:
	Fix typos (#468694).

2007-08-15  Mikael Hallendal  <micke@imendio.com>

	* glib/tmpl/keyfile.sgml: Clearify that only comments can precede
	groups in Key-files. (#466768)

2007-08-03  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.14.0 ===

2007-07-21  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Additions

2007-07-21  Matthias Clasen  <mclasen@redhat.com>
	
	* glib/tmpl/fileutils.sgml: Fix an inaccuracy in the
	G_FILE_TEST_IS_REGULAR docs, pointed out by
	Vincent Untz.  (#417068)

2007-07-20  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/limits.sgml:
	* glib/tmpl/types.sgml:
	* glib/glib-sections.txt: Add new functions

2007-07-19  Behdad Esfahbod  <behdad@gnome.org>

	* glib/glib-sections.txt:

2007-07-12  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.13.7 ===

Thu Jul 12 18:28:47 2007  Tim Janik  <timj@gtk.org>

	* gobject/tmpl/gtype.sgml: fixed g_type_name() docs to forbid passing in
	invalid type IDs.

Thu Jul 12 15:45:27 2007  Tim Janik  <timj@imendio.com>

	* glib/tmpl/threads.sgml: document major caveat of g_private_set/g_private_get,
	i.e. not retaining private data across g_thread_init.

Tue Jul 10 13:11:55 2007  Tim Janik  <timj@imendio.com>

	* glib/tmpl/types.sgml: corrected descriptions of gsize and gssize.

Tue Jul 10 13:04:03 2007  Tim Janik  <timj@imendio.com>

	* minor docu build fixes.

Tue Jul 10 12:31:04 2007  Tim Janik  <timj@imendio.com>

	* glib/tmpl/threads.sgml: document g_once_init_enter and g_once_init_leave.

2007-07-09  Matthias Clasen <mclasen@redhat.com>

	* tmpl/modules.sgml: Remove duplicate paragraph.
	(#45786, Ruben Vermeersch)

	* tmpl/modules.sgml: Remove duplicate code from
	an example. (#454785, Ruben Vermeersch)

Mon Jul  9 10:23:53 2007  Tim Janik  <timj@imendio.com>

	* gobject/tmpl/gclosure.sgml: GClosure docu fixes from Guillaume
	Cottenceau, #383155.

Fri Jun 29 2007  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.13.6 ===

Wed Jun 27 11:43:01 2007  Tim Janik  <timj@gtk.org>

	* gobject/tmpl/gtype.sgml (initializers): typo fix, #451459.

2007-06-23  Emmanuele Bassi  <ebassi@gnome.org>

	* glib/tmpl/memory.sgml: Add a clarification about pairing the
	memory allocation and free functions, and not mix system's
	malloc/free with the corresponding GLib ones. (#450216, Hubert
	Figuiere)

2007-06-18  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.13.5 ===

2007-06-18  Emmanuele Bassi  <ebassi@gnome.org>

	* glib/glib-sections.txt: Add g_timeout_add_seconds_full().

2007-06-17  Behdad Esfahbod  <behdad@gnome.org>

	* glib/tmpl/quarks.sgml:

2007-06-16  Emmanuele Bassi  <ebassi@gnome.org>

	* glib/tmpl/macros.sgml: Document the undefined behaviour of
	CLAMP() if low > high. (#448260)

2007-06-13  Sven Neumann  <sven@gimp.org>

	* glib/glib-sections.txt
	* glib/tmpl/memory_slices.sgml: document g_slice_copy() and
	g_slice_dup().

2007-06-13  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/warnings.sgml: Add some verbiage about
	intended use cases for the g_return macros, inspired
	by a bugzilla comment by Havoc Pennington.

2007-06-05  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.13.4 ===

2007-06-04  Matthias Clasen  <mclasen@redhat.com>
	
	* === Released 2.13.3 ===

2007-06-04  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt:
	* glib/tmpl/misc_utils.sgml: Add g_get_special_user_dir()
	and GUserDirectory.

2007-05-30  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/i18n.sgml: Add some hints about
	xgettext invokation.

2007-05-30  Dan Winship  <danw@novell.com>

	* glib/glib-sections.txt: 
	* glib/tmpl/keyfile.sgml: add G_KEY_FILE_DESKTOP_* macros

2007-05-26  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/objects.sgml: Fix a typo

2007-05-22  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.13.2 ===

2007-05-17  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/messages.sgml: Fix a typo (#436547,
	Guillaume Desmottes)

2007-05-14  Matthias Clasen  <mclasen@redhat.com>

	* glib/running.sgml: Document g_slice_debug_tree_statistics
	as debug-only functionality.

2007-05-11  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/option.sgml: Document new G_OPTION_ARG_REMAINING
	functionality.

2007-05-03  Behdad Esfahbod  <behdad@gnome.org>

	* glib/glib-sections.txt:
	* glib/tmpl/messages.sgml:
	Add g_unichar_ismark().

2007-05-03  Matthias Clasen <mclasen@redhat.com>

	* === Released 2.13.1 ===

2007-04-30  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Add new regex functions

2007-04-30  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: 
	* glib/tmpl/gregex.sgml: Update for the GRegex/GMatchInfo
	split.

2007-04-24  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Add g_option_context_get_help.

2007-04-11  Emmanuele Bassi  <ebassi@gnome.org>

	* glib/glib-sections.txt: Add new hash functions.

2007-04-02  Ryan Lortie  <desrt@desrt.ca>

	* gobject/tmpl/objects.sgml: Document ->constructed().

2007-03-18  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/thread_pools.sgml:
	* glib/tmpl/strings.sgml:
	* glib/tmpl/string_chunks.sgml:
	* glib/tmpl/spawn.sgml:
	* glib/tmpl/patterns.sgml:
	* glib/tmpl/modules.sgml:
	* glib/tmpl/memory_slices.sgml:
	* glib/tmpl/memory.sgml:
	* glib/tmpl/gregex.sgml: Trivial cleanups

2007-03-16  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.13.0 ===

Fri Mar 16 16:04:42 2007  Tim Janik  <timj@gtk.org>

	* glib/tmpl/scanner.sgml: some fixups, mention that changing scanner 
	config during the parsing phase is supported behavior.

2007-03-15  Marco Barisione <marco@barisione.org>

	Add GRegex for regular expression matching.  (#50075)

	* glib/Makefile.am:
	* glib/glib-docs.sgml:
	* glib/glib-sections.txt:
	* glib/tmpl/glib-unused.sgml:
	* glib/regex-syntax.sgml:
	* glib/tmpl/gregex-unused.sgml:
	* glib/tmpl/gregex.sgml: Add GRegex.

	* glib/building.sgml: Document build options for GRegex.

2007-03-14  Stefan Kost  <ensonic@users.sf.net>

	* gobject/tmpl/gparamspec.sgml:
	  Readd docs for G_PARAM_STATIC_NICK and add docs for new
	  G_PARAM_STATIC_STRINGS (fixes #418021).

2007-03-06  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/threads.sgml: Document G_ERRORCHECK_MUTEXES. (#412145)

	* glib/tmpl/trees-nary.sgml: Fix a typo in the docs for
	g_node_first_child().  (#409395, Vincent Untz)

2007-02-11  Stefan Kost  <ensonic@users.sf.net>

	* gobject/tut_gobject.xml:
	* gobject/tut_gsignal.xml:
	* gobject/tut_gtype.xml:
	* gobject/tut_howto.xml:
	* gobject/tut_intro.xml:
	* gobject/tut_tools.xml:
	Format XML to be more editable. Describe Interfaces better. Add a
	footnote at first occurance of 'maman_'.

2007-02-08  Stefan Kost  <ensonic@users.sf.net>

	* gobject/tut_gobject.xml:
	* gobject/tut_gsignal.xml:
	* gobject/tut_gtype.xml:
	* gobject/tut_howto.xml:
	* gobject/tut_tools.xml:
	Unify spelling of GObject and GType. Improve some wording. Update the
	usage of private data. Make tables use row-spans and add id's to them.

2007-01-30  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/gsignal.sgml: Correct a typo.
	(#401994, Mariano Suarez-Alvarez)

2007-01-26  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/macros_misc.sgml: Document G_GNUC_INTERNAL
	support for Sun Studio.

2007-01-23  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/objects.sgml: Document 
	g_object_class_override_property as 2.4 addition (#399940, 
	Ian Turner)

2007-01-17  Behdad Esfahbod  <behdad@gnome.org>

	* glib/tmpl/macros_misc.sgml: Put back G_GNUC_HAVE_VISIBILITY
	doc that was removed accidentally.

2007-01-15  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/gparamspec.sgml; Document G_PARAM_STATIC_NICK.
	(#396564, Vincent Untz)

2007-01-12  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/keyfile.sgml: Small clarifications.

2007-01-03  Behdad Esfahbod  <behdad@gnome.org>

	* glib/glib-sections.txt: Add g_unichar_iszerowidth.

	* glib/tmpl/glib-unused.sgml:
	* glib/tmpl/keyfile.sgml:
	* glib/tmpl/macros_misc.sgml:
	* glib/tmpl/messages.sgml:
	* glib/tmpl/unicode.sgml:
	Template changes.

2007-01-02  Matthias Clasen  <mclasen@redhat.com>
	
	* glib/running.sgml: Remove C99ism from example.

2006-12-31  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/threads.sgml: Fix whitespace.  (#391116)
	
2006-12-28  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/gtype.sgml: Updates

	* gobject/tmpl/gtypemodule.sgml: Document dynamic type
	registration macros.

	* gobject/gobject-docs.sgml: Add "Since 2.14" index
	* gobject/gobject-sections.txt: Add dynamic type macros

2006-12-28  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/objects.sgml: Clarify a detail about
	g_object_set_data_full.  (#343750, Christian Neumair)

Wed Dec 27 15:56:53 2006  Tim Janik  <timj@gtk.org>

	* glib/tmpl/memory_slices.sgml: 
	* glib/running.sgml: document G_SLICE=debug-blocks.

2006-12-27  Matthias Clasen  <mclasen@redhat.com>

	* glib/running.sgml:
	* glib/tmpl/option.sgml:
	* glib/tmpl/date.sgml: Add hints for locale-dependent functions.

2006-12-18  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/keyfile.sgml: Small clarification (#369908,
	Tapani Pälli)

2006-12-17  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/spawn.sgml: Refer to g_child_watch_add() in addition
	to waitpid().

	* gobject/tmpl/objects.sgml: Expand GObject::notify
	documentation.  (#381722, Nickolay V. Shmyrev)

	* gobject/tmpl/gparamspec.sgml: Add canonical-parameter-name id.

2006-12-15  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-docs.sgml: Add a "Since 2.14" section.

	* glib/glib-sections.txt: Add g_string_chunk_clear.
	
2006-12-14  Matthias Clasen  <mclasen@redhat.com>

	* gobject/*.xml: s/Gnome/GNOME/g (#352156, Guillaume Desmottes)

	* glib/tmpl/keyfile.sgml: Clarify the behaviour
	wrt. to duplicate keys and groups.

2006-12-13  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/modules.sgml: Point out that valid symbols may be NULL.

2006-10-08  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/unicode.sgml: Document GUnicodeType.

2006-10-08  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Add g_unichar_get_script() and
	GUnicodeScript.

	* glib/tmpl/unicode.sgml: Document GUnicodeScript

	* gobject/tmpl/enumerations_flags.sgml: Add a hint about
	the requirement that enum and flags values must be static.

2006-10-01  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/option.sgml: Improve example.  (#367625, Ross Burton) 

Mon Sep 11 14:57:46 2006  Tim Janik  <timj@imendio.com>

	* glib/running.sgml: documented G_DEBUG flags resident-modules
	and bind-now-modules, patch by Christian Persch on bug #345099.

2006-09-10  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Add new functions

2006-08-28  Matthias Clasen  <mclasen@redhat.com>

	* glib/compiling.sgml: Add a note about G_DISABLE_DEPRECATED.
	(#353172, Matt Barnes)

Wed Aug 16 13:55:39 2006  Tim Janik  <timj@imendio.com>

	* glib/tmpl/trash_stack.sgml: added notes about complexity.

2006-08-15  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.12.2 ===

2006-08-10  Josh Parsons  <josh.parsons@stonebow.otago.ac.nz>

	* gobject/tmpl/gtype.sgml:
	* glib/tmpl/threads.sgml: Style and grammar fixes.

2006-08-05  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/messages.sgml: Add some hints
	about making warnings fatal.  (#348785, Matt
	Barnes)

2006-07-22  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.12.1 ===

2006-07-20  Tor Lillqvist  <tml@novell.com>

	* glib/tmpl/date.sgml: Improve doc for
	g_date_strftime(). (#346197)

2006-07-05  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/base64.sgml: Remove bogus reference
	to nonexisting function.  (#346660, Mark Drago)
	
2006-07-02  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.12.0 ===

2006-06-20  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.11.4 ===

2006-06-12  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.11.3 ===

2006-06-05  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.11.2 ===

2006-06-01  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Add new hash table functions.
	Add new g_source functions.

Wed May 31 11:35:48 2006  Tim Janik  <timj@gtk.org>

	* gobject/tmpl/gtype.sgml (Note): amend G_TYPE_CHAR according to #303622.

2006-05-28  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/markup.sgml: Document G_MARKUP_TREAT_CDATA_AS_TEXT.

2006-05-16  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Add g_ascii_strtoll

2006-05-15  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.11.1 ===

2006-05-13  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Document new api.

2006-05-11  Bastien Nocera  <hadess@hadess.net>

	* glib/tmpl/option.sgml: add documentation for G_OPTION_ARG_INT64

2006-05-10  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/gtype.sgml: Updates

2006-05-02  Matthias Clasen  <mclasen@redhat.com>
	
	* === Released 2.11.0 ===

2006-05-02  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/gtypemodule.sgml: Document a little
	pitfall with the last unref for an object.

2006-04-27  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/unicode.sgml: Mention that GLib 2.12 will
	support UCD 5.0.

2006-04-21  Matthias Clasen  <mclasen@redhat.com>

	* gobject/gobject-sections.txt:
	* gobject/tmpl/objects.sgml: 
	* gobject/tmpl/gtype.sgml: Additions

	* glib/glib-docs.sgml:
	* gobject/gobject-docs.sgml: Add 2.12 indices.

	* gobject/tmpl/gtype.sgml: Document g_type_register_static_simple

2006-04-19  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/objects.sgml: Add some missing Since: 2.8 tags

2006-04-18  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Add new keyfile api

2006-04-18  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tut_gobject.xml: Say that ref/unref are thread-safe now.  
	(#322883, Christophe Fergeau)
	
2006-04-05  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/signals.sgml: Document class_offset 0.
	and that class_closure may be NULL.

2006-04-04  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt:
	* glib/glib-docs.sgml: Add Base64 section

2006-04-03  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/objects.sgml: Add some verbiage to 
	g_object_ref_sink_docs.  (#336677)

2006-03-30  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/objects.sgml: Update the floating docs wrt
	to GInitiallyUnowned.

	* gobject/tmpl/param_value_types.sgml: 
	* gobject/tmpl/objects.sgml: 
	* gobject/tmpl/gtype.sgml: Additions

	* glib/tmpl/messages.sgml: Cleanup

	* glib/tmpl/memory_slices.sgml: Adapt to a parameter name change

	* glib/tmpl/linked_lists_double.sgml: Document g_list_free1

2006-03-27  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/option.sgml: Document floating point arguments

Fri Mar 24 15:22:04 2006  Tim Janik  <timj@imendio.com>

	* glib/tmpl/atomic_operations.sgml: some wording fixups.

2006-03-20  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/types.sgml: Document G_HAVE_GINT64 as deprecated.
	(#335294, Richard Laager)

2006-03-15  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/option.sgml: Hint that @error should
	be set in error cases.  (#334646, Christian Persch)

2006-03-09  Matthias Clasen  <mclasen@redhat.com>

	* glib/templ/timers.sgml: Mention that the second
	parameter of g_timer_elapsed can be NULL (#333916,
	Christian Neumair)

2006-03-07  Matthias Clasen  <mclasen@redhat.com>

	* ===  Released 2.10.1 ===

2006-02-24  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.10.0 ===

2006-02-22  Stefan Kost  <ensonic@users.sf.net>

	* gobject/tmpl/gtype.sgml:
	  add @since: for _add_private, _GET_PRIVATE
	* gobject/tut_gobject.xml:
	  fix example to use ->priv and not ->private
	* gobject/tut_howto.xml:
	  fix g_type_class_add_private example

2006-02-14  Tor Lillqvist  <tml@novell.com>

	* glib/tmpl/iochannels.sgml: Document some Windows-specific issues.

	* glib/glib-sections.txt: Move three Windows-specific functions
	that now are documented from being Private to the correct section.

2006-02-10  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.9.6 ===

2006-02-10  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/date.sgml: Fix a typo (#329123, Kjartan Maraas)

2006-01-27  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.9.5 ===

2006-01-27  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: 
	* glib/tmpl/memory.sgml: Document g_mem_gc_friendly.

2006-01-26  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tut_tools.xml: Mention g_trap_object_ref

	* glib/running.sgml: Add g_trap variables to the index.
	Mention conditional breakpoints as an alternative.

Wed Jan 25 17:32:22 2006  Tim Janik  <timj@gtk.org>

	* glib/tmpl/memory_slices.sgml: link to G_DEBUG/G_SLICE where appropriate.

Wed Jan 25 17:12:47 2006  Tim Janik  <timj@gtk.org>

	* glib/running.sgml: documented G_SLICE=always-malloc and
	G_DEBUG=gc-friendly. added anchors for each env var.

2006-01-18  Matthias Clasen  <mclasen@redhat.com>
	
	* === Released 2.9.4 ===

2006-01-18  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/scanner.sgml: Add a note explaining peculiarities
	of peek_token wrt to scope changes.  (#307922)
	
2006-01-17  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/memory.sgml: Add a note about casting the results
	of g_new() and g_new0().

2006-01-16  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.9.3 ===

2006-01-12  Federico Mena Quintero  <federico@ximian.com>

	* glib/file-name-encodings.sxd: Replaced with the correct file.

	* glib/file-name-encodings.png: Huh?  This was a 6-byte file.
	Replaced it with the correct one.

2006-01-07  Stefan Kost  <ensonic@users.sf.net>

	* gobject/tut_gtype.xml:
	  fix internal link, little XXX cleanup

2006-01-05  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.9.2 ===

2006-01-03  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Add new API 

2006-01-02  Stepan Kasal  <kasal@ucw.cz>

	* glib/glib-docs.sgml (glib-Windows-Compatability-Functions): Rename
	(glib-Windows-Compatibility-Functions): , ie. s/Compata/Compati/
	* glib/glib-sections.txt: s/Compata/Compati/

2005-12-24  Matthias Clasen  <mclasen@redhat.com>

	* gobject/gobject-sections.txt:
	* gobject/tmpl/param_value_types.sgml: Document GType 
	paramspecs

2005-12-20  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: add g_thread_pool_set_sort_function.
	
2005-12-19  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/*.sgml: Update versioned deprecation

	* gobject/tmpl/gboxed.sgml: Document G_TYPE_HASH_TABLE.

	* glib/glib-sections.txt: Add g_list_free1

	* glib/glib-overrides.txt: Remove G_THREADS_IMPL_SOLARIS

2005-12-14  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: 
	* glib/tmpl/atomic_operations.sgml: Document new atomic
	operations.

2005-12-14  Federico Mena Quintero  <federico@ximian.com>

	* glib/building.sgml: Clarify exactly what happens when you use --enable-gc-friendly.

Mon Dec 12 15:31:41 2005  Tim Janik  <timj@imendio.com>

	* gobject/tmpl/objects.sgml: corrected floating reference documentation.

2005-12-09  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.9.1 ===

2005-12-07  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/gparamspec.sgml: 
	* gobject/tmpl/gtype.sgml: Document n_preallocs as
	ignored.

2005-12-05  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Updates
	
	* glib/tmpl/memory_slices.sgml: Fix a small formatting
	problem.

	* glib/tmpl/trees-nary.sgml: 
	* glib/tmpl/linked_lists_single.sgml: 
	* glib/tmpl/linked_lists_double.sgml: 
	* glib/tmpl/caches.sgml: 
	* glib/tmpl/strings.sgml: 
	* glib/tmpl/scanner.sgml: 
	* glib/tmpl/main.sgml: Add versioned deprecation.

Mon Dec  5 15:53:37 2005  Tim Janik  <timj@imendio.com>

	* glib/tmpl/memory_slices.sgml: updates to new g_slice API
	and minor fixes.

2005-12-05  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/generic_values.sgml: 
	* glib/tmpl/trees-nary.sgml: 
	* glib/tmpl/linked_lists_double.sgml: 
	* glib/tmpl/linked_lists_single.sgml: 
	* glib/tmpl/memory_chunks.sgml: 
	* glib/tmpl/allocators.sgml: 
	* glib/tmpl/macros_misc.sgml: Updates 

	* glib/Makefile.am: Ignore gmirroringtable.h

2005-12-04  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/macros_misc.sgml: Document G_GNUC_WARN_UNUSED_RESULT.

2005-12-03  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/caches.sgml: Document g_cache_value_foreach
	as deprecated; document g_cache_key_foreach more thorougly

	* glib/glib-sections.txt:
	* glib/tmpl/linked_lists_single.sgml: Add g_slist_free1.

	* glib/tmpl/memory_chunks.sgml: Document GMemChunk
	as deprecated.

	* glib/glib-docs.sgml: 
	* glib/glib-sections.txt: 
	* glib/tmpl/memory_slices.sgml: Document the slice
	allocator.

2005-12-02  Matthias Clasen  <mclasen@redhat.com>

	* glib/building.sgml: 
	* glib/tmpl/threads.sgml: 
	* glib/glib-sections.txt: Remove G_THREADS_IMPL_SOLARIS

	* glib/tmpl/types.sgml: Document G_GUINT64_CONSTANT.

2005-11-27  Matthias Clasen  <mclasen@redhat.com>

	* gobject/gobject-sections.txt: 
	* gobject/tmpl/gboxed.sgml: Add g_object_ref_sink,
	g_object_is_floating, g_param_spec_ref_sink, 
	G_TYPE_HASH_TABLE

2005-11-22  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Add g_hash_table_ref
	and g_hash_table_unref

2005-11-17  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.9.0 ===

2005-11-17  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/date.sgml: 
	* glib/glib-sections.txt: Add g_date_set_time_t,
	g_date_set_time_val and g_thread_foreach

2005-11-08  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/threads.sgml: Improve GOnce docs.
	(#320950, Christophe Fergeau)

2005-11-04  Matthias Clasen  <mclasen@redhat.com>

	* glib/running.sgml: Document fatal_criticals.

2005-10-26  Matthias Clasen  <mclasen@redhat.com>

	* gobject/gobject-sections.txt: 
	* gobject/tmpl/generic_values.sgml: Document g_value_set_instance(),
	(#319885, Milosz Derezynski)

2005-10-26  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/unicode.sgml: Add a footnote about surrogate 
	pairs.  (#317683, Behdad Esfahbod)

2005-10-05  Matthias Clasen  <mclasen@redhat.com>

	* glib/compiling.sgml: Document gmodule-no-export-2.0

2005-10-01  Davyd Madeley  <davyd@fugro-fsi.com.au>

	* glib/tmpl/string_utils.sgml: Minor documentation improvements for
	  g_strchug, g_strchomp and g_strstrip. Brought forward from glib-2-8.

2005-08-31  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/quarks.sgml: 
	* glib/glib-sections.txt: Add string interning functions.

2005-08-30  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/arrays.sgml: 
	* glib/tmpl/arrays_pointer.sgml: 
	* glib/tmpl/arrays_byte.sgml: Enhance sort() documentation.
	(#314839, Behdad Esfahbod)

2005-08-26  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-docs.sgml:
	* gobject/gobject-docs.sgml: Add indices for new
	symbols in 2.10

	Improvements pointed out by Behdad Esfahbod (#314460):
	
	* glib/tmpl/strings.sgml: Fix up some character/byte
	sloppyness.

	* glib/tmpl/iochannels.sgml: Don't mention deprecated
	functions in the introduction.

2005-08-23  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.8.1 ===

2005-08-22  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/date.sgml: Point out time_t vs GTime pitfalls.

2005-08-15  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-gettexttize.xml:
	* gobject/glib-genmarshal.xml:
	* gobject/glib-mkenums.xml: Fix some trivial
	formatting problems.  (#313099, Stepan Kasal)

	* glib/tmpl/modules.sgml: Document that file_name can
	be NULL.  (#313143, Gustavo Carneiro)

	* glib/tmpl/linked_lists_single.sgml: 
	* glib/tmpl/linked_lists_double.sgml: Clarify docs
	a little.  (#311727, Tristan van Berkom)

2005-08-12  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.8.0 ===

2005-08-10  Stepan Kasal  <kasal@ucw.cz>

	Fix typos: Invokation --> Invocation (in various places)

	* glib/tmpl/error_reporting.sgml: Fix a typo.
	* gobject/tut_howto.xml: Several typos and stylistic changes.

2005-08-05  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/gparamspec.sgml: 
	* glib/tmpl/types.sgml: 
	* glib/tmpl/option.sgml: Small fixes.

	* gobject/tmpl/generic_values.sgml: Small fixes

2005-08-05  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.7.7 ===

2005-08-03  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.7.6 ===

2005-08-02  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.7.5 ===

Sat Jul 30 23:40:35 2005  Tim Janik  <timj@gtk.org>

	* glib/tmpl/datalist.sgml:
	* glib/tmpl/datalset.sgml: document non-thread-safety for 
	_foreach() functions.

2005-07-26  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/arrays.sgml: One more improvement.

2005-07-25  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/arrays.sgml: Add some details.  (#311310,
	Jochen Baier)

2005-07-21  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.7.4 ===

2005-07-20  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/macros_misc.sgml: Add some discouraging
	comments to the G_INLINE_FUNC macros.  (#310836,
	Callum McKenzie)

2005-07-19  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/byte_order.sgml: Add docs for #307047,
	Bryan Silverthorn.

2005-07-15  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.7.3 ===
	
2005-07-13  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-overrides.txt: Add G_VA_COPY

	* glib/tmpl/option.sgml: Document that short names must
	be printable ASCII characters != '-'.

2005-07-08  Matthias Clasen  <mclasen@redhat.com>
	
	* === Released 2.7.2 ===

2005-07-08  Matthias Clasen  <mclasen@redhat.com>

	* gobject/gobject-docs.sgml: 
	* glib/glib-docs.sgml: Add the "new in 2.8" index.

2005-07-05  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/objects.sgml: Add an example
	for using a custom constructor.

2005-06-30  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.7.1 ===

2005-06-29  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/threads.sgml: 
	* glib/tmpl/option.sgml: 
	* glib/tmpl/fileutils.sgml: 
	* glib/tmpl/iochannels.sgml: 
	* glib/tmpl/hooks.sgml: 
	* glib/tmpl/misc_utils.sgml: 
	* glib/tmpl/date.sgml: 
	* glib/glib-sections.txt: Updates

2005-06-24  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Add GMappedFile functions.

2005-06-18  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/option.sgml (GOptionFlags): document
 	G_OPTION_FLAG_NO_ARG and G_OPTION_FLAG_FILENAME  (Dan Winship)

2005-06-16  Mathieu Lacage <mathieu@gnome.org>

	* gobject/tut_gtype.xml: fix typo reported by Hong Gang XU.
	
2005-06-10  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.7.0 ===

2005-06-09  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Add g_chdir

	* glib/tmpl/threads.sgml: Document that stack size
	will be ignored if the underlying thread implementation
	doesn't support stack sizes.

2005-06-07  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Add g_utf8_collate_key_for_filename.

2005-05-25  Mathieu Lacage <mathieu@gnome.org>

	* gobject/tut_*.xml: fix lots of typos, 
	some of which were reported by Leonardo Boshell.

2005-05-23  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/threads.sgml: Point out exceptions to the
	general GLib data structure locking rules.

2005-05-20  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/threads.sgml: Add a paragraph about thread
	safety of GLib data structures.

	* glib/compiling.sgml: Update an example from 1.3 to 2.x

2005-05-13  Matthias Clasen  <mclasen@redhat.com>

	* gobject/glib-genmarshal.1: 
	* gobject/glib-genmarshal.xml: Mention 64bit integer
	types.

2005-05-10  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/markup.sgml: Fix sloppy language, pointed out by
	Daniel Vaillard.

2005-05-09  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/value_collection.sgml: 
	* gobject/tmpl/gboxed.sgml: 
	* gobject/tmpl/enumerations_flags.sgml: 
	* gobject/tmpl/objects.sgml: Add long descriptions.

2005-05-05  Owen Taylor  <otaylor@redhat.com>

	* glib/Makefile.am glib/glib-sections.txt gobject/gobject-sections.txt:
	Update

	* gobject/tmpl/objects.sgml: Document toggle-references.

2005-05-02  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/hash_tables.sgml: Move some docs inline.

	* glib/tmpl/windows.sgml: 
	* gobject/tmpl/signals.sgml: 
	* gobject/tmpl/generic_values.sgml: 
	* gobject/tmpl/gtype.sgml: 
	* gobject/tmpl/value_arrays.sgml: 
	* gobject/tmpl/param_value_types.sgml: 
	* gobject/tmpl/gtypemodule.sgml:
	* gobject/tmpl/enumerations_flags.sgml: Small additions.

2005-05-01  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/completions.sgml: Document
	strncmp_func.

	glib/glib-sections.txt: Add new API.

2005-04-29  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/gboxed.sgml: 
	* gobject/gobject-sections.txt: Add G_TYPE_DATE.

2005-04-23  Stefan Kost  <ensonic@users.sf.net>

	* gobject/tut_gtype.xml:
	* gobject/tut_howto.xml:
	all interface examples use 'interface' instead of 'class'

2005-04-22  Stefan Kost  <ensonic@users.sf.net>

	* gobject/Makefile.am:
	* gobject/gobject-docs.sgml:
	* gobject/tut_gobject.xml:
	* gobject/tut_gsignal.xml:
	* gobject/tut_gtype.xml:
	* gobject/tut_howto.xml:
	* gobject/tut_intro.xml:
	* gobject/tut_tools.xml:
	merged in docs form the gobject tutorial

2005-03-29  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/arrays_pointer.sgml: Clarify the docs for
	g_ptr_array_free and g_ptr_array_remove_range.  (#170148, 
	#170149, Jared Lash)

2005-03-29  Tor Lillqvist  <tml@novell.com>

	* glib/tmpl/spawn.sgml: Add Win32 warnings regarding the child
	setup function.

2005-03-21  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: 
	* glib/tmpl/memory.sgml: Document g_try_new, g_try_new0 
	and g_try_renew, g_try_malloc0.

2005-03-20  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/gparamspec.sgml: Document G_PARAM_SPEC_STATIC_
	flags.

2005-03-08  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: 
	* glib/tmpl/macros_misc.sgml: Document G_GNUC_NULL_TERMINATED.

2005-03-07  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/gtype.sgml:
	* gobject/tmpl/param_value_types.sgml:
	* gobject/tmpl/gparamspec.sgml: Apply patches by
	Stefan Kost to document naming restrictions. (#167614)

2005-02-10  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/option.sgml: Fix a typo.  (#166985)

2005-02-07  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Add g_listenv.

2005-02-04  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/linked_lists_double.sgml: 
	* glib/tmpl/linked_lists_single.sgml: Add a note 
	regarding inefficiency of repeated appends. (#166271,
	Olivier Sessink)

2005-02-03  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/quarks.sgml: Add a warning against
	using g_quark_from_static_string() in dynamically
	loaded modules. 

2005-02-02  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/misc_utils.sgml: 
	* glib/tmpl/hash_tables.sgml: Move some doc 
	comments inline.

2005-01-16  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/enumerations_flags.sgml: Fix an
	example.  (#164269, Sebastien Bacher)
	
2005-01-07  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.6.1 ===

2005-01-06  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/keyfile.sgml: Add hint about group name 
	case sensitivity.  (#163029, Bastien Nocera)

2005-01-04  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/signals.sgml: Small addition. (#145158,
	Mariano Su??rez-Alvarez)

2004-12-20  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/signals.sgml: Fix a typo.  (#161713,
	Vincent Untz)

2004-12-17  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/misc_utils.sgml: Clarify g_get_prgname docs.  
	(#161480, Danny Milo)

2004-12-16  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/version.sgml: Improve wording.  (#161484,
	Christian Biere)

	* === Released 2.6.0 ===
	
2004-12-15  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Add g_rmdir

2004-12-15  Alexander Larsson  <alexl@redhat.com>

	* glib/glib-sections.txt:
	Add g_filename_display_basename

2004-12-15  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/generic_values.sgml: Document some return
	values.  (#161345, Stefan Kost)

2004-12-02  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.5.7 ===
	
2004-12-02  Matthias Clasen  <mclasen@redhat.com>

	* glib/building.sgml: 
	* glib/tmpl/linked_lists_single.sgml: 
	* glib/tmpl/linked_lists_double.sgml: 
	* glib/tmpl/trees-nary.sgml: Add some warnings regarding
	--disable-mem-pools.

2004-12-01  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/iochannels.sgml: Fix a typo.  (#160162, Tom Copeland)

2004-11-30  Matthias Clasen  <mclasen@redhat.com>

	* glib/building.sgml: Document --enable-man and --disable-visibility.

2004-11-28  Tor Lillqvist  <tml@iki.fi>

	* glib/tmpl/misc_utils.sgml: Document encoding of g_get_user_name(),
	g_get_real_name(), g_get_tmp_dir() and g_get_current_dir().

2004-11-28  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/macros_misc.sgml: Document G_GNUC_MALLOC.

	* glib/glib-sections.txt: Add G_GNUC_MALLOC

2004-11-12  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.5.6 ===
	
2004-11-08  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/trees-nary.sgml: Document G_TRAVERSE_LEAVES and
	G_TRAVERSE_NON_LEAVES

	* glib/tmpl/hooks.sgml: 
	* glib/tmpl/iochannels.sgml: Updates

2004-11-04  Tor Lillqvist  <tml@iki.fi>

	* glib/tmpl/windows.sgml: Improve G_WIN32_HAVE_WIDECHAR_API
	documentation.

	* glib/tmpl/option.sgml: Document G_OPTION_FLAG_REVERSE.

2004-11-02  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.5.5 ===

2004-11-02  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Add g_get_filename_charsets and
	g_filename_display_name.

2004-11-01  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/option.sgml: Updates

2004-10-31  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/windows.sgml: Document G_WIN32_IS_NT_BASED,
	G_WIN32_HAVE_WIDECHAR_API.

	* glib/glib-sections.txt: Add g_lstat

	* glib/running.sgml: Document G_WIN32_PRETEND_WIN9X.

2004-10-29  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/option.sgml: Add an example.

	* glib/glib-sections.txt: Add G_OPTION_REMAINING

	* glib/tmpl/option.sgml: Add docs.

2004-10-28  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/keyfile.sgml: Add some introductory notes.

2004-10-27 Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.5.4 ===

2004-10-27  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/fileutils.sgml: Add some intro.

2004-10-26  Matthias Clasen  <mclasen@redhat.com>

	* gobject/gobject-docs.sgml: Add an index for 2.6 additions.

	* gobject/gobject-sections.txt: Additions.

	* gobject/Makefile.am (IGNORE_HFILES): Add gobjectalias.h

	* glib/tmpl/main.sgml: Document GChildWatchFunc

	* glib/tmpl/keyfile.sgml: New template.

	* glib/glib-sections.txt: Additions.

	* glib/tmpl/macros_misc.sgml: Document some more of
	the macros.

2004-10-25  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-docs.sgml:  Add GKeyFile section, add
	index for 2.6 additions.

2004-10-23  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/gtype.sgml (GTypeInterfaceCheckData):
	Rename first parameter.

	* glib/glib-sections.txt: Add GKeyFile section.

2004-10-17  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/macros.sgml: 
	* glib/glib-sections.txt: Document G_IS_DIR_SEPARATOR. 

2004-10-05  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/objects.sgml: Improve the docs for
	g_object_get_property().  (#153424, Stefan Kost)

2004-10-03  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/signals.sgml: Improve docs for 
	g_signal_add_emission_hook.  (#154299, Nickolay V. Shmyrev)

2004-09-20  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/messages.sgml: Correct the docs for the default log
	handler wrt to which messages go to stderr. (#153041, Philippe Blain)

Sun Sep 19 23:15:17 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/patterns.sgml: Point to g_utf8_strreverse() for
	reversing UTF-8 strings.  (#153091, Adam Hooper)

2004-09-18  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.5.3 ===

2004-09-16  Matthias Clasen  <mclasen@redhat.com>

	* glib/Makefile.am: Ignore galias.h

	* glib/glib-sections.txt: Updates.

2004-09-09  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/misc_utils.sgml: Add a hint about $HOME to the
	docs of g_get_home_dir().

Thu Sep  9 00:11:19 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/glib-sections.txt: Add g_strv_length().

2004-09-07  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: Add g_get_language_names().

Mon Sep  6 01:56:13 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/messages.sgml: Remove excess markup and fix a markup
	error.

Sun Sep  5 01:44:23 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/glib-sections.txt: 
	* glib/tmpl/messages.sgml: Document g_log_set_default_handler().

Wed Sep  1 20:27:59 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/glib-sections.txt: Add g_date_get_iso8601_week_of_year.

Sun Aug 29 23:50:45 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/fileutils.sgml: Fix a typo.  (#151109, Stepan Kasal)

2004-08-27  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/fileutils.sgml: Add G_FILE_ERROR_NOSYS.

2004-08-25 Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.5.2 ===

2004-08-23  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/warnings.sgml: Add an example for
	g_on_error_query() usage.  (#148716, Christian Persch)

2004-08-12  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/threads.sgml: Document the necessity to call
	g_thread_init() when using threads 
	(even non-gthreads).  (#149490, Vincent Untz)


Tue Aug  3 16:43:22 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/glib-sections.txt: Add a section for GOption.
	* glib/glib-docs.sgml: Include GOption section.
	* glib/tmpl/option.sgml: New template.

Tue Aug  3 15:34:16 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/glib-sections.txt: Add a separate section for
	version information.
	* glib/glib-docs.sgml: Include version section.
	* glib/tmpl/version.sgml: New template.

2004-08-02  Matthias Clasen  <mclasen@redhat.com>

	* glib/glib-sections.txt: 
	* glib/tmpl/macros_misc.sgml: Document G_GNUC_INTERNAL.

2004-08-01 Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.5.1 ===

2004-07-28  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/misc_utils.sgml: Clarify docs for 
	g_get_real_name().  (#143552, Danek Duvall)

Fri Jul 23 10:38:24 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/limits.sgml: Fix docs for G_MAXSIZE.  (#148262, 
	Christophe Fergeau)

Sun Jul 18 18:03:08 2004  Soeren Sandmann  <sandmann@daimi.au.dk>

	* === Released 2.5.0 ===

2004-07-09  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/arrays.sgml: Improve g_array_free() docs.  (#146875,
	Ed Griffiths)

Tue Jul  6 00:54:38 2004  Matthias Clasen  <maclas@gmx.de>

	* gobject/gobject-sections.txt: 
	* gobject/tmpl/gtypemodule.sgml: Add g_type_module_register_enum()
	and g_type_module_register_flags().

Mon Jul  5 18:49:56 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/messages.sgml: 
	* glib/glib-sections.txt: Add g_debug.

2004-06-15  Federico Mena Quintero  <federico@ximian.com>

	* glib/tmpl/conversions.sgml: New section on file name encodings.

	* glib/file-name-encodings.sxd: New diagram of how file name
	encodings work.

	* glib/file-name-encodings.png: Same as above, for inclusion in
	the generated docs.

	* glib/Makefile.am (HTML_IMAGES): Add file-name-encodings.png.
	(EXTRA_DIST): Add the new images.

	* glib/running.sgml: Add ids to the corresponding paragraphs that
	describe G_FILENAME_ENCODING and G_BROKEN_FILENAMES, to be able to
	reference them from elsewhere.

Thu Jun 10 21:29:55 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/modules.sgml: Add an example for GModule
	usage.  (#144127, Tommi Komulainen)

Sun Jun  6 23:20:42 2004  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gtype.sgml: Fix the docs for G_DEFINE_TYPE()
	and friends.  (#143800, Crispin Flowerday)

2004-05-05  Matthias Clasen  <mclasen@redhat.com>

	* gobject/gobject-docs.sgml: 
	* glib/glib-docs.sgml: Add multiple indices.

2004-04-30  Matthias Clasen  <mclasen@redhat.com>

	* === Released 2.4.1 ===

2004-04-23  Matthias Clasen  <mclasen@redhat.com>

	* glib/running.sgml: Document LIBCHARSET_ALIAS_DIR.

2004-04-15  Matthias Clasen  <mclasen@redhat.com>

	* glib/tmpl/types.sgml: Correct the description of the
	gfloat and gdouble ranges.

Tue Mar 16 12:06:09 2004  Owen Taylor  <otaylor@redhat.com>

	* === Released 2.4.0 ===
	
Sun Mar 14 11:00:41 2004  Owen Taylor  <otaylor@redhat.com>

	* gobject/tmpl/signals.sgml: Document the fact that
	g_signal_connect_object() does *not* remove the signal
	when the object is disconnected currently and describe
	a workaround to prevent memory leaks.

Tue Mar  9 09:16:11 2004  Owen Taylor  <otaylor@redhat.com>

	* === Released 2.3.6 ===

Mon Mar  8 08:32:36 2004  Owen Taylor  <otaylor@redhat.com>

	* glib/tmpl/main.sgml: Reference g_source_set_callback(),
	not g_source_attach(). (Takeshi AIHANA)

2004-02-29  Sebastian Wilhelmi  <seppi@seppi.de>

	* glib/glib-overrides.txt, glib/glib-sections.txt,
	glib/tmpl/atomic_operations.sgml: Updated according to code changes.

Sun Feb 29 02:35:00 2004  Sven Herzberg  <herzi@gnome-de.org>

	* glib/tmpl/limits.sgml: exchange non-existing G_MAX_DOUBLE for
	G_MAXDOUBLE (fixes #135723)

Fri Feb 27 22:10:25 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/modules.sgml: Reformat a bit.

Fri Feb 27 22:05:23 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/limits.sgml: Document G_MAXSIZE.

2004-02-26  Sebastian Wilhelmi  <seppi@seppi.de>

	* glib/tmpl/threads.sgml: Updated to reflect removal of the PID
	niceness surrogate for thread priorities.

	* glib/glib-overrides.txt, glib/glib-sections.txt,
	glib/glib-docs.sgml, glib/tmpl/atomic_operations.sgml: Add docs
	for atomic operations.

Tue Feb 24 14:09:21 2004  Owen Taylor  <otaylor@redhat.com>

	* === Released 2.3.3 ===

	* glib/glib-sections.txt: Updates.

Sun Feb 22 00:59:11 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/trees-nary.sgml: Document GCopyFunc.

Sun Feb 22 00:54:17 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/glib-sections.txt: Add GCopyFunc and g_node_copy_deep.

2004-02-18  Sebastian Wilhelmi  <seppi@seppi.de>

	* glib/glib-sections.txt: Add the new g_rand_* functions

Sat Feb 14 01:25:23 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/glib-sections.txt: Add GPid, GChildWatchFunc,
	g_child_watch_source_new, g_child_watch_add,
	g_child_watch_add_full.

Fri Feb 13 23:16:25 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/macros_misc.sgml: Fix a typo. 

Sat Feb  7 01:02:06 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/numerical.sgml: Fix some external links.

Thu Feb  5 00:54:43 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/glib-sections.txt: Add g_completion_complete_utf8.

Fri Jan 30 23:25:58 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/iochannels.sgml: 
	* glib/tmpl/main.sgml: Remove references to deprecated GTK+ and
	GDK functions.  (#130756, Vincent Untz)
	
Wed Jan 28 01:39:59 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/glib-sections.txt: Add g_strsplit_set. (Soeren Sandmann)

Thu Jan 22 14:51:19 2004  Owen Taylor  <otaylor@redhat.com>

	* glib/glib-sections.txt glib/tmpl/timers.sgml: Document
	g_timer_continue. (Tim-Philipp M??ller)

Sun Jan 11 01:25:44 2004  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gtype.sgml: Improve docs for G_DEFINE_TYPE_* macros.

Sun Jan 11 01:25:29 2004  Matthias Clasen  <maclas@gmx.de>

	* gobject/gobject-sections.txt: Add G_DEFINE_TYPE_EXTENDED.

Sat Jan 10 02:18:32 2004  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gtype.sgml: Document the new GType boilerplate macros
	with an example.

Sat Jan 10 01:36:01 2004  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gtype.sgml: Document g_type_class_peek_static.

Sat Jan 10 01:23:58 2004  Matthias Clasen  <maclas@gmx.de>

	* gobject/gobject-sections.txt: Add g_type_class_peek_static,
	G_DEFINE_TYPE, G_DEFINE_TYPE_WITH_CODE, G_DEFINE_ABSTRACT_TYPE,
	G_DEFINE_ABSTRACT_TYPE_WITH_CODE, G_IMPLEMENT_INTERFACE.


Sat Jan 10 01:23:01 2004  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/objects.sgml: Update docs of g_object_connect.

Fri Jan  9 23:40:23 2004  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gboxed.sgml: 
	* gobject/gobject-sections.txt: Add G_TYPE_STRV and GStrv.

Fri Dec 26 02:04:49 2003  Matthias Clasen  <maclas@gmx.de>

	* glib/glib-sections.txt: Add g_ptr_array_foreach().

Sun Dec 21 01:01:34 2003  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/misc_utils.sgml: Document the encoding of 
	g_get_real_name().

Fri Dec 19 21:40:00 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/signals.sgml: Rewording.

Tue Dec  2 02:31:15 2003  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/limits.sgml:
	* glib/glib-sections.txt: Add G_{MIN,MAX,MAXU}INT{8,16,32}.

Thu Nov  6 01:42:36 2003  Matthias Clasen  <maclas@gmx.de>

	* glib/glib-sections.txt: Add an i18n section.
	* glib/glib-docs.sgml: Include the corresponding entity.
	* glib/tmpl/i18n.sgml: Template for i18n section.

Thu Nov  6 00:56:04 2003  Matthias Clasen  <maclas@gmx.de>

	* glib/running.sgml: Document G_FILENAME_ENCODING.

Sat Oct 25 01:07:45 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gparamspec.sgml: 
	* gobject/tmpl/objects.sgml: Additions.

Thu Oct 23 14:27:54 2003  Owen Taylor  <otaylor@redhat.com>

	* gobject/Makefile.am: Add a dist-hook so that the
	man pages get distributed.

	* glib/Makefile.am: Add a dist-hook so that the
	man pages get distributed.

	* glib/Makefile.am (content_files): Add cross.sgml.

	* gobject/Makefile.am (INCLUDES): Add $(top_srcdir)/glib,
	and (for gobject.cI) $(srcdir)

Tue Oct 21 23:29:54 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gtypemodule.sgml: 
	* gobject/tmpl/enumerations_flags.sgml: 
	* gobject/tmpl/gtype.sgml: Additions.

Tue Oct 21 23:09:15 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gparamspec.sgml: 
	* gobject/tmpl/param_value_types.sgml:
	* gobject/tmpl/gtype.sgml: 
	* gobject/tmpl/signals.sgml: Add "Since 2.4" markers where
	appropriate.

Tue Oct 14 17:45:33 2003  Owen Taylor  <otaylor@redhat.com>

	* gobject/gobject-sections.txt gobject/tmpl/objects.sgml
	gobject/tmpl/param_value_types.sgml gobject/tmpl/gparamspec.sgml:
	Document interface properties and GParamSpecOverride.

Mon Oct 20 22:05:37 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/objects.sgml: 
	* gobject/tmpl/enumerations_flags.sgml: 
	* gobject/tmpl/gtypeplugin.sgml: Additions.

Mon Oct 20 22:04:45 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/gobject-sections.txt: Add GObjectConstructParam.

Mon Oct 20 20:38:06 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/gobject.i: Removed...
	* gobject/gobject.cI: ...and readded.
	* gobject/gobject.types: Change to the standard file 
	extension for included hunks of C code.

Mon Oct 20 20:34:33 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/Makefile.am (INCLUDES): Add $(top_builddir)/glib
	as an include dir again, this time for real.  

Mon Oct 20 01:12:46 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gtype.sgml: 
	* gobject/tmpl/param_value_types.sgml: 
	* gobject/tmpl/value_arrays.sgml: Additions.

	* gobject/tmpl/gboxed.sgml: 
	* gobject/gobject-sections.txt: Remove prematurely added
	GStrv documentation.

Sun Oct 19 22:18:28 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/Makefile.am (INCLUDES): Add $(top_builddir)/glib
	as an include dir.  (#124934, Mariano Su??rez-Alvarez)

Sun Oct 19 00:33:28 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gtype.sgml: 
	* gobject/tmpl/generic_values.sgml: 
	* gobject/tmpl/objects.sgml: 
	* gobject/tmpl/signals.sgml: Additions.

Sat Oct 18 01:30:47 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gboxed.sgml: 
	* gobject/tmpl/gtypeplugin.sgml: 
	* gobject/tmpl/enumerations_flags.sgml: Additions.

Sat Oct 18 00:04:22 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/gobject.types: List GObject here, since the
	documentation misses the notify signal otherwise. Needs
	a little bit of a hack to work around a gtkdoc-scangobj
	limitation, see the comment in gobject/gobject.i.

	* gobject/gobject.i: New file, containing a trivial 
	g_object_get_type() function.
	
Fri Oct 17 00:23:51 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/Makefile.am (GTKDOC_LIBS): 
	(INCLUDES): Add the necessary stuff to compile gobject-scan.

	* gobject/gobject.types: Add g_type_module_get_type() and
	g_type_plugin_get_type().

Thu Oct 16 01:02:04 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gparamspec.sgml: Additions, document 
	GParamSpecPool.

Wed Oct 15 00:56:30 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gclosure.sgml: Improvements from Owen's feedback. 

Tue Oct 14 02:35:45 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/gobject-sections.txt: Move the g_cclosure_marshal_*
	functions to a non-private subsection, since these functions
	are not private.

Tue Oct 14 02:35:16 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gclosure.sgml: Fill in.

Sun Oct  5 23:23:53 2003  Matthias Clasen  <maclas@gmx.de>

	* gobject/glib-sections.txt: 
	* gobject/gobject-sections.txt: Fix includes.

	* gobject/tmpl/value_collection.sgml: Add docs found in the 
	header.

Thu Oct  2 01:22:46 2003  Owen Taylor  <otaylor@redhat.com>

	* gobject/gobject-sections.txt gobject/tmpl/gtype.sgml: 
	Add g_type_add/remove_interface_check()

2003-09-30  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gparamspec.sgml: 
	* gobject/tmpl/signals.sgml: Additions.

	* glib/glib-sections.txt: Add g_unichar_get_mirror_char and
	g_static_mutex_get_mutex_impl_shortcut.

Mon Sep 29 10:55:23 2003  Owen Taylor  <otaylor@redhat.com>

	*  gobject/gobject-sections.txt gobject/tmpl/gtype.sgml:
	Docs for g_type_default_interface_ref(), etc.

Fri Sep 12 16:29:29 2003  Owen Taylor  <otaylor@redhat.com>

	* gobject/tmpl/signals.sgml: Add docs for
	g_signal_accumulator_true_handled.

2003-09-12  Matthias Clasen  <maclas@gmx.de>

	* gobject/gobject-sections.txt: Add new g_value_take_x() functions.

	* gobject/tmpl/param_value_types.sgml: Document new g_value_take_x()
	functions.  (#100948)

2003-08-05  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/string_utils.sgml: Add note about in-place editing to g_strdelimit() doc.
	(#118875, Thomas Vander Stichele)

2003-07-30  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/misc_utils.sgml: Move g_getenv() docs inline.

	* glib/tmpl/string_utils.sgml: Small fixes.

	* glib/glib-docs.sgml: Add paragraph about multi-threading policy.

	* glib/glib-sections.txt: Rename g_read_link to g_file_read_link.

2003-07-29  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/macros_misc.sgml: Document G_GINT{16,32,64}_MODIFIER, add note about scanning.

	* glib/glib-sections.txt: Add G_GINT{16,32,64}_MODIFIER.

2003-07-28  Matthias Clasen  <maclas@gmx.de>

	* glib/glib-sections.txt: Add g_setenv(), g_unsetenv() and g_read_link().  (#100763, #72545)

2003-07-26  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/arrays.sgml: 
	* glib/tmpl/arrays_byte.sgml: 
	* glib/tmpl/arrays_pointer.sgml: 
	* glib/glib-sections.txt: Add g_{,byte,pointer}_array_remove_range.  (#94879, Nalin Dahyabhai)

	* glib/tmpl/messages.sgml: Remove the note about the message length restriction.

2003-07-24  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/messages.sgml: Mention the restriction on message length.  (#118043, Martyn Russell)

2003-07-18  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/arrays_pointer.sgml: Add a note about double indirection in 
	g_ptr_array_sort[_with_data]().  (#113697, Owen Taylor)

2003-07-12  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/string_utils.sgml: Add a paragraph about string precision, add links to it.
	Remove markup which is now handled better by gtk-doc.

2003-07-09  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/threads.sgml: Document GOnce, GOnceStatus, G_ONCE_INIT, g_once and g_once_impl.

	* glib/glib-sections.txt: Add GOnce, GOnceStatus, G_ONCE_INIT, g_once and g_once_impl.

2003-07-02  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/string_utils.sgml: Move g_strfreev() docs inline.

2003-06-19  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/misc_utils.sgml: Move g_path_get_basename() docs inline.

2003-06-18  Matthias Clasen  <maclas@gmx.de>

o	* glib/glib-sections.txt: Add g_thread_init_glib to silence gtk-doc.

	* gobject/Makefile.am: Add rule to regenerate man pages from 
	Docbook.
	(man_MANS): Add glib-mkenums.1, glib-genmarshal.1 and gobject-query.1.
	(content_files): Add glib-mkenums.xml, glib-genmarshal.xml and 
	gobject-query.xml.

	* gobject/glib-mkenums.xml: 
	* gobject/glib-genmarshal.xml: 
	* gobject/gobject-query.xml: New refentries.

	* gobject/glib-mkenums.1: 
	* gobject/glib-genmarshal.1: 
	* gobject/gobject-query.1: Man pages generated from the .xml
	sources.

	* gobject/gobject-docs.sgml: Include glib-mkenums.xml, 
	glib-genmarshal.xml and gobject-query.xml.
	
2003-06-17  Matthias Clasen  <maclas@gmx.de>

	* glib/Makefile.am: Add rule to regenerate man pages from 
	Docbook.
	(man_MANS): Add glib-gettextize.1.
	(content_files): Add glib-gettextize.xml.

	* glib/glib-gettextize.xml: New refentry.

	* glib/glib-gettextize.1: Man page generated from the .xml source.

	* glib/glib-docs.sgml: Include glib-gettextize.xml.

2003-06-17  Matthias Clasen  <mc2@YAST_ASK>

	* gobject/gobject-docs.sgml: 
	* glib/glib-docs.sgml: Add an autogenerated index.

2003-06-17  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/macros_misc.sgml: Document G_GNUC_DEPRECATED.

2003-06-11  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/objects.sgml: A small addition.

Sun Jun  8 12:28:39 2003  Owen Taylor  <otaylor@redhat.com>

	* glib/tmpl/error_reporting.sgml: XML fix.

	* glib/glib-sections.txt: Updated.

2003-06-06  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/limits.sgml: Correct the documentation for
	G_MINFLOAT and G_MINDOUBLE.  (#114513, Christophe Fergeau)

	* glib/glib-sections.txt: Add g_vasprintf().

	* glib/tmpl/string_utils.sgml: Add a hint about g_vasprintf() to
	the g_strdup_printf() docs.

2003-05-28  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/string_utils.sgml: Document that g_strdup() and
	g_strndup() accept NULL.  (#106987, Christian Biere)

2003-05-12  Matthias Clasen  <maclas@gmx.de>

	* glib/cross.sgml: Fix a duplicate id left by copy-and-paste.
	(#112785, Owen Taylor)

2003-04-18  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/signals.sgml: Correct the documentation
	GSignalEmissionHook (#110906) and some cleanups.

2003-04-11  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gparamspec.sgml: Fix a few typos.

2003-04-09  Matthias Clasen  <maclas@gmx.de>

	* glib/glib-docs.sgml: Move dependencies to building.sgml.

	* glib/building.sgml: Move stuff from INSTALL here.

2003-04-08  Matthias Clasen  <maclas@gmx.de>

	* glib/cross.sgml: New file; cross-compilation information.
	* glib/glib-docs.sgml: Include cross.sgml.

2003-04-07  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/enumerations_flags.sgml: Additions.

2003-04-01  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/error_reporting.sgml: 
	* glib/tmpl/random_numbers.sgml: 
	* glib/tmpl/arrays_pointer.sgml: 
	* glib/tmpl/arrays.sgml: Fix formatting of examples.

2003-04-01  Matthias Clasen  <maclas@gmx.de>

	* glib/glib-sections.txt: Add g_string_chunk_insert_len.

2003-03-28  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/param_value_types.sgml: Additions.

2003-03-25  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/objects.sgml: Additions.

2003-03-24  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/objects.sgml: Additions.

Mon Mar 10 11:33:10 2003  Owen Taylor  <otaylor@redhat.com>

	* gobject/tmpl/gtype.sgml gobject/gobject-sections.txt: 
	Document private instance data.

2003-02-11  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/string_utils.sgml: Fix an off-by-one error in the
	g_strescape() docs.  (#105431, Phillip Vandry)

2003-02-07  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gtypemodule.sgml: 
	* gobject/tmpl/gtype.sgml: 
	* gobject/tmpl/gclosure.sgml: 
	* gobject/tmpl/param_value_types.sgml: 
	* gobject/tmpl/gparamspec.sgml: 
	* gobject/tmpl/objects.sgml: 
	* gobject/tmpl/signals.sgml: Move all docs out-of-line. Boy, what
	a waste of time.

2003-01-21  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/strings.sgml: Document the return value of g_string_free().

2003-01-15  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gtype.sgml: Fix the description of
	G_TYPE_FUNDAMENTAL.  (#103119, Josh Parsons)

2003-01-01  Tor Lillqvist  <tml@iki.fi>

	* glib/tmpl/messages.sgml: Remove comment that only stdout would
	be used on Windows, no longer true.

2002-12-15  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/param_value_types.sgml: Move some docs inline.

2002-12-15  Matthias Clasen  <maclas@gmx.de>

	* glib/Makefile.am (IGNORE_HFILES): Add gprintfint.h and trio.

2002-12-13  Matthias Clasen  <maclas@gmx.de>

	* glib/Makefile.am (MKDB_OPTIONS): Add --ignore-files=trio to
	avoid gtk-doc warnings about doxygen comments.

Tue Dec 10 11:55:28 2002  Owen Taylor  <otaylor@redhat.com>

	* glib/tmpl/timers.sgml: Improve docs for return value
	and @microseconds out parameter. (Reported by
	Dennis Haney, #100841)

2002-12-10  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/generic_values.sgml: 
	* gobject/tmpl/gtype.sgml: 
	* gobject/tmpl/enumerations_flags.sgml: Add docs.

2002-12-09  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gtype.sgml: 
	* gobject/tmpl/enumerations_flags.sgml: Add docs.

	* gobject/tmpl/gtype.sgml:
	* gobject/tmpl/gtypeplugin.sgml:
	* gobject/tmpl/gtypemodule.sgml:
	* gobject/gobject-sections.txt: Add GTypeClass, GTypePluginClass
	and GTypeModuleClass.

	* gobject/tmpl/gboxed.sgml:
	* gobject/tmpl/enumerations_flags.sgml: 
	* gobject/tmpl/gclosure.sgml: 
	* gobject/tmpl/param_value_types.sgml: Add docs.

2002-12-06  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gparamspec.sgml: Typo fix.

2002-12-05  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/strings.sgml: 
	* glib/tmpl/scanner.sgml: 
	* glib/tmpl/main.sgml: 
	* glib/tmpl/macros_misc.sgml: 
	* glib/tmpl/hash_tables.sgml: Add Since and Deprecation info
	for symbols documented in the templates.

2002-12-04  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gtype.sgml: Add docs.

2002-12-02  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/signals.sgml: Add docs.

2002-12-01  Matthias Clasen  <maclas@gmx.de>

	* gobject/gobject-sections.txt: Mark g_signal_handlers_destroy as
	private.

	* gobject/tmpl/signals.sgml: Move some docs inline.

2002-11-29  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/main.sgml: Write something about GSourceDummyMarshal.

	* glib/tmpl/date.sgml: 
	* glib/tmpl/string_utils.sgml: Remove redundant docs.

	* glib/glib-sections.txt: Add g_ascii_strtoull and 
	g_get_application_name.

2002-11-28  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/strings.sgml: 
	* glib/tmpl/string_utils.sgml: 
	* glib/tmpl/misc_utils.sgml: Move some docs inline.

2002-11-23  Matthias Clasen  <maclas@gmx.de>

	* gobject/tmpl/gclosure.sgml: 
	* gobject/tmpl/signals.sgml: 
	* gobject/tmpl/gparamspec.sgml: 
	* gobject/tmpl/value_collection.sgml: 
	* gobject/tmpl/generic_values.sgml: 
	* gobject/tmpl/param_value_types.sgml: 
	* gobject/tmpl/gboxed.sgml: 
	* gobject/tmpl/enumerations_flags.sgml: 
	* gobject/tmpl/objects.sgml: 
	* gobject/tmpl/gtypemodule.sgml: 
	* gobject/tmpl/gtypeplugin.sgml: Add missing short descriptions, 
	standardize them to start with a capital and end without a period. 

	* glib/tmpl/arrays.sgml: 
	* glib/tmpl/memory_chunks.sgml: 
	* glib/tmpl/macros.sgml: Remove periods from titles in examples.

	* glib/building.sgml: Explain --enable-include-printf.

	* glib/Makefile.am (extra_files): 
	* gobject/Makefile.am (extra_files): Add version.xml.in.

	* glib/Makefile.am (content_files): 
	* gobject/Makefile.am (content_files): Add version.xml.

	* glib/version.xml.in: 
	* gobject/version.xml.in: New files to let configure dump the version in.

	* glib/glib-docs.sgml:
	* gobject/gobject-docs.sgml: Add version information.


Thu Nov 21 15:52:04 2002  Owen Taylor  <otaylor@redhat.com>

	* glib/tmpl/iochannels.sgml: Add helpful comments about
	the encoding of a new iochannel. (Amaury Jacquot,
	#96444)

2002-11-21  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/string_utils.sgml: Add note on including gprintf.h,
	move some docs inline.

	* glib/glib-sections.txt: Add g_printf, g_vprintf, g_fprintf,
	g_vfprintf, g_sprintf, g_vsprintf.

2002-11-20  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/macros_misc.sgml: Document G_LIKELY, G_UNLIKELY.

	* glib/glib-sections.txt: Add G_LIKELY, G_UNLIKELY.

2002-10-20  Matthias Clasen  <maclas@gmx.de>

	* gobject/Makefile.am (SCANOBJ_FILES): 
	* glib/Makefile.am (SCANOBJ_FILES): Add $(DOC_MODULE).prerequisites.

2002-10-15  Matthias Clasen  <maclas@gmx.de>

	* gobject/gobject-sections.txt: Add g_type_interface_prerequisites.

2002-10-14  Matthias Clasen  <maclas@gmx.de>

	* gobject/Makefile.am (dist-hook): 
	* glib/Makefile.am (dist-hook): Dist the xml/*.xml, not
	sgml/*.sgml.  (#95678, Owen Taylor)

2002-10-14  Matthias Clasen  <maclas@gmx.de>

	* gobject/Makefile.am (SCANOBJ_FILES): 
	* glib/Makefile.am (SCANOBJ_FILES): Add $(DOC_MODULE).interfaces.

2002-09-16  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/messages.sgml: Replace G_LOG_FLAG_RECURSIVE by 
	G_LOG_FLAG_RECURSION throughout.  (#93390)
 
2002-08-12  Matthias Clasen  <maclas@gmx.de>

	* glib/glib-sections.txt: Add g_markup_parse_context_get_element
	and g_utf8_strreverse.

Thu Jul 25 18:58:29 2002  Owen Taylor  <otaylor@redhat.com>
 
 	* glib/tmpl/threads.sgml: Fix reference to non-existing
 	@priority parameter. (#88500, Linux Walleij)
 
2002-06-03  Matthias Clasen  <maclas@gmx.de>

	* gobject/gobject-docs.sgml: 
	* glib/glib-docs.sgml: 
	* glib/tmpl/macros.sgml: 
	* glib/tmpl/string_utils.sgml: Replace homegrown "nbsp", "hash"
	and "percent" entities by standard ISO entities "nbsp", "num" and
	"percnt". 

2002-05-30  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/string_utils.sgml: 
	* glib/tmpl/threads.sgml: Small formatting fixes.

2002-05-26  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/conversions.sgml: Add GIConv.

	* glib/tmpl/main.sgml: Fix references to nonexisting functions
	g_main_loop_destroy(), g_source_add(), g_source_connect().
	

	* glib/glib-sections.txt: Add GIConv, g_str_has_prefix, g_str_has_suffix.

	* glib/tmpl/linked_lists_single.sgml: 
	* glib/tmpl/linked_lists_double.sgml: GListAllocator doesn't exist.

	* glib/glib-docs.sgml: Declare hash entity.

	* glib/tmpl/macros.sgml: Escape # in #ifdef to suppress erroneous links.

2002-05-25  Matthias Clasen  <maclas@gmx.de>

	* gobject/Makefile.am, gobject/gobject-docs.sgml, gobject/tmpl/*:
	* glib/Makefile.am, glib/glib-docs.sgml, glib/tmpl/*: Produce XML,
	not SGML.

2002-05-21  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/markup.sgml: Updates.

Sat May 18 00:44:35 2002  Tim Janik  <timj@gtk.org>

	[merged from stable]

	* glib/tmpl/scanner.sgml: fix documentation for g_scanner_unexp_token().

2002-05-01  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/tmpl/threads.sgml: Clarify recursion issues with
	GMutex. (#78171)

2002-04-24  Matthias Clasen  <maclas@gmx.de>

	* gobject/gobject-sections.txt: 
	* gobject/tmpl/gtype.sgml: Updates.

2002-04-21  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/strings.sgml: Fix the description of g_string_assign. (#78728)

2002-04-18  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/error_reporting.sgml:
	* glib/tmpl/threads.sgml:
	* glib/tmpl/arrays_pointer.sgml:
	* glib/tmpl/arrays_byte.sgml:
	* glib/tmpl/memory_chunks.sgml: s/<!>/<!-- -->/g throughout the
	documentation to bring the produced Docbook closer to XML.

2002-03-25  Sven Neumann  <sven@gimp.org>

	* glib/tmpl/scanner.sgml: Fixed documentation about unused struct 
	fields and added a note about proper g_scanner_unexp_token() usage.

2002-03-11  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/string_utils.sgml: Add a note about g_strreverse() and 
	UTF-8.

2002-02-21  Matthias Clasen  <maclas@gmx.de>

	* glib/Makefile.am (IGNORE_HFILES): Add gdebug.h.

	* glib/running.sgml: Document the G_DEBUG environment variable.

	* glib/tmpl/threads.sgml: Replace g_thread_wait() by
	g_thread_join() in two places.

2002-02-20  Sven Neumann  <sven@gimp.org>

	* gobject/gobject-sections.txt
	* gobject/tmpl/generic_values.sgml
	* gobject/tmpl/param_value_types.sgml: updated for GValue changes.

Tue Feb 19 17:45:43 2002  Tim Janik  <timj@gtk.org>

	* gobject/tmpl/generic_values.sgml: added GValue documentation.

Thu Feb  7 12:07:06 2002  Tim Janik  <timj@gtk.org>

	* gobject/tmpl/generic_values.sgml: document value transformation.

Mon Feb  4 17:55:39 2002  Tim Janik  <timj@gtk.org>
	
	* gobject/tmpl/closures.sgml: doc common functions like ref/
	sink/unref/invalidate.

	* gobject/tmpl/objects.sgml: document g_object_watch_closure() and
	qdata functions.

Tue Jan 29 12:00:59 2002  Owen Taylor  <otaylor@redhat.com>

	* gobject/gobject-sections.txt: Updated.

	* glib/running.sgml glib/changes-2.0.sgml: SGML fixes.

2002-01-28  Ron Steinke  <rsteinke@w-link.net>

	* glib/iochannel.sgml: Changed #IOChannelError to
	#GIOChannelError in one place

2002-01-16  Matthias Clasen  <matthiasc@poet.de>

	* glib/building.sgml, glib/compiling.sgml, 
	glib/running.sgml, glib/resources.sgml, 
	glib/changes-2.0.sgml: New files.

	* glib/Makefile.am (content_files): Add new files.

	* glib/glib-docs.sgml: Add an Overview chapter.

2002-01-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/tmpl/threads.sgml: Name the right function.

2001-12-23  Matthias Clasen  <matthias@poet.de>

	* glib/tmpl/main.sgml, glib/tmpl/string_utils.sgml,
	glib/tmpl/strings.sgml: Replace references to deprecated
	functions.

2001-12-21  Matthias Clasen  <matthias@poet.de>

	* glib/glib-sections.txt: Move g_get_charset() to the
	Charset conversion section. (#65630)
 
Wed Dec 19 23:07:53 2001  Owen Taylor  <otaylor@redhat.com>

	* glib/tmpl/messages.sgml glib/tmpl/string_utils.sgml: 
	SGML fixes.

	* gobject/gobject-sections.txt glib/glib-sectoins.txt: Small updates.

2001-12-15  Matthias Clasen  <matthias@poet.de>

	* glib/tmpl/caches.sgml: GCs are cached by GTK, not by GDK.

2001-12-14  Matthias Clasen  <matthias@poet.de>

	* glib/tmpl/memory.sgml: Typo fixes.

2001-12-13  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/completion.sgml, glib/tmpl/date.sgml,
	glib/tmpl/fileutils.sgml, glib/tmpl/iochannels.sgml,
	glib/tmpl/macros.sgml, glib/tmpl/memory.sgml,
	glib/tmpl/misc_utils.sgml, glib/tmpl/warnings.sgml,
	glib/tmpl/windows.sgml: Revert mistaken change: it is UNIX, not Unix.

	* glib/tmpl/memory_chunks.sgml,
	glib/tmpl/date.sgml, glib/tmpl/threads.sgml,
	glib/tmpl/gtype.sgml: Trivial markup fixes.

2001-12-12  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/string_utils.sgml: Correct docs for g_[v]snprintf.

2001-12-12  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/allocators.sgml, glib/tmpl/arrays.sgml, 
	glib/tmpl/arrays_byte.sgml, glib/tmpl/arrays_pointer.sgml,
	glib/tmpl/caches.sgml, glib/tmpl/completion.sgml, 
	glib/tmpl/conversions.sgml,
	glib/tmpl/datalist.sgml, glib/tmpl/date.sgml, 
	glib/tmpl/error_reporting.sgml, glib/tmpl/fileutils.sgml,
	glib/tmpl/hash_tables.sgml,
	glib/tmpl/hooks.sgml, glib/tmpl/macros.sgml,
	glib/tmpl/macros_misc.sgml, glib/tmpl/main.sgml, glib/tmpl/markup.sgml,
	glib/tmpl/memory.sgml, glib/tmpl/memory_chunks.sgml, 
	glib/tmpl/messages.sgml, glib/tmpl/misc_utils.sgml,
	glib/tmpl/modules.sgml, glib/tmpl/numerical.sgml, 
	glib/tmpl/patterns.sgml, glib/tmpl/queue.sgml, 
	glib/tmpl/shell.sgml, glib/tmpl/spawn.sgml,
	glib/tmpl/string_utils.sgml, glib/tmpl/thread_pools.sgml,
	glib/tmpl/threads.sgml, glib/tmpl/timers.sgml, 
	glib/tmpl/trees-binary.sgml, glib/tmpl/trees-nary.sgml,
	glib/tmpl/type_conversion.sgml, glib/tmpl/unicode.sgml,
	glib/tmpl/warnings.sgml, glib/tmpl/windows.sgml:	
	Improve markup of examples, general consistency improvements.

2001-12-06  Havoc Pennington  <hp@redhat.com>

	* glib/tmpl/messages.sgml: improve g_log_set_handler docs

Wed Nov 28 18:50:19 2001  Owen Taylor  <otaylor@redhat.com>

	* glib/glib-sections.txt: Update.

2001-11-28  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/tmpl/date.sgml: Fix g_usleep docs.

2001-11-26  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/trees-binary.sgml: Document G_LEVEL_ORDER better.

2001-11-22  Matthias Clasen  <matthiasc@poet.de>

	Fixes for #61284:

	* glib/tmpl/windows.sgml: Document G_WIN32_DLLMAIN_FOR_DLL_NAME.

	* glib/tmpl/fileutils.sgml: Document GDir.

	* glib/tmpl/limits.sgml: Document G_MININT64, G_MAXINT64, G_MAXUINT64.	

Thu Nov 22 12:56:57 2001  Owen Taylor  <otaylor@redhat.com>

	* gobject/gobject-sections.txt: Update.

	* glib/tmpl/{spawn.sgml,patterns.sgml}: SGML fixes.

	* glib/glib-sections.txt: Updated.

	* glib/Makefile.am (IGNORE_HFILES): Don't scan
	headers in build/

Sat Nov 17 17:24:19 2001  Owen Taylor  <otaylor@redhat.com>

	* glib/glib-sections.txt: Remove g_log_domain_glib

2001-11-15  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/iochannels.sgml: Document GIOFlags, fix typos.

	* glib/tmpl/conversions.sgml, glib/tmpl/unicode.sgml,
	glib/tmpl/spawn.sgml, glib/tmpl/fileutils.sgml,
	glib/tmpl/shell.sgml, glib/tmpl/windows.sgml: Add
	some missing short and long descriptions.

2001-11-14  Matthias Clasen  <matthiasc@poet.de>

	* glib/Makefile.am (MKDB_OPTIONS): Add --sgml-mode.

	* glib/tmpl/patterns.sgml: Document UTF-8 support.

Wed Nov 14 03:19:49 2001  Tim Janik  <timj@gtk.org>

	* gobject/tmpl/param_value_types.sgml: more docs.

Tue Nov 13 21:31:58 2001  Tim Janik  <timj@gtk.org>

	* gobject/tmpl/param_value_types.sgml: list parameter and
	value types.

	* gobject/tmpl/gparamspec.sgml: more docs for g_param_spec*()
	functions.
	
	* gobject/*: section cleanups.

Tue Nov 13 19:49:16 2001  Tim Janik  <timj@gtk.org>

	* gobject/tmpl/gparamspec.sgml: param spec updates.

2001-11-12  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/markup.sgml: Remove excess listitem from long 
	description.
 
2001-11-11  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/unicode.sgml: Document GNormalizeMode enum.

	* glib/tmpl/spawn.sgml: Document GSpawnFlags flags.

	* glib/tmpl/error_reporting.sgml: Document GError struct.

	* glib/tmpl/main.sgml: Document GMainContext, GSource and 
	GSourceCallbackFuncs structs.

2001-10-31  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/messages.sgml, glib/tmpl/unicode.sgml:
	Document g_log_domain_glib, gunichar, gunichar2, GUnicodeType,
	GUnicodeBreakType.

Fri Oct 26 11:42:50 2001  Owen Taylor  <otaylor@redhat.com>

	* */Makefile.am: Remove $(srcdir)/html before building
	HTML to prevent stale files. Dist all files in html/

2001-10-25  Havoc Pennington  <hp@pobox.com>

	* glib/tmpl/string_utils.sgml: docs on why the deprecated
	functions are deprecated.

2001-10-15  Sven Neumann  <sven@gimp.org>

	* glib/tmpl/random_numbers.sgml: fixed typo.

Sat Oct 13 06:58:23 2001  Tim Janik  <timj@gtk.org>

	* glib/tmpl/patterns.sgml: amended documentation.

2001-10-11  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/patterns.sgml, glib/tmpl/shell.sgml: Updates.

2001-10-05  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/hooks.sgml: Document G_HOOK_FLAG_USER_SHIFT.

	* glib/tmpl/trash_stacks.sgml: Document trash stacks.

	* glib/tmpl/async_queues.sgml, glib/tmpl/caches.sgml, 
	glib/tmpl/completion.sgml, glib/tmpl/patterns.sgml, 
	glib/tmpl/numerical.sgml, glib/tmpl/random_numbers.sgml, 
	glib/tmpl/relations.sgml, glib/tmpl/modules.sgml: Update.

2001-10-05  Matthias Clasen  <matthiasc@poet.de>
	
	* glib/tmpl/conversions.sgml: Update.

	* glib/tmpl/patterns.sgml: Update.

2001-10-05  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/hooks.sgml, glib/tmpl/spawn.sgml,
	glib/tmpl/macros_misc.sgml: Update. 

	* glib/tmpl/linked_lists_double.sgml, glib/tmpl/trees-binary.sgml,
	glib/glib-sections.txt: Document GCompareDataFunc.

2001-10-02  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/iochannel.sgml, glib/tmpl/macros_misc.sgml,
	glib/tmpl/queue.sgml: update docs.

	* glib/tmpl/modules.sgml, glib/tmpl/threads.sgml: Remove 
	references to glib-config.

2001-10-01  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/iochannels.sgml, glib/tmpl/shell.sgml,
	glib/tmpl/spawn.sgml, glib/tmpl/memory.sgml,
	glib/tmpl/macros.sgml, glib/tmpl/completion.sgml,
	glib/tmpl/main.sgml, glib/tmpl/messages.sgml,
	glib/tmpl/misc_utils.sgml, glib/tmpl/threads.sgml,
	glib/tmpl/trees-nary.sgml, glib/tmpl/string_utils.sgml:
	More markup fixes and completions.

Mon Oct  1 15:59:46 2001  Owen Taylor  <otaylor@redhat.com>

	* glib/tmpl/strings.sgml docs/glib-sections.txt: Rename
	g_string_printfa(). to g_string_append_printf().

2001-10-01  Matthias Clasen  <matthiasc@poet.de>

	* glib/glib-sections.txt: Move all *_error_quark()
	functions to the 'Private' sections. (#61472)

2001-10-01  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/macros.sgml (G_CONST_RETURN): document
	allowed uses for 'out' parameters.

2001-10-01  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/caches.sgml, glib/tmpl/datalist.sgml,
	glib/tmpl/hash_tables.sgml, glib/tmpl/messages.sgml,
	glib/tmpl/misc_utils.sgml: consistently refer to GTK+.

	* glib/tmpl/error_reporting.sgml, glib/tmpl/fileutils.sgml,
	glib/tmpl/windows.sgml, glib/tmpl/modules.sgml,
	glib/tmpl/linked_lists_single.sgml, glib/tmpl/trees-nary.sgml,
	glib/tmpl/trees-binary.sgml, glib/tmpl/timers.sgml: Markup fixes.

2001-09-30  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/arrays.sgml,glib/tmpl/arrays_byte.sgml
	glib/tmpl/arrays_pointer.sgml, glib/tmpl/caches.sgml, 
	glib/tmpl/datalist.sgml, glib/tmpl/date.sgml, 
	glib/tmpl/datasets.sgml, glib/tmpl/type_conversion.sgml,
	glib/tmpl/memory.sgml, glib/tmpl/hash_tables.sgml:
	Markup fixes and a few additions.

2001-09-27  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/macros.sgml, glib/tmpl/macros_misc.sgml, 
	glib/tmpl/scanner.sgml: Additions and markup fixes.

2001-09-27  Matthias Clasen  <matthiasc@poet.de>

	* glib/tmpl/warnings.sgml, glib/tmpl/linked_lists_double.sgml,
	glib/tmpl/completion.sgml, glib/tmpl/strings.sgml: Documented
	some functions, markup fixes.
	* glib/tmpl/patterns.sgml: New file.
	* glib/glib-docs.sgml: Add entity for patterns.sgml.
	
2001-09-26  Matthias Clasen <matthiasc@poet.de>

	* glib/glib-sections.txt: Add g_mem_is_system_malloc.

2001-09-25  Matthias Clasen <matthiasc@poet.de>

	* glib/glib-sections.txt: Add a missing SECTION 
	endtag. (#61126)

2001-09-17  Darin Adler  <darin@bentspoon.com>

	* glib/tmpl/string_utils.sgml: Fix a typo and change
	documentation for g_ascii_isdigit and g_ascii_isxdigit
	to reflect the fact that the standard isdigit and
	isxdigit are already locale-independent.

Wed Sep  5 05:24:07 2001  Tim Janik  <timj@gtk.org>

	* gobject/tmpl/gboxed.sgml: documented some functions.

	* gobject/tmpl/objects.sgml: some fixups.

Mon Sep 10 11:37:02 2001  Owen Taylor  <otaylor@redhat.com>

	* glib/glib-sections.txt: Update.

Sat Sep  8 14:13:44 2001  Owen Taylor  <otaylor@redhat.com>

	* glib/Makefile.am (IGNORE_HFILES): Add 
	gbsearcharray.h.

	* gobject/Makefile.am (IGNORE_HFILES): Remove
	gbsearcharray.h.

2001-08-15  Ron Stenike  <rsteinke@w-link.net>

	* docs/reference/glib/glib-sections.txt: Added
	declarations for g_io_channel_[set,get]_close_on_unref

Sun Aug 12 10:03:42 2001  Owen Taylor  <otaylor@redhat.com>

	* */Makefile.am: Set GPATH to fix srcdir != builddir  
	problems with GNU make.

Sun Aug 12 02:24:36 2001  Tim Janik  <timj@gtk.org>

	* gobject/tmpl/value_arrays.sgml: document value arrays.

2001-08-06  Sven Neumann  <sven@gimp.org>

	* docs/reference/gobject/gobject-sections.txt
	* docs/reference/gobject/tmpl/objects.sgml: added documentation for
	g_object_[add|remove]_weak_pointer().

2001-07-19  Darin Adler  <darin@bentspoon.com>

	reviewed by: <delete if not using a buddy>

	* glib/tmpl/string_utils.sgml:

2001-06-03  Matthias Clasen  <matthiasc@poet.de>
 
 	* glib/tmpl/caches.sgml, glib/tmpl/main.sgml, 
 	gobject/gobject-docs.sgml, gobject/tmpl/generic_values.sgml,
 	gobject/tmpl/gtypemodule.sgml, gobject/tmpl/signals.sgml,
 	gobject/tmpl/types.sgml: fix some typos.
 
Thu Jun 28 17:43:29 2001  Owen Taylor  <otaylor@redhat.com>

	* glib/tmpl/memory.sgml glib/tmpl/macros_misc.sgml: Add
	notes about inclusion of string.h to docs on g_memmove,
	G_VA_COPY. (#54411)

Tue Jun 26 12:28:20 2001  Owen Taylor  <otaylor@redhat.com>

	* glib/Makefile.am: Fix problem with glibconfig.h

2001-06-26  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/tmpl/threads.sgml (example): Corrected.

2001-06-07  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/glib-sections.txt, glib/tmpl/date.sgml: Add g_time_val_add.

	* glib/tmpl/threads.sgml: Updated. 

2001-05-23  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/tmpl/arrays.sgml, glib/tmpl/arrays_pointers.sgml,
	glib/tmpl/arrays_byte.sgml: Corrected documentation for the
	..._sized_new functions. Discovered by noon@users.sourceforge.net.

2001-05-19  Havoc Pennington  <hp@pobox.com>

	* glib/Makefile.am (IGNORE_HFILES): add glibintl.h

	* glib/tmpl/*.sgml: fix various missing docs

2001-05-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/glib-overrides.txt, glib/glib-sections.txt,
	glib/tmpl/thread_pools.sgml, glib/tmpl/threads.sgml: Updated.

2001-05-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/tmpl/thread_pools.sgml, glib/tmpl/thread_pools.sgml:
	Updates after some renaming took place.

2001-05-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/tmpl/threads.sgml, glib/glib-overrides.txt: Updated.

	* glib/tmpl/threads.sgml: Clarification for g_mutex_trylock.

2001-04-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/tmpl/hash_tables.sgml, glib/tmpl/misc_utils.sgml,
	glib/tmpl/scanner.sgml: Changes due to deprecation update.

Mon Apr 16 12:18:26 2001  Owen Taylor  <otaylor@redhat.com>

	* {glib,gobject}/Makefile.am (tmpl-build.stamp): More tweaks
	from GTK+. Reenable $(HTML_IMAGES) with shell portability fixes.

Wed Apr  4 00:56:00 2001  Tim Janik  <timj@gtk.org>

	* gobject/Makefile.am: disabled "for i in $(HTML_IMAGES) ;"
	dist-hook because $(HTML_IMAGES) is empty.

Tue Apr  3 11:51:02 2001  Owen Taylor  <otaylor@redhat.com>

	* {glib,gobject}/Makefile.am (sgml-build.stamp): Add
	explicit path to tmpl files in dependencies.

	* glib/glib.types gobject/gobject.types: empty files
	to keep generic makefiles happy.

2001-04-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/glib-sections.txt: Removed
	g_static_private_(get|set)_for_thread.

	* glib/tmpl/threads.sgml: Updated.

	* glib/tmpl/thread_pools.sgml: Added GThreadPool documentation.

Mon Mar 26 14:20:36 2001  Owen Taylor  <otaylor@redhat.com>

	* glib/Makefile.am (SCAN_OPTIONS): Add --deprecated-guards

Sat Mar 17 17:51:17 2001  Owen Taylor  <otaylor@redhat.com>

	* gobject/Makefile.am glib/Makefile.am: A couple
	of small fixes.

2001-03-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/tmpl/threads.sgml: Spelling corrections.

Wed Mar  7 15:02:17 2001  Owen Taylor  <otaylor@redhat.com>

	* gobject/Makefile.am: Revert Tim's last commit to
	get rid of 7+ unnecessary / broken changes. Add
	back the useful part. Also fix problem with grep,
	add dependency on template files.

	* gobject/gobject-sections.txt: Remove double 
	value_types names which was screwing up builds.

	* glib/Makefile.am: Propagate changes from 
	gobject/Makefile.am

2001-03-07  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/tmpl/threads.sgml: Fixed stupid typo.

2001-03-07  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/tmpl/threads.sgml: Completed.

Wed Mar  7 09:33:27 2001  Tim Janik  <timj@gtk.org>

	* gobject/Makefile.am: shuffled rules to avoid excessive
	rebuilds.

	* gobject/gobject-sections.txt: updates.

	* gobject/tmpl/*: bunch of updates, added another patch
	from Eric Lemings <eric.b.lemings@lmco.com>.

2001-03-07  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/glib-sections.txt, glib/tmpl/messages.sgml: Removed
	g_log_domain_gmodule.

2001-02-23  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/tmpl/threads.sgml: Big update. Almost ready.

	* glib/tmpl/async_queues.sgml: Typo.

	* glib/glib-sections.txt: Added g_static_rec_mutex_init,
	g_static_rec_mutex_free, g_static_rw_lock_init,
	g_static_private_init and g_static_private_free.

	* glib/glib-overrides.txt: Added g_thread_yield and g_thread_exit.

Fri Feb 16 06:52:20 2001  Tim Janik  <timj@gtk.org>

	* gobject/tmpl/types.sgml: incorporated huge docu patch from Eric
	Lemings <eric.b.lemings@lmco.com> with a bunch of editing on my part.

Mon Feb 12 12:42:45 2001  Owen Taylor  <otaylor@redhat.com>

	* {glib,gobject}/Makefile.am: The ultimate gtk-doc makefile.

2001-02-01  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/tmpl/threads.sgml, glib/glib-sections.txt: Added
	documentation for g_static_mutex_init().

Wed Jan 31 07:14:22 2001  Tim Janik  <timj@gtk.org>

	* gobject/Makefile.am: adapt to work with new CVS gtk-doc, leaving the old
	rules in place caused bogus recursions. main changes:
	- add to conditionalized section:
	  all-local:
	        $(MAKE) scan
	        $(MAKE) templates
	        $(MAKE) sgml
	        $(MAKE) html.stamp
	  html.stamp: sgml.stamp $(EXTRA_SGML_FILES)
	        $(MAKE) html
	  DOC_STAMPS= html.stamp sgml.stamp
	- change:
	  maintainer-clean-local: clean
	  -     cd $(srcdir) && rm -rf sgml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
	  +     cd $(srcdir) && rm -rf sgml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt $(DOC_STAMPS)

	* glib/Makefile.am (maintainer-clean-local): dito.

Wed Jan 31 06:21:32 2001  Tim Janik  <timj@gtk.org>

	* gobject/tmpl/types.sgml: applied docu patch from Eric Lemings
	<eric.b.lemings@lmco.com>, did some more editing.

2001-01-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/glib-sections.txt, glib/tmpl/threads.sgml: Added
	g_static_mutex_free().

Tue Jan  9 03:10:38 2001  Tim Janik  <timj@gtk.org>

	* gobject/tmpl/types.sgml: added some function documentations.

	* gobject/gobject-sections.txt: buncha fixups.

Fri Jan  5 15:47:10 2001  Owen Taylor  <otaylor@redhat.com>

	* glib/glib-sections.txt glib/tmpl/* glib/Makefile.am: Updated.

2000-12-22  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/glib-sections.txt: Added G_MODULE_SUFFIX.

	* glib/tmpl/modules.sgml: Updated.

2000-12-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/glib-sections.txt: Added g_rand_boolean and
	g_random_boolean macros.

	* glib/tmpl/random_numbers.sgml: Updated.
	
Tue Dec  5 15:41:23 2000  Owen Taylor  <otaylor@redhat.com>

	* glib/Makefile.am glib/mainloop-states*: add images

	* glib/glib-sections.txt: Updated

	* glib/tmpl/main.sgml: More documentation, move function
	docs to .c file.

Mon Nov 13 00:18:55 2000  Owen Taylor  <otaylor@redhat.com>

	* glib/glib-sections.sgml: Move conversion functions
	into GConv section.
	
	* gobject/gobject-docs.sgml: Fix some malformed sgml.

Sun Nov  5 13:24:50 2000  Owen Taylor  <otaylor@redhat.com>

	* gobject/Makefile.am gobject/gobject-sections.sgml: Updates
	* gobject/tmpl/g{boxed,type{plugin,module}}.sgml: added

2000-11-05  Havoc Pennington  <hp@pobox.com>

	* glib/tmpl/markup.sgml: Write docs

2000-11-05  Havoc Pennington  <hp@pobox.com>

	* glib/glib-sections.txt: remove parens from section name,
	confuses gtk-doc

	* glib/glib-docs.sgml: Add the new files here, doh.

	* glib/tmpl/shell.sgml: add gshell.[hc] docs

2000-11-05  Havoc Pennington  <hp@pobox.com>

	* glib/tmpl/error_reporting.sgml: fixes

2000-11-05  Havoc Pennington  <hp@pobox.com>

	* glib/tmpl/spawn.sgml, glib/tmpl/markup.sgml,
	glib/tmpl/fileutils.sgml: Added
	
	* glib/Makefile.am: Add new files

	* glib/glib-sections.txt: Add stuff from -unused

Fri Nov  3 07:33:15 2000  Tim Janik  <timj@gtk.org>

	* gobject/gobject-docs.sgml: added &gobject-closures; section.

	* gobject/Makefile.am (tmpl_sources): add tmpl/clsoures.sgml

	* gobject/gobject-sections.txt: added Closure section.
	
	* gobject/tmpl/closures.sgml: new file with template description
	for GClosure functions.

2000-11-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/tmpl/glib-unused.sgml: Remove superfluous GSearchFunc.

	* glib/tmpl/async_queues.sgml, glib/glib-sections.txt: Added
	documentation for asynchronous queues.

2000-10-31  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/tmpl/linked_lists_single.sgml: This time the right fix.

	* glib/tmpl/scanner.sgml, glib/tmpl/strings.sgml: Changed
	parameter names.

	* glib/tmpl/string_utils.sgml: Corrected the documentation of
	g_strescape and added those of g_strcompress.

2000-10-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/tmpl/limits.sgml: Added documentation for
	G_MAXU(INT|SHORT|LONG).

	* glib/tmpl/macros_misc.sgml: Added documentation for
	G_G(U)INT(16|32|64)_FORMAT.

	* glib/tmpl/types.sgml: Mention G_MAXU(INT|SHORT|LONG) in
	documentation for gu(int|short|long).

	* glib/glib-sections.txt, glib/tmpl/linked_lists_double.sgml,
	glib/tmpl/caches.sgml: Move GCompareFunc to GList and introduce
	and document GEqualFunc in GHashTable.

	* glib/tmpl/caches.sgml, glib/tmpl/hash_tables.sgml,
	glib/tmpl/relations.sgml : Changed to reflect the changed API
	(GCompareFunc -> GEqualFunc).

	* glib/tmpl/linked_lists_single.sgml, glib/tmpl/threads.sgml: Typo
	fixes.
	
Mon Oct 30 11:13:12 2000  Tim Janik  <timj@gtk.org>

	* gobject/tmpl/signals.sgml: start at general description.

	* gobject/gobject-docs.sgml: added introduction.

Mon Oct 30 06:01:43 2000  Tim Janik  <timj@gtk.org>

	* gobject/gobject-sections.txt: opened up a new section on signals.

2000-10-27  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/tmpl/misc_utils.sgml: Removed the win32 limitation.

	* glib/glib-sections.txt, glib/tmpl/hash_tables.sgml,
	glib/tmpl/macros_misc.sgml, glib/tmpl/misc_utils.sgml,
	glib/tmpl/scanner.sgml: Document the recently deprecated functions
	as such.

2000-10-15  Raja R Harinath  <harinath@cs.umn.edu>

	'make distcheck' fixes.
	* glib/Makefile.am (EXTRA_DIST): Add $(DOC_MODULE)-decl.txt.
	(html): Run 'gtkdoc-fixxref' in $(srcdir).
	(dist-check-gtkdoc): Add missing quote.
	(dist-hook): Copy in dependency order, so that none of the
	makerules are fired in a tarball build.

	* gobject/Makefile.am: Likewise.

2000-10-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/glib-sections.txt: Added misc items.

	* glib/tmpl/random_numbers.sgml: Documentation for the random
	number generator.

2000-10-09  Raja R Harinath  <harinath@cs.umn.edu>

	* gobject/Makefile.am (DOC_SOURCE_DIR): Don't set to 
	$top_srcdir)/gobject.
	* glib/Makefile.am (DOC_SOURCE_DIR): Don't set to $(top_srcdir),

2000-09-29  Jonathan Blandford  <jrb@redhat.com>

	* glib/tmpl/trees-nary.sgml: Add g_node_insert_after().

Thu Sep  7 12:35:35 2000  Owen Taylor  <otaylor@redhat.com>

	* Some further makefile improvement.
	 
	* Restore all the docs that mysteriously vanished earlier.

Wed Sep  6 10:59:45 2000  Owen Taylor  <otaylor@redhat.com>

	* gobject/Makefile.am glib/Makefile.am: Improve 
	separation of generic non-generic parts and dependencies. 

Tue Sep  5 20:03:25 2000  Owen Taylor  <otaylor@redhat.com>

	* Moved into glib source tree, updated glib-sections.txt
	and Makefile.am for glib-1.3.x.

2000-07-01  Damon Chaplin  <damon@helixcode.com>

	* tmpl/string_utils.sgml: updated g_strndup.

2000-06-11  Damon Chaplin  <damon@helixcode.com>

	* tmpl/messages.sgml: updated a bit more.

2000-06-11  Damon Chaplin  <damon@helixcode.com>

	* tmpl/messages.sgml: updated a few bits about log handlers & flags.

2000-04-16  Damon Chaplin  <damon@helixcode.com>

	* tmpl/linked_lists_single.sgml: 
	* tmpl/linked_lists_double.sgml: 
	* tmpl/trees-nary.sgml: updated.

	* tmpl/modules.sgml: described g_module_build_path().

	* tmpl/date.sgml: made short description lower case and end in a '.'.

	* glib-sections.txt: rearranged GDate section.

	* tmpl/arrays.sgml: 
	* tmpl/arrays_byte.sgml: 
	* tmpl/arrays_pointer.sgml: updated.

2000-02-21  Damon Chaplin  <damon@helixcode.com>

	* tmpl/main.sgml: updated the g_source_remove_by_XXX() descriptions
	to note that only the first source found is removed.

2000-01-25  Damon Chaplin  <damon@karuna.freeserve.co.uk>

	* tmpl/misc_utils.sgml: g_bit_nth_lsf/msf docs from 
	Nils Rennebarth <nils@ipe.uni-stuttgart.de>, and updates for
	GVoidFunc & GFreeFunc.

1999-12-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib-sections.txt, tmpl/threads.sgml: Removed
	G_THREADS_IMPL_NSPR. Shouldn't be used anyway.

	* glib-overrides.txt: New file, that makes most of the thread
	related macros look like functions.

	* Makefile.am: Added glib-overrides.txt to EXTRA_DIST.

	* tmpl/threads.sgml: Minor updates.
	
Tue Aug 17 08:42:17 1999  Owen Taylor  <otaylor@redhat.com>

	* tmpl/datasets.sgml: Added missing </para>
	* tmpl/timers.sgml: Added missing </para>
	* tmpl/misc_utils.sgml: Added missing </para>
	* tmpl/linked_lists_double.sgml: Added missing </para>
	* tmpl/linked_lists_single.sgml: Added missing </para>
	* tmpl/threads.sgml: Removed extra <para>s.
	* tmpl/main.sgml: Added missing </para>

Wed Aug 18 23:38:52 1999  Owen Taylor  <otaylor@redhat.com>

	* README: Added some simple build instructions.

Wed Aug 18 23:11:28 1999  Owen Taylor  <otaylor@redhat.com>

	* Import into CVS of glib-reference-1.1.3
	  Filled in some basic contents for AUTHORS
	  README, and README.cvs