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
|
2005-01-09 Damon Chaplin <damon@gnome.org>
* Released 1.3.
2005-01-09 Damon Chaplin <damon@gnome.org>
* gtkdoc-mkdb.in (MergeSourceDocumentation): output better warnings
using the type information. Patch from Stefan Kost. #161979
* gtkdoc-scan.in (ScanHeader): support "typedef struct a *b;". Fixes
last part of #156318.
* gtkdoc-common.pl.in (ParseStructDeclaration): return an empty array
for forward struct declarations. Part of #156318.
* gtkdoc-mktmpl.in:
* gtkdoc-mkdb.in: updated a few of the warnings to make them a bit
easier to understand.
2004-11-22 James Henstridge <james@jamesh.id.au>
* acconfig.h: remove file, since we don't have a config.h
* configure.in: make sure $ACLOCAL_FLAGS is passed to aclocal on a
rebuild.
* autogen.sh: use Automake-1.9 if available, and call aclocal,
autoconf, automake, etc in the same order as autoreconf does.
* gtkdocize.in: if the AC_CONFIG_MACRO_DIR option is used in the
configure script, copy gtk-doc.m4 to that directory in the source
tree.
2004-11-16 Damon Chaplin <damon@gnome.org>
* gtkdoc-mkdb.in (OutputFunction): output "const" rather than
"G_CONST_RETURN". #157674.
* gtkdoc-mktmpl.in (OutputDeclaration): skip "void" return types but
not if it has modifiers e.g. "void *". #156963.
* gtkdoc-scan.in (ScanHeader): handle __attribute__. Patch from
Simon Josefsson. #156962.
2004-10-31 Damon Chaplin <damon@gnome.org>
* gtkdoc-mkdb.in (OutputStruct): handle opaque/forward struct
declarations. #156318 again. Tiny fix to avoid warnings.
2004-10-28 Damon Chaplin <damon@gnome.org>
* gtkdoc-mktmpl.in (ReadDeclarationsFile):
* gtkdoc-mkdb.in (ReadDeclarationsFile):
* gtkdoc-scan.in (ScanHeader): handle opaque/forward struct
declarations. #156318.
2004-10-25 Damon Chaplin <damon@gnome.org>
* gtkdoc-mkdb.in (OutputParamDescriptions): use a after Returns:
so it doesn't break before the colon.
2004-10-24 Damon Chaplin <damon@gnome.org>
* gtkdoc-common.pl (ParseEnumDeclaration): handle "typedef enum XXX {"
#156297. Patch from Simon Josefsson.
2004-10-20 Damon Chaplin <damon@gnome.org>
* gtkdoc-mkdb.in (ReadDeclarationsFile): set a flag to indicate a
struct has a typedef declaration.
(OutputStruct): better output for structs with typedefs. #83269.
* gtkdoc-scan.in (ScanHeader): leave the struct declaration as it is.
Don't strip out 'typedef'. Also allow simple "struct foo {".
2004-10-19 Damon Chaplin <damon@gnome.org>
* gtkdoc-fixxref.in: use pkg-config to find where GLib is installed
and scan that directory for index files. Also scan $GNOME2_PATH.
These are only used as a last resort. If they are used we have to
output links as absolute URLs, rather than the default relative ones.
2004-10-18 Damon Chaplin <damon@gnome.org>
* gtkdoc-common.pl.in (ParseStructDeclaration): support function
pointers that return "foo const *" #141870.
* gtkdoc-scan.in (ScanHeader):
* gtkdoc-mkdb.in (OutputFunction):
* gtkdoc-mktmpl.in (OutputDeclaration): handle functions with const
or struct return types. #141870 and #148507.
2004-10-15 Damon Chaplin <damon@gnome.org>
* gtkdoc-common.pl.in (ParseStructDeclaration)
(ParseEnumDeclaration): moved these here, rather than have 2 copies
in gtkdoc-mkdb.in and gtkdoc-mktmpl.in.
* gtkdoc-common.pl.in (ParseStructDeclaration): handle struct fields
better. We can now handle things like *foo, ***bar, *baz[12][23],
foo : 25 all on one line. Fixes part of #151219.
Also support the 'short' modifier to fix #90565.
And use $nbsp; rather than spaces to try to avoid splitting
declarations in the output.
Also take an extra arg specifying whether to include parameters in
the function pointer fields.
* gtkdoc-scan.in (ScanHeader): Deal with array types in typedefs.
(Eg, "typedef unsigned char MD5Digest[16];") From Dan Winship.
Last bit of #151219.
2004-10-14 Damon Chaplin <damon@gnome.org>
* gtkdoc-mkdb.in (CreateValidSGMLID): use ":CAPS" rather than
"-CAPS" to distinguish all-caps identifiers, to avoid clashing with
identifiers ending in _caps! Bug #113120.
* gtkdoc-mkdb.in (MergeSourceDocumentation): if it looks like a
parameter has been described, but not in the right place, output
a better error message. Bug #141871.
* gtkdoc-mkdb.in (OutputMacro, OutputFunction, GetSignals): allow
the author to use <!--PARAMETERS--> to specify the position of the
parameter table if they want. Hopefully good enough for bug #99567.
(MergeSourceDocumentation): end the paragraph before <!--PARAMETERS-->
and start a new one after it.
* doc/authors.txt: document <!--PARAMETERS-->.
* style.css: don't underline links normally, as we output lots of
them and it makes it very cluttered. Only underline links when the
mouse hovers over them, and change the color. Fixes #108037.
* gtk-doc.make (scan-build.stamp): depend on $(CFILE_GLOB) as well,
since changes in properties need to be picked up by gtkdoc-scangobj.
Bug #52458.
* gtkdoc-mkdb.in: (ParseStructDeclaration): for fields that are
function pointers, only return the function name, as otherwise the
output gets really messy. Fixes #66618.
* gtkdoc-mktmpl.in:
* gtkdoc-mkdb.in:
* gtkdoc-scan.in:
* gtkdoc-scanobj.in:
* gtkdoc-scangobj.in: use '@PACKAGE_DATA_DIR@' instead of
"@PACKAGE_DATA_DIR@" so that it isn't interpolated. It failed when
$prefix was /software/@sys/usr. Fixes #113456.
2004-10-13 Damon Chaplin <damon@gnome.org>
* gtkdoc-scanobj.in:
* gtkdoc-scangobj.in: patch from Olexiy Avramchenko to add 3 new
GdkEvent subtypes.
* gtkdoc-scanobj.in:
* gtkdoc-scangobj.in: patch from Benjamin Otte to get rid of
-Wsign-compare warnings. Bug #137013.
Fri Sep 17 01:13:24 2004 Matthias Clasen <maclas@gmx.de>
* gtk-doc.xsl: Add the images from the gallery on top
of the refentry they point to.
* style.css: Move the css bits of the gallery implementation
here.
Fri Sep 17 00:30:16 2004 Matthias Clasen <maclas@gmx.de>
* gtk-doc.xsl: Don't generate <link rel="refentry">
links, since e.g. the GTK+ docs contain MANY refentries.
2004-09-10 Damon Chaplin <damon@gnome.org>
* autogen.sh: support automake 1.8. (part of #151219).
* examples/Makefile.am: require automake 1.6.
* gtkdoc-scan.in: create an empty MODULE-overrides.txt file if it
doesn't exist. gtkdoc.make expects one to exist.
* doc/setting-up.txt: updated to document new procedure using
gtkdoc.make.
* examples/Makefile.am: updated to use gtkdoc.make.
* examples/configure.in: removed this. gtkdoc.make is used instead
now.
* examples/README: updated.
* Makefile.am (EXTRA_DIST): removed examples/configure.in.
Wed Sep 8 01:12:25 2004 Matthias Clasen <maclas@gmx.de>
* gtkdoc-scan.in (ScanHeader):
* gtkdoc-mktmpl.in (OutputDeclaration):
* gtkdoc-mkdb.in (OutputFunction): Accept mixtures of *
and const in return types.
Wed Sep 01 05:58:08 2004 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in: Remove a debug printf
Tue Aug 24 02:30:08 2004 Matthias Clasen <maclas@gmx.de>
* gtk-doc.xsl: Add support for a gallery of widget images.
Wed Jul 28 13:00:54 2004 Jonathan Blandford <jrb@gnome.org>
* gtk-doc.xsl: remove the examples from the toc.
2004-07-28 Damon Chaplin <damon@gnome.org>
* doc/sections-file.txt: mention use of '#' for comments.
* gtkdoc-mkdb.in: removed HEADER_FILE stuff, since it isn't used now.
2004-07-23 Damon Chaplin <damon@gnome.org>
* examples/Makefile.am (all-local): add empty all-local target for
when ENABLE_GTK_DOC is false. (#148209, Martin Quinson)
Fri Jul 23 13:21:34 2004 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in (ScanSourceFile): Fix regexps for matching
ignored files. (#148211, Martin Quinson)
2004-07-03 Matthias Clasen <mclasen@redhat.com>
* style.css: Add a missing '}' and align arguments to the
top of their descriptions. (#145363, #145364, Mariano
Su�rez-Alvarez)
2004-05-18 Matthias Clasen <mclasen@redhat.com>
* gtk-doc.xsl: Let the docbook stylesheets generate
extra <link rel=...> elements. (#140221, Geert Stappers)
2004-05-10 Geert Stappers <stappers@stappers.nl>
* TODO: new file, basicly a reference to bugzilla.
* examples/README: tell about gtk-doc.make.
2004-05-06 Geert Stappers <stappers@stappers.nl>
* MAINTAINERS: Add myself.
2004-05-05 Matthias Clasen <mclasen@redhat.com>
* gtk-doc.xsl: Correct the docbook stylesheet version
in which filtered index support will appear to 1.66.
2004-04-27 Geert Stappers <stappers@stappers.nl>
* README: Updated the information on Debian packages.
Removed old author and time stamp line.
2004-04-21 Matthias Clasen <mclasen@redhat.com>
* doc/sections-file.txt: Add hint about private types.
* README: Update.
* MAINTAINERS: Add myself.
* gtkdoc-mkdb.in (ReadKnownSymbols): New function which
extracts information about public and private symbols from
the $MODULE-sections.txt file.
(ReadObjectHierarchy): Prune the tree, based on the information
collected by ReadKnownSymbols.
(ReadInterfaces): Also filter out private interfaces here
(ReadPrerequisites): ...and here.
2004-04-19 Matthias Clasen <mclasen@redhat.com>
* Makefile.am: Add version-greater-or-equal.xsl.
* version-greater-or-equal.xsl: New file, implementing
the version-greater-or-equal template for comparing version
numbers.
* gtk-doc.xsl: Import version-greater-or-equal.xsl and
use the version-greater-or-equal template to a) check that
the xsl stylesheets are not too old and b) to avoid creating
multiple indices if the xsl stylesheets don't support filtered
indices. (#107774)
* gtkdoc-mkdb.in (MakeIndexterms): Emit role attributes
on indexterms which can be used to create filtered indices
with sufficiently new xsl stylesheets. The required functionality
will appear in version 1.62 of the xsl stylesheets. (#115530)
2004-04-16 Matthias Clasen <mclasen@redhat.com>
* style.css: Style information in a separate stylesheet.
* gtkdoc-mkhtml.in: Copy css files.
* Makefile.am (gtkdocdata_DATA): Add style.css
* gtk-doc.xsl: Use a stylesheet instead of hardwiring
styles. (#134683, Vincent Torri)
* gtkdoc-mkdb.in (GetSignals): Organize the properties
descriptions to fit better with the other sections, and
also display information about allowed and default values.
2004-04-15 Matthias Clasen <mclasen@redhat.com>
* gtkdoc-scangobj.in: Use introspection more fully to emit
allowed ranges for integral types and default values.
* gtkdoc-mkdb.in (GetSignals): Handle missing signal parameter
names better.
2004-03-04 Damon Chaplin <damon@gnome.org>
* autogen.sh: fixed URLs to download autoconf/automake/libtool.
Patch from Frederic L. W. Meunier.
2004-02-16 Damon Chaplin <damon@gnome.org>
* .cvsignore: added gtk-doc.cat and gtkdocize.
2004-02-16 Damon Chaplin <damon@gnome.org>
* Released 1.2.
2004-02-16 Damon Chaplin <damon@gnome.org>
* gtk-doc.cat.in: removed public ID for gtk-doc.dtd, since we don't
use it any more.
Sat Feb 14 02:14:27 2004 Matthias Clasen <maclas@gmx.de>
* gtk-doc.m4: Avoid unnecessary checks if gtk-doc is
disabled. (#134221, Julio M. Merino Vidal)
Sat Feb 14 02:03:01 2004 Matthias Clasen <maclas@gmx.de>
* gtk-doc.make: Don't create unneeded empty
directories. (#134319, Julio M. Merino Vidal)
Sat Feb 14 01:37:38 2004 Matthias Clasen <maclas@gmx.de>
* gtk-doc.make: Add an empty all-local target to make it work
with non-GNU make. (#134343, Julio M. Merino Vidal)
Wed Jan 28 00:52:00 2004 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in (OutputObjectList): Avoid emitting invalid
docbook markup if there are no objects. Partial fix for #132661.
Sun Jan 25 22:01:15 2004 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in: Accept both the old and the new XInclude
namespace. (#131675, Edd Dumbill)
2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
* gtkdoc-mkhtml.in: exit when tools return non-zero so errors can
be caught.
Thu Jan 15 23:06:10 2004 Matthias Clasen <maclas@gmx.de>
* gtk-doc.xsl: Set the chunk.fast parameter, to gain some
speed.
Thu Jan 15 23:05:23 2004 Matthias Clasen <maclas@gmx.de>
* gtkdoc-fixxref.in: Make it work again without explicit
--module.
Sat Dec 27 01:36:08 2003 Matthias Clasen <maclas@gmx.de>
* gtkdoc-scangobj.in:
* gtkdoc-mktmpl.in:
* gtkdoc-scan.in:
* gtkdoc-fixxref.in: Add --help. (#126915)
Sat Dec 27 00:43:42 2003 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in (ParseEnumDeclaration):
* gtkdoc-mktmpl.in (ParseEnumDeclaration): Support a trailing ,
in enum declarations. These are a GNU C extension, but also
blessed by C99. (#129949, Thomas Vander Stichele)
Sun Nov 16 00:29:03 2003 Matthias Clasen <maclas@gmx.de>
* gtkdoc-scangobj.in: Don't use g_strdown(). (#127028,
David Schleef)
Sun Nov 16 00:26:05 2003 Matthias Clasen <maclas@gmx.de>
* gtkdoc-scangobj.in: If compiled against GLib >= 2.3.0, look
for properties on interfaces. (#127068, James M. Cape)
2003-11-03 Dan Winship <danw@ximian.com>
* gtkdoc-scangobj.in: Clean up $MODULE-scan.o even when using
libtool
* gtkdoc-scanobj.in: Likewise
* gtk-doc.make (CLEANFILES): Remove $(MODULE)-scan.o from here
(clean-local): rm -rf .libs
Wed Oct 8 01:21:54 2003 Matthias Clasen <maclas@gmx.de>
* gtkdoc-scan.in (ScanHeader): Make gtkdoc-scan grok
typedef struct { } foo; in addition to the more baroque
typedef struct _foo foo; struct _foo { };
(#116807, Malcolm Tredinnick)
Wed Oct 8 01:21:35 2003 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in (OutputParamDescriptions): Remove a pointless
warning.
2003-10-01 Matthias Clasen <maclas@gmx.de>
Make signals and properties end up in the right template
file (#116569, Owen Taylor):
* gtkdoc-mktmpl.in (OutputSignalTemplates):
(OutputArgTemplates): Return a string rather than directly
writing to OUTPUT.
(OutputTemplateFile): Don't interpret $title as the name of
the object to print signal and property templates for.
(UpdateTemplates): Collect signal and property templates for all
objects contained in the section.
2003-08-10 James Henstridge <james@daa.com.au>
* acinclude.m4 (JH_PATH_XML_CATALOG): allow caller to specify
actions if found or not found.
(JH_CHECK_XML_CATALOG): when requiring JH_PATH_XML_CATALOG, don't
error out if it is not found.
2003-08-03 Matthias Clasen <maclas@gmx.de>
* doc/gnome.txt: Add some hints regarding markup of examples.
2003-07-22 Matthias Clasen <maclas@gmx.de>
* configure.in:
* gtk-doc.cat: Fix a problem with the previous commit.
2003-07-21 Matthias Clasen <maclas@gmx.de>
Applied patches from Sebastian Rittau to add maintainer mode and an SGML catalog. (#117955, #117956)
* gtk-doc.cat.in: New catalog file.
* configure.in: Added gtk-doc.catalog to output files.
* Makefile.am: Install gtk-doc.catalog.
* configure.in: Added AM_MAINTAINER_MODE.
* autogen.sh: Added --enable-maintainer-mode to configure options.
2003-07-09 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mktmpl.in (ParseStructDeclaration):
* gtkdoc-mkdb.in (ParseStructDeclaration): Accept volatile struct members, which have just
made their appearance in glib.
2003-06-29 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in (ExpandAbbreviations): When expanding @param, catch the common @param->field
and @param.field, to reduce the need for littering the C sources with <literal>foo->bar</literal>.
2003-06-25 Matthias Clasen <maclas@gmx.de>
Changes for #115528:
* gtkdoc-mkdb.in (OutputSGML): Collect hierarchy, interfaces, implementations, prerequisites
and derived interfaces separately.
(OutputSGMLFile): Take two more arguments: implementations and derived interfaces.
(GetHierarchy): Also put immediate children in the local tree.
(GetInterfaces): Split into GetInterfaces and GetImplementations.
(GetImplementations): New function to get the implementations of an interface.
(GetDerived): New function to get the known derived interfaces of an interface.
* gtkdoc-mkdb.in (MakeXRef): Accept a second, optional parameter for the
text of the link.
(ExpandAbbreviations): Add semantic markup inside the links, so that
non-crossreferenced symbols come out properly formatted after link
removal. (#61345)
2003-06-15 Matthias Clasen <maclas@gmx.de>
Support for a flat index of all symbols. (#92861)
To use, put an empty <index/> element in your driver document.
* gtkdoc-mkdb.in (MakeIndexterms): New function, emits an indexterm.
(OutputMacro, OutputTypedef, OutputStruct, OutputEnum,
OutputUnion, OutputVariable, OutputFunction): Use MakeIndexterms.
to emit indexterms for symbols.
* gtkdoc-mkdb.in (GetSignals):
(GetArgs): Emit Since: information for signals and properties.
Thu Jun 12 15:55:57 2003 Owen Taylor <otaylor@redhat.com>
* gtkdoc-mkhtml.in (declaration): Replace head -1 with -n 1.
(Merge change by Elliot Lee from Red Hat package)
2003-06-11 Matthias Clasen <maclas@gmx.de>
* doc/gnome.txt: Updates to the documentation of inline comments.
2003-06-03 Matthias Clasen <maclas@gmx.de>
* gtk-doc.spec.in: Add a missing Provides: and include the .pc file.
(#106568, Joe Pranevich)
2003-05-27 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in (GetSignals):
(GetArgs): Add signals and properties to the statistics.
(OutputMissingDocumentation): Emit undocumented signals and
properties. (#113645)
2003-04-21 Matthias Clasen <maclas@gmx.de>
* tools/docpercentages.pl: Fix autolinkification for undocumented
symbols.
* doc/style-guide.txt: Typo fix.
2003-04-18 James Henstridge <james@daa.com.au>
* Released 1.1.
2003-04-18 James Henstridge <james@daa.com.au>
* NEWS: add news items.
* configure.in: increment version number.
2003-03-14 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in (OutputBook): Fix the public identifier for
DocBook V3.0: Davenport, not DavenPort.
(#108343, Mariano Suarez-Alvarez)
2003-03-10 James Henstridge <james@daa.com.au>
* configure.in: associate the chmod commands with the files they
are chmod'ing. This way config.status will always run the correct
chmod command.
2003-03-04 James Henstridge <james@daa.com.au>
* configure.in: look up the docbook DTD by public id rather than
system id.
2003-02-26 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in (GetArgs): Prefer template or comment docs over
blurbs only if they're nonempty, otherwise the empty docs from the
templates override all the blurbs.
2003-02-26 James Henstridge <james@daa.com.au>
* autogen.sh (THEDIR): set up so that it will choose automake 1.7
or 1.6 in preference to 1.4. Passes distcheck okay.
* configure.in: update configure.in script to match
recommendations of newer autoconf's, and add an AC_PREREQ()
statement, since the xml catalog checks are using new autoconf
features.
* gtk-doc.make (xml-build.stamp): since other bits of the makefile
were assuming xml, may as well hard code --output-format=xml.
2003-02-19 James Henstridge <james@daa.com.au>
* Makefile.am: get rid of the dist-hook, and just include the
given files in EXTRA_DIST instead.
* configure.in: provide meaningful names for the commands.
* acinclude.m4 (JH_CHECK_XML_CATALOG): add some extra arguments: a
friendly name for the catalog entry, and actions to run if the
entry was found or not. Also include a bit more information in
the config.log file if an error occurs.
2003-02-18 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkhtml.in (declaration): Avoid the unportable grep
option -q. (#105311)
2003-02-19 James Henstridge <james@daa.com.au>
* devhelp.xsl: put chapters that aren't at the top level into the
toc tree (to make gtk's .devhelp tree look better).
* gtk-doc.spec.in (Requires): make the requires lines match
current requirements ...
* gtkdoc-mkhtml.in (XSLTPROC): pass --nonet to xsltproc, so we
don't try to download DTDs and XSLT over the net. The configure
checks should catch people who don't have the correct files in
their catalog.
2003-02-17 James Henstridge <james@daa.com.au>
* gtkdocize.in (--version): add --version argument.
2003-02-14 James Henstridge <james@daa.com.au>
* gtkdoc-mkdb.in (GetOptions): actually accept --tmpl-dir as a
command line option. Based on a patch from Simon Josefsson
<jas@extundo.com>.
* gtk-doc.xsl: remove the xmlns declaration. Not really needed
for html output anyway ...
2003-02-13 James Henstridge <james@daa.com.au>
* devhelp.xsl: remove refsect1's and refsect2's from book tree, as
suggested by Hallski.
* gtk-doc.make (install-data-local): the change to install images
was superfluous, so I have removed it.
(CLEANFILES): move some more stuff to CLEANFILES from the
distclean-local rule.
2003-02-12 James Henstridge <james@daa.com.au>
* gtk-doc.make: add some chmod calls to work arround distcheck on
automake >= 1.6.
(install-data-local): copy the images as well as the html files
during install.
(uninstall-local): add an uninstall rule to remove the docs.
(CLEANFILES): add $(DOC_MODULE)-scan.o to the list of files to be
cleaned up.
2003-02-09 James Henstridge <james@daa.com.au>
* gtkdocize.in: script used to copy gtk-doc.make into another
module.
* gtk-doc.make: automake makefile fragment to handle gtk-doc
support in other modules.
* configure.in: check to make sure DocBook XML DTD and XSLT
stylesheets are present in the XML catalog.
* acinclude.m4 (JH_CHECK_XML_CATALOG): new macro to check for
entries in the XML catalog.
2003-02-04 James Henstridge <james@daa.com.au>
* gtk-doc.m4: a macro to check for gtk-doc.
* Makefile.am (gtkdocdata_DATA): don't bother installing xml.dcl.
It isn't used anymore (since switching xml mode to xsltproc).
* gtkdoc-mkhtml.in (gtkdocdir): and here.
* Makefile.am (gtkdocdatadir): change dir.
* configure.in: put data files in $(datadir)/gtk-doc/data, so that
they don't all get mixed up with the html docs installed by other
packages.
2003-01-20 Damon Chaplin <damon@gnome.org>
* Released 1.0.
2003-01-20 Damon Chaplin <damon@gnome.org>
* configure.in: bumped version to 1.0, and added SGML_OUTPUT_TYPE
variable, which we set to 'sgml-raw' if we have openjade, or 'sgml'
if we have jade. Added gtk-doc.pc to AC_OUTPUT.
* gtkdoc-mkhtml.in: used SGML_OUTPUT_TYPE variable to set the output
type of jade/openjade.
* gtk-doc.pc.in: new pkg-config file, which apps can use to reliably
check the gtk-doc version in future.
* Makefile.am (pkgconfigdir): install .pc file, and add it to
EXTRA_DIST.
* examples/configure.in: updated example to use pkg-config for the
version check.
2003-01-18 James Henstridge <james@daa.com.au>
* gtkdoc-mkhtml.in (declaration): switch the output type from
"sgml" to "sgml-raw" when using Jade to process docs. This gets
rid of the line breaks inside the tags, which were confusing Lynx.
2003-01-15 Matthias Clasen <maclas@gmx.de>
* gtkdoc-scan.in (ScanHeader): Remove special cases for Pango and
Bonobo.
* gtkdoc-mkdb.in (OutputDeclaration):
* gtkdoc-mktmpl.in (OutputDeclaration): Remove special cases for
structs named BlablaClass. (#95398)
* gtkdoc-mkdb.in (GetInterfaces): Fix an off-by-one error.
(#103466, Josh Parsons)
2002-12-28 Chema Celorio <chema@celorio.com>
* gtkdoc-scan[g]obj.in: add "void" to functions with no parameters,
avoids warning with -Wmissing-prototypes when compiling
{module}-scan.c
2002-12-16 James Henstridge <james@daa.com.au>
* gtk-doc.spec.in: require perl >= 5.6.0
* configure.in: require Perl >= 5.6.0
* gtkdoc-fixxref.in: add "use bytes;" to fix malformed UTF-8
character errors when run with a UTF-8 locale.
2002-12-16 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in (OutputSGMLFile): Don't emit the additional
anchors in the title which breaks the generated html (the title
text is copied around). Instead, put the anchors before the
synopsis. This isn't perfect, but the best we can achieve without
stylesheet hackery.
2002-12-13 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in: Add an --ignore-files option which can be used
to omit files or directories from scanning.
(OutputSGMLFile): Emit anchors for all objects contained in the
file to avoid dangling links.
(OutputMissingDocumentation): Emit deprecated symbols after
undeprecated ones.
2002-12-12 Matthias Clasen <maclas@gmx.de>
* gtkdoc-scan.in (ScanHeader): Also recognize "positive" guards
like #ifdef GTK_ENABLE_BROKEN.
2002-12-11 Matthias Clasen <maclas@gmx.de>
* gtk-doc.xsl: Change XPath path to "//anchor|//refentry" for the
generation of index.sgml. The previous path "//anchor|refentry"
was not matching any refentrys.
2002-12-09 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mktmpl.in (UpdateTemplates): Emit unused class structs
to $MODULE-unused.txt.
2002-12-08 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in (OutputStruct): Don't emit private parts
of class structs to parameter lists in docs. Remove leftover
debugging output.
* gtkdoc-mktmpl.in (OutputDeclaration): Don't emit private parts
of class structs to parameter lists in templates.
2002-12-06 Matthias Clasen <maclas@gmx.de>
Improved /*< private >*/ handling: (#95398)
* gtkdoc-mkdb.in (OutputStruct): Handle /*< public >*/ and
/*< private >*/ for all structs. Default to private for object and
class structs, to public for all other structs.
* gtkdoc-scan.in (ScanHeader): Emit declarations for class structs
to $MODULE-decl.txt.
2002-12-05 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mktmpl.in (OutputDeclaration):
* gtkdoc-mkdb.in (ReadTemplateFile): Support @Since: and
@Deprecated: as a way to specify since and deprecated information
in template files. This works for all kinds of symbols, even those
which normally don't have parameter lists.
2002-12-02 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in (MakeDeprecationNote): Support multi-paragraph
deprecation notes.
2002-11-29 James Henstridge <james@daa.com.au>
* gtkdoc-mkhtml.in: copy the navigation images for both XML and
SGML cases.
* gtk-doc.dsl.in: update DSSSL stylesheets to match layout of XSL
ones.
2002-11-29 Matthias Clasen <maclas@gmx.de>
* gtkdoc-scan.in (ScanHeader): Make deprecation guards work with
both
#ifndef DEPRECATION_GUARD
#if !defined(DEPRECATION_GUARD) || defined(FOO_COMPILATION)
The second form is used in GDK and GTK+ to include selected
deprecated symbols when compiling the library itself.
2002-11-27 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in: Parse to new tags in inline doc comments,
Since: and Deprecated:, which can be placed after the Returns:
tag. Emit the Since: information (which is expected to be just a
version number) after the parameters and the Deprecated:
information (which is expected to be one or more full sentences)
inside the deprecation warning.
Warn if a Deprecated: tag is found on a symbol which is not
guarded by a deprecation guard in the header.
2002-11-26 James Henstridge <james@daa.com.au>
* gtkdoc-mkhtml.in: set gtkdoc-bookname and gtkdoc-version
parameters in sgml mode, and don't bother with the sed run after
processing with jade.
In XML mode, pass the version number in as a parameter too.
* gtk-doc.dsl.in ($user-html-header$): add <meta> tag if
gtkdoc-version is set.
(generate-index-mode): if gtkdoc-bookname is set, add it to the
hrefs in the index file, like the XSLT sheets do.
* gtk-doc.xsl: add gtkdoc.version parameter, and use it to add a
<meta> tag with the gtk-doc version number.
2002-11-16 Damon Chaplin <damon@gnome.org>
* Released 0.10.
2002-11-16 Damon Chaplin <damon@gnome.org>
* configure.in: bumped version to 0.10.
* Makefile.am (EXTRA_DIST): added MAINTAINERS.
* README: updated requirements info, mainly to add XML stuff.
* NEWS: added news for 0.10
* MAINTAINERS:
* AUTHORS: updated my email address.
2002-11-16 James Henstridge <james@daa.com.au>
* gtk-doc.xsl: output HTML in ISO-8859-1 (latin1), as using UTF-8
can trigger misinterpretation of web pages when the web server
asserts that the document is encoded in latin1 in the mime type.
2002-11-15 James Henstridge <james@daa.com.au>
* gtk-doc.xsl: small changes to make the output closer to valid
HTML.
* gtkdoc-fixxref.in (MakeXRef): when substituting in cross
references, use lower case element and attribute names, and quote
the attribute value.
2002-11-12 James Henstridge <james@daa.com.au>
* gtkdoc-mkdb.in: put content of parameter descriptions in
<simpara> elements instead of <para>'s. This makes the generated
HTML more compact, as it will omit the <p> tag inside the list
item.
* gtk-doc.xsl: adjust stylesheet a little.
2002-11-10 James Henstridge <james@daa.com.au>
* gtk-doc.xsl: change style for documentation.
* gtkdoc-mkhtml.in (declaration): copy PNG files to the html
directory.
2002-11-10 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in (GetArgs): Expand abbreviations in source doc
comments.
2002-11-09 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mktmpl.in (OutputSignalTemplates): Don't replace template
param names with meaningless argn names generated by gtkdoc-scangobj.
* gtkdoc-mkdb.in (GetSignals): Use argument names from source doc
comments, if available.
(GetArgs): Use source doc comments instead of blurb, if available.
(ScanSourceFile): Also accept object::signal and object:property
symbols.
(MergeSourceDocumentation): For signals only, prefer source doc
param names over template param names.
Fri Nov 8 15:10:57 2002 Owen Taylor <otaylor@redhat.com>
* gtkdoc-mkdb.in (GetPrerequisites): Add missing <para>
here too.
Mon Nov 4 17:17:40 2002 Owen Taylor <otaylor@redhat.com>
* gtkdoc-mkdb.in (MergeSourceDocumentation): Warn
when overriding docs in template file by inline comments.
* gtkdoc-mkdb.in (GetInterfaces): Add missing <para> in
"Implemented interfaces" output.
2002-10-29 Damon Chaplin <damon@ximian.com>
* gtkdoc-scangobj.in: in get_type_name() set is_pointer to TRUE for
subtypes of G_TYPE_BOXED and G_TYPE_POINTER. This means we get things
like "GtkTreeIter *iter" rather than "GtkTreeIter iter" which was
incorrect. Also return 'GParamSpec*' for G_TYPE_PARAM.
in lookup_signal_arg_names() changed GtkNotebook::switch-page
page argument to guint. And fixed a few other entries.
Also fixed argument numbering, so we don't get 2 "widget" arguments.
* gtkdoc-scanobj.in: add ';' after unlink command to avoid warning.
2002-10-20 Matthias Clasen <maclas@gmx.de>
* examples/Makefile.am (SCANOBJ_FILES): Add $(DOC_MODULE).prerequisites.
* gtkdoc-mkdb.in: Read $MODULE.prerequisites and put list of
prerequisites below the object hierarchy for interfaces.
* gtkdoc-scangobj.in: Write information about interface
prerequisites to $MODULE.prerequisites.
2002-10-15 Matthias Clasen <maclas@gmx.de>
* gtkdoc-scangobj.in: Sort paramspec arrays for
greater stability and less random tmpl file diffs.
2002-10-14 Matthias Clasen <maclas@gmx.de>
* examples/Makefile.am (SCANOBJ_FILES): Add $(DOC_MODULE).interfaces.
* gtkdoc-mkdb.in: Read $MODULE.interfaces and put lists of
implemented interfaces/known implementations below the object
hierarchy for classes/interfaces.
* gtkdoc-scangobj.in: Write interface information to
$MODULE.interfaces.
2002-10-12 Matthias Clasen <maclas@gmx.de>
* gtkdoc-scangobj.in: Make interface appear in the object hierarchy.
2002-10-11 Matthias Clasen <maclas@gmx.de>
* gtk-doc.xsl: use 'UTF-8', not UTF-8 for default.encoding, to
make the encoding actually appear in the resulting HTML.
2002-10-09 James Henstridge <james@daa.com.au>
* gtkdoc-mkdb.in: set $doctype_header to "" for the SGML case, as
we don't add a doctype to the beginning of SGML fragments.
Tue Sep 17 01:07:51 2002 Jonathan Blandford <jrb@gnome.org>
* gtk-doc.xsl: output the chunks in UTF-8 so other tools can use
them.
2002-09-03 James Henstridge <james@daa.com.au>
* gtk-doc.xsl: turn on rendering of variablelists as tables, and
set CSS rules to style .variablelist instead of .informaltable.
* gtk-doc.dsl.in (variablelist): override the variablelist handler
instead of the tgroups.
* gtkdoc-mkdb.in (OutputStruct): use a <variablelist> for listing
the field descriptions.
(OutputEnum): same here.
(OutputParamDescriptions): and here.
2002-08-12 James Henstridge <james@daa.com.au>
* gtk-doc.xsl: include devhelp.xsl, and call generate.devhelp when
processing the docbook/xml input.
* devhelp.xsl: new file, implements .devhelp file output.
2002-08-18 Havoc Pennington <hp@pobox.com>
* autogen.sh: hardcode aclocal-1.4/automake-1.4 so that users with
both automake 1.6 and 1.4 installed get the right automake. Means
compilation from CVS will now require the latest automake 1.4
release, or manually creating symlinks called "automake-1.4" and
"aclocal-1.4"
2002-08-08 Matthias Clasen <maclas@gmx.de>
* gtkdoc-scangobj.in: Make sure blurbs end with a '.'
2002-08-08 James Henstridge <james@daa.com.au>
* gtk-doc.xsl: add a gtkdoc.bookname param, and include it in the
index.sgml output (if not empty).
* gtkdoc-mkhtml.in: only perform the sed operation if we are using
Jade, and pass the module name as a parameter when using xsltproc.
2002-08-04 Matthias Clasen <maclas@gmx.de>
* gtkdoc-scangobj.in: Don't try to list signals on types which
don't support signals, e.g. boxed types.
2002-06-14 jacob berkman <jacob@ximian.com>
* gtkdoc-mkdb.in: do the version check before help, so --version
doesn't output --help (should fix recent build bustage)
2002-06-12 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in: Make header-grabbing work without an explicit
--main-sgml-file argument.
* gtkdoc-mkdb.in: Emit the object hierarchy as a <screen> rather
than a <literallayout>, since the Docbook XSL stylesheets don't
handle <link>s inside <literallayout>.
* gtkdoc-mkdb.in: Decide wether to generate standalone documents
for XIncluding or entities based on the presence of the XInclude
namespace declaration on the document element.
2002-06-09 James Henstridge <james@daa.com.au>
* gtkdoc-mkdb.in: try to grab the header off the top of the main
sgml file.
2002-05-31 James Henstridge <james@daa.com.au>
* gtkdoc-mkdb.in (OutputSGML): put XIncludes in the $book_bottom
variable.
(OutputBook): add the XInclude namespace declaration to the book
element.
* gtkdoc-mkhtml.in (declaration): if the document looks like XML,
process it with xsltproc.
* configure.in: check for xsltproc.
* gtk-doc.xsl: start of XSLT template for converting docbook/xml
to HTML.
2002-06-03 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in (ConvertSGMLChars): Don't use Posix character
classes. Perl < 5.6 doesn't have them; and the API doc autobuilder
on widget.gnome.org has an old Perl.
2002-05-29 Matthias Clasen <maclas@gmx.de>
Fixes for #77193:
* gtkdoc-mkdb.in (OutputSGML): Call GetSignals, GetArgs and
GetHierarchy for each symbol here and accumulate.
(OutputSGMLFile): Get signal, argument and hierarchy information
from the caller.
(GetSignals, GetArgs, GetHierarchy): Don't wrap the return value
in a refsect1, so that the results of multiple calls can be accumulated.
2002-05-28 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in (ConvertSGMLChars): Make this work correctly
for empty elements and XML comments in doc comments.
2002-05-27 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in (ReadTemplateFile, OutputSGMLFile):
Use only the basename of the template file in the key for the
symbol table, in order to decouple the file extensions of the
template files and the generated entities (we want to generate
.xml entities from .sgml template files when emitting XML).
2002-05-25 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in (ConvertSGMLChars): New function which tries to
be a bit more clever when escaping SGML syntax characters.
(ScanSourceFile): Use ConvertSGMLChars instead of CreateValidSGML.
This reduces the work needed to make gtk-doc emit XML (where <, &
and friends must always be escaped).
2002-05-18 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkhtml.in: Detect whether we're processing SGML or XML.
* gtkdoc-mkdb.in: New option --output-format to switch between
SGML and XML output.
* Makefile.am (EXTRA_DIST): Add xml.dcl
* xml.dcl: The XML declaration.
2002-05-06 jacob berkman <jacob@ximian.com>
* gtkdoc-scangobj.in: add an include for the GTK_CHECK_VERSION
macro
2002-05-05 Matthias Clasen <maclas@gmx.de>
* gtkdoc-scangobj.in: Output style properties. (#80659)
* gtkdoc-mkdb.in (GetArgs): Return separate sections for
properties, child properties and style properties. (#80659)
2002-05-03 Matthias Clasen <maclas@gmx.de>
* gtkdoc-scangobj.in: Fix for segfault in scangobj-generated C
program on Solaris. (#80606, Jacob Berkman)
2002-05-01 Matthias Clasen <maclas@gmx.de>
* tools/docpercentages.pl: Add the script which Owen uses for the
d.g.o online API docs. Its easier to keep in sync here.
* gtkdoc-mkdb.in (OutputMissingDocumentation): Fix
$MODULE-undocumented.txt for d.g.o online API docs.
* gtkdoc-mkdb.in (GetArgs): Use blurbs for property documentation.
* gtkdoc-scangobj.in: Output child properties. Output nicks and
blurbs for properties.
2002-04-28 Matthias Clasen <maclas@gmx.de>
* gtkdoc-mkdb.in (ScanSourceFile): Don't scan for return value
descriptions unnecessarily. (#65997)
2002-03-11 Matthias Clasen <maclas@gmx.de>
* gtkdoc-scangobj.in, gtkdoc-mkdb.in: Create docs for signals on interfaces.
2002-02-01 Damon Chaplin <damon@ximian.com>
* configure.in: check for openjade or jade. Patch from Stefan Kost
<kost@imn.htwk-leipzig.de>.
* gtkdoc-mkhtml.in: use @JADE@ so the correct version of jade is used.
* autogen.sh: commented out autoheader since we don't have a config.h.
2002-01-18 Damon Chaplin <damon@ximian.com>
* Released 0.9.
2002-02-01 Damon Chaplin <damon@ximian.com>
* examples/Makefile.am: added SCANOBJ_OPTIONS in case the module needs
to pass options to gtkdoc-scanobj or gtkdoc-scangobj.
2002-01-24 Damon Chaplin <damon@ximian.com>
* tools/gtk-doc.el: added Zucchi's emacs lisp for automatically adding
skeleton comment blocks above functions. Very handy!
2002-01-23 Damon Chaplin <damon@ximian.com>
* configure.in: bumped the version to 0.9, so GTK+ can depend on this
if it wants to.
* gtkdoc-scangobj.in: we now default to calling g_type_init() to
initialize the type system, rather than gtk_init(). This means you
don't need an X connection to build the docs any more. Hurrah!
Also added a '--type-init-func' argument so you can change the
function to be called. GTK+ uses --type-init-func="gtk_type_init(0)".
* gtkdoc-scan.in (ScanHeader): removed 'Found object' debug message.
2002-01-18 Damon Chaplin <damon@ximian.com>
* Released 0.8.
2002-01-18 Damon Chaplin <damon@ximian.com>
* Makefile.am (EXTRA_DIST): added gtk-doc.dcl to EXTRA_DIST.
2002-01-18 Damon Chaplin <damon@ximian.com>
* gtkdoc-scangobj.in: Reverted jacob's patch for this release, since
it breaks GTK+ and possibly other packages. I'll re-apply it after
the release, so we can fix everything in CVS.
2002-01-18 jacob berkman <jacob@ximian.com>
* gtkdoc-scangobj.in: default to calling g_type_init(), remove
--nogtkinit argument and replace with a more flexible
--type-init-func
2002-01-18 Damon Chaplin <damon@ximian.com>
* gtkdoc-mkdb.in (ScanSourceFile): patch from Matthias Clasen
<matthiasc@poet.de> to only strip first space after '*' in source
code comment blocks, so example code can be indented as desired.
Bug #68216.
Wed Nov 21 16:50:35 2001 Owen Taylor <otaylor@redhat.com>
* gtkdoc-mkdb,tmpl.in: Add some extra quoting to
error messages to make it clearer what is going on
with trailing commas on enumeration declarations.
Wed Nov 21 16:00:45 2001 Owen Taylor <otaylor@redhat.com>
* Applied patch from Matthias Clasen to use a modified
.dcl file with the 44 character name length limit removed.
(#61342)
2001-10-17 Damon Chaplin <damon@ximian.com>
* gtkdoc-mkdb.in: applied patch from Matthias Clasen
<matthiasc@poet.de> to take a --sgml-mode argument which means
all comment blocks in the source code are assumed to be DocBook
(i.e. we don't convert '<', '>' and '&' to '<' etc.
2001-10-09 Damon Chaplin <damon@ximian.com>
* gtkdoc-mkdb.in (OutputMissingDocumentation): changed %.2f to %.0f
so hopefully the automated reports on developer.gnome.org will work
OK again.
2001-10-02 Damon Chaplin <damon@ximian.com>
* gtkdoc-mktmpl.in (OutputDeclaration):
* gtkdoc-mkdb.in (OutputFunction): applied patch from
matthiasc@poet.de (Matthias Clasen) to handle G_CONST_RETURN in a
parameter list. Bug #61341.
2001-10-02 Damon Chaplin <damon@ximian.com>
* gtkdoc-mkdb.in (OutputMissingDocumentation): applied patch from
matthiasc@poet.de (Matthias Clasen) to output percentages better.
Bug #61467.
Also set percent to 100 if total is 0, avoiding divide-by-zero.
2001-10-02 Damon Chaplin <damon@ximian.com>
* examples/Makefile.am (DOC_OVERRIDES): define as an empty string,
even when not used.
2001-09-13 Damon Chaplin <damon@ximian.com>
* gtkdoc-mkdb.in (OutputMissingDocumentation): initialize buffer to "".
Fix for SGI from David Kaelbling <drk@sgi.com>.
Sat Sep 8 14:08:51 2001 Jonathan Blandford <jrb@webwynk.net>
* gtkdoc-scan.in (ScanHeader): recognize GET_IFACE macros
2001-09-08 Havoc Pennington <hp@pobox.com>
* gtkdoc-mkdb.in (GetArgs): Title the section on object properties
"Properties" instead of "Args"
2001-08-14 Laszlo Peter <laca@ireland.sun.com>
* gtkdoc-scanobj.in:
* gtkdoc-scangobj.in: change \n's to \\n's in perl scripts
generating C code.
2001-08-12 Jens Finke <jens@gnome.org>
* Updated gtk-doc.spec.in file to match gpp standard.
2001-08-04 Damon Chaplin <damon@ximian.com>
* Released 0.7
2001-08-04 Damon Chaplin <damon@ximian.com>
* gtkdoc-mkdb.in (OutputFunction):
* gtkdoc-mktmpl.in (OutputDeclaration): patch from Lowell Johnson
<ldjohn@usgs.gov> to accept things like "long long", "short int",
"char test[][CLEN]" as function parameters.
2001-07-20 Anders Carlsson <andersca@gnome.org>
* gtkdoc-scangobj.in: Remove argument to g_type_init ();
2001-07-09 Damon Chaplin <damon@ximian.com>
* gtkdoc-mkdb.in (ParseStructDeclaration): accept G_CONST_RETURN
modifier for function return values. gtkdoc-mktmpl.in already had this.
Thu Jun 21 11:57:16 2001 Owen Taylor <otaylor@redhat.com>
* gtkdoc-scangobj.in: Conform to changes in GObject API
for property retrieval.
2001-05-25 Peter Williams <peterw@ximian.com>
* gtkdoc-mkdb.in (ScanSourceFile): Skip single-line comments --
prevents barfing on ORBit-generated files.
2001-05-20 Damon Chaplin <damon@ximian.com>
* examples/Makefile.am (sgml-build.stamp): replaced use of wildcard
(which isn't portable) with original *.sgml. I think this just means
that the first time you try to build the docs it will fail, but if
you run make again it will work.
* doc/setting-up.txt: explained that make may fail the first time.
2001-05-19 Damon Chaplin <damon@ximian.com>
* README:
* doc/README:
* doc/setting-up.txt:
* doc/sections-file.txt:
* doc/authors.txt: updated docs to cover simpler setup procedure.
* doc/gtk_button.txt:
* doc/manpage:
* doc/manpage.man:
* doc/notes.txt: removed out-of date stuff.
* Makefile.am (dist-hook): updated so it doesn't try to remove old
examples subdirectory stuff.
2001-05-19 Damon Chaplin <damon@ximian.com>
* examples/gnome/*:
* examples/gnomeui/*: removed out-of-date example files.
* examples/configure.in:
* examples/Makefile.am: new example setup mostly copied from GTK+.
* examples/README: describe the example configure.in/Makefile.am.
2001-05-19 Damon Chaplin <damon@ximian.com>
* gtkdoc-mkdb.in: added --help option and changed output slightly to
make more compatable with XML. Patch from Toshio Kuratomi
<badger@prtr-13.ucsc.edu>
2001-05-19 Damon Chaplin <damon@ximian.com>
* gtkdoc-mktmpl.in (OutputDeclaration):
* gtkdoc-mkdb.in (OutputFunction): changed a '?' to a '*' so we accept
multi-dimensional array function parameters. Patch from Paolo Casarini
<casarini@CS.UniBO.IT>
2001-05-12 Damon Chaplin <damon@ximian.com>
* gtkdoc-scangobj.in:
* gtkdoc-scanobj.in: used "*pos = 0" to avoid problems with backslashes
in '\0'.
* configure.in: removed dsssl dirs stuff, since we use public entities
now.
* gtkdoc-mkdb.in (OutputBook): if there is no main SGML file we create
it here. Also added a --main-sgml-file option so we know where to put
it.
* gtkdoc-scan.in: if there is no MODULE-sections.txt file, we copy
the MODULE-decl-list.txt file to it. The user can tweak it later.
2001-05-11 Damon Chaplin <damon@ximian.com>
* gtk-doc.spec.in: applied patch from Toshio Kuratomi
<badger@prtr-13.ucsc.edu>.
2001-05-07 Joakim Ziegler <joakim@ximian.com>
* gtkdoc-mkdb.in: Added option --outputallsymbols to create a symbol list
in the module doc dir.
* gtkdoc-mkdb.in: Added functionality to output a list of undocumented
symbols in a module, most of is is in OutputMissingDocumentation.
* gtkdoc-scan.in: Small scanning fixes to facilitate the doc coverage
output mentioned above.
2001-04-25 Federico Mena Quintero <federico@ximian.com>
* gtkdoc-scanobj.in: Added missing output-dir in the call to
GetOptions().
2001-04-24 Damon Chaplin <damon@ximian.com>
* gtkdoc-scanobj.in: copied --outputdir option from gtkdoc-scangobj.in.
Fri Apr 13 15:25:44 2001 Owen Taylor <otaylor@redhat.com>
* gtkdoc-mkdb.in: Restore call to OutputBook that was accidentally
deleted.
Thu Apr 12 17:57:12 2001 Owen Taylor <otaylor@redhat.com>
* gtkdoc-scangobj.in: Add a --outputdir option (sort of hacky.
Need this because $CC, $LD can include relative paths if they
are based on $LIBTOOL)
2001-03-26 Damon Chaplin <damon@ximian.com>
* gtkdoc-mkdb.in (ReadSourceDocumentation): scan .h files as well,
so macros can be documented there if desired. Patch from
Yoann Vandoorselaere <yoann@mandrakesoft.com>
* gtkdoc-mkhtml.in (gtkdocdir): use 'test -f' rather than 'test -e'
which is GNU-specific.
Thu Mar 8 17:26:29 2001 Tim Janik <timj@gtk.org>
* gtkdoc-scangobj.in: fix signal param type handling.
Tue Mar 6 23:21:46 2001 Jonathan Blandford <jrb@redhat.com>
* gtkdoc-scanobj.in: Add gobject support. Now works on files that
don't link against GTK.
Sat Mar 3 17:43:42 2001 Owen Taylor <otaylor@redhat.com>
* gtkdoc-{scan,mktmpl,mkdb}.in: Add support for G_CONST_RETURN.
(Right now, it will appear as G_CONST_RETURN in the output -
I'm not sure that's right - perhaps it should be converted
to const.)
2001-02-20 Michael Meeks <michael@ximian.com>
* gtkdoc-mktmpl.in: s/TRUE/1/
2001-02-19 Damon Chaplin <damon@ximian.com>
* gtkdoc-mktmpl.in (UpdateTemplates): fixed bug handling the $changed
flag.
2001-02-17 Damon Chaplin <damon@ximian.com>
* gtkdoc-scan.in (ScanHeaders):
(ScanHeader): patch from Johannes Stezenbach <js@convergence.de>
so we don't use '\b' in the regexp to match files/dirs to ignore.
'\b' can match '_' so we matched things we shouldn't have.
Mon Feb 12 12:50:57 2001 Owen Taylor <otaylor@redhat.com>
* configure.in: Up version.
Sun Feb 11 18:35:07 2001 Owen Taylor <otaylor@redhat.com>
* gtkdoc-mktmpl.in: Add a timestamp file for the
templates like sgml.stamp
* gtkdoc-mktmpl.in (OutputUnusedTemplates): Write the
symbols out in sorted order instead of hash table
order to reduce conflicts.
Mon Feb 5 16:48:51 2001 Owen Taylor <otaylor@redhat.com>
* configure.in gtk-doc.dsl.in: Remove checks for DSSSL - use a
public entity instead.
* gtkdoc-scangobj.in: Fix to work with libtool better.
2001-01-30 Havoc Pennington <hp@pobox.com>
* gtkdoc-fixxref.in, gtkdoc-mkdb.in, gtkdoc-mktmpl.in,
gtkdoc-scan.in, gtkdoc-scangobj.in, gtkdoc-scanobj.in:
Added -*- cperl -*- magic, and --deprecated-guards
option.
2001-01-23 Damon Chaplin <damon@helixcode.com>
* gtkdoc-scangobj.in:
* gtkdoc-scanobj.in:
* gtkdoc-scan.in:
* gtkdoc-mkdb.in:
* gtkdoc-mktmpl.in: changed so that they only update files when
necessary (they write new versions of the files out, then use 'cmp'
to compare with the existing versions to see if they have changed.)
This should make it easier to do proper dependency rules in Makefiles,
and it may cut down on CVS traffic.
* gtkdoc-mkhtml.in: update a timestamp file (html.stamp) after running.
* gtkdoc-mkdb.in: update a timestamp file (sgml.stamp) if any of the
DocBook SGML files have been changed. So hopefully you can now use
rules like this to avoid unnecessary regeneration of the HTML:
all-local:
$(MAKE) scan
$(MAKE) templates
$(MAKE) sgml
$(MAKE) html.stamp
html.stamp: sgml.stamp $(EXTRA_SGML_FILES)
$(MAKE) html
(I've tried this with the old GTK+ reference API docs and it seems to
work well.)
* gtkdoc-scangobj.in:
* gtkdoc-scanobj.in:
* gtkdoc-scan.in:
* gtkdoc-mkdb.in:
* gtkdoc-mktmpl.in:
* gtkdoc-mkhtml.in:
* gtkdoc-mkman.in:
* gtkdoc-fixxref.in:
Added '--version' command-line arg to all shell & perl scripts, so
you can check for version 0.5 if you want to use the above rules.
(If 0.4 is used make will probably complain about not knowing how to
to build sgml.stamp.)
* gtkdoc-common.pl.in: new file to contain shared routines.
For now it just contains the UpdateFileIfChanged routine for the above.
We can move the duplicated routines here in future, though the use of
global variables makes this a bit awkward.
* configure.in (PACKAGE_DATA_DIR): calculates the data dir and
substitutes it so that the scripts know where gtkdoc-common.pl
is installed. Also added gtkdoc-common.pl to AC_OUTPUT.
* Makefile.am: added gtkdoc-common.pl to gtkdocdata_DATA.
* gtkdoc-mkhtml.in: deleted the old index.sgml file, since it causes
problems if it is owned by root (e.g. after you run 'make install' as
root. jade prompts you about overwriting it, which is annoying.
2001-01-10 Havoc Pennington <hp@redhat.com>
* gtkdoc-mktmpl.in: Only move old file to backup if the old file
exists, and have better error messages when doing the backups
Mon Jan 8 14:57:29 2001 Owen Taylor <otaylor@redhat.com>
* gtkdoc-mktmpl.in: Canonicalize signal and argument
names to -, not _.
* gtkdoc-scangobj.in: Fix up for GParamSpec.
2001-01-04 Fr�d�ric Gobry <frederic.gobry@smartdata.ch>
* gtkdoc-scan.in: fixed matching of < private_header > directive
2000-12-19 Damon Chaplin <damon@helixcode.com>
* gtkdoc-scanobj.in:
* gtkdoc-scangobj.in: added default cases to get_type_name().
2000-12-10 Arturo Tena <arturo@directmail.org>
* gtkdoc-scanobj.in (get_type_name):
* gtkdoc-scangobj.in (get_type_name): fixed syntax error: forgotten
to close a switch statement.
2000-12-10 Damon Chaplin <damon@helixcode.com>
* gtk-doc.spec.in: added spec.in file from John Gotts
<jgotts@linuxsavvy.com>.
* configure.in (AC_OUTPUT): added spec file.
* Makefile.am: uncommented spec file stuff, now that we have one.
* gtkdoc-scanobj.in (get_type_name):
* gtkdoc-scangobj.in (get_type_name): updated to use the type numbers
rather than the type names, which were changed in GTK+ 1.2. This
should fix a problem where GTK_TYPE_STRING arguments were output as
'GtkString *arg' instead of 'gchar *arg'.
I'm still not sure what to output for the structured types such as
GTK_TYPE_SIGNAL/ARGS/FOREIGN/CALLBACK/C_CALLBACK. Should these be
expanded to several arguments to the signal handler?
2000-11-25 Dan Mueth <d-mueth@uchicago.edu>
* help/manual/C/: created this path
* gtk-doc-manual.sgml: Put part of the outline into SGML.
Chris plans to put rest of outline in here and start
writing.
* fdl-appendix.sgml: The FDL in SGML. We will probably post
these on the web as a single document (book) so we will
need the FDL to be included as an appendix.
Fri Nov 3 07:21:34 2000 Tim Janik <timj@gtk.org>
* gtkdoc-mkdb.in:
(ParseStructDeclaration):
(OutputStruct):
* gtkdoc-mktmpl.in:
(ParseStructDeclaration):
support /*<protected>*/ equivalently to /*<private>*/
Fri Nov 3 07:15:58 2000 Tim Janik <timj@gtk.org>
* gtkdoc-mktmpl.in:
* gtkdoc-mkdb.in:
(ReadTemplateFile): only eat up the first space (if at all
present) after "@param:" to preserve indentation for multiline
parameter descriptions.
2000-10-30 Raja R Harinath <harinath@cs.umn.edu>
* gtkdoc-mkdb.in (ParseStructDeclaration):
Stop scanning at '}' only when it starts a line.
* gtkdoc-mktmpl.in (ParseStructDeclaration): Likewise.
Mon Oct 30 02:59:54 2000 Tim Janik <timj@gtk.org>
* gtkdoc-scangobj.in: use g_signal_list_ids().
Sun Oct 29 02:54:51 2000 Owen Taylor <otaylor@redhat.com>
* gtkdoc-scangobj.in: Sort signal types arrays for
greater stability and less random tmpl file diffs.
Sun Oct 29 01:02:35 2000 Owen Taylor <otaylor@redhat.com>
* gtkdoc-scangobj.in: Work properly with GSignal
2000-10-21 Damon Chaplin <damon@helixcode.com>
* Released 0.4
2000-10-14 Damon Chaplin <damon@helixcode.com>
* AUTHORS:
* MAINTAINERS: changed my email address.
* Makefile.am (dist-hook): remove the CVS dirs from the dist.
* doc/setting-up.txt: typo.
Fri Oct 6 17:51:50 2000 <otaylor@redhat.com>
* gtkdoc-scan.in gtkdoc-mkdb.in: Allow multiple
--source-dir options.
Thu Sep 7 11:41:12 2000 Owen Taylor <otaylor@redhat.com>
* gtkdoc-mkdb.in: Ignore all . files when scanning directories.
* gtkdoc-scan.in: Add support for GLIB_VAR, GDKVAR,
etc when looking for variable declarations.
* gtkdoc-scan.in: Recognize GET_CLASS macros.
* gtkdoc-scangobj.in: Support .lo intermediate files
with libtool.
Wed Sep 6 17:57:33 2000 Owen Taylor <otaylor@redhat.com>
* gtkdoc-scangobj.in: Add gtkdoc-scangobj scanner for
GObject type system.
* gtkdoc-scanobj.in: Allow setting $LD to allow separating
compilation and linking and thus to allow using libtool.
* gtkdoc-fixxref.in (ScanIndices): Allow HTMLDIR
not to be present yet.
Tue Sep 5 23:37:53 2000 Owen Taylor <otaylor@redhat.com>
* gtkdoc-fixxref.in: Add a --extra-dir option to
allow scanning of additional uninstalled HTML
directories.
* gtkdoc-scan.in (ScanHeaders): Honor subdirectories
appearing in --ignore-headers.
* gtkdoc-mkdb.in: Append -CAPS to all all-caps identifiers
to prevent an infinite expansion of special cases.
* gtkdoc-fixxref.in: Add a --module-dir option to
allow fixing references in an uninstalled tree.
* gtkdoc-mkdb.in gtkdoc-mkhtml.in: Simple handling
for macros with embedded commas in enumeration
declarations.
Mon Aug 28 18:18:53 2000 Owen Taylor <otaylor@redhat.com>
* configure.in (DSSSL_DIR): Remove check for AM_PATH_GTK
since the dependency is only run-time not install-time,
and to avoid dependency loops.
2000-06-21 Damon Chaplin <damon@helixcode.com>
* gtkdoc-mkdb.in: fixed <INCLUDES> bug, I think.
Wed Feb 9 11:29:25 2000 Owen Taylor <otaylor@redhat.com>
* gtkdoc-scan.in: Hack to avoid misidentifying structures
as GtkObjects within Pango.
1999-12-15 Raja R Harinath <harinath@cs.umn.edu>
* gtk-doc.dsl.in ($generate-chapter-toc$): Add missing close
paranthesis.
1999-11-23 Raja R Harinath <harinath@cs.umn.edu>
* gtk-doc.dsl.in: Use the (define (foo) ...) syntax rather than
the uglier (define foo (lambda () ...)) syntax.
($generate-chapter-toc$): Simplify.
($shade-verbatim-attr$): Simplify. Use ($table-width$) instead of
"100%" for width (See docs. of NWalsh Docbook DSSSL Stylesheets
for an explanation).
1999-09-20 Damon Chaplin <damon@karuna.freeserve.co.uk>
* gtk-doc.dsl.in: If a Chapter has role="no-toc" we don't generate a
table of contents. This is useful if a better contents page has been
added manually, e.g. for the GTK+ Widgets & Objects page. (But it is
a bit of a hack.)
* gtkdoc-scanobj.in: added --nogtkinit flag which will make it call
gtk_type_init() rather than gtk_init(). This is useful when it is
run automatically to update the docs by a cron job or similar and a
connection to an X server is not desirable. However, if any widgets
need a connection to X in their class init function then this can't
be used (e.g. GtkFontSelection at present).
Mon Sep 20 09:09:12 1999 Owen Taylor <otaylor@redhat.com>
* gtkdoc-mkdb.in gtkdoc-mktmpl.in: (ParseStructDeclaration):
Fixed up the code to do /*< private >*/ ... stripping.
1999-09-10 Martin Baulig <martin@home-of-linux.org>
* gtkdoc.dsl.in ($generate-chapter-toc$): Return #t, not #f.
1999-09-09 Martin Baulig <martin@home-of-linux.org>
* gtkdoc-scan.in (ScanHeader): Don't force typedefs and other
things to start in column 0; allow some spaces in front of them.
Output `typedef struct { ... } name' structs as typedef, not as
structure.
1999-09-08 Martin Baulig <martin@home-of-linux.org>
* gtkdoc-mkdb.in (CreateValidSGMLID): `s/::/-/g;' for CORBA objects.
1999-08-22 Erik Walthinsen <omega@cse.ogi.edu>
* gtkdoc-scan.in: modified so it will find any Class, not just Gtk
and Gnome classes. Introduces the possibility of extraneous Class
definitions (verified), which should be pruned somehow (haven't
analyzed the false positive yet).
1999-08-22 Damon Chaplin <damon@karuna.freeserve.co.uk>
* gtkdoc-mktmpl.in:
* gtkdoc-mkdb.in: a few fixes to ParseStructDeclaration. It still
has problems with nested structs/unions like those which occur in
gtkclist.h and gtktypeutils.h.
* configure.in: removed gtk-doc.spec from AC_OUTPUT, as whoever wrote
this forgot to add gtk-doc.spec.in to CVS.
* Makefile.am: commented out gtk-doc.spec.
Wed Aug 18 03:55:30 1999 Owen Taylor <otaylor@redhat.com>
* gtkdoc-mktmpl.in: Propagate fix from gtkdoc-mkdb.in.
:-(; need to libraryize, need to libraryize.
Wed Aug 18 03:55:30 1999 Owen Taylor <otaylor@redhat.com>
* gtkdoc-mkdb.in: Fix bug that was preventing
structure field definitions from being output.
Wed Aug 18 23:25:23 1999 Owen Taylor <otaylor@redhat.com>
* configure.in: Add /usr/lib/sgml/stylesheet to list
of stylesheet directories. (Found in recent Debian
packages)
1999-08-15 Damon Chaplin <damon@karuna.freeserve.co.uk>
* gtkdoc-mkdb.in: Output $decl_out as the struct rather than the
original $declaration.
1999-08-12 Damon Chaplin <damon@karuna.freeserve.co.uk>
* gtkdoc-mkdb.in:
* gtkdoc-mktmpl.in: Added special case in ParseEnumDeclaration to
handle GIOCondition which uses strange macros like this:
typedef enum
{
G_IO_IN GLIB_SYSDEF_POLLIN,
...
The GLIB_SYSDEF_POLLIN macro expands to something like '=1'
1999-08-05 Damon Chaplin <damon@karuna.freeserve.co.uk>
* gtk-doc.dsl.in: output <br clear=all> after sections and at end of
page so that right-aligned images aren't messed up quite as much.
Wed Aug 4 04:04:55 1999 Owen Taylor <otaylor@redhat.com>
* gtkdoc-mk{db,tmpl}.in (ParseStructDeclaration): Allow
for bit fields.
* gtkdoc-mktmpl.in (ReadObjectHierarchy): Remove
call to MakeXref that slipped in accidentally.
Wed Aug 4 03:30:19 1999 Owen Taylor <otaylor@redhat.com>
* doc/style-guide.txt: Removed references to creating
tables explicitely in favor of demonstrating new
syntax. Added a short section on /<* public >*/
and /*< private *>/.
Wed Aug 4 03:15:19 1999 Owen Taylor <otaylor@redhat.com>
* gtkdoc-mktmpl.in gtkdoc-mkhtml.in: Handle Struct and
Enumerations in approximately the same way as we
handle parameters. That is, instead of (as before)
coding in the tables by hand, one uses lines like:
@width: the width of the rectangle in pixels.
To support migration from the older hand-coded
tables, if none of the members of a structure or
enumeration have a description in a @... line, then
we don't generate the table at all.
Also, gtkdoc-mktmpl now loads up the object heirarchy,
because we need to be able to check if structures
are widget structures.
In general, the coding here is pretty clean, though
the style is a little different. (I'm interating
through strings with m/.../msg; instead of
s/^...//; for one thing.) However, there are a some
of FIXME's where I've whimped out on try to handle
real C syntax, and the need to split out and librarize
a bunch of duplicated code is greater than ever.
1999-06-06 Damon Chaplin <damon@karuna.freeserve.co.uk>
* configure.in: updated version to 0.3.
* doc/style-guide.txt: A couple of minor changes.
* gtkdoc-mkdb.in: Get rid of a couple of messages.
Output an empty <para> if an Arg isn't documented, to keep Jade happy.
1999-05-22 Damon Chaplin <damon@karuna.freeserve.co.uk>
* gtk-doc.dsl.in: Renamed %shade-verbatim-attr-2% to
$shade-verbatim-attr$ and removed our redefinition of
$verbatim-display$ since the stylesheets version now calls
$shade-verbatim-attr$ as a function which is just what we wanted.
* README: Updated info on stylesheet versions supported - 1.40 is
known to be OK (with this version of gtk-doc), 1.19+ may work.
1999-03-31 Damon Chaplin <damon@karuna.freeserve.co.uk>
* configure.in: update version to 0.2 for next release.
* gtkdoc-mktmpl.in:
* gtkdoc-mkdb.in: added support for 'See Also' section.
* gtk-doc.dsl.in: changed green background color slightly, and
set background color for enum tables.
1999-03-21 Damon Chaplin <damon@karuna.freeserve.co.uk>
* gtkdoc-mkhtml.in (gtkdocdir): use '-w no-idref' to suppress all the
warnings about references to non-existent IDs.
1999-03-18 Damon Chaplin <damon@karuna.freeserve.co.uk>
* gtkdoc-mkdb.in (OutputParamDescriptions): use role="params" for the
table so we can adjust the stylesheet code.
(OutputSGMLFile): Don't output 'one line description goes here'.
(ExpandAbbreviations): allow '-' in #symbol abbreviations, so we can
use #GtkWidget-struct.
(MakeXRef): get rid of special '-struct' suffix, for #GtkWidget-struct.
* gtk-doc.dsl.in: use the "role" attribute on tables to set the
BGCOLOR.
* gtkdoc-scan.in (ScanHeader): fix for scanning functions declared
over multiple lines - was catching things which weren't functions.
1999-03-11 Damon Chaplin <damon@karuna.freeserve.co.uk>
* examples/gnomeui/Makefile.am (clean-local):
* examples/gnome/Makefile.am (clean-local): added *.args
* gtkdoc-mkdb.in: added support for Args and variables. Also a few
minor changes in the output, e.g. don't show macros > 2 lines long.
* gtkdoc-mktmpl.in:
* gtkdoc-scanobj.in: added support for Args.
* gtkdoc-scan.in: added support for extern'ed variables. Also
accept 'extern' before function declarations.
* gtk-doc.dsl.in: made output prettier. Changed the navigation bars
and the colours used for the various backgrounds.
* doc/style-guide.txt: new file containinf a style guide for writing
the GTK+ documentation.
* doc/README: added description of style-guide.txt
* doc/setting-up.txt: fixed a typo
* README: added a bit about Args.
1999-02-07 Damon Chaplin <damon@karuna.freeserve.co.uk>
* Makefile.am: Removed all the scripts from EXTRA_DIST, as they are
now generated from the .in files which automatically go in the dist.
1999-02-02 Damon Chaplin <damon@karuna.freeserve.co.uk>
* doc/setting-up.txt (scan): removed text which incorrectly said that
changing section titles means you have to recreate the main SGML file.
1999-02-03 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: find perl in $PATH, generate the perl programs
from their *.in counterparts.
* gtkdoc-fixxref, gtkdoc-mkdb, gtkdoc-mktmpl, gtkdoc-scan,
gtkdoc-scanobj: Renamed to *.in and changed /usr/bin/perl to
@PERL@, as determined by configure.
* .cvsignore: Added diverse config* stuff and the new generated
perl programs.
1999-01-28 Damon Chaplin <damon@karuna.freeserve.co.uk>
* gtk-doc.dsl.in: I forgot to make the new refentry code process the
child elements, so it was only outputting anchors for each page.
* doc/setting-up.txt (scan): added step to create MODULE.types file
for modules which contain widgets (or objects).
* gtkdoc-mkdb (OutputStruct): allow spaces inside the public/private
markers, e.g. "/* < public > */"
1999-01-27 Damon Chaplin <damon@karuna.freeserve.co.uk>
* Makefile.am: added scripts to EXTRA_DIST and copied examples, doc
and db2man dirs in dist-hook.
* doc/sections-file.txt: added a couple of examples.
* doc/setting-up.txt: new document describing how to set up a module
to use gtk-doc.
* doc/README: added description of setting-up.txt
* README: added short 'Installation' section describing the
--with-dsssl-dir option.
* gtk-doc.dsl.in: also output links to each RefEntry page in the
index.sgml file, so libgnomeui docs can link to widgets. (The widget
hierarchy links were not working before.)
1999-01-26 Damon Chaplin <damon@karuna.freeserve.co.uk>
* gtkdoc-scan (ScanHeader): parse function declarations that have the
return type and name on one line, and the '(' and args on the next.
NOTE: functions with the start of the declaration split over 3 lines
will not be parsed (e.g. return type on one line, function name on
next, and '(' and first argument on the third.) I hope there aren't
any.
* gtkdoc-mkdb (OutputStruct): Use a different SGML ID for widget
structs, since the original ID is used for the entire RefEntry.
Also only show parts of widget structs which are marked with a
comment '/*<public>*/'. Use '/*<private>*/' for private fields.
* gtkdoc-mktmpl (UpdateTemplates): We include widget structs now,
so we do want warnings if they aren't used.
* examples/gnomeui/gnomeui-docs.sgml:
* examples/gnomeui/gnomeui-sections.txt:
* examples/gnomeui/gnomeui.types:
* examples/gnome/gnome-docs.sgml:
* examples/gnome/gnome-sections.txt: sync with latest source.
* examples/configure.in: Add --with-gnome-libs-dir option, so it can
be configured easily.
* examples/gnomeui/Makefile.am (DOC_SOURCE_DIR):
* examples/gnome/Makefile.am (DOC_SOURCE_DIR): use the new
GNOME_LIBS_DIR.
* gtkdoc-mkdb (MergeSourceDocumentation): accept parameters names in
the source which use the wrong case, since there are quite a few of
these in Gnome.
1999-01-25 Damon Chaplin <damon@karuna.freeserve.co.uk>
* gtkdoc-mktmpl: parse G_GNUC_EXTENSION before typedef'ed types.
* gtkdoc-mkdb: added support for specifying include files in the
MODULE-sections.txt file, to be output at the top of the synopsis.
* doc/sections-file.txt: added description of <INCLUDE> tag.
* examples/gnomeui/gnomeui-sections.txt:
* examples/gnome/gnome-sections.txt: added use of <INCLUDE>
* examples/configure.in: changed 'gtk-reference' to
'gnome-libs-reference'.
1999-01-18 Damon Chaplin <damon@karuna.freeserve.co.uk>
* README: updated my email address & noted that version 1.15+ of the
DocBook modular stylesheets is needed (for $table-width$).
* AUTHORS: updated my email address.
1998-12-20 Jeff Garzik <jgarzik@pobox.com>
* examples/gnomeui/gnomeui-docs.sgml,
examples/gnomeui/gnomeui-sections.txt,
examples/gnomeui/gnomeui.types:
s/gtkspell/gnome-spell/g
1998-12-16 Damon Chaplin <DAChaplin@msn.com>
* gtkdoc-mkdb (ExpandAbbreviations): Allow -ve contants, e.g. %-1.
(ScanSourceFile): Try to handle function descriptions that start
with 'Returns'. It was assuming that they were describing the return
value before.
Gets rid of 'Description:' which is sometimes included
at the start of the function description in the source comment blocks.
Makes sure newlines are preserved in the description, as consecutive
newlines are converted to paragraph separators later.
1998-12-15 Damon Chaplin <DAChaplin@msn.com>
* Major changes to the scripts to merge in comments within source code
* gtk-doc-fixxref added
* examples directory added with an example for setting up modules to
use gtk-doc
* documentation updated
1998-11-28 Damon Chaplin <DAChaplin@msn.com>
* gtkdoc-scanobj:
* gtkdoc-scan:
* gtkdoc-mktmpl:
* gtkdoc-mkdb: Major changes to make it easy to update the docs
when the API changes. It's pretty much all automatic now.
Also added licenses and function comments, and added 'use strict'.
The Gnome widgets should now be visible in the hierarchy.
Removed a few 'mkdir's which I don't think are necessary now.
Tue Nov 24 16:32:23 1998 Owen Taylor <otaylor@redhat.com>
* README doc/authors.txt: Updated to describe the
new generic scripts instead of the old ones hard-coded
for GLIB and GTK+.
Tue Nov 24 01:06:17 1998 Owen Taylor <otaylor@redhat.com>
* .cvsignore: Added .cvsignore
Tue Nov 24 01:03:47 1998 Owen Taylor <otaylor@redhat.com>
* autogen.sh configure.in: Minor touchups so the newly
imported stuff autogen's correctly.
|