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
|
/** -*-C-*-ish
HTMLDocument.k Copyright (C) 2005 Chris Morris
This file is distributed under the terms of the GNU Lesser General
Public Licence. See COPYING for licence.
*/
"<summary>HTML Document creation and editing</summary>
<prose>This module contains functions for creating and editing a HTML document using a tree-based approach. This ensures that documents are of a high code quality, makes maintenance easier, and provides protection against some common web security problems.</prose>"
module HTMLDocument;
import Prelude;
import System;
import Crypto;
import Strings;
import Regex;
import public ElementTreeData; // ideally import abstract, if such a thing existed
import ElementTree;
import HTMLnesting;
import XMLentities;
import WebCommon;
import Compress;
import Set;
/** Part 1: Data type definitions **/
globals {
Int uniqueid = 0;
Regex::Regex classregex = compile("^[A-Za-z][A-Za-z0-9-]*$");
Regex::Regex idregex = compile("^[A-Za-z][A-Za-z0-9_:.-]*$");
}
/* Development notes:
* We want a special data type for URIs so we can handle encoding properly
* String will do for now, though.
*/
"<summary>A HTML document</summary>
<prose>This data type represents a HTML document. The doctype is set when an instance of this type is created. The document can be converted to a string, with each field forming a different part</prose>
<example><DOCTYPE ...> <!-- from doctype field -->
<html>
<head>
<!-- links, stylesheets, scripts and metadata from the head field >
</head>
<body>
<!-- a HTML or XHTML element tree manipulated with the
functions in this module -->
</body>
</html></example>
<prose>The <code>httpheaders</code> field contains details of HTTP headers to be set if the document is served over HTTP (such as in a CGI program or Webapp)</prose>
<related><dataref>Doctype</dataref></related>
<related><dataref>ElementTreeData::ElementTree</dataref></related>
<related><dataref>MetaData</dataref></related>
<related><functionref>addHTTPHeader</functionref></related>
<related><functionref>new</functionref></related>
<related><functionref>setDocumentTitle</functionref></related>
<related><moduleref>CGI</moduleref></related>
<related><moduleref>Webapp</moduleref></related>"
public data HTMLDocument(MetaData head, ElementTree body, Doctype doctype, [Pair<String,String>] httpheaders);
// we don't support meta HTTP-equiv here because that's better handled via
// real HTTP headers, which we may add support for later in HTMLDocument
// abstract because it shouldn't be poked directly
"<summary>Meta data about a HTML document</summary>
<prose>This data type is used to create the <code><head></code> section of a HTML document. The following things can be added using this data type.</prose>
<list><item>Meta data <code><meta name='...' value='...'></code></item>
<item>External CSS Stylesheets</item>
<item>Document-level links (<code><link></code>)</item>
<item>External client-side Javascript</item></list>
<related><dataref>ClientScript</dataref></related>
<related><dataref>HeadLink</dataref></related>
<related><dataref>HTMLDocument</dataref></related>
<related><dataref>StyleSheet</dataref></related>
<related><functionref>addDocumentLink</functionref></related>
<related><functionref>addDocumentMetaData</functionref></related>
<related><functionref>addDocumentScripting</functionref></related>
<related><functionref>addDocumentStylesheet</functionref></related>
<related><functionref>setDocumentTitle</functionref></related>"
abstract data MetaData(String doctitle,
Dict<String,String> metakeys,
[StyleSheet] styles, // order is significant
[HeadLink] links,
[ClientScript] scripts);
// yes, I know, it's missing <script> and <style> support. Can't be
// bothered right now. <style> is better handled by stylesheets anyway
"<summary>The document type declaration.</summary>
<prose>The document type declaration for the current document. You can either use HTML 4.01 or XHTML 1.0 Strict doctypes (HTML is generally recommended due to the current lack of browser support for XHTML, but you may need XHTML output if you intend to further process the document with other XML tools). This changes the <code><!DOCTYPE ...></code> declaration at the top of the document, and has other minor effects on code output.</prose>
<prose>The Transitional doctypes are not supported in Kaya - these doctypes are intended only for transitioning legacy documents, and Kaya is sufficiently new not to have any such legacy documents existing.</prose>
<prose>The <code>TagSoup</code> 'Doctype' cannot be used for output, but may be useful for attempting to get some form of structure out of poor quality markup entered by users and processed by <functionref>readFromString</functionref>.</prose>
<related><dataref>HTMLDocument</dataref></related>
<related><functionref>new</functionref></related>
<related><functionref>readFromString</functionref></related>
<related><link url=\"http://www.w3.org/QA/2002/04/valid-dtd-list.html\">W3C list of Doctypes</link></related>"
public data Doctype = HTML4Strict | XHTML1Strict | TagSoup;
"<summary>A CSS stylesheet</summary>
<prose>An external CSS stylesheet.</prose>
<related><dataref>MediaType</dataref></related>
<related><dataref>MetaData</dataref></related>
<related><functionref>addDocumentStylesheet</functionref></related>"
public data StyleSheet([MediaType] media, String uri);
// TODO: extend this to potentially support non-text/css stylesheets
// while keeping text/css as the default behaviour.
"<summary>An client-side script</summary>
<prose>An external client-side script (currently only Javascript is supported).</prose>
<related><dataref>MetaData</dataref></related>
<related><functionref>addDocumentScripting</functionref></related>"
public data ClientScript(String uri);
// TODO: extend to other than text/javascript
"<summary>A display media type</summary>
<prose>A display media type. This is used to select appropriate stylesheets for different browsing situations. <code>MTscreen</code> is the usual type for most CSS-supporting browsers. <code>MTprint</code> can be used to provide an alternative layout for printed documents (perhaps hiding navigation bars, etc). <code>MTall</code> applies the styles to all media.</prose>
<related><dataref>StyleSheet</dataref></related>
<related><functionref>addDocumentStylesheet</functionref></related>"
public data MediaType = MTscreen | MTtty | MTtv | MTprojection | MThandheld | MTprint | MTbraille | MTaural | MTall;
// lots more attributes that could be added here
"<summary>A document-level link</summary>
<prose>A document-level link. These links differ from hyperlinks in the body of the text in that they describe the relationship of this document as a whole to other documents.</prose>
<related><dataref>MetaData</dataref></related>
<related><dataref>Relationship</dataref></related>
<related><functionref>addDocumentLink</functionref></related>"
public data HeadLink(Relationship relate, String uri, String title, String ctype);
"<summary>A document relationship</summary>
<prose>A document relationship may either be 'forward' (<code>Rel</code>), which states that the related resource is the <variable>rel</variable> document of the current document, or 'reverse' (<code>Rev</code>), which is equivalent to that resource having a 'forward' relationship to this document. If the resource is not a HTML document, then reverse relationships may be the only way to express the relationship, but in practice forward relationships are far more useful.</prose>
<prose>There is no official list of link types, and <link url=\"http://webcoder.info/reference/LinkBars.html\">browser support</link> varies. Some common relationships such as 'next' or 'first' have consistent support, though.</prose>
<prose>A link type of <code>Rel(\"shortcut icon\")</code> is used to reference a 'favicon'.</prose>
<related><dataref>HeadLink</dataref></related>
<related><dataref>MetaData</dataref></related>
<related><functionref>addDocumentLink</functionref></related>"
public data Relationship = Rel(String rel) | Rev(String rev);
// TODO: Needs a lot more inline elements to be added.
"<summary>Inline elements</summary>
<prose>Non-empty inline elements that can be included within a HTML document. Example open tags of the HTML elements produced are below - see the <link url=\"http://www.w3.org/TR/HTML4/\">HTML specifications</link> for their semantics and uses.</prose>
<list>
<item><input>Emphasis</input> - <output><em></output></item>
<item><input>StrongEmphasis</input> - <output><strong></output></item>
<item><input>Abbreviation(\"Algebraic Data Type\")</input> - <output><abbr title=\"Algebraic Data Type\"></output></item>
<item><input>Citation</input> - <output><cite></output></item>
<item><input>Definition</input> - <output><dfn></output></item>
<item><input>ComputerCode</input> - <output><code></output></item>
<item><input>SampleInput</input> - <output><kbd></output></item>
<item><input>SampleOutput</input> - <output><samp></output></item>
<item><input>Variable</input> - <output><var></output></item>
<item><input>BiggerText</input> - <output><big></output></item>
<item><input>SmallerText</input> - <output><small></output></item>
<item><input>Bold</input> - <output><b></output></item>
<item><input>Italic</input> - <output><i></output></item>
<item><input>Subscript</input> - <output><sub></output></item>
<item><input>Superscript</input> - <output><sup></output></item>
<item><input>Hyperlink(\"http://www.example.com/\")</input> - <output><a href=\"http://www.example.com/\"></output></item>
<item><input>InlineQuote(\"http://www.example.com/\")</input> - <output><q cite=\"http://www.example.com/\"></output></item>
<item><input>Span(\"note\")</input> - <output><span class=\"note\"></output></item>
<item><input>FormLabel</input> - <output><label></output></item>
</list>
<related><functionref>addInlineElementAt</functionref></related>
<related><functionref>appendInlineElement</functionref></related>"
public data InlineElement = Emphasis | StrongEmphasis
| Abbreviation(String title) | Citation | Definition | ComputerCode
| SampleInput | SampleOutput | Variable // generic phrase elements
| BiggerText | SmallerText | Bold | Italic | Subscript | Superscript // semi formatting elements
// special inline elements
| Hyperlink(String uri)
| InlineQuote(String citeuri)
| Span(String class)
| FormLabel;
"<summary>List type</summary>
<prose>Whether a list is <code>Unordered</code> (generally represented as a bulleted list) or <code>Ordered</code> (generally represented as a numbered list).</prose>
<related><functionref>addList</functionref></related>"
public data ListType = Ordered | Unordered;
"<summary>Initial table data</summary>
<prose>Initial table data. This allows quick initialisation of unformatted HTML tables. Required formatting can then be added using the usual methods by retrieving references to the individual table cells.</prose>
<prose>The table data consists of a header section (which may be empty), a footer section (which may be empty), and a list of body sections (of which at least one must exist). All sections have the same format - a list of rows each of which is a list of cells.</prose>
<prose>It is assumed that all rows have the same number of columns as the first row in the table, and cells overrunning this row length will be ignored.</prose>
<example>header = [[\"Version\",\"Date\"]];
footer = [];
body = [[[\"0.2.1\",\"2006-11-15\"],[\"0.2.2\",\"2006-11-26\"],[\"0.2.3\",\"2006-12-04\"]]];
itd = InitialTableData(header,footer,body);</example>
<prose>This will generate the following table</prose>
<example><table>
<thead>
<tr><th>Version</th><th>Date</th></tr>
</thead>
<tbody>
<tr><td>0.2.1</td><td>2006-11-15</td></tr>
<tr><td>0.2.2</td><td>2006-11-26</td></tr>
<tr><td>0.2.3</td><td>2006-12-04</td></tr>
</tbody>
</table></example>
<related><functionref>addTable</functionref></related>
<related><functionref>getTableCell</functionref></related>
<related><functionref>initialiseTable</functionref></related>
<related><functionref>lazyTable</functionref></related>"
public data InitialTableData([[String]] header, [[String]] footer, [[[String]]] sections);
"<summary>An inline image.</summary>
<prose>An inline image. The <code>alt</code> String should contain the same text that you would use if you were unable to add an image at this point.</prose>
<related><dataref>ImageDimensions</dataref></related>
<related><functionref>addImage</functionref></related>"
public data ImageData(String src, String alt, ImageDimensions dim);
"<summary>Image dimensions</summary>
<prose>Methods for giving image dimensions. <code>Specified(<variable>width</variable>,<variable>height</variable>)</code>
allows precise specification of image dimensions and for efficiency
this should always be used if those values are known. <code>Unspecified</code>
leaves the calculation to the client user-agent.</prose>
<prose>The width and height are given in pixels.</prose>
<related><dataref>ImageData</dataref></related>
<related><functionref>addImage</functionref></related>"
public data ImageDimensions = /*AutoFromSrc | AutoFromPath(String filepath) |*/ Specified(Int width, Int height) | Unspecified;
"<summary>The method used by a form</summary>
<prose>The method used by a form to submit data. <code>FormPost</code> uses the <code>application/x-www-form-urlencoded</code> content type, whereas <code>FormPostUpload</code> uses <code>multipart/form-data</code>.</prose>
<related><functionref>WebCommon::allowFileUploads</functionref></related>
<related><functionref>addRemoteForm</functionref></related>"
public data FormType = FormGet | FormPost | FormPostUpload;
"<summary>Types of text input</summary>
<prose>Types of text and selection input.</prose>
<related><functionref>addOption</functionref> is often a better way to add a checkbox</related>
<related><functionref>addOptionList</functionref> is often a better way to add a set of radio buttons</related>
<related><functionref>addLabelledInput</functionref></related>
<related><functionref>addSelectElement</functionref> handles <select>s</related>
<related><functionref>addTextInput</functionref></related>"
public data TextInputType = InputText | InputPassword | InputHidden | InputRadio | InputCheck | InputFile;
"<summary>Types of control input</summary>
<prose>Types of form control inputs. Generally <code>InputSubmit</code> is the only useful one. <code>InputReset</code> has some specialised uses, but <link url=\"http://www.cs.tut.fi/~jkorpela/forms/imagereset.html#need\">in general it is harmful</link> for most forms.</prose>
<related><functionref>addLocalControlInput</functionref></related>
<related><functionref>addRemoteControlInput</functionref></related>"
public data ControlInputType = InputSubmit | InputReset;
"<summary>An option for selection</summary>
<prose>An option for selection. These can be used to make the <option> elements for a <select> or to describe a checkbox or radio button. The <code>value</code> field may be left blank, in which case the contents of the <code>label</code> field will be used in its place.</prose>
<prose>The <code>chosen</code> field determines whether this option is initially selected when the page loads. The behaviour when multiple options in a non-multiple select or multiple radio buttons with the same name are marked as initially chosen is undefined, and so you should avoid this in your code.</prose>
<related><functionref>addLabelledSelect</functionref></related>
<related><functionref>addLazySelect</functionref></related>
<related><functionref>addOption</functionref></related>
<related><functionref>addOptionList</functionref></related>
<related><functionref>addSelectElement</functionref></related>"
public data SelectOption(String label, String value, Bool chosen);
"<summary>Elements to allow in String->HTML conversion</summary>
<prose>When converting from a String to HTML, rather than simply adding a String to an existing element where it will be escaped, the elements allowed in the conversion should depend on how trustworthy the String is. Generally, any unauthenticated user-supplied data should be treated extremely cautiously, and even authenticated user-supplied data should be treated with some caution in case the authentication is broken.</prose>
<prose>Use of String to HTML conversion allows potential for <link url=\"http://www.cert.org/archive/pdf/cross_site_scripting.pdf\">cross-site scripting attacks</link> against your application, especially if the allowed element list is generous.</prose>
<list>
<item><code>UltraSafe</code> - removes all tags and attributes. This differs from adding the string directly as text, which escapes them. This conversion method is immune to cross-site scripting.</item>
<item><code>InlineOnly</code> - allows only inline elements.</item>
<item><code>AllElements</code> - allows inline and block elements.</item>
<item><code>Unchecked</code> - allows all tags and attributes. Use this only on completely trusted data, as it allows trivial cross-site scripting attacks if an attacker can control the String being converted.</item>
<item><code>CustomWhitelist</code> - create your own whitelist of elements. The whitelist is a <moduleref>Dict</moduleref> with the allowed elements as the key and the list of allowed attributes for that element as the value. The string \"*\" will match any element as the key, or any attribute as an item in the value list, which is generally not a good idea for anything other than completely trusted data.</item>
</list>
<prose>For the <code>InlineOnly</code> and <code>AllElements</code> options, you also need to select a <dataref>ConversionSafety</dataref>.</prose>
<related><dataref>ConversionSafety</dataref></related>
<related><functionref>readFromString</functionref></related>"
public data WhiteList = UltraSafe | InlineOnly(ConversionSafety sa) | AllElements(ConversionSafety sb) | Unchecked | CustomWhitelist(Dict<String,[String]> whitelist);
// no tags | safe tags | no forms | no JS | all
"<summary>The conversion safety level for String->HTML conversion</summary>
<prose>If you are using the <code>InlineOnly</code> or <code>AllElements</code> option for <dataref>WhiteList</dataref> you can choose various sets of elements and attributes to allow.</prose>
<list>
<item><code>Safe</code> - a very restricted set of elements and attributes is allowed. Hyperlinks, images, forms, scripting, inline styles and so on are not allowed.</item>
<item><code>Unsafe</code> - As <code>Safe</code>, but hyperlinks, images and client-side scripting are allowed. Some cross-site scripting is possible as a result.</item>
<item><code>VeryUnsafe</code> - As <code>Unsafe</code>, but form controls are also allowed. This allows some potentially very nasty cross-site scripting attacks to be carried out with ease if an attacker is able to influence the String being converted, so use this with extreme caution.</item>
</list>
<prose>None of these allow the direct addition of <script> elements or the <code>on<variable>X</variable></code> event handlers.</prose>
<related><dataref>WhiteList</dataref></related>
<related><functionref>readFromString</functionref></related>"
public data ConversionSafety = Safe | Unsafe | VeryUnsafe;
"<argument>The String contains details of the error</argument>
<summary>A required element is missing</summary>
<prose>This Exception is thrown by various parts of the module if a required element is missing, or an operation that can only be applied to certain elements is applied to a different element.</prose>"
Exception RequiresElement(String err);
"<argument>The String contains details of the error</argument>
<summary>A required attribute is missing</summary>
<prose>This Exception is thrown by various parts of the module, usually when an attribute has the wrong format. For example, the <code>name</code> attribute of an <code>input</code> element may not be empty.</prose>"
Exception RequiresAttribute(String err);
"<argument>The String contains details of the error</argument>
<summary>The specified range is invalid</summary>
<prose>This Exception is thrown by <functionref>addInlineElementAt</functionref> if the start or end positions are outside the bounds of the parent element.</prose>"
Exception InvalidRange(String err);
"<argument>The String contains details of the error</argument>
<summary>The specified range causes invalid nesting</summary>
<prose>This Exception is thrown by <functionref>addInlineElementAt</functionref> if the start or end positions would cause invalid nesting.</prose>
<example>p = addParagraph(parent,\"This paragraph\");
em = addInlineElementAt(p,Emphasis,3,7);
code = addInlineElementAt(p,ComputerCode,6,9);
// this attempts to make <p>Thi<em>s p<code>a</em>ra</code>graph</p>
// which is invalid, and so an Exception is thrown.</example>
<prose>This Exception is also thrown by several other functions if you try to add an element inside another element which cannot contain it.</prose>
<example>p = addParagraph(parent,\"\");
list = addList(p,Unordered,0);
// lists cannot be contained inside paragraphs, so an exception is thrown</example>"
Exception InvalidNesting(String err);
"<summary>TagSoup is not an output format</summary>
<prose>This Exception is thrown if the TagSoup Doctype is used for output - it may only be used with <functionref>readFromString</functionref>.</prose>"
Exception TagSoupNotForOutput();
/** Part 2: General document construction **/
/* ElementTree is entirely generic. It guarantees well-formedness and
nothing else. So in the interests of producing valid as well as
well-formed code, modules that use HTMLDocument to generate
documents shouldn't let people directly touch ElementTree. */
"<argument name='doctype'>The document type declaration to use. HTML4Strict is recommended for now due to browser support issues.</argument>
<argument name='title'>The title for the entire document.</argument>
<summary>A new empty HTML document</summary>
<prose>Generates a skeleton HTML document with the specified Doctype and document title. The document title must not be empty. Operations on a HTML document are generally either performed on the document itself, or on its <code>body</code> field.</prose>
<example>doc = HTMLDocument::new(HTML4Strict,\"Hello World!\");</example>
<related><dataref>Doctype</dataref></related>
<related><dataref>HTMLDocument</dataref></related>"
public HTMLDocument new(Doctype doctype, String title) {
if (title == "") {
throw(RequiresElement("The document title may not be blank."));
}
case doctype of {
HTML4Strict -> ctype = ("Content-type","text/html; charset=UTF-8");
| XHTML1Strict -> ctype = ("Content-type","application/xhtml+xml; charset=UTF-8");
| TagSoup -> throw(TagSoupNotForOutput);
}
return HTMLDocument(
MetaData(title,
Dict::new(17,strHash),
createArray(5), // styles
createArray(20), // links
createArray(5)), // scripts
mkElement("body"),
doctype,
// change content type if doctype is XHTML
[ctype]);
}
"<argument name='doc'>The HTML document</argument>
<argument name='uform'>The mode for handling multibyte UTF-8 characters. <code>LiteralUTF8</code> will give a smaller String, and one that is more readable in other Unicode-aware applications. <code>NumericReference</code> will give a larger String, especially if multibyte characters are very common in the text, but will work better if the String will later be edited in non-Unicode applications. This argument is optional, and defaults to the recommended <code>LiteralUTF8</code></argument>
<summary>Convert an entire HTML document to a String</summary>
<prose>Converts the entire document to String form for output. If the String will then be immediately printed, the <functionref>write</functionref> function is considerably more efficient.</prose>
<example>str = string(doc);
str = string(doc,NumericReference);</example>
<related><dataref>ElementTreeData::UnicodeFormat</dataref></related>
<related><dataref>HTMLDocument</dataref></related>
<related><functionref>substring</functionref></related>
<related><functionref>write</functionref></related>"
public String string(HTMLDocument doc, UnicodeFormat uform = LiteralUTF8) {
output = headString(doc,uform);
case doc.doctype of {
HTML4Strict -> output += string(doc.body,ImpliedSingleton,1,uform,tagFormats,getAlwaysEmpty);
| XHTML1Strict -> output += string(doc.body,Singleton,1,uform,tagFormats,getAlwaysEmpty);
}
output += "\n</html>\n";
return output;
}
"<argument name='tree'>An element from the document body (it may be the document body itself)</argument>
<argument name='uform'>The method for displaying multibyte Unicode characters. This argument is optional, with a default of <code>LiteralUTF8</code></argument>
<argument name='doctype'>The document type declaration to assume for conversion. This need not be the same as the doctype used for the HTMLDocument, if this element tree is part of a HTMLDocument. This argument is optional, with a default of <code>HTML4Strict</code>.</argument>
<summary>Converts a part of the document to string form</summary>
<prose>Convert a part of the document (or a fragment of HTML unconnected to the document) into String form. This can be used as an easy way of giving HTML source examples:</prose>
<example>p = addParagraph(parent,\"An image: \");
img = addImage(p,ImageData(\"example.png\",\"an example\",Unspecified));
p2 = addParagraph(parent,\"HTML code for the image: \"+substring(img));</example>
<related><dataref>Doctype</dataref></related>
<related><dataref>ElementTreeData::UnicodeFormat</dataref></related>
<related><functionref>string</functionref></related>"
public String substring(ElementTree tree, UnicodeFormat uform = LiteralUTF8, Doctype doctype=HTML4Strict) {
case doctype of {
HTML4Strict -> return string(tree,ImpliedSingleton,0,uform,tagFormats,getAlwaysEmpty);
| XHTML1Strict -> return string(tree,Singleton,0,uform,tagFormats,getAlwaysEmpty);
}
}
String headString(HTMLDocument doc, UnicodeFormat uform) {
case doc.doctype of {
HTML4Strict -> output = "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\"\n\t\"http://www.w3.org/TR/html4/strict.dtd\">\n";
output += "<html>\n";
singletoncloser = createString(0);
| XHTML1Strict -> output = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
output += "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n\t\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n";
output += "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n";
singletoncloser = " /";
}
output += " <head>\n";
if (doc.head.doctitle == "") {
throw(RequiresElement("The document title may not be blank."));
}
output += " <title>" + simpleEncode(doc.head.doctitle,false,uform) + "</title>\n";
// add code to handle meta/styles/links here
for metadata in entries(doc.head.metakeys) {
output += " <meta name=\"" + simpleEncode(metadata.fst,false,uform) + "\" value=\"" + simpleEncode(metadata.snd,false,uform) + "\"" + singletoncloser + ">\n";
}
for link in doc.head.links {
output += " <link ";
case link.relate of {
Rel(rel) -> output += "rel=\"" + simpleEncode(rel,false,uform) + "\" ";
| Rev(rev) -> output += "rev=\"" + simpleEncode(rev,false,uform) + "\" ";
}
output += "href=\""+simpleEncode(link.uri,false,uform)+"\"";
if (link.title != "") {
output += " title=\""+simpleEncode(link.title,false,uform)+"\"";
}
if (link.ctype != "") {
output += " type=\""+simpleEncode(link.ctype,false,uform)+"\"";
}
output += singletoncloser + ">\n";
}
for stylesheet in doc.head.styles {
output += " <link rel=\"stylesheet\" href=\"" + simpleEncode(stylesheet.uri,false,uform) + "\" type=\"text/css\" media=\"";
output += mediaToString(stylesheet.media);
output += "\"" + singletoncloser + ">\n";
}
for script in doc.head.scripts {
output += " <script type=\"text/javascript\" src=\"" + simpleEncode(script.uri,false,uform) + "\"></script>\n";
}
output += " </head>";
return output;
}
"<argument name='doc'>The HTML document</argument>
<argument name='uform'>The mode for handling multibyte UTF-8 characters. <code>LiteralUTF8</code> will give a smaller String, readable in Unicode-aware applications. <code>NumericReference</code> will give a larger String, especially if multibyte characters are very common in the text, but will work better if the String will later be edited in non-Unicode applications. This argument is optional, and defaults to the recommended <code>LiteralUTF8</code>, but you may wish to use <code>NumericReference</code> if standard output is connected to a non-Unicode terminal, for example.</argument>
<summary>Print a HTML document on standard output</summary>
<prose>Print the HTML document on standard output. This is considerably more efficient than <code>putStr(string(doc));</code></prose>
<related><dataref>ElementTreeData::UnicodeFormat</dataref></related>
<related><dataref>HTMLDocument</dataref></related>
<related><functionref>string</functionref></related>
<related><functionref>writeTo</functionref></related>"
public Void write(HTMLDocument doc, UnicodeFormat uform = LiteralUTF8) {
putStr(headString(doc,uform));
case doc.doctype of {
HTML4Strict -> lazyPrint(doc.body,ImpliedSingleton,1,uform,tagFormats,getAlwaysEmpty);
| XHTML1Strict -> lazyPrint(doc.body,Singleton,1,uform,tagFormats,getAlwaysEmpty);
}
putStr("\n</html>\n");
}
"<argument name='doc'>The HTML document</argument>
<argument name='output'>A function that outputs the strings given to it (using <code>Prelude::putStr@()</code> is equivalent to <functionref>write</functionref>)</argument>
<argument name='uform'>The mode for handling multibyte UTF-8 characters. <code>LiteralUTF8</code> will give a smaller String, readable in Unicode-aware applications. <code>NumericReference</code> will give a larger String, especially if multibyte characters are very common in the text, but will work better if the String will later be edited in non-Unicode applications. This argument is optional, and defaults to the recommended <code>LiteralUTF8</code>, but you may wish to use <code>NumericReference</code> if the output is not Unicode-aware, for example.</argument>
<summary>Print a HTML document with a specified output function</summary>
<prose>Print a HTML document with a specified output function. This is considerably more efficient than <code><variable>output</variable>(string(doc));</code></prose>
<related><dataref>ElementTreeData::UnicodeFormat</dataref></related>
<related><dataref>HTMLDocument</dataref></related>
<related><functionref>string</functionref></related>
<related><functionref>write</functionref></related>"
public Void writeTo(HTMLDocument doc, Void(String) output, UnicodeFormat uform = LiteralUTF8) {
output(headString(doc,uform));
case doc.doctype of {
HTML4Strict -> lazyOutput(doc.body,ImpliedSingleton,1,uform,tagFormats,getAlwaysEmpty,output);
| XHTML1Strict -> lazyOutput(doc.body,Singleton,1,uform,tagFormats,getAlwaysEmpty,output);
}
output("\n</html>\n");
}
private String mediaToString([MediaType] media) {
nub(media);
if (elem(MTall,media) || size(media) == 0) {
return "all"; // don't need to look in this case
} else {
mstr = createArray(size(media));
for mt in media {
case mt of {
MTscreen -> mtstr = "screen";
| MTtty -> mtstr = "tty";
| MTtv -> mtstr = "tv";
| MTprojection -> mtstr = "projection";
| MThandheld -> mtstr = "handheld";
| MTprint -> mtstr = "print";
| MTbraille -> mtstr = "braille";
| MTaural -> mtstr = "aural";
}
push(mstr,mtstr);
}
return Strings::join(mstr,',');
}
}
/** Part 3: Header editing **/
"<argument name='doc'>The HTML document</argument>
<argument name='name'>The name of the header</argument>
<argument name='value'>The contents of the header</argument>
<summary>Adds a HTTP header to the document</summary>
<prose>Adds a HTTP header to the document. If the document is then printed using <functionref>Webapp::displayPage</functionref>, these headers will be sent to the client.</prose>
<prose>The effects of multiple HTTP headers with the same name vary. Some headers may be rewritten by the web server if they appear multiple times.</prose>
<prose>You can change the HTTP status code using the special <code>Status</code> header. The default is 200, of course - due to a bug in older versions of Apache, explicitly setting a 200 status is not recommended. Headers with names beginning \"X-\" are non-standard and could mean anything.</prose>
<example>addHTTPHeader(doc,\"Last-Modified\",rfc2822Time(lmstamp));
addHTTPHeader(doc,\"Status\",\"404 File not found\");
addHTTPHeader(doc,\"X-Generator\",\"Kaya\");</example>
<prose>The characters allowed in HTTP headers are relatively restricted, especially in the <code>name</code> field, the most obvious restriction being that they may not contain new lines. <functionref>Webapp::displayPage</functionref> will throw an Exception if illegal characters are found - be sure to check this if you write your own header output function.</prose>
<prose><link url=\"http://www.w3.org/Protocols/rfc2616/\">RFC 2616</link> describes the HTTP protocol including HTTP headers in detail</prose>
<prose>You may set multiple headers with the same name, but this may not be sensible for some headers (for example, multiple Status headers make no sense, whereas multiple Set-Cookie headers are commonly used).</prose>
<related><dataref>HTMLDocument</dataref></related>
<related><functionref>addHTTPHeader</functionref></related>
<related><functionref>Webapp::displayPage</functionref></related>"
public Void addHTTPHeader(HTMLDocument doc, String name, String value) {
// TODO: checks for headers such as Content-type that can only appear once
Pair<String,String> val = (name,value);
push(doc.httpheaders,val);
}
"<argument name='doc'>The HTML document</argument>
<argument name='header'>A pair of Strings describing the header</argument>
<summary>Adds a HTTP header to the document</summary>
<prose>Adds a HTTP header to the document. If the document is then printed using <functionref>Webapp::displayPage</functionref>, these headers will be sent to the client.</prose>
<prose>The effects of multiple HTTP headers with the same name vary. Some headers may be rewritten by the web server if they appear multiple times.</prose>
<prose>You can change the HTTP status code using the special <code>Status</code> header. The default is 200, of course - due to a bug in older versions of Apache, explicitly setting a 200 status is not recommended. Headers with names beginning \"X-\" are non-standard and could mean anything.</prose>
<example>addHTTPHeader(doc,setCookie(\"session\",getSessionId()));</example>
<prose>The characters allowed in HTTP headers are relatively restricted, especially in the <code>name</code> field, the most obvious restriction being that they may not contain new lines. <functionref>Webapp::displayPage</functionref> will throw an Exception if illegal characters are found - be sure to check this if you write your own header output function.</prose>
<prose><link url=\"http://www.w3.org/Protocols/rfc2616/\">RFC 2616</link> describes the HTTP protocol including HTTP headers in detail</prose>
<prose>You may set multiple headers with the same name, but this may not be sensible for some headers (for example, multiple Status headers make no sense, whereas multiple Set-Cookie headers are commonly used).</prose>
<related><dataref>HTMLDocument</dataref></related>
<related><functionref index='1'>addHTTPHeader</functionref></related>
<related><functionref>Webapp::displayPage</functionref></related>
<related><functionref>WebCommon::setCookie</functionref></related>"
public Void addHTTPHeader(HTMLDocument doc, (String,String) header) {
// TODO: checks for headers such as Content-type that can only appear once
push(doc.httpheaders,copy(header));
}
"<argument name='doc'>The HTML document</argument>
<argument name='key'>The key name for the meta-data value</argument>
<argument name='value'>The meta-data value</argument>
<summary>Adds a meta-data key/value pair to the document</summary>
<prose>Adds a meta-data key/value pair to the document. This can be used to add additional information to the document useful to automated tools. The use of this data in the ranking algorithms of internet search engines has been widely debated but appears to be marginal at best. It may, however, be useful for local search engines or cataloguing software.</prose>
<example>addDocumentMetaData(doc,\"Author\",\"John Smith\");
addDocumentMetaData(doc,\"Description\",\"An example document\");</example>
<prose>\"HTTP-equiv\" meta-data is not supported by this module - just add a real HTTP header using <functionref>addHTTPHeader</functionref> instead.</prose>
<related><dataref>MetaData</dataref></related>
<related><functionref>addHTTPHeader</functionref></related>"
public Void addDocumentMetaData(HTMLDocument doc, String key, String value) {
add(doc.head.metakeys,key,value);
}
"<argument name='doc'>The HTML document</argument>
<argument name='media'>A list of media types that this stylesheet applies to</argument>
<argument name='uri'>The location of the stylesheet.</argument>
<summary>Adds a linked external stylesheet to the document</summary>
<prose>Adds a linked external stylesheet to the document. See the <dataref>MediaType</dataref> documentation for an explanation of the various media types. Currently only CSS stylesheets are supported by this function.</prose>
<example>addDocumentStylesheet(doc,[MTall],
\"/styles/base.css\");
addDocumentStylesheet(doc,[MTprint],
\"/styles/print.css\");
addDocumentStylesheet(doc,[MTscreen,MTprojection,MThandheld],
\"/styles/visual.css\");</example>
<prose>If the media array is empty, <code>[MTall]</code> will be used.</prose>
<related><dataref>MediaType</dataref></related>"
public Void addDocumentStylesheet(HTMLDocument doc, [MediaType] media, String uri) {
push(doc.head.styles,StyleSheet(media,uri));
}
"<argument name='doc'>The HTML document</argument>
<argument name='rel'>The relationship this link describes</argument>
<argument name='uri'>The resource linked to.</argument>
<argument name='type'>The content-type of the linked document (optional)</argument>
<summary>Adds a document-level link</summary>
<prose>Adds a document-level link to another resource.</prose>
<example>addDocumentLink(doc,Rel(\"next\"),
webappName()+\"slide=\"+(slideno+1));
addDocumentLink(doc,Rev(\"made\"),\"author@example.invalid\");</example>
<related>The <dataref>Relationship</dataref> documentation explains the semantics of forward and reverse document links.</related>"
public Void addDocumentLink(HTMLDocument doc, Relationship relate, String uri, String title=createString(0), String ctype=createString(0)) {
push(doc.head.links,HeadLink(relate,uri,title,ctype));
}
"<argument name='doc'>The HTML document</argument>
<argument name='scripturi'>The location of the Javascript file.</argument>
<summary>Adds an external script to the document</summary>
<prose>Adds an external script to the document. This script will define functions which may then be called using the <code>onX</code> event handler attributes for various elements in the document.</prose>"
public Void addDocumentScripting(HTMLDocument doc, String scripturi) {
push(doc.head.scripts,ClientScript(scripturi));
}
"<argument name='doc'>The HTML document</argument>
<argument name='newtitle'>The document title, which may not be blank (an Exception is thrown if it is)</argument>
<summary>Changes the document title</summary>
<prose>Changes the document title, which is commonly used by browsers when bookmarking the page and in their user interface, and by search engines for indexing purposes. Ideally, all pages should have a unique title.</prose>
<related><functionref>addDocumentMetaData</functionref></related>"
public Void setDocumentTitle(HTMLDocument doc, String newtitle) {
if (newtitle == "") {
throw(RequiresElement("The document title may not be blank."));
}
doc.head.doctitle = newtitle;
}
/** Part 4: Body editing - common attributes **/
"<argument name='element'>The HTML element</argument>
<argument name='classname'>The CSS class to set</argument>
<summary>Set the CSS class</summary>
<prose>Set the CSS class(es) of a HTML element. Multiple classes can be specified by separating them with a space. If a class is given which does not match the allowed characters for class names, a <exceptref>RequiresAttribute</exceptref> Exception will be thrown.</prose>
<example>setClass(paragraph,\"important\");
setClass(link,\"external recommended\");</example>
<related><functionref>setAttribute</functionref></related>
<related><functionref>setID</functionref></related>
<related><functionref>setTitle</functionref></related>"
public Void setClass(ElementTree element, String classname) {
// doesn't allow for unicode or escaped character classnames
// but they're very rarely used. We can add support later.
classnames = words(classname);
for cn in classnames {
if (!quickMatch(classregex,classname)) {
throw(RequiresAttribute("Class format incorrect"));
}
}
module::setAttribute(element,"class",classname);
}
"<argument name='element'>The HTML element</argument>
<argument name='classname'>The ID to set</argument>
<summary>Sets the ID of a HTML element</summary>
<prose>Sets the ID of a HTML element. The ID is a unique identifier within the document for the element. Setting IDs is useful for styling, scripting, and creating anchors within a document.</prose>
<example>h = addHeading(body,2,\"Compiler options\");
setID(h,\"opts\");
// appending #opts to the URL will now jump straight to this heading</example>
<related><functionref>setAttribute</functionref></related>
<related><functionref>setClass</functionref></related>
<related><functionref>setTitle</functionref></related>"
public Void setID(ElementTree element, String idname) {
if (!quickMatch(idregex,idname)) {
throw(RequiresAttribute("ID format incorrect"));
}
// Ideally we'd check for duplicate ids at this stage, but since we
// don't have a way to find the root element, we can't.
module::setAttribute(element,"id",idname);
}
private String nextUniqueID() {
if (uniqueid < 1) {
uniqueid = 1;
} else {
uniqueid++;
}
return "Kay"+String(uniqueid);
}
"<argument name='element'>The HTML element</argument>
<argument name='title'>The title to set</argument>
<summary>Sets the title of a HTML element</summary>
<prose>Sets the title of a HTML element. The title can be used to provide optional additional information about an element. Not all browsers will display title information, and the method of display will vary - common graphical browsers tend to display it as a tooltip when someone hovers over the element.</prose>
<prose>A common use is providing optional additional information about a link.</prose>
<example>url = Hyperlink(\"http://kayalang.org/library/latest/Prelude/putStr\");
link = appendInlineElement(paragraph,url,\"putStr\");
setTitle(link,\"API documentation for Prelude::putStr\");</example>
<related><functionref>setAttribute</functionref></related>
<related><functionref>setClass</functionref></related>
<related><functionref>setID</functionref></related>"
public Void setTitle(ElementTree element, String title) {
module::setAttribute(element,"title",title);
}
"<argument name='element'>The HTML element</argument>
<argument name='name'>The attribute to set</argument>
<argument name='value'>The value to use</argument>
<summary>Sets an attribute on a HTML element</summary>
<prose>Sets an attribute on a HTML element. Required attributes will be set when you add the element by the addition function, but you may wish to add optional attributes here, or change the value of an existing attribute based on later calculations.</prose>
<example>setAttribute(quotation,\"lang\",\"fr\");</example>
<prose>The <functionref>setClass</functionref> and <functionref>setID</functionref> functions should always be used in preference to this function for those purposes, as they do some input validation (and are shorter to type!)</prose>
<related><functionref>getAttribute</functionref></related>
<related><functionref>setClass</functionref></related>
<related><functionref>setID</functionref></related>
<related><functionref>setTitle</functionref></related>"
public Void setAttribute(ElementTree element, String name, String value) {
ElementTree::setAttribute(element,name,value);
}
"<argument name='element'>The HTML element</argument>
<argument name='name'>The attribute name</argument>
<summary>Gets an attribute value from a HTML element</summary>
<prose>Gets an attribute value from a HTML element, or <code>nothing</code> if the attribute is not set.</prose>
<example>case getAttribute(el,\"class\") of {
nothing -> setClass(el,\"recentchange\");
| just(c) -> setClass(el,c+\" recentchange\");
}</example>
<related><functionref>setAttribute</functionref></related>"
public Maybe<String> getAttribute(ElementTree element, String name) {
return ElementTree::getAttribute(element,name);
}
// TODO: language, directionality, possibly scripting events
/** Part 5: Body editing - adding blocks **/
// TODO: need a decent table editing interface here, as well
// as other block-level elements..
// this should really check for proper header nesting somewhere
"<argument name='parent'>The parent element</argument>
<argument name='headinglevel'>The level of heading (1-6)</argument>
<argument name='initialtext'>Optionally, any initial text the element should contain</argument>
<summary>Add a heading</summary>
<prose>Add a heading to the end of the specified element. Heading levels go from 1 to 6, and form a document outline - there should generally be one level 1 heading in the document, with level 2 headings below that, level 3 headings below the level 2 headings, and so on. In practice, headings less important than level 4 are very rarely used.</prose>"
public ElementTree addHeading(ElementTree parent, Int headinglevel, String initialtext=createString(0)) {
if (headinglevel < 1 || headinglevel > 6) {
throw(RequiresElement(headinglevel+" is not a valid heading depth"));
}
return addGenericBlock(parent,"h"+String(headinglevel),initialtext);
}
"<argument name='parent'>The parent element</argument>
<argument name='initialtext'>Optionally, initial text content for the element.</argument>
<summary>Add a paragraph</summary>
<prose>Add a paragraph to the end of the specified element. Unlike most block-level elements, paragraphs may only contain inline elements.</prose>"
public ElementTree addParagraph(ElementTree parent, String initialtext=createString(0)) {
return addGenericBlock(parent,"p",initialtext);
}
"<argument name='parent'>The parent element</argument>
<argument name='initialtext'>Optionally, initial text content for the element.</argument>
<summary>Add an address</summary>
<prose>Add an address to the end of the specified element. The <code>address</code> element is intended to contain contact details for the document author (or document section author)</prose>"
public ElementTree addAddress(ElementTree parent, String initialtext=createString(0)) {
return addGenericBlock(parent,"address",initialtext);
}
// No initial text option because blockquotes can't directly contain text.
"<argument name='parent'>The parent element</argument>
<summary>Add a quotation block</summary>
<prose>Add a quotation block to the end of the specified element. Quotation blocks may not contain text directly - you must add further block-level elements to the quotation block.</prose>"
public ElementTree addBlockQuote(ElementTree parent) {
if (!canContainBlock(parent.name)) {
throw(InvalidNesting("Can't add block quotation inside "+parent.name));
}
// need to check that parent can contain paragraphs (e.g. not ol)
bquote = mkElement("blockquote");
pushElement(parent,bquote);
return bquote;
}
"<argument name='parent'>The parent element</argument>
<argument name='initialtext'>Optionally, initial text content for the element.</argument>
<argument name='cssclass'>Optionally, the CSS class to apply to the division</argument>
<summary>Add a generic block</summary>
<prose>Add a generic block to the end of the specified element. Unlike paragraphs, lists, etc. this block has no defined semantics, and so is useful for grouping and styling purposes.</prose>"
public ElementTree addDivision(ElementTree parent, String initialtext=createString(0), String cssclass=createString(0)) {
div = addGenericBlock(parent,"div",initialtext);
if (cssclass != "") {
setClass(div,cssclass);
}
return div;
}
"<argument name='parent'>The parent element</argument>
<argument name='initialtext'>Optionally, initial text content for the element.</argument>
<summary>Add a preformatted block</summary>
<prose>Add a preformatted block to the end of the specified element. This is useful for displaying program code and other text where indentation may be significant or useful to preserve.</prose>
<example>pre = addPreformatted(parent,\"\");
code = appendInlineElement(pre,\"j = 0;
for i in [1..10] {
j += i;
}\");</example>"
public ElementTree addPreformatted(ElementTree parent, String initialtext=createString(0)) {
return addGenericBlock(parent,"pre",initialtext);
}
private Bool canContainBlock(String ename) = containsBlock(ename);
private Bool canContainException(String parent, String child) = nestingExceptions((parent,child));
// might make this public later, if people insist...
private ElementTree addGenericBlock(ElementTree parent, String element, String initialtext=createString(0)) {
// tweak to allow ins and del to be added in an inline context too
if (canContainBlock(parent.name) || ((element == "del" || element == "ins") && canContainInline(parent.name,false))) {
// need to check that parent can contain paragraphs (e.g. not ol)
newelement = mkElement(element);
pushElement(parent,newelement);
if (initialtext != "") {
// because it's only called with initial text if this is possible
doAddString(newelement,initialtext);
}
return newelement;
} else {
throw(InvalidNesting("Can't add "+element+" inside "+parent.name));
}
}
"<argument name='parent'>The parent element</argument>
<argument name='ltype'>Is the list <code>Unordered</code> or <code>Ordered</code></argument>
<argument name='initialsize'>The initial number of list elements to have</argument>
<argument name='initialcontents'>Optionally, the initial text content for some or all of the list elements. If this list is shorter than <code>initialsize</code>, then only the first list items will be populated. If it is longer, then the extra list items will be ignored.</argument>
<summary>Add a list</summary>
<prose>Add a list to the parent element. Lists may only directly contain list items.</prose>
<example>steps = [\"Catch flamingo\",\"Place flamingo in pan\",\"Boil for 3 hours\"];
list = addList(parent,Ordered,3,steps);</example>
<related><dataref>ListType</dataref></related>
<related><functionref>addListItem</functionref></related>
<related><functionref>getListItem</functionref></related>
<related><functionref>pushListItem</functionref></related>"
public ElementTree addList(ElementTree parent, ListType ltype, Int initialsize, [String] initialcontents=createArray(1)) {
if (!canContainBlock(parent.name)) {
throw(InvalidNesting("Can't add lists inside "+parent.name));
}
case ltype of {
Ordered -> etype = "ol";
| Unordered -> etype = "ul";
}
newlist = mkElement(etype);
for i in [1..initialsize] {
listitem = mkElement("li");
pushElement(newlist,listitem);
if (initialcontents[i-1] != "") {
doAddString(listitem,initialcontents[i-1]);
}
}
pushElement(parent,newlist);
return newlist;
}
"<argument name='list'>The list to search</argument>
<argument name='index'>The index to retrieve (starting at zero)</argument>
<summary>Retrieve a list item</summary>
<prose>Gets the list item within a list at the specified index. If the index given is not in the list, an <exceptref>Array::OutOfBounds</exceptref> Exception will be thrown. If the list given is not actually a list, a <exceptref>RequiresElement</exceptref> Exception is thrown.</prose>
<example>list = addList(parent,Unordered,10);
for i in [0..9] {
item = getListItem(list,i);
addString(item,\"This is item \"+(i+1));
}</example>
<related><functionref>addList</functionref></related>
<related><functionref>addListItem</functionref></related>
<related><functionref>pushListItem</functionref></related>"
public ElementTree getListItem(ElementTree list, Int index) {
if (list.name == "ul" || list.name == "ol") {
if (index < 0 || size(list.elements) <= index) {
throw(OutOfBounds);
}
// ol and ul should only contain li
// this will throw a mildly unhelpful exception if CData has crept in
return list.elements[index].nested;
} else {
throw(RequiresElement("Parent element is not a list"));
}
}
"<argument name='list'>The list to add to</argument>
<argument name='index'>The index to insert at (starting at zero)</argument>
<argument name='initialcontents'>Optionally, the initial contents of the list item</argument>
<summary>Add a list item</summary>
<prose>Add a list item to a list at the specified index. If the list given is not actually a list, an <exceptref>InvalidNesting</exceptref> Exception is thrown.</prose>
<example>if (extradetails) {
addListItem(instructions,5,\"Check that all leads are attached.\");
addListItem(instructions,12,\"Check that the batteries are charged.\");
}</example>
<related><functionref>addList</functionref></related>
<related><functionref>getListItem</functionref></related>
<related><functionref>pushListItem</functionref></related>"
public ElementTree addListItem(ElementTree list, Int index, String initialcontents=createString(0)) {
if (list.name == "ul" || list.name == "ol") {
listitem = mkElement("li");
if (initialcontents != "") {
doAddString(listitem,initialcontents);
}
addElementAt(list,listitem,index);
return listitem;
} else {
throw(InvalidNesting("Can't add a list item here - improper nesting"));
}
}
"<argument name='list'>The list to append to</argument>
<argument name='initialcontents'>Optionally, the initial contents of the list item</argument>
<summary>Append a list item</summary>
<prose>Append a list item to a list. If the list given is not actually a list, an <exceptref>InvalidNesting</exceptref> Exception is thrown. This is sometimes a more convenient way to build up lists than using an initial content array on <code>addList</code>, especially if the final size of the list is variable.</prose>
<example>list = addList(parent,Ordered,0);
while (text = getNextText(source)) {
pushListItem(list,text);
}</example>
<related><functionref>addList</functionref></related>
<related><functionref>addListItem</functionref></related>
<related><functionref>getListItem</functionref></related>"
public ElementTree pushListItem(ElementTree list, String initialcontents=createString(0)) {
if (list.name == "ul" || list.name == "ol") {
listitem = mkElement("li");
if (initialcontents != "") {
doAddString(listitem,initialcontents);
}
pushElement(list,listitem);
return listitem;
} else {
throw(InvalidNesting("Can't add a list item here - improper nesting"));
}
}
/** Part 6: Body editing - adding inline content **/
private Bool canContainInline(String elemname, Bool implyCdata=true) {
return (containsCData(elemname)
|| !(isBlock(elemname)
|| alwaysEmpty(elemname)
|| pretendEmpty(elemname))
|| (implyCdata && containsCDataOnly(elemname)));
}
// everything should call this rather than using pushData directly
"<argument name='block'>The element to add text to</argument>
<argument name='text'>The text to add</argument>
<summary>Append text to an element</summary>
<prose>Append text directly to an element.</prose>
<example>p = addParagraph(p,\"This is a \");
addString(p,\"paragraph.\");
// <p>This is a paragraph.</p></example>
<related><functionref>appendInlineElement</functionref> is used to add text within a containing element.</related>"
public Void addString(ElementTree block, String text) {
if (canContainInline(block.name,true)) {
doAddString(block,text);
} else {
throw(InvalidNesting(block.name+" can't (directly?) contain text"));
}
}
// except that where we know strings are allowed we can use this
private Void doAddString(ElementTree block, String text) {
text = entityToLiteral(text);
pushData(block,text);
}
private ElementTree makeInlineElement(InlineElement inline) {
case inline of {
// phrase elements
Emphasis -> elem = mkElement("em");
| StrongEmphasis -> elem = mkElement("strong");
| Abbreviation(title) -> elem = mkElement("abbr");
if (title != "") { setTitle(elem,title); }
| Citation -> elem = mkElement("cite");
| Definition -> elem = mkElement("dfn");
| ComputerCode -> elem = mkElement("code");
| SampleInput -> elem = mkElement("kbd");
| SampleOutput -> elem = mkElement("samp");
| Variable -> elem = mkElement("var");
| BiggerText -> elem = mkElement("big");
| SmallerText -> elem = mkElement("small");
| Bold -> elem = mkElement("b");
| Italic -> elem = mkElement("i");
| Subscript -> elem = mkElement("sub");
| Superscript -> elem = mkElement("sup");
// special elements
| Hyperlink(uri) -> elem = mkElement("a");
module::setAttribute(elem,"href",uri);
| InlineQuote(citeuri) -> elem = mkElement("q");
if (citeuri != "") {
module::setAttribute(elem,"cite",citeuri);
}
| Span(class) -> elem = mkElement("span");
if (class != "") {
setClass(elem,class);
}
| FormLabel -> elem = mkElement("label");
}
return elem;
}
"<argument name='block'>The element to add to</argument>
<argument name='inline'>The inline element to add</argument>
<argument name='initialtext'>The initial text content of the inline element</argument>
<summary>Append an inline element</summary>
<prose>Adds a new inline element containing some text to the end of a block.</prose>
<example>p = addParagraph(parent,\"This is \");
em = appendInlineElement(p,Emphasis,\"important\");
// <p>This is <em>important</em></p></example>
<related><dataref>InlineElement</dataref></related>
<related><functionref>addInlineElementAt</functionref></related>
<related><functionref>addString</functionref></related>"
public ElementTree appendInlineElement(ElementTree block, InlineElement inline, String initialtext) {
if (canContainInline(block.name,false)) {
inl = makeInlineElement(inline);
doAddString(inl,initialtext);
pushElement(block,inl);
return inl;
} else {
throw(InvalidNesting("Can't add an inline element here"));
}
}
"<argument name='block'>The element to add to</argument>
<argument name='inline'>The inline element to add</argument>
<argument name='startpos'>The start position for the inline element</argument>
<argument name='endpos'>The end position for the inline element</argument>
<summary>Wrap existing text in an inline element</summary>
<prose>Encloses existing text within an element within an inline element. The characters from <code>startpos</code> to <code>endpos</code> inclusive (with a starting index of zero) will be included in the inline element.</prose>
<example>p = addParagraph(parent,\"abcdefghijklmnopqrstuvwxyz\");
void(addInlineElementAt(p,Emphasis,5,10));
void(addInlineElementAt(p,StrongEmphasis,6,8));
// <p>abcde<em>f<strong>ghi</strong>jk</em>lmnopqrstuvwxyz</p></example>
<prose>An <exceptref>InvalidNesting</exceptref> Exception will be thrown if the element being added to cannot contain inline elements, or an impossible nesting situation would be created. An <exceptref>InvalidRange</exceptref> Exception will be thrown if the <code>startpos</code> or <code>endpos</code> are outside the text contents of the block.</prose>
<example>p = addParagraph(parent,\"abcdefghijklmnopqrstuvwxyz\");
void(addInlineElementAt(p,Emphasis,5,10));
void(addInlineElementAt(p,StrongEmphasis,6,15));
// exception thrown </example>
<prose>The <code>firstOccurs</code> function is useful for highlighting a particular word within a string.</prose>
<example>haystack = getAllText(element);
npos = firstOccurs(needle,haystack);
if (npos < length(haystack)) {
try {
added = addInlineElementAt(element,Emphasis,npos,npos+length(needle)+1);
} catch(InvalidNesting(details)) {
// probably overlapping elements
}
}</example>
<related><dataref>InlineElement</dataref></related>
<related><functionref>appendInlineElement</functionref></related>
<related><functionref index='1'>Strings::firstOccurs</functionref></related>"
public ElementTree addInlineElementAt(ElementTree block, InlineElement inline, Int startpos, Int endpos) {
// iterates through existing structure, places start tag at startpos
// (in char) and end tag at endpos (unless this would lead to
// improper nesting)
if (!canContainInline(block.name,false)) {
throw(InvalidNesting("Can't add an inline element here"));
}
if (startpos < 0) {
throw(InvalidRange("Can't start before beginning of element"));
}
if (startpos > endpos) {
throw(InvalidRange("Can't start after end"));
}
currentpos = 0;
// if we've always been using pushData and unshiftData then there
// should never be two adjacent data blocks
// if we can nest properly, then the nesting level below block at
// startpos and endpos must be equal, and between startpos and
// endpos it must never fall below the level at startpos.
totalsize = 0;
for i in [0..size(block.elements)-1] {
blocksizes[i] = totalsize + textSizeOfBlock(block.elements[i]);
totalsize = blocksizes[i];
}
if (totalsize < endpos) {
throw(InvalidRange("Can't end after end of element"));
}
startblock = 0;
while (blocksizes[startblock] <= startpos) {
startblock++;
}
endblock = startblock;
while (blocksizes[endblock] <= endpos) {
endblock++;
}
if (startblock == 0) {
substart = startpos;
} else {
substart = startpos - blocksizes[startblock-1];
}
if (endblock == 0) {
subend = endpos;
} else {
subend = endpos - blocksizes[endblock-1];
}
if (endblock != startblock) {
case block.elements[endblock] of {
SubElement(el) -> throw(InvalidNesting("Improper nesting"));
| CData(c) -> case block.elements[startblock] of {
SubElement(el) -> throw(InvalidNesting("Improper nesting"));
| CData(c) -> elem = insertInlineAroundBlocks(block,inline,startblock,substart,endblock,subend);
// start in start block, end in end block,
// everything in between moves down a layer
}
}
} else {
case block.elements[endblock] of {
// call it again on the sub element
SubElement(el) -> elem = addInlineElementAt(el,inline,substart,subend);
| CData(c) -> elem = insertInlineToCData(block,inline,substart,subend,endblock); // split into three parts a, <>b</>, c
}
}
return elem;
}
// TODO: specify start and end by word position or by providing a
// substring to delimit.
// this function shouldn't need error-checking inside it.
private ElementTree insertInlineToCData(ElementTree block, InlineElement inline, Int startpos, Int endpos, Int blocknumber) {
initial = block.elements[blocknumber].cdata;
if (startpos > 0) {
prefix = substr(initial,0,startpos);
} else {
prefix = createString(0);
}
if (endpos < length(initial)-1) {
suffix = substr(initial,endpos+1,(length(initial)-endpos));
} else {
suffix = createString(0);
}
len = (endpos-startpos)+1;
if (len < 1) {
middle = createString(0);
} else {
middle = substr(initial,startpos,len);
}
toshove = createArray(3);
if (prefix != "") {
push(toshove,CData(prefix));
}
// this code needs making into a function elsewhere
elem = makeInlineElement(inline);
doAddString(elem,middle);
push(toshove,SubElement(elem));
if (suffix != "") {
push(toshove,CData(suffix));
}
subarrayReplace(block.elements,blocknumber,toshove);
return elem;
}
// rewrite this to use addidx
private Void subarrayReplace([a] main, Int index, [a] shove) {
main[index] = shove[0];
if (size(shove) > 1) {
difference = size(shove)-1;
// move everything in main up a few places
for (i=size(main)-1;i>index;i--) {
main[i+difference] = main[i];
}
// and shove the replacement into the gap
for (j=1;j<size(shove);j++) {
main[index+j] = shove[j];
}
}
}
// both startblock and endblock are CData blocks
private ElementTree insertInlineAroundBlocks(ElementTree block, InlineElement inline, Int startblock, Int startpos, Int endblock, Int endpos) {
// start block
leftstr = block.elements[startblock].cdata;
if (startpos == 0) {
leftprefix = createString(0);
leftsuffix = leftstr;
} else {
leftprefix = substr(leftstr,0,startpos);
leftsuffix = substr(leftstr,startpos,length(leftstr)-startpos);
}
rightstr = block.elements[endblock].cdata;
if (endpos == 0) {
rightprefix = createString(0);
rightsuffix = rightstr;
} else {
rightprefix = substr(rightstr,0,endpos);
rightsuffix = substr(rightstr,endpos,length(rightstr)-endpos);
}
if (leftprefix != "") {
block.elements[startblock] = CData(leftprefix);
} else {
startblock--; // so we fake having dealt with it.
}
if (rightsuffix != "") {
block.elements[endblock] = CData(rightsuffix);
} else {
endblock++; //similarly
}
// startblock-endblock >= 2 always at this point.
elem = makeInlineElement(inline);
for i in [startblock+1..endblock-1] {
case block.elements[i] of {
SubElement(el) -> pushElement(elem,el);
| CData(cd) -> doAddString(elem,cd);
}
}
for i in [startblock+2..endblock-1] {
removeAt(block.elements,startblock+2);
}
doAddString(elem,rightprefix);
unshiftData(elem,leftsuffix);
block.elements[startblock+1] = SubElement(elem);
return elem;
}
"<argument name='block'>The block to add to</argument>
<summary>Add a line break</summary>
<prose>Append a line break to the block. Consecutive line breaks are not allowed - there are better ways to do this.</prose>"
public ElementTree addLineBreak(ElementTree block) {
if (!canContainInline(block.name,false)) {
throw(InvalidNesting("Can't add an line break here"));
}
if (size(block.elements) != 0) {
lastelem = block.elements[size(block.elements)-1];
case lastelem of {
SubElement(el) -> if (el.name == "br") {
throw(InvalidNesting("Doesn't make sense to have two line breaks in a row."));
}
| _ -> ;
}
}
br = mkElement("br");
pushElement(block,br);
return br;
}
"<argument name='block'>The block to add to</argument>
<summary>Add a separator</summary>
<prose>Append a horizontal rule to the block as a separator. Consecutive separators are not allowed.</prose>"
public ElementTree addHorizontalRule(ElementTree block) {
if (size(block.elements) != 0) {
lastelem = block.elements[size(block.elements)-1];
case lastelem of {
SubElement(el) -> if (el.name == "hr") {
throw(InvalidNesting("Doesn't make sense to have two horizontal rules in a row."));
}
| _ -> ;
}
}
hr = mkElement("hr");
pushElement(block,hr);
return hr;
}
"<argument name='block'>The block to add to</argument>
<argument name='image'>The image to add</argument>
<summary>Add an image</summary>
<prose>Append the image to the block. See the <dataref>ImageData</dataref> documentation for more information about image definitions. Images require both a source and alternative text, with the best way to select the alternative text being to consider the text you would use in this context if no image was available. (Many decorative images will therefore have \"\" as their alternative text)</prose>
<example>p = addParagraph(parent,\"Sponsored by \");
logo = addImage(p,ImageData(\"logo.jpg\",\"MegaCorp\",Specified(100,18)));</example>
<related><dataref>ImageData</dataref></related>"
public ElementTree addImage(ElementTree block, ImageData image) {
if (!canContainInline(block.name,false)) {
throw(InvalidNesting("Can't add an image here"));
}
img = mkElement("img");
module::setAttribute(img,"src",image.src);
module::setAttribute(img,"alt",image.alt);
case image.dim of {
Specified(width,height) -> module::setAttribute(img,"width",String(width));
module::setAttribute(img,"height",String(height));
// TODO: add support for AutoFromSrc and AutoFromPath
| _ -> ;
}
pushElement(block,img);
return img;
}
/** Part 7: Table editing - adding and editing tables **/
"<argument name='parent'>The parent element</argument>
<argument name='captiontext'>Optionally, text for a table caption.</argument>
<summary>Add a new empty table</summary>
<prose>Add a new empty table to the document. You can then set up optional header and footer sections, and at least one body section. The rows and columns of the table are then contained within the header, footer and body sections.</prose>
<related><functionref>addTableBodySection</functionref></related>
<related><functionref>getTableBodySections</functionref></related>
<related><functionref>getTableFooter</functionref></related>
<related><functionref>getTableHeader</functionref></related>
<related><functionref>initialiseTable</functionref></related>
<related><functionref>lazyTable</functionref></related>
<related><functionref>setTableCaption</functionref></related>"
public ElementTree addTable(ElementTree parent, String captiontext=createString(0)) {
if (!canContainBlock(parent.name)) {
throw(InvalidNesting("Can't add table inside "+parent.name));
}
table = mkElement("table");
pushElement(parent,table);
if (captiontext != "") {
caption = mkElement("caption");
doAddString(caption,captiontext);
pushElement(table,caption);
}
return table;
}
"<argument name='table'>The table</argument>
<argument name='captiontext'>The new caption</argument>
<summary>Sets the table caption</summary>
<prose>Sets the caption of the table to the new value, replacing any existing caption. This is the only table manipulation function that will work on a <functionref>lazyTable</functionref>.</prose>
<related><functionref>addTable</functionref></related>
<related><functionref>initialiseTable</functionref></related>
<related><functionref>lazyTable</functionref></related>"
public Void setTableCaption(ElementTree table, String captiontext) {
if (table.name != "table") {
throw(RequiresElement("setTableCaption can only be used on table elements!"));
}
case table.elements[0] of {
SubElement(el) -> if (el.name == "caption") {
removeAt(table.elements,0);
}
| _ -> ;
}
caption = mkElement("caption");
doAddString(caption,captiontext);
unshiftElement(table,caption);
}
"<argument name='table'>The table</argument>
<summary>Get the table header section</summary>
<prose>Gets the table header section. If the table header section does not yet exist, it will be created. Rows can then be added to the section.</prose>
<related><functionref>addTable</functionref></related>
<related><functionref>addTableBodySection</functionref></related>
<related><functionref>addTableRow</functionref></related>
<related><functionref>getTableBodySections</functionref></related>
<related><functionref>getTableFooter</functionref></related>
<related><functionref>initialiseTable</functionref></related>
<related><functionref>lazyTable</functionref></related>"
public ElementTree getTableHeader(ElementTree table) {
if (table.name != "table") {
throw(RequiresElement("Can't get a header from table elements!"));
}
for elem in table.elements {
// should never be raw CData inside a table, so hit them with an
// exception if they've managed to do it...
if (elem.nested.name == "thead") {
// return the existing thead if it's there.
return elem.nested;
}
}
// so, position it before the tfoot, the first tbody, at the end, in
// that order.
thead = mkElement("thead");
index = -1;
case findElement(table,"tfoot") of {
just(x) -> index = x;
| nothing -> case findElement(table,"tbody") of {
just(x) -> index = x;
| nothing -> ;
}
}
if (index == -1) {
pushElement(table,thead); // on the end
} else {
addElementAt(table,thead,index); // in the right place
}
return thead;
}
"<argument name='table'>The table</argument>
<summary>Get the table footer section</summary>
<prose>Gets the table footer section. If the table footer section does not yet exist, it will be created. Rows can then be added to the section.</prose>
<related><functionref>addTable</functionref></related>
<related><functionref>addTableBodySection</functionref></related>
<related><functionref>addTableRow</functionref></related>
<related><functionref>getTableBodySections</functionref></related>
<related><functionref>getTableHeader</functionref></related>
<related><functionref>initialiseTable</functionref></related>
<related><functionref>lazyTable</functionref></related>"
public ElementTree getTableFooter(ElementTree table) {
if (table.name != "table") {
throw(RequiresElement("Can't get a footer from non-table elements!"));
}
for elem in table.elements {
// should never be raw CData inside a table, so hit them with an
// exception if they've managed to do it...
if (elem.nested.name == "tfoot") {
// return the existing thead if it's there.
return elem.nested;
}
}
// so, position it before the tfoot, the first tbody, at the end, in
// that order.
tfoot = mkElement("tfoot");
case findElement(table,"tbody") of {
just(x) -> addElementAt(table,tfoot,x);
| nothing -> pushElement(table,tfoot);
}
return tfoot;
}
"<argument name='table'>The table</argument>
<summary>Add a new table body section</summary>
<prose>Adds a new table body section to the end of the table. Rows can then be added to the section. Tables should have at least one body section, but may have an unlimited number.</prose>
<related><functionref>addTable</functionref></related>
<related><functionref>addTableRow</functionref></related>
<related><functionref>getTableBodySections</functionref></related>
<related><functionref>getTableFooter</functionref></related>
<related><functionref>getTableHeader</functionref></related>
<related><functionref>initialiseTable</functionref></related>
<related><functionref>lazyTable</functionref></related>"
public ElementTree addTableBodySection(ElementTree table) {
if (table.name != "table") {
throw(RequiresElement("Can't get a tbody from non-table elements!"));
}
tbody = mkElement("tbody");
pushElement(table,tbody);
return tbody;
}
"<argument name='table'>The table</argument>
<summary>Get the table body sections</summary>
<prose>Get the table body sections. If no table body sections exist, one will be created. Rows can then be added to the section.</prose>
<related><functionref>addTable</functionref></related>
<related><functionref>addTableBodySection</functionref></related>
<related><functionref>addTableRow</functionref></related>
<related><functionref>getTableFooter</functionref></related>
<related><functionref>getTableHeader</functionref></related>
<related><functionref>initialiseTable</functionref></related>
<related><functionref>lazyTable</functionref></related>"
public [ElementTree] getTableBodySections(ElementTree table) {
if (table.name != "table") {
throw(RequiresElement("Can't get a tbody from non-table elements!"));
}
case findElement(table,"tbody") of {
nothing -> return [addTableBodySection(table)];
| just(x) -> sz = size(table.elements);
arr = subarray(table.elements,x,sz-x);
return map(extractSubElement,arr);
}
}
// this doesn't work with lambda, oddly
private ElementTree extractSubElement(Element val) {
return val.nested;
}
private Bool isTsect(String name) {
return (name=="tbody" || name=="thead" || name=="tfoot");
}
"<argument name='table'>The table</argument>
<summary>Get the number of columns in a table</summary>
<prose>Get the number of columns in a table</prose>
<related><functionref>addTableColumns</functionref></related>"
public Int numTableColumns(ElementTree table) {
if (table.name != "table") {
throw(RequiresElement("Can't get number of columns if it's not a table!"));
}
// whatever the first row of the table is can't be miscounted
// by rowspans.
for i in table.elements {
// no Cdata should be here
if (isTsect(i.nested.name)) {
// ignore empty tsects.
// any non-empty tsect will have the same number of columns
if (size(i.nested.elements) != 0) {
return numTsectColumns(i.nested);
}
}
}
return 0;
}
private Int numTsectColumns(ElementTree tsect) {
cols = 0;
// use the first one to avoid needing rowspan calculations
for td in tsect.elements[0].nested.elements {
case lookup(td.nested.attributes,"colspan") of {
nothing -> cols++;
| just(c) -> cols += Int(c);
}
}
return cols;
}
"<argument name='tsect'>The table header, footer or body section</argument>
<argument name='class'>Optionally, the CSS class to apply to the row</argument>
<summary>Adds a table row</summary>
<prose>Add a new row to the end of the selected header, body or footer section of a table. Once the table as a whole has at least one row, columns may be added.</prose>
<related><functionref>addTableBodySection</functionref></related>
<related><functionref>addTableColumns</functionref></related>
<related><functionref>getTableBodySections</functionref></related>
<related><functionref>getTableCell</functionref></related>
<related><functionref>getTableFooter</functionref></related>
<related><functionref>getTableHeader</functionref></related>"
public ElementTree addTableRow(ElementTree tsect, String class=createString(0)) {
if (!isTsect(tsect.name)) {
throw(RequiresElement("Can't add a table row here!"));
}
tr = mkElement("tr");
pushElement(tsect,tr);
if (class != "") {
setClass(tr,class);
}
columns = numTsectColumns(tsect);
if (columns > 0) {
for i in [1..columns] {
// can do this because we don't let rowspans extend outside the
// existing tsect rows
pushElement(tr,mkElement("td"));
}
}
return tr;
}
"<argument name='table'>The table</argument>
<argument name='num'>Optionally, the number of columns to add. If omitted, a single column is added.</argument>
<summary>Add a new table column</summary>
<prose>Add a new column to the table. The table must have at least one section with at least one row for this to work - a <exceptref>RequiresElement</exceptref> Exception will be thrown otherwise. Unlike most of the table functions, this function does not return the new elements created since they will be in different rows.</prose>
<related><functionref>addTable</functionref></related>
<related><functionref>addTableRow</functionref></related>
<related><functionref>getTableCell</functionref></related>
<related><functionref>initialiseTable</functionref></related>
<related><functionref>numTableColumns</functionref></related>"
public Void addTableColumns(ElementTree table, Int num=1) {
if (table.name != "table") {
throw(RequiresElement("Can't add columns if it's not a table!"));
}
for j in [1..num] {
valid = false;
for i in table.elements {
// no Cdata should be here
if (isTsect(i.nested.name)) {
for tr in i.nested.elements {
pushElement(tr.nested,mkElement("td"));
valid = true;
}
}
}
if (!valid) {
throw(RequiresElement("Can't add columns until the table has at least one row"));
}
}
}
"<argument name='tsect'>The table header, footer or body section</argument>
<argument name='row'>The row to retrieve from (starting at 0)</argument>
<argument name='col'>The column to retrieve from (starting at 0)</argument>
<summary>Make a table cell a header cell</summary>
<prose>Makes a table cell a header cell and returns the cell. Apart from converting the cell to a header cell if it wasn't already, this is identical to <functionref>getTableCell</functionref>.</prose>
<related><functionref>getTableCell</functionref></related>
<related><functionref>makeDataCell</functionref></related>"
public ElementTree makeHeaderCell(ElementTree tsect, Int row, Int col) {
cell = getTableCell(tsect,row,col);
cell.name = "th";
return cell;
}
"<argument name='tsect'>The table header, footer or body section</argument>
<argument name='row'>The row to retrieve from (starting at 0)</argument>
<argument name='col'>The column to retrieve from (starting at 0)</argument>
<summary>Make a table cell a data cell</summary>
<prose>Makes a table cell a data cell and returns the cell. Apart from converting the cell to a data cell if it wasn't already, this is identical to <functionref>getTableCell</functionref>. All cells are data cells by default, unless created with <functionref>initialiseTable</functionref> (or <functionref>lazyTable</functionref>, though of course those cells are not retrievable with this function) in the header section.</prose>
<related><functionref>getTableCell</functionref></related>
<related><functionref>makeHeaderCell</functionref></related>"
public ElementTree makeDataCell(ElementTree tsect, Int row, Int col) {
cell = getTableCell(tsect,row,col);
cell.name = "td";
return cell;
}
"<argument name='tsect'>The table header, footer or body section</argument>
<argument name='row'>The row to retrieve from (starting at 0)</argument>
<argument name='col'>The column to retrieve from (starting at 0)</argument>
<summary>Retrieve a table cell</summary>
<prose>Retrieve a table cell so that content may be added to it. An <exceptref>Array::OutOfBounds</exceptref> Exception will be thrown if the row and column are not within the table.</prose>
<example>table = addTable(parent,\"Example table\");
tbody = addTableBodySection(table);
for i in [0..2] {
void(addTableRow(tbody));
}
addTableColumns(table,3);
for i in [0..2] {
for j in [0..2] {
td = getTableCell(tbody,i,j);
addString(td,String(i+j));
}
}
/*
Example table
+---+---+---+
| 0 | 1 | 2 |
+---+---+---+
| 1 | 2 | 3 |
+---+---+---+
| 2 | 3 | 4 |
+---+---+---+
*/</example>
<prose>Naturally, the table in this simple example would be easier to generate using <functionref>initialiseTable</functionref>.</prose>
<related><functionref>addTableBodySection</functionref></related>
<related><functionref>addTableColumns</functionref></related>
<related><functionref>addTableRow</functionref></related>
<related><functionref>getTableBodySections</functionref></related>
<related><functionref>makeDataCell</functionref></related>
<related><functionref>makeHeaderCell</functionref></related>
<related><functionref>getTableFooter</functionref></related>
<related><functionref>getTableHeader</functionref></related>"
public ElementTree getTableCell(ElementTree tsect, Int row, Int col) {
// this does some error checking for mHC and mDC
if (!isTsect(tsect.name)) {
throw(RequiresElement("Can only get cells from tbody, thead or tfoot!"));
}
if (size(tsect.elements) <= row) {
throw(OutOfBounds);
}
if (size(tsect.elements[row].nested.elements) <= col) {
throw(OutOfBounds);
}
return tsect.elements[row].nested.elements[col].nested;
}
"<argument name='parent'>The parent element</argument>
<argument name='itd'>The <dataref>InitialTableData</dataref></argument>
<argument name='caption'>Optionally, a caption for the table</argument>
<summary>Create a table and initialise contents</summary>
<prose>Creates a table with the sections, rows, columns and cells described in the <code>itd</code> parameter - see the <dataref>InitialTableData</dataref> documentation for more details. Cells will be created as data cells by default, except for cells in the header section, which will be created as header cells.</prose>
<related><dataref>InitialTableData</dataref></related>
<related><functionref>addTable</functionref></related>
<related><functionref>lazyTable</functionref></related>
<related><functionref>setTableCaption</functionref></related>"
public ElementTree initialiseTable(ElementTree parent, InitialTableData itd, String caption=createString(0)) {
table = addTable(parent,caption);
// create the rows
if (size(itd.header) > 0 && size(itd.header[0]) > 0) {
thead = getTableHeader(table);
for i in [1..size(itd.header)] {
tr = addTableRow(thead);
}
fillheader = true;
cols = size(itd.header[0]);
} else {
fillheader = false;
}
if (size(itd.footer) > 0 && size(itd.footer[0]) > 0) {
tfoot = getTableFooter(table);
for i in [1..size(itd.footer)] {
tr = addTableRow(tfoot);
}
cols = size(itd.footer[0]);
fillfooter = true;
} else {
fillfooter = false;
}
if (size(itd.sections) > 0 && size(itd.sections[0]) > 0 && size(itd.sections[0][0]) > 0) {
tbc = 0;
for tbodies in itd.sections {
tbody[tbc] = addTableBodySection(table);
for i in [1..size(tbodies)] {
tr = addTableRow(tbody[tbc]);
}
tbc++;
}
cols = size(itd.sections[0][0]);
fillbody = true;
} else {
fillbody = false;
}
// create the columns
addTableColumns(table,cols);
// add the data
if (fillheader) {
fillBlockWithData(thead,itd.header,true);
}
if (fillfooter) {
fillBlockWithData(tfoot,itd.footer);
}
if (fillbody) {
for (k=0;k<size(itd.sections);k++) {
fillBlockWithData(tbody[k],itd.sections[k]);
}
}
return table;
}
// utility function for above
private Void fillBlockWithData(ElementTree block, [[String]] cdata, Bool forceheader=false) {
for (i=0;i<size(cdata);i++) {
for (j=0;j<size(cdata[i]);j++) {
if (forceheader) {
tc = makeHeaderCell(block,i,j);
} else {
tc = getTableCell(block,i,j);
}
doAddString(tc,cdata[i][j]);
}
}
}
"<argument name='parent'>The parent element</argument>
<argument name='itd'>The <dataref>InitialTableData</dataref></argument>
<argument name='caption'>Optionally, a caption for the table</argument>
<summary>Create a lazy table</summary>
<prose>Creates a lazy table with the sections, rows, columns and cells described in the <code>itd</code> parameter - see the <dataref>InitialTableData</dataref> documentation for more details. Cells will be created as data cells by default, except for cells in the header section, which will be created as header cells.</prose>
<prose>This function differs from <code>initialiseTable</code> in that the contents of the table are only partially applied. They are generated only when the table is converted to a string, which saves a considerable amount of memory for large tables, but has the disadvantage that the contents may not be edited, and so may only consist of plain text.</prose>
<related><dataref>InitialTableData</dataref></related>
<related><functionref>addTable</functionref></related>
<related><functionref>initialiseTable</functionref></related>
<related><functionref>setTableCaption</functionref></related>"
public ElementTree lazyTable(ElementTree parent, InitialTableData itd, String caption=createString(0)) {
table = addTable(parent,caption);
// create the rows
if (size(itd.header) > 0 && size(itd.header[0]) > 0) {
fillheader = true;
cols = size(itd.header[0]);
} else {
fillheader = false;
}
if (size(itd.footer) > 0 && size(itd.footer[0]) > 0) {
cols = size(itd.footer[0]);
fillfooter = true;
} else {
fillfooter = false;
}
if (size(itd.sections) > 0 && size(itd.sections[0]) > 0 && size(itd.sections[0][0]) > 0) {
tbc = 0;
cols = size(itd.sections[0][0]);
fillbody = true;
} else {
fillbody = false;
}
if (fillheader) {
appendGenerator(table,lazyTHead@(cols,itd.header));
}
if (fillfooter) {
appendGenerator(table,lazyTFoot@(cols,itd.footer));
}
if (fillbody) {
for tbody in itd.sections {
appendGenerator(table,lazyTBody@(cols,tbody));
}
}
return table;
}
/* LAZY */
ElementTree lazyTHead(Int cols, [[String]] dat) = lazyTBlock("th","thead",cols,dat);
ElementTree lazyTFoot(Int cols, [[String]] dat) = lazyTBlock("td","tfoot",cols,dat);
ElementTree lazyTBody(Int cols, [[String]] dat) = lazyTBlock("td","tbody",cols,dat);
ElementTree lazyTBlock(String cell, String block, Int cols, [[String]] dat) {
tblock = mkElement(block,size(dat));
for row in dat {
appendGenerator(tblock,lazyTRow@(cell,cols,row));
}
return tblock;
}
// probably a row at a time is lazy enough.
ElementTree lazyTRow(String cell, Int cols, [String] row) {
tr = mkElement("tr",cols);
for i in [0..cols-1] {
tcell = mkElement(cell);
doAddString(tcell,row[i]);
pushElement(tr,tcell);
}
return tr;
}
/** Part 8: Form editing - including Kaya state maintenance magic **/
"<argument name='parent'>The parent element</argument>
<argument name='fileupload'>Does this particular form allow file uploads. This argument can be omitted, for a default of disallowing them. Note that <functionref>WebCommon::allowFileUploads</functionref> must also be called for this to be successfully enabled.</argument>
<summary>Add a form for the current application</summary>
<prose>This adds a form that points to the current web application to call a named function. You then need to use <functionref>addLocalControlInput</functionref> to choose the function to call.</prose>
<prose>If you are using <code>mod_rewrite</code> in Apache, or other methods of rewriting URLs at the webserver level, then you may need to call <code>setAttribute(form,\"action\",rewritten)</code>, as Kaya cannot know about this URL rewriting layer.</prose>
<prose>Note that in HTML form input controls may not be placed directly inside a form - you must add block-level elements to the form and add controls to those elements. The <code>fieldset</code> element is especially suited to this and the <functionref>addFieldset</functionref> function handles this.</prose>
<related><functionref>addFieldset</functionref></related>
<related><functionref>addLocalControlInput</functionref></related>
<related><functionref>addRemoteForm</functionref></related>"
public ElementTree addLocalForm(ElementTree parent, Bool fileupload=false) {
form = addForm(parent);
module::setAttribute(form,"action",webappName());
module::setAttribute(form,"method","post");
if (fileupload) {
module::setAttribute(form,"enctype","multipart/form-data");
}
return form;
}
"<argument name='parent'>The parent element</argument>
<argument name='action'>The URL of the other application</argument>
<argument name='method'>The method to use to send the form data</argument>
<summary>Add a form to call another application</summary>
<prose>This adds a form that points to a specified URL. Unless the other URL is a (byte for byte) identical copy of the current application, you will not be able to use Kaya's special state handling, and must construct another way of passing the information. If the security of the information is not critical, and the other application is also a Kaya application, then the <moduleref>Pickle</moduleref> module may be of use.</prose>
<example>form = addRemoteForm(doc.body,
\"http://www.example.com/email.cgi\",
FormPost);</example>
<prose>Note that in HTML form input controls may not be placed directly inside a form - you must add block-level elements to the form and add controls to those elements. The <code>fieldset</code> element is especially suited to this and the <functionref>addFieldset</functionref> function handles this.</prose>
<related><dataref>FormType</dataref></related>
<related><functionref>addFieldset</functionref></related>
<related><functionref>addLocalForm</functionref></related>"
public ElementTree addRemoteForm(ElementTree parent, String action, FormType method) {
form = addForm(parent);
module::setAttribute(form,"action",action);
case method of {
FormGet -> module::setAttribute(form,"method","get");
| FormPost -> module::setAttribute(form,"method","post");
| FormPostUpload -> module::setAttribute(form,"method","post");
module::setAttribute(form,"enctype","multipart/form-data");
}
return form;
}
// called by local and remote form
private ElementTree addForm(ElementTree parent) {
if (!canContainBlock(parent.name)) {
throw(InvalidNesting("Can't add a form inside "+parent.name));
}
form = mkElement("form");
pushElement(parent,form);
return form;
}
"<argument name='parent'>The parent element</argument>
<argument name='itype'>The type of text input to add</argument>
<argument name='iname'>The name of the input. Remember that names starting with \"kaya_\" may be used by the Kaya standard library and should not be used directly by applications.</argument>
<argument name='ivalue'>The initial value of the input. For text and password fields, this may be changed by the user in their web browser (someone attacking your application may of course change any value, regardless of the input type). This value is generally ignored by web browsers for file upload inputs. This value is optional, and defaults to the empty String.</argument>
<argument name='isize'>Optionally, the display size of the input element. Browser rules for determining this size vary - it is an approximate number of characters, but only approximate. Obviously browsers ignore this field for hidden fields and checkbox and radio inputs, and usually for file upload inputs too.</argument>
<summary>Adds a text input</summary>
<prose>Adds a text input to a form. In HTML, controls may not be added directly to a form, so you must add them to a block-level element such as <code>fieldset</code> within the form.</prose>
<related><dataref>TextInputType</dataref></related>
<related><functionref>addFieldset</functionref></related>
<related><functionref>addLabelledInput</functionref></related>
<related><functionref>addOption</functionref></related>
<related><functionref>addSelectElement</functionref></related>
<related><functionref>addTextarea</functionref></related>"
public ElementTree addTextInput(ElementTree parent, TextInputType itype, String iname, String ivalue=createString(0), Int isize=0) {
if (!canContainInline(parent.name)) {
throw(InvalidNesting("Can't add a form input inside "+parent.name));
}
if (iname == "") {
throw(RequiresAttribute("Input name can't be empty."));
}
input = mkElement("input");
pushElement(parent,input);
module::setAttribute(input,"name",iname);
module::setAttribute(input,"value",ivalue);
case itype of {
InputHidden -> module::setAttribute(input,"type","hidden");
| InputPassword -> module::setAttribute(input,"type","password");
module::setAttribute(input,"size",String(isize));
| InputText -> module::setAttribute(input,"type","text");
module::setAttribute(input,"size",String(isize));
| InputCheck -> module::setAttribute(input,"type","checkbox");
| InputRadio -> module::setAttribute(input,"type","radio");
| InputFile -> module::setAttribute(input,"type","file");
}
return input;
}
"<argument name='parent'>The parent element</argument>
<argument name='fn'>The function to call</argument>
<argument name='state'>The state to pass to the function</argument>
<summary>Call a CGI function</summary>
<prose>Adds the state and processing function variables to a block-level element within a form created with <functionref>addLocalForm</functionref>. This function only works with the <moduleref>CGI</moduleref> state handling model, and is equivalent to using <functionref>CGI::formHandler</functionref> for non-HTMLDocument CGI programs.</prose>
<related><moduleref>CGI</moduleref></related>"
public Void addStateFields(ElementTree parent, Void(a) fn, a state) {
discard = addTextInput(parent,InputHidden,"kaya_function",encode(String(fnid(fn))));
discard = addTextInput(parent,InputHidden,"kaya_arg",encode(marshal(state,fnid(fn))));
}
"<argument name='parent'>The parent element (often the form, but in many cases nested fieldsets make sense)</argument>
<argument name='legendtext'>The 'legend' of the fieldset. This text is generally displayed at the top of the fieldset as a descriptive heading.</argument>
<summary>Add a new fieldset</summary>
<prose>Add a new fieldset to a form. Fieldsets are very useful for containing form controls which may not be directly contained within a form.</prose>"
public ElementTree addFieldset(ElementTree parent, String legendtext) {
if (!canContainBlock(parent.name)) {
throw(InvalidNesting("Can't add a fieldset inside "+parent.name));
}
fset = mkElement("fieldset");
pushElement(parent,fset);
legend = mkElement("legend");
doAddString(legend,legendtext);
pushElement(fset,legend);
return fset;
}
"<argument name='block'>The element containing the text</argument>
<argument name='startpos'>The character position of the first character</argument>
<argument name='endpos'>The character position of the last character</argument>
<argument name='control'>The form control</argument>
<summary>Associates some text with a form control</summary>
<prose>Associates text with a form control. In some common graphical browsers, clicking on the text will then focus or activate the form control, which is especially useful for checkboxes and radio buttons. The related functions below all add form controls which are already associated with their label texts, and so this function is not needed for these.</prose>
<related><functionref>addLabelledInput</functionref></related>
<related><functionref>addLabelledSelect</functionref></related>
<related><functionref>addLabelledTextarea</functionref></related>
<related><functionref>addOptionList</functionref></related>"
public Void associateTextAndInput(ElementTree block, Int startpos, Int endpos, ElementTree control) {
label = addInlineElementAt(block,FormLabel,startpos,endpos);
doAssociateTandI(label,control);
}
private Void doAssociateTandI(ElementTree label, ElementTree control) {
// private function so don't need to do this checking
/* if (label.name != "label") {
throw(RequiresElement("The first parameter must be a label element"));
}
if (control.name == "input" || control.name == "select" || control.name == "textarea") {
*/
uid = nextUniqueID();
module::setAttribute(label,"for",uid);
setID(control,uid);
/* } else {
throw(RequiresElement("The second parameter must be a form field element"));
}*/
}
Void normaliseOpt([SelectOption] opts, Bool ismult) {
for opt in opts {
if (opt.chosen) {
if (ismult) {
opt.chosen = false;
} else {
ismult = true;
}
}
}
}
Int normaliseOptgroups([(String,[SelectOption])] optgroups, Bool allowmult) {
isize = 0;
ismult = false;
for optgroup in optgroups {
if (optgroup.fst != "") {
isize++;
} else {
isize += size(optgroup.snd);
}
if (allowmult==false) {
normaliseOpt(optgroup.snd,ismult);
}
}
return isize;
}
"<argument name='parent'>The parent element</argument>
<argument name='name'>The name of the input. Remember that names starting with \"kaya_\" may be used by the Kaya standard library and should not be used directly by applications.</argument>
<argument name='ssize'>The size of the select element. If this is zero, the select element will only allow one option to be selected at any one time. If this is one or more, the select element will allow multiple options to be selected, and suggest to the browser that this many options be displayed simultaneously.</argument>
<argument name='optgroups'>The options to select from</argument>
<summary>Adds a selection box</summary>
<prose>Adds a selection box to a form. The <code>optgroups</code> parameter is a list of pairs. The first element of the pair is the 'heading' for the option group, and the second element is a list of options in that group. For most simple selectors, a single option group with no heading (the empty string) is sufficient.</prose>
<example>options = [
SelectOption(\"Express delivery\",\"1\",true),
SelectOption(\"Standard delivery\",\"2\",false),
SelectOption(\"Slow delivery\",\"3\",false)
];
sel = addSelectElement(fieldset,\"choice\",0,[(\"\",options)]);
/* // produces
<select>
<option value='1' selected='selected'>Express delivery</option>
<option value='2'>Standard delivery</option>
<option value='3'>Slow delivery</option>
</select>
*/</example>
<prose>Using multiple groups of options is useful for larger select elements, where it can make the form clearer.</prose>
<example>singles = [\"A1\",\"A2\",\"B5\"];
twins = [\"A4\",\"C2\"];
doubles = [\"A7\",\"C1\",\"C3\"];
sopts = [];
topts = [];
dopts = [];
for s in singles {
push(sopts,SelectOption(s,s,false);
}
for t in twins {
push(topts,SelectOption(s,s,false);
}
for d in doubles {
push(dopts,SelectOption(s,s,false);
}
options = [
(\"Single rooms\",sopts),
(\"Twin rooms\",topts),
(\"Double rooms\",dopts)
];
sel = addSelectElement(roombooker,\"room\",0,options);
</example>
<prose>Select elements allowing multiple options to be selected have very bad usability in most browsers - it is often better to use <functionref>addOptionList</functionref> to generate a set of checkboxes instead. Whichever method you use for multiple selection, remember that you need to use <functionref>WebCommon::incomingData</functionref> to correctly retrieve the selections from the user's form submission.</prose>
<related><dataref>SelectOption</dataref></related>
<related><functionref>addFieldset</functionref></related>
<related><functionref>addLabelledSelect</functionref></related>
<related><functionref>addLazySelect</functionref></related>
<related><functionref>addOptionList</functionref></related>
<related><functionref>addTextarea</functionref></related>
<related><functionref>addTextInput</functionref></related>"
public ElementTree addSelectElement(ElementTree block, String name, Int ssize, [(String,[SelectOption])] optgroups) {
if (!canContainInline(block.name)) {
throw(InvalidNesting("Can't add a form input inside "+block.name));
}
isize = normaliseOptgroups(optgroups,(ssize>0));
select = mkElement("select",isize);
module::setAttribute(select,"name",name);
if (ssize > 0) {
module::setAttribute(select,"size",String(ssize));
module::setAttribute(select,"multiple","multiple");
}
for optgroup in optgroups {
if (optgroup.fst != "") {
og = mkElement("optgroup");
module::setAttribute(og,"label",optgroup.fst);
for option in optgroup.snd {
if (option.value == "") {
option.value = option.label;
}
opt = mkElement("option");
module::setAttribute(opt,"value",option.value);
module::setAttribute(opt,"label",option.label);
if (option.chosen) {
module::setAttribute(opt,"selected","selected");
}
doAddString(opt,optgroup.fst+": "+option.label);
pushElement(og,opt);
}
pushElement(select,og);
} else {
for option in optgroup.snd {
if (option.value == "") {
option.value = option.label;
}
opt = mkElement("option");
module::setAttribute(opt,"value",option.value);
if (option.chosen) {
module::setAttribute(opt,"selected","selected");
}
doAddString(opt,option.label);
pushElement(select,opt);
}
}
}
pushElement(block,select);
return select;
}
"<argument name='parent'>The parent element</argument>
<argument name='name'>The name of the input. Remember that names starting with \"kaya_\" may be used by the Kaya standard library and should not be used directly by applications.</argument>
<argument name='ssize'>The size of the select element. If this is zero, the select element will only allow one option to be selected at any one time. If this is one or more, the select element will allow multiple options to be selected, and suggest to the browser that this many options be displayed simultaneously.</argument>
<argument name='optgroups'>The options to select from</argument>
<summary>Lazily adds a selection box</summary>
<prose>Adds a lazy selection box to a form. The end result after conversion to a <code>String</code> is identical to that produced by <functionref>addSelectElement</functionref>, but the memory usage is lower. The disadvantage, however, is that <functionref>Webapp::autoFill</functionref> cannot be used to automatically complete forms containing lazy elements such as this one.</prose>
<related><dataref>SelectOption</dataref></related>
<related><functionref>addLabelledSelect</functionref></related>
<related><functionref>addSelectElement</functionref></related>"
public ElementTree addLazySelect(ElementTree block, String name, Int ssize, [(String,[SelectOption])] optgroups) {
if (!canContainInline(block.name)) {
throw(InvalidNesting("Can't add a form input inside "+block.name));
}
isize = normaliseOptgroups(optgroups,(ssize>0));
select = mkElement("select",isize);
module::setAttribute(select,"name",name);
if (ssize > 0) {
module::setAttribute(select,"size",String(ssize));
module::setAttribute(select,"multiple","multiple");
}
for optgroup in optgroups {
if (optgroup.fst != "") {
appendGenerator(select,lazyOptgroup@(optgroup));
} else {
for option in optgroup.snd {
appendGenerator(select,lazyOption@(option,createString(0)));
}
}
}
pushElement(block,select);
return select;
}
ElementTree lazyOptgroup((String,[SelectOption]) optgroup) {
og = mkElement("optgroup");
module::setAttribute(og,"label",optgroup.fst);
for option in optgroup.snd {
appendGenerator(og,lazyOption@(option,optgroup.fst));
}
return og;
}
ElementTree lazyOption(SelectOption option, String group) {
opt = mkElement("option");
if (option.value == "") {
option.value = option.label;
} else {
module::setAttribute(opt,"value",option.value);
}
module::setAttribute(opt,"label",option.label);
if (option.chosen) {
module::setAttribute(opt,"selected","selected");
}
if (group != "") {
doAddString(opt,group+": "+option.label);
} else {
doAddString(opt,option.label);
}
return opt;
}
"<argument name='parent'>The parent element</argument>
<argument name='labeltext'>The label for the selector</argument>
<argument name='name'>The name of the input. Remember that names starting with \"kaya_\" may be used by the Kaya standard library and should not be used directly by applications.</argument>
<argument name='ssize'>The size of the select element. If this is zero, the select element will only allow one option to be selected at any one time. If this is one or more, the select element will allow multiple options to be selected, and suggest to the browser that this many options be displayed simultaneously.</argument>
<argument name='optgroups'>The options to select from</argument>
<argument name='lazy'>This parameter is optional and defaults to <code>false</code>. If it is explicitly set to <code>true</code> then the selector will be generated lazily.</argument>
<summary>Adds a labelled selection box</summary>
<prose>Adds a labelled selection box to a form. The selector itself is identical to that produced by <functionref>addSelectElement</functionref> or <functionref>addLazySelect</functionref>, depending on the value of the <code>lazy</code> parameter. Generally, it is more convenient to use this function to label selectors, than to create them individally.</prose>
<related><dataref>SelectOption</dataref></related>
<related><functionref>addLazySelect</functionref></related>
<related><functionref>addOptionList</functionref></related>
<related><functionref>addSelectElement</functionref></related>"
public ElementTree addLabelledSelect(ElementTree block, String labeltext, String name, Int ssize, [(String,[SelectOption])] optgroups, Bool lazy=false) {
div = addDivision(block);
label = appendInlineElement(div,FormLabel,labeltext);
if (!lazy) {
control = addSelectElement(div,name,ssize,optgroups);
} else {
control = addLazySelect(div,name,ssize,optgroups);
}
doAssociateTandI(label,control);
return div;
}
"<argument name='fn'>The function to call</argument>
<argument name='state'>The state to pass</argument>
<argument name='prefix'>An optional prefix to the control variables. Different components may use different prefixes, allowing multiple <functionref>Webapp::runHandler</functionref> functions.</argument>
<summary>Create a URL that calls a local function</summary>
<prose>Create a URL that calls a local function for use in hyperlinks. You may pass additional parameters by appending them to the URL, of course.</prose>
<example>url = localControlURL(browseData,logindata);
url += \";datasource=12\";</example>
<related><functionref>CGI::imageHandler</functionref></related>
<related><functionref>CGI::linkURL</functionref></related>
<related><functionref>encodeControlState</functionref></related>
<related><functionref>addLocalControlInput</functionref></related>"
public String localControlURL(b(a) fn, a state, String prefix="") {
name = prefix+"kaya_control";
val = urlEncode(encodeControlState(@fn,state,prefix));
return webappName() + "?" + name + "=" + val;
}
"<argument name='fn'>The function to call</argument>
<argument name='state'>The state to pass</argument>
<argument name='prefix'>An optional prefix to the control variables. Different components may use different prefixes, allowing multiple <functionref>Webapp::runHandler</functionref> functions. In this context it performs the same role as the marshalling ID - if you are calling this function directly you almost certainly don't need it.</argument>
<summary>Encode application state for later retrieval</summary>
<prose>Encode an application state into a string. This is useful with <functionref>Webapp::storeFunction</functionref> for constructing shorter URLs, or allowing someone to resume a process at a much later date.</prose>
<related><functionref>Webapp::storeFunction</functionref></related>"
public String encodeControlState(b(a) fn, a state, String prefix="") {
return encode(compressString(marshal((@fn,state,prefix),228)));
}
"<argument name='parent'>The element to add the button to</argument>
<argument name='label'>The text for the button</argument>
<argument name='fn'>The function to call</argument>
<argument name='state'>The state to pass</argument>
<argument name='prefix'>An optional prefix to the control variables. Different components may use different prefixes, allowing multiple <functionref>Webapp::runHandler</functionref> functions.</argument>
<summary>Add a form submit button</summary>
<prose>Create a submit button that calls a local function. This only works if added to a form created with <functionref>addLocalForm</functionref>.</prose>
<related><functionref>addLocalForm</functionref></related>
<related><functionref>addRemoteControlInput</functionref></related>"
public ElementTree addLocalControlInput(ElementTree parent, String label, b(a) fn, a state, String prefix="") {
if (!canContainInline(parent.name)) {
throw(InvalidNesting("Can't add a form input inside "+parent.name));
}
input = mkElement("input");
pushElement(parent,input);
module::setAttribute(input,"type","submit");
module::setAttribute(input,"value",label);
submitid = nextUniqueID();
module::setAttribute(input,"name",prefix+"kaya_submit_"+submitid);
stateinfo = encode(compressString(marshal((fn,state,prefix),Int(substr(submitid,3,length(submitid)-3)))));
hinput = addTextInput(parent,InputHidden,prefix+"kaya_control_"+submitid,stateinfo);
return input;
}
"<argument name='parent'>The element to add the button to</argument>
<argument name='itype'>The type of the button</argument>
<argument name='iname'>The name of the button</argument>
<argument name='ivalue'>The label of the button</argument>
<summary>Add a form submit button</summary>
<prose>Create a submit button for a form created with <functionref>addRemoteForm</functionref>. The button will be submitted when pressed as <code><variable>iname</variable>=<variable>ivalue</variable></code>. If <code>iname</code> is the empty string, then the value will not be submitted with the rest of the form.</prose>
<related><dataref>ControlInputType</dataref></related>
<related><functionref>addLocalControlInput</functionref></related>
<related><functionref>addRemoteForm</functionref></related>"
public ElementTree addRemoteControlInput(ElementTree parent, ControlInputType itype, String iname=createString(0), String ivalue=createString(0)) {
if (!canContainInline(parent.name)) {
throw(InvalidNesting("Can't add a form input inside "+parent.name));
}
input = mkElement("input");
pushElement(parent,input);
case itype of {
InputSubmit -> module::setAttribute(input,"type","submit");
if (iname != "") {
module::setAttribute(input,"name",iname);
}
| InputReset -> module::setAttribute(input,"type","reset");
}
if (ivalue != "") {
module::setAttribute(input,"value",ivalue);
}
return input;
}
"<argument name='parent'>The parent element</argument>
<argument name='legend'>The legend for the fieldset grouping the options</argument>
<argument name='iname'>The name of the option controls. Remember that names starting with \"kaya_\" may be used by the Kaya standard library and should not be used directly by applications.</argument>
<argument name='options'>The options to select from</argument>
<argument name='allowmultiple'>This parameter is optional and defaults to <code>true</code>, which generates the option list as a set of checkboxes. If it is explicitly set to <code>false</code> then radio buttons are used instead.</argument>
<summary>Adds a set of checkboxes or radio buttons</summary>
<prose>Adds a set of checkboxes or radio buttons to a form. The meaning of the parameters is very similar or identical to the similar parameters for <functionref>addLabelledSelect</functionref>, but the appearance is very different. If the number of options is not large, this is generally considerably easier to use than a selection drop-down, although it does take up much more screen space.</prose>
<prose>When using this function to generate radio buttons, you should ensure that one of the options is initially selected, as browser behaviour when no option is selected is variable and often causes problems. You may need to add a \"no option selected\" radio button for initial selection in some circumstances.</prose>
<example>options = [
SelectOption(\"Express delivery\",\"1\",true),
SelectOption(\"Standard delivery\",\"2\",false),
SelectOption(\"Slow delivery\",\"3\",false)
];
sel = addLabelledSelect(fieldset,\"Select a delivery speed\",\"choice\",
options,false);
/* // produces
<fieldset><legend>Select a delivery speed</legend>
<div><input type='checkbox' name='choice' value='1' id='Kay1'
checked='checked'>
<label for='Kay1'>Express delivery</label></div>
<div><input type='checkbox' name='choice' value='2' id='Kay2'>
<label for='Kay2'>Standard delivery</label></div>
<div><input type='checkbox' name='choice' value='3' id='Kay3'>
<label for='Kay3'>Slow delivery</label></div>
</fieldset>
*/ // exact markup may vary slightly to keep IDs unique in the document</example>
<related><dataref>SelectOption</dataref></related>
<related><functionref>addLabelledSelect</functionref></related>
<related><functionref>addOption</functionref></related>"
// gives them all the same name for symmetry with <select (multiple)>
// survey engines may want some standard options arrays.
public ElementTree addOptionList(ElementTree parent, String legend, String iname, [SelectOption] options, Bool allowmultiple=true) {
fset = addFieldset(parent,legend);
if (allowmultiple) {
itype = InputCheck;
} else {
itype = InputRadio;
canmark = true;
}
for option in options {
div = addDivision(fset);
if (option.value == "") {
option.value = option.label;
}
control = addTextInput(div,itype,iname,option.value);
if (option.chosen && (allowmultiple || canmark)) {
module::setAttribute(control,"checked","checked");
canmark = false;
}
label = appendInlineElement(div,FormLabel,option.label);
doAssociateTandI(label,control);
}
return fset;
}
"<argument name='parent'>The parent element</argument>
<argument name='iname'>The name of the checkbox. Remember that names starting with \"kaya_\" may be used by the Kaya standard library and should not be used directly by applications.</argument>
<argument name='option'>The value and label of the checkbox, and whether it is checked by default</argument>
<summary>Adds a labelled checkbox to a form.</summary>
<prose>Adds a single labelled checkbox to a form. Labelled controls are wrapped in a division, and so the <code>parent</code> may be the form itself.</prose>
<example>opt = SelectOption(\"Confirm action\",\"1\",false);
void(addOption(form,\"confirm\",opt));
/*
<div><input type='checkbox' name='confirm' value='1' id='Kay1'>
<label for='Kay1'>Confirm action</label></div>
*/</example>
<related><dataref>SelectOption</dataref></related>
<related><functionref>addLabelledInput</functionref></related>
<related><functionref>addLabelledSelect</functionref></related>
<related><functionref>addLabelledTextarea</functionref></related>
<related><functionref>addOptionList</functionref></related>"
public ElementTree addOption(ElementTree parent, String iname, SelectOption option) {
div = addDivision(parent);
if (option.value == "") {
control = addTextInput(div,InputCheck,iname,option.label);
} else {
control = addTextInput(div,InputCheck,iname,option.value);
}
if (option.chosen) {
module::setAttribute(control,"checked","checked");
}
label = appendInlineElement(div,FormLabel,option.label);
doAssociateTandI(label,control);
return div;
}
"<argument name='parent'>The parent element</argument>
<argument name='labeltext'>The text of the label</argument>
<argument name='itype'>The type of text input to add</argument>
<argument name='iname'>The name of the input. Remember that names starting with \"kaya_\" may be used by the Kaya standard library and should not be used directly by applications.</argument>
<argument name='ivalue'>The initial value of the input. For text and password fields, this may be changed by the user in their web browser (someone attacking your application may of course change any value, regardless of the input type). This value is generally ignored by web browsers for file upload inputs. This value is optional, and defaults to the empty String.</argument>
<argument name='isize'>Optionally, the display size of the input element. Browser rules for determining this size vary - it is an approximate number of characters, but only approximate. Obviously browsers ignore this field for hidden fields and checkbox and radio inputs, and usually for file upload inputs too.</argument>
<summary>Adds a labelled text input</summary>
<prose>Adds a labelled text input to a form. Since the labelled input is enclosed within a division, the parent element may be the form itself. The parameters for this function are identical in use to the parameters of <functionref>addTextInput</functionref> with the same name.</prose>
<related><dataref>TextInputType</dataref></related>
<related><functionref>addFieldset</functionref></related>
<related><functionref>addLabelledSelect</functionref></related>
<related><functionref>addLabelledTextarea</functionref></related>
<related><functionref>addOption</functionref></related>
<related><functionref>addTextInput</functionref></related>"
public ElementTree addLabelledInput(ElementTree parent, String labeltext, TextInputType itype, String iname, String ivalue=createString(0), Int isize=0) {
div = addDivision(parent);
label = appendInlineElement(div,FormLabel,labeltext);
control = addTextInput(div,itype,iname,ivalue,isize);
doAssociateTandI(label,control);
return div;
}
"<argument name='parent'>The parent element</argument>
<argument name='name'>The name of the textarea. Remember that names starting with \"kaya_\" may be used by the Kaya standard library and should not be used directly by applications.</argument>
<argument name='initialtext'>The initial contents of the textarea, if any. Thisparameter is optional, with the empty string as a default.</argument>
<argument name='rows'>The number of rows the fieldset has. This parameter may be omitted for a default of 5.</argument>
<argument name='cols'>The number of columns the fieldset has. This parameter may be omitted for a default of 40. Note that there is no browser-independent relationship between the number of columns in a text area, and the size of a normal text input, so getting them to be consistently the same width is not possible.</argument>
<summary>Adds a textarea</summary>
<prose>Adds a textarea to a form. Remember that textareas may not be added directly to the form - you need to add a block-level element such as <code>fieldset</code> to the form, and then add the textareas to that. Text areas are useful for entering large amounts of user input, or where the user input needs to contain new lines.</prose>
<related><functionref>addFieldset</functionref></related>
<related><functionref>addLabelledTextarea</functionref></related>
<related><functionref>addSelectElement</functionref></related>
<related><functionref>addTextInput</functionref></related>"
public ElementTree addTextarea(ElementTree parent, String name, String initialtext=createString(0), Int rows=5, Int cols=40) {
if (!canContainInline(parent.name)) {
throw(InvalidNesting("Can't add a form input inside "+parent.name));
}
if (rows < 1 || cols < 1) {
throw(RequiresAttribute("Must have at least one row and column."));
}
ta = mkElement("textarea");
module::setAttribute(ta,"name",name);
if (initialtext != "") {
doAddString(ta,initialtext);
}
module::setAttribute(ta,"rows",String(rows));
module::setAttribute(ta,"cols",String(cols));
pushElement(parent,ta);
return ta;
}
"<argument name='parent'>The parent element</argument>
<argument name='name'>The name of the textarea. Remember that names starting with \"kaya_\" may be used by the Kaya standard library and should not be used directly by applications.</argument>
<argument name='labeltext'>The text of the label</argument>
<argument name='initialtext'>The initial contents of the textarea, if any. Thisparameter is optional, with the empty string as a default.</argument>
<argument name='rows'>The number of rows the fieldset has. This parameter may be omitted for a default of 5</argument>
<argument name='cols'>The number of columns the fieldset has. This parameter may be omitted for a default of 40. Note that there is no browser-independent relationship between the number of columns in a text area, and the size of a normal text input, so getting them to be consistently the same width is not possible.</argument>
<summary>Adds a labelled textarea</summary>
<prose>Adds a labelled textarea to a form. Since the labelled textarea is enclosed within a division, the parent element may be the form itself. Text areas are useful for entering large amounts of user input, or where the user input needs to contain new lines. The textarea and its label will be separated by a line break.</prose>
<related><functionref>addFieldset</functionref></related>
<related><functionref>addLabelledSelect</functionref></related>
<related><functionref>addLabelledInput</functionref></related>
<related><functionref>addOption</functionref></related>
<related><functionref>addTextarea</functionref></related>"
public ElementTree addLabelledTextarea(ElementTree parent, String name, String labeltext, String initialtext=createString(0), Int rows=5, Int cols=40) {
div = addDivision(parent);
label = appendInlineElement(div,FormLabel,labeltext);
br = addLineBreak(div);
control = addTextarea(div,name,initialtext,rows,cols);
doAssociateTandI(label,control);
return div;
}
/** Part 9: element retrieval **/
"<argument name='parent'>The element</argument>
<summary>Return sub-elements</summary>
<prose>Returns all (non-lazy) child elements of the chosen element. For example, using this on a list will return all list items.</prose>"
public [ElementTree] getChildren(ElementTree parent) {
els = createArray(size(parent.elements));
for elem in parent.elements {
case elem of {
SubElement(el) -> push(els,el);
| _ -> ;
}
}
return els;
}
"<summary>Make an anonymous block</summary>
<prose>Make an anonymous division. This is useful for use with <functionref>appendExisting</functionref> and <functionref>prependExisting</functionref>.</prose>
<example>ElementTree mkList([String] texts) {
div = anonymousBlock();
list = addList(div,Unordered,size(texts),texts);
return list;
}
// can now do appendExisting(parent,mkList(texts));</example>
<related><functionref>appendExisting</functionref></related>
<related><functionref>prependExisting</functionref></related>"
public ElementTree anonymousBlock () {
return mkElement("div");
}
"<argument name='dest'>The element to add to</argument>
<argument name='block'>The element to append</argument>
<summary>Append an existing element</summary>
<prose>Append an existing element as the final child of the specified element.</prose>
<example>p = addParagraph(parent,\"Hello world!\");
// is equivalent to
p = addParagraph(anonymousBlock(),\"Hello world!\");
appendExisting(parent,p);</example>
<related><functionref>anonymousBlock</functionref></related>
<related><functionref>appendGenerator</functionref></related>
<related><functionref>prependExisting</functionref></related>"
public Void appendExisting(ElementTree dest, ElementTree block) {
if (!canContainException(dest.name,block.name)) {
if (isBlock(block.name)) {
if (!canContainBlock(dest.name)) {
throw(InvalidNesting("Can't add a block-level element here"));
}
} else {
if (!canContainInline(dest.name)) {
throw(InvalidNesting("Can't add an inline element here"));
}
}
}
pushElement(dest,block);
}
"<argument name='dest'>The element to add to</argument>
<argument name='block'>The element to prepend</argument>
<summary>Prepend an existing element</summary>
<prose>Prepend an existing element as the first child of the specified element.</prose>
<related><functionref>anonymousBlock</functionref></related>
<related><functionref>appendExisting</functionref></related>
<related><functionref>prependGenerator</functionref></related>"
public Void prependExisting(ElementTree dest, ElementTree block) {
if (!canContainException(dest.name,block.name)) {
if (isBlock(block.name)) {
if (!canContainBlock(dest.name)) {
throw(InvalidNesting("Can't add a block-level element here"));
}
} else {
if (!canContainInline(dest.name)) {
throw(InvalidNesting("Can't add an inline element here"));
}
}
}
unshiftElement(dest,block);
}
"<argument name='dest'>The element to add to</argument>
<argument name='generator'>The generator to append</argument>
<summary>Append an element generator</summary>
<prose>Append an element generator as the final child of the specified element. This can be very useful in templating to ensure that only one distinct part of the template is in memory at once.</prose>
<related><functionref>appendExisting</functionref></related>
<related><functionref>prependGenerator</functionref></related>"
public Void appendGenerator(ElementTree dest, ElementTree() generator) {
pushGenerator(dest,@generator);
}
"<argument name='dest'>The element to add to</argument>
<argument name='generator'>The generator to prepend</argument>
<summary>Prepend an element generator</summary>
<prose>Prepend an element generator as the first child of the specified element.</prose>
<related><functionref>appendGenerator</functionref></related>
<related><functionref>prependExisting</functionref></related>"
public Void prependGenerator(ElementTree dest, ElementTree() generator) {
unshiftGenerator(dest,@generator);
}
"<argument name='parentsrc'>The parent block currently containing the element</argument>
<argument name='srcidx'>The position within that block of the element to move</argument>
<argument name='parentdest'>The block to move the element to</argument>
<argument name='destidx'>The position within the new block to move the element to.</argument>
<summary>Move a block</summary>
<prose>Move a block from one place to another. All children of the block being moved will move with it.</prose>"
public Void moveBlock(ElementTree parentsrc, Int srcidx, ElementTree parentdest, Int destidx) {
if (srcidx >= size(parentsrc.elements)) {
throw(OutOfBounds);
}
case parentsrc.elements[srcidx] of {
CData(cd) -> inline = true; cdata = true; cname = "";
| SubElement(el) -> inline = !isBlock(el.name); cdata = false; cname = el.name;
}
if (!canContainException(parentdest.name,cname)) {
if (!inline) {
if (!canContainBlock(parentdest.name)) {
throw(InvalidNesting("Can't add a block-level element here"));
}
} else {
if (!canContainInline(parentdest.name) && !(cdata && containsCDataOnly(parentdest.name))) {
throw(InvalidNesting("Can't add an inline element here"));
}
}
}
case parentsrc.elements[srcidx] of {
SubElement(el) -> addElementAt(parentdest,el,destidx);
| CData(cd) -> addDataAt(parentdest,cd,destidx);
}
}
private ElementTree mkElement(String name, Int expected=0) {
return newElement(name,expected);
}
/** Part 10: Conversion from Strings */
"<argument name='location'>The location in the document to append the converted String</argument>
<argument name='input'>The String to convert</argument>
<argument name='safety'>The allowed elements and attributes</argument>
<argument name='doctype'>The document type of the input string. This is independent of the document type of the document and controls certain aspects of parsing - for example, if the doctype is <code>HTML4Strict</code>, the end tags for <code>p</code> or <code>td</code> elements may be omitted, and the code will be case-insensitive.</argument>
<summary>Convert a String to HTML</summary>
<prose>Convert a String to HTML. An Exception will be thrown if the parser cannot construct an unambiguous tree from the string, and it is considerably less forgiving than the parsers in most web browsers. (On the other hand, it's a bit more forgiving in places than a strict XML parser, especially if the <code>HTML4Strict</code> doctype is used). As usual, parsing with XHTML strictness will be quicker.</prose>
<prose>Read the <dataref>WhiteList</dataref> documentation for important information on safety when converting these Strings</prose>
<prose>If you need to read poor-quality HTML, you can use the <code>TagSoup</code> setting for the doctype parameter, but this will be somewhat slower - if you're writing the HTML yourself it's much more efficient to write good quality code in the first place. This parsing model rarely throws an Exception (though it is still possible on very poor code)</prose>
<example>str = \"<p>This is a <strong>crucial</strong> paragraph</p>\";
readFromString(parent,str,AllElements(Safe),HTML4Strict);</example>
<related><dataref>Doctype</dataref></related>
<related><dataref>WhiteList</dataref></related>
<related><functionref>readFromTemplate</functionref></related>
<related><functionref>string</functionref></related>"
public Void readFromString(ElementTree location, String input, WhiteList safety, Doctype doctype) {
wl = whitelistHTML(safety);
case doctype of {
TagSoup -> ie = soupClosings; csen = false; tsoup = true; ae = isAlwaysEmpty;
| HTML4Strict -> ie = impliedClosings; csen = false; tsoup = false; ae = isAlwaysEmpty;
| XHTML1Strict -> ie = Dict::new(3,strHash); csen = true; tsoup = false; ae = createArray(1); // no implicit closing or ambiguous empty elements in XHTML
}
tmpbase = elementTree(input,"tmpbase",wl,ie,ae,Dict::new(2,strHash),csen,tsoup);
els = getElements(tmpbase);
for el in els {
case el of {
SubElement(sel) -> pushElement(location,sel);
| CData(scd) -> pushData(location,scd);
}
}
}
"<argument name='location'>The location in the document to append the converted String</argument>
<argument name='input'>The String to convert</argument>
<argument name='safety'>The allowed elements and attributes</argument>
<argument name='doctype'>The document type of the input string. This is independent of the document type of the document and controls certain aspects of parsing - for example, if the doctype is <code>HTML4Strict</code>, the end tags for <code>p</code> or <code>td</code> elements may be omitted, and the code will be case-insensitive. As usual, parsing with XHTML strictness will be quicker. The <code>TagSoup</code> option is equivalent to <code>HTML4Strict</code> - templates should be good quality!</argument>
<argument name='templates'>A dictionary of templating functions. The key is the name of the templating tag, and the value is the function to call upon seeing that tag (which will be passed the templating tags attributes as a list of pairs).</argument>
<summary>Convert a HTML template to HTML</summary>
<prose>Convert a HTML template String to HTML. An Exception will be thrown if the parser cannot construct an unambiguous tree from the string, and it is considerably less forgiving than the parsers in most web browsers. (On the other hand, it's a bit more forgiving in places than a strict XML parser, especially if the <code>HTML4Strict</code> doctype is used).</prose>
<prose>A HTML template String contains empty tags with user-defined names. These tags are then replaced with the output of the function defined for that tag in the <code>templates</code> dictionary.</prose>
<prose>Read the <dataref>WhiteList</dataref> documentation for important information on safety when converting these Strings, and bear in mind that allowing user-supplied data to call templating functions is only as secure as the allowed templating functions.</prose>
<related><dataref>Doctype</dataref></related>
<related><dataref>WhiteList</dataref></related>
<related><functionref>readFromString</functionref></related>
<related><functionref>string</functionref></related>"
public Void readFromTemplate(ElementTree location, String input, WhiteList safety, Doctype doctype, Dict<String,ElementTree([(String,String)])> templates) {
wl = whitelistHTML(safety);
case doctype of {
TagSoup -> ie = impliedClosings; csen = false; ae = isAlwaysEmpty; // templates should be good quality!
| HTML4Strict -> ie = impliedClosings; csen = false; ae = isAlwaysEmpty;
| XHTML1Strict -> ie = Dict::new(3,strHash); csen = true; ae = createArray(1); // no implicit closing in XHTML
}
tmpbase = elementTree(input,"tmpbase",wl,ie,ae,templates,csen,false);
els = getElements(tmpbase);
for el in els {
case el of {
SubElement(sel) -> pushElement(location,sel);
| CData(scd) -> pushData(location,scd);
// allow top-level templates
| SubTree(g) -> pushGenerator(location,g);
}
}
}
Dict<String,[String]> impliedClosings() {
ics = Dict::new(17,strHash);
add(ics,"td",["td","/tr","tr","/table","/tbody","/tfoot","/thead","tbody","tfoot"]);
add(ics,"tr",["/tr","tr","/table","/tbody","/tfoot","/thead","tbody","tfoot"]);
add(ics,"thead",["/table","tbody","tfoot"]);
add(ics,"tbody",["/table","tbody"]);
add(ics,"tfoot",["/table","tbody"]);
add(ics,"li",["li","/ul","/ol"]);
add(ics,"p",["address","blockquote","div","h1","h2","h3","h4","h5","h6","hr","p","pre","ul","ol","dl","table","form","fieldset","/address","/blockquote","/div","/form","/fieldset"]);
add(ics,"dd",["dd","dt","/dl"]);
add(ics,"dt",["dd","dt","/dl"]);
return ics;
}
Dict<String,[String]> soupClosings() {
ics = Dict::new(17,strHash);
add(ics,"td",["td","/tr","tr","/table","/tbody","/tfoot","/thead","tbody","tfoot"]);
add(ics,"tr",["/tr","tr","/table","/tbody","/tfoot","/thead","tbody","tfoot"]);
add(ics,"thead",["/table","tbody","tfoot"]);
add(ics,"tbody",["/table","tbody"]);
add(ics,"tfoot",["/table","tbody"]);
add(ics,"li",["li","/ul","/ol"]);
add(ics,"ol",["ol","ul","/ul","p","/p","div","/div","h1","/h1","h2","/h2","h3","/h3","h4","/h4","h5","/h5","h6","/h6"]);
add(ics,"ul",["ol","ul","/ol","p","/p","div","/div","h1","/h1","h2","/h2","h3","/h3","h4","/h4","h5","/h5","h6","/h6"]);
add(ics,"p",["address","blockquote","div","h1","h2","h3","h4","h5","h6","hr","p","pre","ul","ol","dl","table","form","fieldset","/address","/blockquote","/div","/form","/fieldset","/ul","/ol"]);
add(ics,"dd",["dd","dt","/dl"]);
add(ics,"dt",["dd","dt","/dl"]);
return ics;
}
HashSet<String> tagFormats() {
// defaults to not breaking
// full = ["body","blockquote","ul","ol","hr","table","thead","tfoot","tbody","tr","form","fieldset","select","optgroup"];
// outer = ["h1","h2","h3","h4","h5","h6","p","address","div","pre","li","br","caption","td","th","legend","option","textarea"];
tags = ["body","blockquote","ul","ol","hr","table","thead","tfoot","tbody","tr","form","fieldset","select","optgroup","h1","h2","h3","h4","h5","h6","p","address","div","pre","li","br","caption","td","th","legend","option","textarea"];
ed = newHashSet(47,strHash);
for i in [0..size(tags)-1] {
add(ed,tags[i]);
}
return ed;
}
[String] genericAttribs = ["class","id","lang","dir","title"];
ConversionSafety getSafety(WhiteList w) {
case w of {
InlineOnly(s) -> return s;
| AllElements(s) -> return s;
}
}
Dict<String,[String]> whitelistHTML(WhiteList wconf) {
case wconf of {
CustomWhitelist(wl) -> return wl;
| _ ->; // continue;
}
wl = Dict::new(79,strHash);
if (wconf == Unchecked) {
add(wl,"*",["*"]); // whitelist everything
return wl;
} else if (wconf == UltraSafe) {
add(wl,createString(0),createArray(1)); // blacklist everything, act as a tag stripper
return wl;
}
safeinline = ["b","i","em","strong","u","ins","del","code","kbd","samp","var","cite","dfn","abbr","big","small","sup","sub","q","span","br"];
case getSafety(wconf) of {
Safe -> ;
| Unsafe -> concat(safeinline,["a","img"]);
| _ -> concat(safeinline,["a","img","label","input","select","option","optgroup","textarea"]);
}
for name in safeinline {
attribs = genericAttribs();
case getSafety(wconf) of {
Safe -> ;
| _ -> push(attribs,"style");
}
case name of {
"a" -> concat(attribs,["href"]); // only in Unsafe or worse as above
| "img" -> concat(attribs,["src","alt","width","height"]); // likewise
| "label" -> concat(attribs,["for"]);
| "input" -> concat(attribs,["name","value","type","size"]);
| "select" -> concat(attribs,["name","size","multiple"]);
| "option" -> concat(attribs,["label","value"]);
| "optgroup" -> concat(attribs,["label"]);
| _ -> ;
}
add(wl,name,attribs);
}
case wconf of {
InlineOnly(s) -> return wl;
| _ -> ;
}
safeblock = ["p","pre","div","ol","li","ul","dl","dd","dt","h1","h2","h3","h4","h5","h6","address","blockquote","table","tr","td","th","tbody","tfoot","thead","caption","hr","col","colgroup"];
case getSafety(wconf) of {
// fieldset and legend aren't unsafe, just pointless without form.
VeryUnsafe -> concat(safeblock,["form","fieldset","legend"]);
| _ -> ;
}
for name in safeblock {
attribs = genericAttribs();
case getSafety(wconf) of {
Safe -> ;
| _ -> concat(attribs,["style"]);
}
case name of {
"form" -> concat(attribs,["action","method"]);
| "td" -> concat(attribs,["colspan","rowspan","headers"]);
| "th" -> concat(attribs,["colspan","rowspan","scope"]);
| "table" -> concat(attribs,["summary"]);
| _ -> ;
}
add(wl,name,attribs);
}
return wl;
}
|