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
|
#!/usr/bin/perl -ws
#
# cvsweb - a CGI interface to CVS trees.
#
# Written in their spare time by
# Bill Fenner <fenner@freebsd.org> (original work)
# extended by Henner Zeller <zeller@think.de>,
# Henrik Nordstrm <hno@hem.passagen.se>
# Ken Coar <coar@Apache.Org>
#
# Based on:
# * Bill Fenners cvsweb.cgi revision 1.28 available from:
# http://www.freebsd.org/cgi/cvsweb.cgi/www/en/cgi/cvsweb.cgi
#
# Copyright (c) 1996-1998 Bill Fenner
# (c) 1998-1999 Henner Zeller
# (c) 1999 Henrik Nordstrm
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# $Id: cvsweb.cgi,v 1.6 1999/11/23 23:20:14 joey Exp $
#
###
use strict;
use vars qw (
$config $allow_version_select $verbose
%CVSROOT %CVSROOTdescr %MIRRORS %DEFAULTVALUE %ICONS %MTYPES
%alltags @tabcolors %fileinfo %tags @branchnames %nameprinted
%symrev %revsym @allrevisions %date %author @revdisplayorder
@revisions %state %difflines %log %branchpoint @revorder $prcgi
$checkoutMagic $doCheckout $scriptname $scriptwhere
$where $Browser $nofilelinks $maycompress @stickyvars
%input $query $barequery $sortby $bydate $byrev $byauthor
$bylog $byfile $hr_default $logsort $cvstree $cvsroot
$mimetype $defaultTextPlain $defaultViewable $allow_compress
$GZIPBIN $backicon $diricon $fileicon $fullname $newname
$cvstreedefault $body_tag $logo $defaulttitle $address
$backcolor $long_intro $short_instruction $shortLogLen
$show_author $dirtable $tablepadding $columnHeaderColorDefault
$columnHeaderColorSorted $hr_breakable $hr_funout $hr_ignwhite
$hr_ignkeysubst $diffcolorHeading $diffcolorEmpty $diffcolorRemove
$diffcolorChange $diffcolorAdd $diffcolorDarkChange $difffontface
$difffontsize $inputTextSize $mime_types $allow_annotate
$allow_markup $use_java_script $open_extern_window
$extern_window_width $extern_window_height $edit_option_form
$checkout_magic $show_subdir_lastmod $show_log_in_markup $v
$navigationHeaderColor $tableBorderColor $markupLogColor
$tabstop $state $annTable $sel $curbranch $HideModules @HideModules
$module
);
##### Start of Configuration Area ########
# == EDIT this ==
# User configuration is stored in
$config = $ENV{'CVSWEB_CONFIG'} || '/etc/cvsweb.conf';
# == Configuration defaults ==
# Defaults for configuration variables that shouldn't need
# to be configured..
$allow_version_select = 1;
##### End of Configuration Area ########
######## Configuration variables #########
# These are defined to allow checking with perl -cw
%CVSROOT = %MIRRORS = %DEFAULTVALUE = %ICONS = %MTYPES =
%tags = %alltags = @tabcolors = ();
$cvstreedefault = $body_tag = $logo = $defaulttitle = $address =
$backcolor = $long_intro = $short_instruction = $shortLogLen =
$show_author = $dirtable = $tablepadding = $columnHeaderColorDefault =
$columnHeaderColorSorted = $hr_breakable = $hr_funout = $hr_ignwhite =
$hr_ignkeysubst = $diffcolorHeading = $diffcolorEmpty = $diffcolorRemove =
$diffcolorChange = $diffcolorAdd = $diffcolorDarkChange = $difffontface =
$difffontsize = $inputTextSize = $mime_types = $allow_annotate =
$allow_markup = $use_java_script = $open_extern_window =
$extern_window_width = $extern_window_height = $edit_option_form =
$checkout_magic = $show_subdir_lastmod = $show_log_in_markup = $v =
$navigationHeaderColor = $tableBorderColor = $markupLogColor =
$tabstop = undef;
##### End of configuration variables #####
use Time::Local;
use IPC::Open2;
$verbose = $v;
$checkoutMagic = "~checkout~";
$where = defined($ENV{'PATH_INFO'}) ? $ENV{'PATH_INFO'} : "";
$where =~ tr|/|/|s;
$doCheckout = ($where =~ /^\/$checkoutMagic/);
$where =~ s|^/($checkoutMagic)?||;
$where =~ s|/+$||;
($scriptname = $ENV{'SCRIPT_NAME'}) =~ s|^/?|/|;
$scriptname =~ s|/+$||;
if ($where) {
$scriptwhere = $scriptname . '/' . urlencode($where);
}
else {
$scriptwhere = $scriptname;
}
$scriptwhere =~ s|/+$||;
# in lynx, it it very annoying to have two links
# per file, so disable the link at the icon
# in this case:
$Browser = $ENV{'HTTP_USER_AGENT'};
$nofilelinks = ($Browser =~ m'^Lynx/');
# newer browsers accept gzip content encoding
# and state this in a header
# (netscape did always but didn't state it)
# It has been reported that these
# braindamaged MS-Internet Exploders claim that they
# accept gzip .. but don't in fact and
# display garbage then :-/
# Turn off gzip if running under mod_perl. piping does
# not work as expected inside the server. One can probably
# achieve the same result using Apache::GZIPFilter.
$maycompress =(($ENV{'HTTP_ACCEPT_ENCODING'} =~ m|gzip|
|| $Browser =~ m%^Mozilla/3%)
&& ($Browser !~ m/MSIE/)
&& !defined($ENV{'MOD_PERL'}));
# put here the variables we need in order
# to hold our state - they will be added (with
# their current value) to any link/query string
# you construct
@stickyvars = ('cvsroot','hideattic','sortby','logsort','f','only_with_tag');
if (-f $config) {
do "$config";
$HideModules = "" . join("", @HideModules) . "";
}
else {
&fatal("500 Internal Error",
'Configuration not found. Set the variable <code>$config</code> '
. 'in cvsweb.cgi, or the environment variable '
. '<code>CVSWEB_CONFIG</code>, to your <b>cvsweb.conf</b> '
. 'configuration file first.');
}
undef %input;
if ($query = $ENV{'QUERY_STRING'}) {
foreach (split(/&/, $query)) {
s/%(..)/sprintf("%c", hex($1))/ge; # unquote %-quoted
if (/(\S+)=(.*)/) {
$input{$1} = $2 if ($2 ne "");
}
else {
$input{$_}++;
}
}
}
# For backwards compability, set only_with_tag to only_on_branch if set.
$input{only_with_tag} = $input{only_on_branch}
if (defined($input{only_on_branch}));
foreach (keys %DEFAULTVALUE)
{
# replace not given parameters with the default parameters
if (!defined($input{$_}) || $input{$_} eq "") {
# Empty Checkboxes in forms return -- nothing. So we define a helper
# variable in these forms (copt) which indicates that we just set
# parameters with a checkbox
if (!defined($input{"copt"})) {
# 'copt' isn't defined --> empty input is not the result
# of empty input checkbox --> set default
$input{$_} = $DEFAULTVALUE{$_} if (defined($DEFAULTVALUE{$_}));
}
else {
# 'copt' is defined -> the result of empty input checkbox
# -> set to zero (disable) if default is a boolean (0|1).
$input{$_} = 0
if (defined($DEFAULTVALUE{$_})
&& ($DEFAULTVALUE{$_} eq "0" || $DEFAULTVALUE{$_} eq "1"));
}
}
}
$barequery = "";
foreach (@stickyvars) {
# construct a query string with the sticky non default parameters set
if (defined($input{$_}) && $input{$_} ne "" && $input{$_} ne $DEFAULTVALUE{$_}) {
if ($barequery) {
$barequery = $barequery . "&";
}
my $thisval = urlencode($_) . "=" . urlencode($input{$_});
$barequery .= $thisval;
}
}
# is there any query ?
if ($barequery) {
$query = "?$barequery";
$barequery = "&" . $barequery;
}
else {
$query = "";
}
# get actual parameters
$sortby = $input{"sortby"};
$bydate = 0;
$byrev = 0;
$byauthor = 0;
$bylog = 0;
$byfile = 0;
if ($sortby eq "date") {
$bydate = 1;
}
elsif ($sortby eq "rev") {
$byrev = 1;
}
elsif ($sortby eq "author") {
$byauthor = 1;
}
elsif ($sortby eq "log") {
$bylog = 1;
}
else {
$byfile = 1;
}
$hr_default = $input{'f'} eq 'h';
$logsort = $input{"logsort"};
## Default CVS-Tree
if (!defined($CVSROOT{$cvstreedefault})) {
&fatal("500 Internal Error",
"<code>\$cvstreedefault</code> points to a repository "
. "not defined in <code>%CVSROOT</code> "
. "(edit your configuration file $config)");
}
$cvstree = $cvstreedefault;
$cvsroot = $CVSROOT{"$cvstree"};
# alternate CVS-Tree, configured in cvsweb.conf
if ($input{'cvsroot'}) {
if ($CVSROOT{$input{'cvsroot'}}) {
$cvstree = $input{'cvsroot'};
$cvsroot = $CVSROOT{"$cvstree"};
}
}
# create icons out of description
foreach my $k (keys %ICONS) {
no strict 'refs';
my ($itxt,$ipath,$iwidth,$iheight) = @{$ICONS{$k}};
if ($ipath) {
$ {"${k}icon"} = "<IMG SRC=\"$ipath\" ALT=\"$itxt\" BORDER=\"0\" WIDTH=\"$iwidth\" HEIGHT=\"$iheight\">";
}
else {
$ {"${k}icon"} = $itxt;
}
}
# Do some special configuration for cvstrees
do "$config-$cvstree" if (-f "$config-$cvstree");
$fullname = $cvsroot . '/' . $where;
$mimetype = &getMimeTypeFromSuffix ($fullname);
$defaultTextPlain = ($mimetype eq "text/plain");
$defaultViewable = $allow_markup && viewable($mimetype);
# search for GZIP if compression allowed
# We've to find out if the GZIP-binary exists .. otherwise
# ge get an Internal Server Error if we try to pipe the
# output through the nonexistent gzip ..
# any more elegant ways to prevent this are welcome!
if ($allow_compress && $maycompress) {
foreach (split(/:/, $ENV{PATH})) {
if (-x "$_/gzip") {
$GZIPBIN = "$_/gzip";
last;
}
}
}
if (-d $fullname) {
#
# ensure, that directories always end with (exactly) one '/'
# to allow relative URL's. If they're not, make a redirect.
##
my $pathinfo = defined($ENV{'PATH_INFO'}) ? $ENV{'PATH_INFO'} : "";
if (!($pathinfo =~ m|/$|) || ($pathinfo =~ m |/{2,}$|)) {
redirect ($scriptwhere . '/' . $query);
}
else {
$where .= '/';
$scriptwhere .= '/';
}
}
if (!-d $cvsroot) {
&fatal("500 Internal Error",'$CVSROOT not found!<P>The server on which the CVS tree lives is probably down. Please try again in a few minutes.');
}
#
# See if the module is in our forbidden list.
#
$where =~ m:([^/]*):;
$module = $1;
if ($module && &forbidden_module($module)) {
&fatal("403 Forbidden", "Access to $where forbidden.");
}
##############################
# View a directory
###############################
elsif (-d $fullname) {
my $dh = do {local(*DH);};
opendir($dh, $fullname) || &fatal("404 Not Found","$where: $!");
my @dir = readdir($dh);
closedir($dh);
my @subLevelFiles = findLastModifiedSubdirs(@dir)
if ($show_subdir_lastmod);
getDirLogs($cvsroot,$where,@subLevelFiles);
if ($where eq '/') {
html_header("$defaulttitle");
print $long_intro;
}
else {
html_header("$where");
print $short_instruction;
}
print "<P><a name=\"dirlist\">\n";
# give direct access to dirs
if ($where eq '/') {
chooseMirror();
chooseCVSRoot();
}
else {
print "<p>Current directory: <b>", &clickablePath($where,0), "</b>\n";
print "<P>Current tag: <B>", $input{only_with_tag}, "</b>\n" if
$input{only_with_tag};
}
print "<P><HR NOSHADE>\n";
# Using <MENU> in this manner violates the HTML2.0 spec but
# provides the results that I want in most browsers. Another
# case of layout spooging up HTML.
my $infocols = 0;
if ($dirtable) {
if (defined($tableBorderColor)) {
# Can't this be done by defining the border for the inner table?
print "<table border=0 cellpadding=0 width=\"100%\"><tr><td bgcolor=\"$tableBorderColor\">";
}
print "<table width=\"100%\" border=0 cellspacing=1 cellpadding=$tablepadding>\n";
$infocols++;
print "<tr><th align=left bgcolor=" . (($byfile) ?
$columnHeaderColorSorted :
$columnHeaderColorDefault) . ">";
print "<a href=\"./" . &toggleQuery("sortby","file") .
"#dirlist\">" if (!$byfile);
print "File";
print "</a>" if (!$byfile);
print "</th>";
# do not display the other column-headers, if we do not have any files
# with revision information:
if (scalar(%fileinfo)) {
$infocols++;
print "<th align=left bgcolor=" . (($byrev) ?
$columnHeaderColorSorted :
$columnHeaderColorDefault) . ">";
print "<a href=\"./" . &toggleQuery ("sortby","rev") .
"#dirlist\">" if (!$byrev);
print "Rev.";
print "</a>" if (!$byrev);
print "</th>";
$infocols++;
print "<th align=left bgcolor=" . (($bydate) ?
$columnHeaderColorSorted :
$columnHeaderColorDefault) . ">";
print "<a href=\"./" . &toggleQuery ("sortby","date") .
"#dirlist\">" if (!$bydate);
print "Age";
print "</a>" if (!$bydate);
print "</th>";
if ($show_author) {
$infocols++;
print "<th align=left bgcolor=" . (($byauthor) ?
$columnHeaderColorSorted :
$columnHeaderColorDefault) . ">";
print "<a href=\"./" . &toggleQuery ("sortby","author") .
"#dirlist\">" if (!$byauthor);
print "Author";
print "</a>" if (!$byauthor);
print "</th>";
}
$infocols++;
print "<th align=left bgcolor=" . (($bylog) ?
$columnHeaderColorSorted :
$columnHeaderColorDefault) . ">";
print "<a href=\"./", toggleQuery("sortby","log"), "#dirlist\">" if (!$bylog);
print "Last log entry";
print "</a>" if (!$bylog);
print "</th>";
}
print "</tr>\n";
}
else {
print "<menu>\n";
}
my $dirrow = 0;
my $i;
lookingforattic:
for ($i = 0; $i <= $#dir; $i++) {
if ($dir[$i] eq "Attic") {
last lookingforattic;
}
}
if (!$input{'hideattic'} && ($i <= $#dir) &&
opendir($dh, $fullname . "/Attic")) {
splice(@dir, $i, 1,
grep((s|^|Attic/|,!m|/\.|), readdir($dh)));
closedir($dh);
}
my $hideAtticToggleLink = "<a href=\"./" .
&toggleQuery ("hideattic") .
"#dirlist\">[Hide]</a>" if (!$input{'hideattic'});
# Sort without the Attic/ pathname.
# place directories first
my $attic;
my $url;
my $fileurl;
my $filesexists;
my $filesfound;
foreach (sort { &fileSortCmp } @dir) {
if ($_ eq '.') {
next;
}
# ignore CVS lock and stale NFS files
next if (/^#cvs\.|^,|^\.nfs/);
# Check whether to show the CVSROOT path
next if ($input{'hidecvsroot'} && ($_ eq 'CVSROOT'));
# Check whether the module is in the restricted list
next if ($_ && &forbidden_module($_));
# Ignore non-readable files
next if ($input{'hidenonreadable'} && !(-r "$fullname/$_"));
if (s|^Attic/||) {
$attic = " (in the Attic) " . $hideAtticToggleLink;
}
else {
$attic = "";
}
if ($_ eq '..' || -d "$fullname/$_") {
next if ($_ eq '..' && $where eq '/');
my ($rev,$date,$log,$author,$filename) = @{$fileinfo{$_}}
if (defined($fileinfo{$_}));
print "<tr bgcolor=\"" . @tabcolors[$dirrow%2] . "\"><td>" if ($dirtable);
if ($_ eq '..') {
$url = "../" . $query;
if ($nofilelinks) {
print $backicon;
}
else {
print &link($backicon,$url);
}
print " ", &link("Previous Directory",$url);
}
else {
$url = urlencode($_) . '/' . $query;
print "<A NAME=\"$_\">";
if ($nofilelinks) {
print $diricon;
}
else {
print &link($diricon,$url);
}
print " ", &link($_ . "/", $url), $attic;
if ($_ eq "Attic") {
print " <a href=\"./" .
&toggleQuery ("hideattic") .
"#dirlist\">[Don't hide]</a>";
}
}
# Show last change in dir
if ($filename) {
print "</td><td> </td><td> " if ($dirtable);
if ($date) {
print " <i>" . readableTime(time() - $date,0) . "</i>";
}
if ($show_author) {
print "</td><td> " if ($dirtable);
print $author;
}
print "</td><td> " if ($dirtable);
$filename =~ s%^[^/]+/%%;
print "$filename/$rev";
print "<BR>" if ($dirtable);
if ($log) {
print " <font size=-1>"
. &htmlify(substr($log,0,$shortLogLen));
if (length $log > 80) {
print "...";
}
print "</font>";
}
}
else {
# if there are any files (which require infocols), close the
# row with the appropriate number of columns, so that the
# vertical seperators are visible
if ($dirtable && scalar(%fileinfo)) {
print "</td>";
my($cols) = $infocols;
while ($cols > 1) {
print "<td> </td>";
$cols--;
}
}
}
if ($dirtable) {
print "</td></tr>\n";
}
else {
print "<br>\n";
}
$dirrow++;
}
elsif (s/,v$//) {
$fileurl = ($attic ? "Attic/" : "") . urlencode($_);
$url = $fileurl . $query;
my $rev = '';
my $date = '';
my $log = '';
my $author = '';
$filesexists++;
next if (!defined($fileinfo{$_}));
($rev,$date,$log,$author) = @{$fileinfo{$_}};
$filesfound++;
print "<tr bgcolor=\"" . @tabcolors[$dirrow%2] . "\"><td>" if ($dirtable);
print "<A NAME=\"$_\">";
if ($nofilelinks) {
print $fileicon;
}
else {
print &link($fileicon,$url);
}
print " ", &link($_, $url), $attic;
print "</td><td> " if ($dirtable);
download_link($fileurl,
$rev, $rev,
$defaultViewable ? "text/x-cvsweb-markup" : undef);
print "</td><td> " if ($dirtable);
if ($date) {
print " <i>" . readableTime(time() - $date,0) . "</i>";
}
if ($show_author) {
print "</td><td> " if ($dirtable);
print $author;
}
print "</td><td> " if ($dirtable);
if ($log) {
print " <font size=-1>" . &htmlify(substr($log,0,$shortLogLen));
if (length $log > 80) {
print "...";
}
print "</font>";
}
print "</td>" if ($dirtable);
print (($dirtable) ? "</tr>" : "<br>");
$dirrow++;
}
print "\n";
}
if ($dirtable && defined($tableBorderColor)) {
print "</td></tr></table>";
}
print "". ($dirtable == 1) ? "</table>" : "</menu>" . "\n";
if ($filesexists && !$filesfound) {
print "<P><B>NOTE:</B> There are $filesexists files, but none matches the current tag ($input{only_with_tag})\n";
}
if ($input{only_with_tag} && (!%tags || !$tags{$input{only_with_tag}})) {
%tags = %alltags
}
if (scalar %tags
|| $input{only_with_tag}
|| $edit_option_form
|| defined($input{"options"})) {
print "<hr size=1 NOSHADE>";
}
if (scalar %tags || $input{only_with_tag}) {
print "<FORM METHOD=\"GET\" ACTION=\"./\">\n";
foreach my $var (@stickyvars) {
print "<INPUT TYPE=HIDDEN NAME=\"$var\" VALUE=\"$input{$var}\">\n"
if (defined($input{$var})
&& $input{$var} ne $DEFAULTVALUE{$var}
&& $input{$var} ne ""
&& $var ne "only_with_tag");
}
print "Show only files with tag:\n";
print "<SELECT NAME=only_with_tag";
print " onchange=\"submit()\"" if ($use_java_script);
print ">";
print "<OPTION VALUE=\"\">All tags / default branch\n";
foreach my $tag (reverse sort { lc $a cmp lc $b } keys %tags) {
print "<OPTION",defined($input{only_with_tag}) &&
$input{only_with_tag} eq $tag ? " SELECTED":"",
">$tag\n";
}
print "</SELECT>\n";
print "<INPUT TYPE=SUBMIT VALUE=\"Go\">\n";
print "</FORM>\n";
}
my $formwhere = $scriptwhere;
$formwhere =~ s|Attic/?$|| if ($input{'hideattic'});
if ($edit_option_form || defined($input{"options"})) {
print "<FORM METHOD=\"GET\" ACTION=\"${formwhere}\">\n";
print "<INPUT TYPE=HIDDEN NAME=\"copt\" VALUE=\"1\">\n";
if ($cvstree ne $cvstreedefault) {
print "<INPUT TYPE=HIDDEN NAME=\"cvsroot\" VALUE=\"$cvstree\">\n";
}
print "<center><table cellpadding=0 cellspacing=0>";
print "<tr bgcolor=\"$columnHeaderColorDefault\"><th colspan=2>Preferences</th></tr>";
print "<tr><td>Sort files by <SELECT name=\"sortby\">";
print "<OPTION VALUE=\"\">File";
print "<OPTION",$bydate ? " SELECTED" : ""," VALUE=date>Age";
print "<OPTION",$byauthor ? " SELECTED" : ""," VALUE=author>Author"
if ($show_author);
print "<OPTION",$byrev ? " SELECTED" : ""," VALUE=rev>Revision";
print "<OPTION",$bylog ? " SELECTED" : ""," VALUE=log>Log message";
print "</SELECT></td>";
print "<td>revisions by: \n";
print "<SELECT NAME=logsort>\n";
print "<OPTION VALUE=cvs",$logsort eq "cvs" ? " SELECTED" : "", ">Not sorted";
print "<OPTION VALUE=date",$logsort eq "date" ? " SELECTED" : "", ">Commit date";
print "<OPTION VALUE=rev",$logsort eq "rev" ? " SELECTED" : "", ">Revision";
print "</SELECT></td></tr>";
print "<tr><td>Diff format: ";
printDiffSelect();
print "</td>";
print "<td>Show Attic files: ";
print "<INPUT NAME=hideattic TYPE=CHECKBOX", $input{'hideattic'}?" CHECKED":"",
"></td></tr>\n";
print "<tr><td align=center colspan=2><input type=submit value=\"Change Options\">";
print "</td></tr></table></center></FORM>\n";
}
print &html_footer;
print "</BODY></HTML>\n";
}
###############################
# View Files
###############################
elsif (-f $fullname . ',v') {
if (defined($input{'rev'}) || $doCheckout) {
&doCheckout($fullname, $input{'rev'});
exit;
}
if (defined($input{'annotate'}) && $allow_annotate) {
&doAnnotate($input{'annotate'});
exit;
}
if (defined($input{'r1'}) && defined($input{'r2'})) {
&doDiff($fullname, $input{'r1'}, $input{'tr1'},
$input{'r2'}, $input{'tr2'}, $input{'f'});
exit;
}
print("going to dolog($fullname)\n") if ($verbose);
&doLog($fullname);
##############################
# View Diff
##############################
}
elsif ($fullname =~ s/\.diff$// && -f $fullname . ",v" &&
$input{'r1'} && $input{'r2'}) {
# $where-diff-removal if 'cvs rdiff' is used
# .. but 'cvs rdiff'doesn't support some options
# rcsdiff does (-w and -p), so it is disabled
# $where =~ s/\.diff$//;
# Allow diffs using the ".diff" extension
# so that browsers that default to the URL
# for a save filename don't save diff's as
# e.g. foo.c
&doDiff($fullname, $input{'r1'}, $input{'tr1'},
$input{'r2'}, $input{'tr2'}, $input{'f'});
exit;
}
elsif (($newname = $fullname) =~ s|/([^/]+)$|/Attic/$1| &&
-f $newname . ",v") {
# The file has been removed and is in the Attic.
# Send a redirect pointing to the file in the Attic.
(my $newplace = $scriptwhere) =~ s|/([^/]+)$|/Attic/$1|;
&redirect($newplace);
exit;
}
elsif (0 && (my @files = &safeglob($fullname . ",v"))) {
http_header("text/plain");
print "You matched the following files:\n";
print join("\n", @files);
# Find the tags from each file
# Display a form offering diffs between said tags
}
else {
my $fh = do {local(*FH);};
my ($xtra, $module);
# Assume it's a module name with a potential path following it.
$xtra = $& if (($module = $where) =~ s|/.*||);
# Is there an indexed version of modules?
if (open($fh, "$cvsroot/CVSROOT/modules")) {
while (<$fh>) {
if (/^(\S+)\s+(\S+)/o && $module eq $1
&& -d "${cvsroot}/$2" && $module ne $2) {
&redirect($scriptname . '/' . $2 . $xtra);
}
}
}
&fatal("404 Not Found","$where: no such file or directory");
}
## End MAIN
sub printDiffSelect {
my ($use_java_script) = @_;
$use_java_script = 0 if (!defined($use_java_script));
my ($f) = $input{'f'};
print "<SELECT NAME=\"f\"";
print " onchange=\"submit()\"" if ($use_java_script);
print ">\n";
print "<OPTION VALUE=h",$f eq "h" ? " SELECTED" : "", ">Colored Diff";
print "<OPTION VALUE=H",$f eq "H" ? " SELECTED" : "", ">Long Colored Diff";
print "<OPTION VALUE=u",$f eq "u" ? " SELECTED" : "", ">Unidiff";
print "<OPTION VALUE=c",$f eq "c" ? " SELECTED" : "", ">Context Diff";
print "<OPTION VALUE=s",$f eq "s" ? " SELECTED" : "", ">Side by Side";
print "</SELECT>";
}
sub findLastModifiedSubdirs {
my (@dirs) = @_;
my ($dirname, @files);
foreach $dirname (@dirs) {
next if ($dirname eq ".");
next if ($dirname eq "..");
my ($dir) = "$fullname/$dirname";
next if (!-d $dir);
my ($lastmod) = undef;
my ($lastmodtime) = undef;
my $dh = do {local(*DH);};
opendir($dh,$dir) || next;
my (@filenames) = readdir($dh);
closedir($dh);
foreach my $filename (@filenames) {
$filename = "$dirname/$filename";
my ($file) = "$fullname/$filename";
next if ($filename !~ /,v$/ || !-f $file);
$filename =~ s/,v$//;
my $modtime = -M $file;
if (!defined($lastmod) || $modtime < $lastmodtime) {
$lastmod = $filename;
$lastmodtime = $modtime;
}
}
push(@files, $lastmod) if (defined($lastmod));
}
return @files;
}
sub htmlify {
my($string, $pr) = @_;
# Special Characters; RFC 1866
$string =~ s/&/&/g;
$string =~ s/\"/"/g;
$string =~ s/</</g;
$string =~ s/>/>/g;
# get URL's as link ..
$string =~ s(http|ftp)(://[-a-zA-Z0-9%.~:_/]+)([?&]([-a-zA-Z0-9%.~:_]+)=([-a-zA-Z0-9%.~:_])+)*<A HREF="$1$2$3">$1$2$3</A>;
# get e-mails as link
$string =~ s([-a-zA-Z0-9_.]+@([-a-zA-Z0-9]+\.)+[A-Za-z]{2,4})<A HREF="mailto:$1">$1</A>;
# get #PR as link ..
if ($pr && defined($prcgi)) {
$string =~ s!\b((pr[:#]?\s*#?)|((bin|conf|docs|gnu|i386|kern|misc|ports)\/))(\d+)\b!<A HREF="$prcgi?pr=$5">$&</A>!ig;
}
return $string;
}
sub spacedHtmlText {
my($string, $pr) = @_;
# Cut trailing spaces
s/\s+$//;
# Expand tabs
$string =~ s/\t+/' ' x (length($&) * $tabstop - length($`) % $tabstop)/e
if (defined($tabstop));
# replace <tab> and <space> ( is to protect us from htmlify)
# gzip can make excellent use of this repeating pattern :-)
$string =~ s//%/g; #protect our & substitute
if ($hr_breakable) {
# make every other space 'breakable'
$string =~ s/ / nbsp; nbsp; nbsp; nbsp;/g; # <tab>
$string =~ s/ / nbsp;/g; # 2 * <space>
# leave single space as it is
}
else {
$string =~ s/ /nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;/g;
$string =~ s/ /nbsp;/g;
}
$string = htmlify($string);
# unescape
$string =~ s/([^%])/&$1/g;
$string =~ s/%//g;
return $string;
}
sub link {
my($name, $where) = @_;
$where =~ s| |%20|;
return "<A HREF=\"$where\">$name</A>\n";
}
sub revcmp {
my($rev1, $rev2) = @_;
my(@r1) = split(/\./, $rev1);
my(@r2) = split(/\./, $rev2);
my($a,$b);
while (($a = shift(@r1)) && ($b = shift(@r2))) {
if ($a != $b) {
return $a <=> $b;
}
}
if (@r1) { return 1; }
if (@r2) { return -1; }
return 0;
}
sub fatal {
my($errcode, $errmsg) = @_;
if (defined($ENV{'MOD_PERL'})) {
Apache->request->status((split(/ /, $errcode))[0]);
}
else {
print "Status: $errcode\n";
}
html_header("Error");
print "Error: $errmsg\n";
print &html_footer;
exit(1);
}
sub redirect {
my($url) = @_;
if (defined($ENV{'MOD_PERL'})) {
Apache->request->status(301);
Apache->request->header_out(Location => $url);
}
else {
print "Status: 301 Moved\n";
print "Location: $url\n";
}
html_header("Moved");
print "This document is located <A HREF=$url>here</A>.\n";
print &html_footer;
exit(1);
}
sub safeglob {
my ($filename) = @_;
my ($dirname);
my (@results);
my $dh = do {local(*DH);};
($dirname = $filename) =~ s|/[^/]+$||;
$filename =~ s|.*/||;
if (opendir($dh, $dirname)) {
my $glob = $filename;
my $t;
# transform filename from glob to regex. Deal with:
# [, {, ?, * as glob chars
# make sure to escape all other regex chars
$glob =~ s/([\.\(\)\|\+])/\\$1/g;
$glob =~ s/\*/.*/g;
$glob =~ s/\?/./g;
$glob =~ s/{([^}]+)}/($t = $1) =~ s-,-|-g; "($t)"/eg;
foreach (readdir($dh)) {
if (/^${glob}$/) {
push(@results, $dirname . "/" .$_);
}
}
}
@results;
}
sub getMimeTypeFromSuffix {
my ($fullname) = @_;
my ($mimetype, $suffix);
my $fh = do {local(*FH);};
($suffix = $fullname) =~ s/^.*\.([^.]*)$/$1/;
$mimetype = $MTYPES{$suffix};
$mimetype = $MTYPES{'*'} if (!$mimetype);
if (!$mimetype && -f $mime_types) {
# okey, this is something special - search the
# mime.types database
open ($fh, "<$mime_types");
while (<$fh>) {
if ($_ =~ /^\s*(\S+\/\S+).*\b$suffix\b/) {
$mimetype = $1;
last;
}
}
close ($fh);
}
# okey, didn't find anything useful ..
if (!($mimetype =~ /\S\/\S/)) {
$mimetype = "text/plain";
}
return $mimetype;
}
###############################
# show Annotation
###############################
sub doAnnotate ($$) {
my ($rev) = @_;
my ($pid);
my ($pathname, $filename);
my $reader = do {local(*FH);};
my $writer = do {local(*FH);};
# make sure the revisions a wellformed, for security
# reasons ..
if (!($rev =~ /^[\d\.]+$/)) {
&fatal("404 Not Found",
"Malformed query \"$ENV{'QUERY_STRING'}\"");
}
($pathname = $where) =~ s/(Attic\/)?[^\/]*$//;
($filename = $where) =~ s/^.*\///;
http_header();
navigateHeader ($scriptwhere,$pathname,$filename,$rev, "annotate");
print "<h3 align=center>Annotation of $pathname$filename, Revision $rev</h3>\n";
# this seems to be necessary
$| = 1; $| = 0; # Flush
# this annotate version is based on the
# cvs annotate-demo Perl script by Cyclic Software
# It was written by Cyclic Software, http://www.cyclic.com/, and is in
# the public domain.
# we could abandon the use of rlog, rcsdiff and co using
# the cvsserver in a similiar way one day (..after rewrite)
$pid = open2($reader, $writer, "cvs server") || fatal ("500 Internal Error",
"Fatal Error - unable to open cvs for annotation");
# OK, first send the request to the server. A simplified example is:
# Root /home/kingdon/zwork/cvsroot
# Argument foo/xx
# Directory foo
# /home/kingdon/zwork/cvsroot/foo
# Directory .
# /home/kingdon/zwork/cvsroot
# annotate
# although as you can see there are a few more details.
print $writer "Root $cvsroot\n";
print $writer "Valid-responses ok error Valid-requests Checked-in Updated Merged Removed M E\n";
# Don't worry about sending valid-requests, the server just needs to
# support "annotate" and if it doesn't, there isn't anything to be done.
print $writer "UseUnchanged\n";
print $writer "Argument -r\n";
print $writer "Argument $rev\n";
print $writer "Argument $where\n";
# The protocol requires us to fully fake a working directory (at
# least to the point of including the directories down to the one
# containing the file in question).
# So if $where is "dir/sdir/file", then @dirs will be ("dir","sdir","file")
my @dirs = split (/\//, $where);
my $path = "";
foreach (@dirs) {
if ($path eq "") {
# In our example, $_ is "dir".
$path = $_;
}
else {
print $writer "Directory " . $path . "\n";
print $writer "$cvsroot/" . $path ."\n";
# In our example, $_ is "sdir" and $path becomes "dir/sdir"
# And the next time, "file" and "dir/sdir/file" (which then gets
# ignored, because we don't need to send Directory for the file).
$path = $path . "/" . $_;
}
}
# And the last "Directory" before "annotate" is the top level.
print $writer "Directory .\n";
print $writer "$cvsroot\n";
print $writer "annotate\n";
# OK, we've sent our command to the server. Thing to do is to
# close the writer side and get all the responses. If "cvs server"
# were nicer about buffering, then we could just leave it open, I think.
close ($writer) || die "cannot close: $!";
# Ready to get the responses from the server.
# For example:
# E Annotations for foo/xx
# E ***************
# M 1.3 (kingdon 06-Sep-97): hello
# ok
my ($lineNr) = 0;
my ($oldLrev, $oldLusr) = ("", "");
my ($revprint, $usrprint);
if ($annTable) {
print "<table border=0 cellspacing=0 cellpadding=0>\n";
}
else {
print "<pre>";
}
while (<$reader>) {
my @words = split;
# Adding one is for the (single) space which follows $words[0].
my $rest = substr ($_, length ($words[0]) + 1);
if ($words[0] eq "E") {
next;
}
elsif ($words[0] eq "M") {
$lineNr++;
my $lrev = substr ($_, 2, 13);
my $lusr = substr ($_, 16, 9);
my $line = substr ($_, 36);
# we should parse the date here ..
if ($lrev eq $oldLrev) {
$revprint = " ";
}
else {
$revprint = $lrev; $oldLusr = "";
}
if ($lusr eq $oldLusr) {
$usrprint = " ";
}
else {
$usrprint = $lusr;
}
$oldLrev = $lrev;
$oldLusr = $lusr;
# is there a less timeconsuming way to strip spaces ?
($lrev = $lrev) =~ s/\s+//g;
my $isCurrentRev = ("$rev" eq "$lrev");
print "<b>" if ($isCurrentRev);
printf ("%8s%s%8s %4d:", $revprint, ($isCurrentRev ? "|" : " "), $usrprint, $lineNr);
print spacedHtmlText($line);
print "</b>" if ($isCurrentRev);
}
elsif ($words[0] eq "ok") {
# We could complain about any text received after this, like the
# CVS command line client. But for simplicity, we don't.
}
elsif ($words[0] eq "error") {
fatal ("500 Internal Error", "Error occured during annotate: <b>$_</b>");
}
}
if ($annTable) {
print "</table>";
}
else {
print "</pre>";
}
close ($reader) || warn "cannot close: $!";
wait;
}
###############################
# make Checkout
###############################
sub doCheckout {
my ($fullname, $rev) = @_;
my ($mimetype,$revopt);
my $fh = do {local(*FH);};
# make sure the revisions a wellformed, for security
# reasons ..
if (defined($rev) && !($rev =~ /^[\d\.]+$/)) {
&fatal("404 Not Found",
"Malformed query \"$ENV{'QUERY_STRING'}\"");
}
# get mimetype
if (defined($input{"content-type"}) && ($input{"content-type"} =~ /\S\/\S/)) {
$mimetype = $input{"content-type"}
}
else {
$mimetype = &getMimeTypeFromSuffix($fullname);
}
if (defined($rev)) {
$revopt = "-r$rev";
}
else {
$revopt = "";
}
### just for the record:
### 'cvs co' seems to have a bug regarding single checkout of
### directories/files having spaces in it;
### this is an issue that should be resolved on cvs's side
#
# Safely fork a child process to read from.
if (! open($fh, "-|")) { # child
open(STDERR, ">&STDOUT"); # Redirect stderr to stdout
exec("cvs", "-d$cvsroot", "co", "-p", $revopt, $where);
}
#===================================================================
#Checking out squid/src/ftp.c
#RCS: /usr/src/CVS/squid/src/ftp.c,v
#VERS: 1.1.1.28.6.2
#***************
# Parse CVS header
my ($revision, $filename, $cvsheader);
while(<$fh>) {
last if (/^\*\*\*\*/);
$revision = $1 if (/^VERS: (.*)$/);
$filename = $1 if (/^Checking out (.*)$/);
$cvsheader .= $_;
}
if ($filename ne $where) {
&fatal("500 Internal Error",
"Unexpected output from cvs co: $cvsheader"
. "<p><b>Check whether the directory $cvsroot/CVSROOT exists "
. "and the script has write-access to the CVSROOT/history "
. "file if it exists."
. "<br>The script needs to place lock files in the "
. "directory the file is in as well.</b>");
}
$| = 1;
if ($mimetype eq "text/x-cvsweb-markup") {
&cvswebMarkup($fh,$fullname,$revision);
}
else {
http_header($mimetype);
print <$fh>;
}
close($fh);
}
sub cvswebMarkup {
my ($filehandle,$fullname,$revision) = @_;
my ($pathname, $filename);
($pathname = $where) =~ s/(Attic\/)?[^\/]*$//;
($filename = $where) =~ s/^.*\///;
my ($fileurl) = urlencode($filename);
http_header();
navigateHeader ($scriptwhere, $pathname, $filename, $revision, "view");
print "<HR noshade>";
print "<table width=\"100%\"><tr><td bgcolor=\"$markupLogColor\">";
print "File: ", &clickablePath($where, 1), "</b>";
print " ";
&download_link(urlencode($fileurl), $revision, "(download)");
if (!$defaultTextPlain) {
print " ";
&download_link(urlencode($fileurl), $revision, "(as text)",
"text/plain");
}
print "<BR>\n";
if ($show_log_in_markup) {
readLog($fullname); #,$revision);
printLog($revision,0);
}
else {
print "Version: <B>$revision</B><BR>\n";
print "Tag: <B>", $input{only_with_tag}, "</b><br>\n" if
$input{only_with_tag};
}
print "</td></tr></table>";
my @content = <$filehandle>;
my $url = download_url($fileurl, $revision, $mimetype);
print "<HR noshade>";
if ($mimetype =~ /^image/) {
print "<IMG SRC=\"$url$barequery\"><BR>";
}
else {
print "<PRE>";
foreach (@content) {
print htmlify($_);
}
print "</PRE>";
}
}
sub viewable($) {
my ($mimetype) = @_;
$mimetype =~ m%^text/% ||
$mimetype =~ m%^image/% ||
0;
}
###############################
# Show Colored Diff
###############################
sub doDiff {
my($fullname, $r1, $tr1, $r2, $tr2, $f) = @_;
my $fh = do {local(*FH);};
my ($rev1, $rev2, $sym1, $sym2, @difftype, $diffname, $f1, $f2);
if ($r1 =~ /([^:]+)(:(.+))?/) {
$rev1 = $1;
$sym1 = $3;
}
if ($r1 eq 'text') {
$rev1 = $tr1;
$sym1 = "";
}
if ($r2 =~ /([^:]+)(:(.+))?/) {
$rev2 = $1;
$sym2 = $3;
}
if ($r2 eq 'text') {
$rev2 = $tr2;
$sym2 = "";
}
# make sure the revisions a wellformed, for security
# reasons ..
if (!($rev1 =~ /^[\d\.]+$/) || !($rev2 =~ /^[\d\.]+$/)) {
&fatal("404 Not Found",
"Malformed query \"$ENV{'QUERY_STRING'}\"");
}
#
# rev1 and rev2 are now both numeric revisions.
# Thus we do a DWIM here and swap them if rev1 is after rev2.
# XXX should we warn about the fact that we do this?
if (&revcmp($rev1,$rev2) > 0) {
my ($tmp1, $tmp2) = ($rev1, $sym1);
($rev1, $sym1) = ($rev2, $sym2);
($rev2, $sym2) = ($tmp1, $tmp2);
}
my $human_readable = 0;
if ($f eq 'c') {
@difftype = qw{-c};
$diffname = "Context diff";
}
elsif ($f eq 's') {
@difftype = qw{--side-by-side --width=164};
$diffname = "Side by Side";
}
elsif ($f eq 'H') {
$human_readable = 1;
@difftype = qw{--unified=15};
$diffname = "Long Human readable";
}
elsif ($f eq 'h') {
@difftype =qw{-u};
$human_readable = 1;
$diffname = "Human readable";
}
elsif ($f eq 'u') {
@difftype = qw{-u};
$diffname = "Unidiff";
}
else {
fatal ("400 Bad arguments", "Diff format $f not understood");
}
# apply special options
if ($human_readable) {
if ($hr_funout) {
push @difftype, '-p';
}
if ($hr_ignwhite) {
push @difftype, '-w';
}
if ($hr_ignkeysubst) {
push @difftype, '-kk';
}
}
if (! open($fh, "-|")) { # child
open(STDERR, ">&STDOUT"); # Redirect stderr to stdout
exec("rcsdiff",@difftype,"-r$rev1","-r$rev2",$fullname);
}
if ($human_readable) {
http_header();
&human_readable_diff($fh, $rev2);
exit;
}
else {
http_header("text/plain");
}
#
#===================================================================
#RCS file: /home/ncvs/src/sys/netinet/tcp_output.c,v
#retrieving revision 1.16
#retrieving revision 1.17
#diff -c -r1.16 -r1.17
#*** /home/ncvs/src/sys/netinet/tcp_output.c 1995/11/03 22:08:08 1.16
#--- /home/ncvs/src/sys/netinet/tcp_output.c 1995/12/05 17:46:35 1.17
#
# Ideas:
# - nuke the stderr output if it's what we expect it to be
# - Add "no differences found" if the diff command supplied no output.
#
#*** src/sys/netinet/tcp_output.c 1995/11/03 22:08:08 1.16
#--- src/sys/netinet/tcp_output.c 1995/12/05 17:46:35 1.17 RELENG_2_1_0
# (bogus example, but...)
#
if (grep { $_ eq '-u'} @difftype) {
$f1 = '---';
$f2 = '\+\+\+';
}
else {
$f1 = '\*\*\*';
$f2 = '---';
}
while (<$fh>) {
if (m|^$f1 $cvsroot|o) {
s|$cvsroot/||o;
if ($sym1) {
chop;
$_ .= " " . $sym1 . "\n";
}
}
elsif (m|^$f2 $cvsroot|o) {
s|$cvsroot/||o;
if ($sym2) {
chop;
$_ .= " " . $sym2 . "\n";
}
}
print $_;
}
close($fh);
}
###############################
# Show Logs ..
###############################
sub getDirLogs {
my ($cvsroot,$dirname,@otherFiles) = @_;
my ($state,$otherFiles,$tag, $file, $date, $branchpoint, $branch, $log);
my ($rev, $revision, $revwanted, $filename, $head, $author);
$tag = $input{only_with_tag};
my ($DirName) = "$cvsroot/$where";
my (@files, @filetags);
my $fh = do {local(*FH);};
push(@files, &safeglob("$DirName/*,v"));
push(@files, &safeglob("$DirName/Attic/*,v")) if (!$input{'hideattic'});
foreach $file (@otherFiles) {
push(@files, "$DirName/$file");
}
# just execute rlog if there are any files
if ($#files < 0) {
return;
}
if ($tag) {
#can't use -r<tag> as - is allowed in tagnames, but misinterpreated by rlog..
if (! open($fh, "-|")) {
close(STDERR); # rlog may complain; ignore.
exec("rlog",@files);
}
}
else {
my $kidpid = open($fh, "-|");
if (! $kidpid) {
close(STDERR); # rlog may complain; ignore.
exec("rlog","-r",@files);
}
}
$state = "start";
while (<$fh>) {
if ($state eq "start") {
#Next file. Initialize file variables
$rev = undef;
$revwanted = undef;
$branch = undef;
$branchpoint = undef;
$filename = undef;
$log = undef;
$revision = undef;
$branch = undef;
%symrev = ();
@filetags = ();
#jump to head state
$state = "head";
}
print "$state:$_" if ($verbose);
again:
if ($state eq "head") {
#$rcsfile = $1 if (/^RCS file: (.+)$/); #not used (yet)
$filename = $1 if (/^Working file: (.+)$/);
$head = $1 if (/^head: (.+)$/);
$branch = $1 if (/^branch: (.+)$/);
}
if ($state eq "head" && /^symbolic names/) {
$state = "tags";
($branch = $head) =~ s/\.\d+$// if (!defined($branch));
$branch =~ s/(\.?)(\d+)$/${1}0.$2/;
$symrev{MAIN} = $branch;
$symrev{HEAD} = $branch;
$alltags{MAIN} = 1;
$alltags{HEAD} = 1;
push (@filetags, "MAIN", "HEAD");
next;
}
if ($state eq "tags" &&
/^\s+(.+):\s+([\d\.]+)\s+$/) {
push (@filetags, $1);
$symrev{$1} = $2;
$alltags{$1} = 1;
next;
}
if ($state eq "tags" && /^\S/) {
if (defined($tag) && (defined($symrev{$tag}) || $tag eq "HEAD")) {
$revwanted = $tag eq "HEAD" ? $symrev{"MAIN"} : $symrev{$tag};
($branch = $revwanted) =~ s/\b0\.//;
($branchpoint = $branch) =~ s/\.?\d+$//;
$revwanted = undef if ($revwanted ne $branch);
}
elsif (defined($tag) && $tag ne "HEAD") {
print "Tag not found, skip this file" if ($verbose);
$state = "skip";
next;
}
foreach my $tagfound (@filetags) {
$tags{$tagfound} = 1;
}
$state = "head";
goto again;
}
if ($state eq "head" && /^----------------------------$/) {
$state = "log";
$rev = undef;
$date = undef;
$log = "";
# Try to reconstruct the relative filename if RCS spits out a full path
$filename =~ s%^$DirName/%%;
next;
}
if ($state eq "log") {
if (/^----------------------------$/
|| /^=============================/) {
# End of a log entry.
my $revbranch;
($revbranch = $rev) =~ s/\.\d+$//;
print "$filename $rev Wanted: $revwanted "
. "Revbranch: $revbranch Branch: $branch "
. "Branchpoint: $branchpoint\n" if ($verbose);
if (!defined($revwanted) && defined($branch)
&& $branch eq $revbranch || !defined($tag)) {
print "File revision $rev found for branch $branch\n"
if ($verbose);
$revwanted = $rev;
}
if (defined($revwanted) ? $rev eq $revwanted :
defined($branchpoint) ? $rev eq $branchpoint :
0 && ($rev eq $head)) { # Don't think head is needed here..
print "File info $rev found for $filename\n" if ($verbose);
my @finfo = ($rev,$date,$log,$author,$filename);
my ($name);
($name = $filename) =~ s%/.*%%;
$fileinfo{$name} = [ @finfo ];
$state = "done" if ($rev eq $revwanted);
}
$rev = undef;
$date = undef;
$log = "";
}
elsif (!defined($date) && m|^date:\s+(\d+)/(\d+)/(\d+)\s+(\d+):(\d+):(\d+);|) {
my $yr = $1;
# damn 2-digit year routines :-)
if ($yr > 100) {
$yr -= 1900;
}
$date = &Time::Local::timegm($6,$5,$4,$3,$2 - 1,$yr);
($author) = /author: ([^;]+)/;
$state = "log";
$log = '';
next;
}
elsif (!defined($rev) && m/^revision (.*)$/) {
$rev = $1;
next;
}
else {
$log = $log . $_;
}
}
if (/^===============/) {
$state = "start";
next;
}
}
if ($. == 0) {
fatal("500 Internal Error",
"Failed to spawn GNU rlog on <em>'".join(", ", @files)."'</em><p>did you set the <b>\$ENV{PATH}</b> in your configuration file correctly ?");
}
close($fh);
}
sub readLog {
my($fullname,$revision) = @_;
my ($symnames, $head, $rev, $br, $brp, $branch, $branchrev);
my $fh = do {local(*FH);};
if (defined($revision)) {
$revision = "-r$revision";
}
else {
$revision = "";
}
undef %symrev;
undef %revsym;
undef @allrevisions;
undef %date;
undef %author;
undef %state;
undef %difflines;
undef %log;
print("Going to rlog '$fullname'\n") if ($verbose);
if (! open($fh, "-|")) { # child
if ($revision ne '') {
exec("rlog",$revision,$fullname);
}
else {
exec("rlog",$fullname);
}
}
while (<$fh>) {
print if ($verbose);
if ($symnames) {
if (/^\s+([^:]+):\s+([\d\.]+)/) {
$symrev{$1} = $2;
}
else {
$symnames = 0;
}
}
elsif (/^head:\s+([\d\.]+)/) {
$head = $1;
}
elsif (/^branch:\s+([\d\.]+)/) {
$curbranch = $1;
}
elsif (/^symbolic names/) {
$symnames = 1;
}
elsif (/^-----/) {
last;
}
}
($curbranch = $head) =~ s/\.\d+$// if (!defined($curbranch));
# each log entry is of the form:
# ----------------------------
# revision 3.7.1.1
# date: 1995/11/29 22:15:52; author: fenner; state: Exp; lines: +5 -3
# log info
# ----------------------------
logentry:
while (!/^=========/) {
$_ = <$fh>;
last logentry if (!defined($_)); # EOF
print "R:", $_ if ($verbose);
if (/^revision ([\d\.]+)/) {
$rev = $1;
unshift(@allrevisions,$rev);
}
elsif (/^========/ || /^----------------------------$/) {
next logentry;
}
else {
# The rlog output is syntactically ambiguous. We must
# have guessed wrong about where the end of the last log
# message was.
# Since this is likely to happen when people put rlog output
# in their commit messages, don't even bother keeping
# these lines since we don't know what revision they go with
# any more.
next logentry;
# &fatal("500 Internal Error","Error parsing RCS output: $_");
}
$_ = <$fh>;
print "D:", $_ if ($verbose);
if (m|^date:\s+(\d+)/(\d+)/(\d+)\s+(\d+):(\d+):(\d+);\s+author:\s+(\S+);\s+state:\s+(\S+);\s+(lines:\s+([0-9\s+-]+))?|) {
my $yr = $1;
# damn 2-digit year routines :-)
if ($yr > 100) {
$yr -= 1900;
}
$date{$rev} = &Time::Local::timegm($6,$5,$4,$3,$2 - 1,$yr);
$author{$rev} = $7;
$state{$rev} = $8;
$difflines{$rev} = $10;
}
else {
&fatal("500 Internal Error", "Error parsing RCS output: $_");
}
line:
while (<$fh>) {
print "L:", $_ if ($verbose);
next line if (/^branches:\s/);
last line if (/^----------------------------$/ || /^=========/);
$log{$rev} .= $_;
}
print "E:", $_ if ($verbose);
}
close($fh);
print "Done reading RCS file\n" if ($verbose);
@revorder = reverse sort {revcmp($a,$b)} @allrevisions;
print "Done sorting revisions",join(" ",@revorder),"\n" if ($verbose);
#
# HEAD is an artificial tag which is simply the highest tag number on the main
# branch, unless there is a branch tag in the RCS file in which case it's the
# highest revision on that branch. Find it by looking through @revorder; it
# is the first commit listed on the appropriate branch.
# This is not neccesary the same revision as marked as head in the RCS file.
my $headrev = $curbranch || "1";
($symrev{"MAIN"} = $headrev) =~ s/(\.?)(\d+)$/${1}0.$2/;
revision:
foreach $rev (@revorder) {
if ($rev =~ /^(\S*)\.\d+$/ && $headrev eq $1) {
$symrev{"HEAD"} = $rev;
last revision;
}
}
($symrev{"HEAD"} = $headrev) =~ s/\.\d+$//
if (!defined($symrev{"HEAD"}));
print "Done finding HEAD\n" if ($verbose);
#
# Now that we know all of the revision numbers, we can associate
# absolute revision numbers with all of the symbolic names, and
# pass them to the form so that the same association doesn't have
# to be built then.
#
undef @branchnames;
undef %branchpoint;
undef $sel;
foreach (reverse sort keys %symrev) {
$rev = $symrev{$_};
if ($rev =~ /^((.*)\.)?\b0\.(\d+)$/) {
push(@branchnames, $_);
#
# A revision number of A.B.0.D really translates into
# "the highest current revision on branch A.B.D".
#
# If there is no branch A.B.D, then it translates into
# the head A.B .
#
# This reasoning also applies to the main branch A.B,
# with the branch number 0.A, with the exception that
# it has no head to translate to if there is nothing on
# the branch, but I guess this can never happen?
# (the code below gracefully forgets about the branch
# if it should happen)
#
$head = defined($2) ? $2 : "";
$branch = $3;
$branchrev = $head . ($head ne "" ? "." : "") . $branch;
my $regex;
($regex = $branchrev) =~ s/\./\\./g;
$rev = $head;
revision:
foreach my $r (@revorder) {
if ($r =~ /^${regex}\b/) {
$rev = $branchrev;
last revision;
}
}
next if ($rev eq "");
if ($rev ne $head && $head ne "") {
$branchpoint{$head} .= ", " if ($branchpoint{$head});
$branchpoint{$head} .= $_;
}
}
$revsym{$rev} .= ", " if ($revsym{$rev});
$revsym{$rev} .= $_;
$sel .= "<OPTION VALUE=\"${rev}:${_}\">$_\n";
}
print "Done associating revisions with branches\n" if ($verbose);
my ($onlyonbranch, $onlybranchpoint);
if ($onlyonbranch = $input{'only_with_tag'}) {
$onlyonbranch = $symrev{$onlyonbranch};
if ($onlyonbranch =~ s/\b0\.//) {
($onlybranchpoint = $onlyonbranch) =~ s/\.\d+$//;
}
else {
$onlybranchpoint = $onlyonbranch;
}
if (!defined($onlyonbranch) || $onlybranchpoint eq "") {
fatal("404 Tag not found","Tag $input{'only_with_tag'} not defined");
}
}
undef @revisions;
foreach (@allrevisions) {
($br = $_) =~ s/\.\d+$//;
($brp = $br) =~ s/\.\d+$//;
next if ($onlyonbranch && $br ne $onlyonbranch &&
$_ ne $onlybranchpoint);
unshift(@revisions,$_);
}
if ($logsort eq "date") {
# Sort the revisions in commit order an secondary sort on revision
# (secondary sort needed for imported sources, or the first main
# revision gets before the same revision on the 1.1.1 branch)
@revdisplayorder = sort {$date{$b} <=> $date{$a} || -revcmp($a, $b)} @revisions;
}
elsif ($logsort eq "rev") {
# Sort the revisions in revision order, highest first
@revdisplayorder = reverse sort {revcmp($a,$b)} @revisions;
}
else {
# No sorting. Present in the same order as rlog / cvs log
@revdisplayorder = @revisions;
}
}
sub printLog($;$) {
my ($link, $br, $brp);
($_,$link) = @_;
($br = $_) =~ s/\.\d+$//;
($brp = $br) =~ s/\.?\d+$//;
my ($isDead, $prev);
$link = 1 if (!defined($link));
$isDead = ($state{$_} eq "dead");
if ($link && !$isDead) {
my ($filename);
($filename = $where) =~ s/^.*\///;
my ($fileurl) = urlencode($filename);
print "<a NAME=\"rev$_\"></a>";
if (defined($revsym{$_})) {
foreach my $sym (split(", ", $revsym{$_})) {
print "<a NAME=\"$sym\"></a>";
}
}
if (defined($revsym{$br}) && $revsym{$br} && !defined($nameprinted{$br})) {
foreach my $sym (split(", ", $revsym{$br})) {
print "<a NAME=\"$sym\"></a>";
}
$nameprinted{$br} = 1;
}
print "\n Revision ";
&download_link($fileurl, $_, $_,
$defaultViewable ? "text/x-cvsweb-markup" : undef);
if ($defaultViewable) {
print " / ";
&download_link($fileurl, $_, "(download)", $mimetype);
}
if (not $defaultTextPlain) {
print " / ";
&download_link($fileurl, $_, "(as text)",
"text/plain");
}
if (!$defaultViewable) {
print " / ";
&download_link($fileurl, $_, "(view)", "text/x-cvsweb-markup");
}
if ($allow_annotate) {
print " - <a href=\"" . $scriptname . "/" . urlencode($where) . "?annotate=$_$barequery\">";
print "annotate</a>";
}
# Plus a select link if enabled, and this version isn't selected
if ($allow_version_select) {
if ((!defined($input{"r1"}) || $input{"r1"} ne $_)) {
print " - <A HREF=\"${scriptwhere}?r1=$_$barequery" .
"\">[select for diffs]</A>\n";
}
else {
print " - <b>[selected]</b>";
}
}
}
else {
print "Revision <B>$_</B>";
}
if (/^1\.1\.1\.\d+$/) {
print " <i>(vendor branch)</i>";
}
print ", <i>" . scalar gmtime($date{$_}) . " UTC</i> (";
print readableTime(time() - $date{$_},1) . " ago)";
print " by ";
print "<i>" . $author{$_} . "</i>\n";
print "<BR>Branch: <b>",$link?link_tags($revsym{$br}):$revsym{$br},"</b>\n"
if ($revsym{$br});
print "<BR>CVS Tags: <b>",$link?link_tags($revsym{$_}):$revsym{$_},"</b>"
if ($revsym{$_});
print "<BR>Branch point for: <b>",$link?link_tags($branchpoint{$_}):$branchpoint{$_},"</b>\n"
if ($branchpoint{$_});
# Find the previous revision
my @prevrev = split(/\./, $_);
do {
if (--$prevrev[$#prevrev] <= 0) {
# If it was X.Y.Z.1, just make it X.Y
pop(@prevrev);
pop(@prevrev);
}
$prev = join(".", @prevrev);
} until (defined($date{$prev}) || $prev eq "");
if ($prev ne "") {
if ($difflines{$_}) {
print "<BR>Changes since <b>$prev: $difflines{$_} lines</b>";
}
}
if ($isDead) {
print "<BR><B><I>FILE REMOVED</I></B>\n";
}
elsif ($link) {
my %diffrev = ();
$diffrev{$_} = 1;
$diffrev{""} = 1;
print "<BR>Diff";
#
# Offer diff to previous revision
if ($prev) {
$diffrev{$prev} = 1;
print " to previous <A HREF=\"${scriptwhere}.diff?r1=$prev";
print "&r2=$_" . $barequery . "\">$prev</A>\n";
if (!$hr_default) { # offer a human readable version if not default
print "(<A HREF=\"${scriptwhere}.diff?r1=$prev";
print "&r2=$_" . $barequery . "&f=h\">colored</A>)\n";
}
}
#
# Plus, if it's on a branch, and it's not a vendor branch,
# offer a diff with the branch point.
if ($revsym{$brp} && !/^1\.1\.1\.\d+$/ && !defined($diffrev{$brp})) {
print " to branchpoint <A HREF=\"${scriptwhere}.diff?r1=$brp";
print "&r2=$_" . $barequery . "\">$brp</A>\n";
if (!$hr_default) { # offer a human readable version if not default
print "(<A HREF=\"${scriptwhere}.diff?r1=$brp";
print "&r2=$_" . $barequery . "&f=h\">colored</A>)\n";
}
}
#
# Plus, if it's on a branch, and it's not a vendor branch,
# offer to diff with the next revision of the higher branch.
# (e.g. change gets committed and then brought
# over to -stable)
if (/^\d+\.\d+\.\d+/ && !/^1\.1\.1\.\d+$/) {
my ($i,$nextmain);
for ($i = 0; $i < $#revorder && $revorder[$i] ne $_; $i++){}
my (@tmp2) = split(/\./, $_);
for ($nextmain = ""; $i > 0; $i--) {
my ($next) = $revorder[$i-1];
my (@tmp1) = split(/\./, $next);
if ($#tmp1 < $#tmp2) {
$nextmain = $next;
last;
}
# Only the highest version on a branch should have
# a diff for the "next main".
last if (join(".",@tmp1[0..$#tmp1-1])
eq join(".",@tmp2[0..$#tmp1-1]));
}
if (!defined($diffrev{$nextmain})) {
$diffrev{$nextmain} = 1;
print " next main <A HREF=\"${scriptwhere}.diff?r1=$nextmain";
print "&r2=$_" . $barequery .
"\">$nextmain</A>\n";
if (!$hr_default) { # offer a human readable version if not default
print "(<A HREF=\"${scriptwhere}.diff?r1=$nextmain";
print "&r2=$_" . $barequery .
"&f=h\">colored</A>)\n";
}
}
}
# Plus if user has selected only r1, then present a link
# to make a diff to that revision
if (defined($input{"r1"}) && !defined($diffrev{$input{"r1"}})) {
$diffrev{$input{"r1"}} = 1;
print " to selected <A HREF=\"${scriptwhere}.diff?"
. "r1=$input{'r1'}&r2=$_" . $barequery
. "\">$input{'r1'}</A>\n";
if (!$hr_default) { # offer a human readable version if not default
print "(<A HREF=\"${scriptwhere}.diff?r1=$input{'r1'}";
print "&r2=$_" . $barequery .
"&f=h\">colored</A>)\n";
}
}
}
print "<PRE>\n";
print &htmlify($log{$_}, 1);
print "</PRE>\n";
}
sub doLog {
my($fullname) = @_;
my ($diffrev, $upwhere, $filename, $backurl);
readLog($fullname);
html_header("CVS log for $where");
($upwhere = $where) =~ s|(Attic/)?[^/]+$||;
($filename = $where) =~ s|^.*/||;
$backurl = $scriptname . "/" . urlencode($upwhere) . $query;
print &link($backicon, "$backurl#$filename"),
" <b>Up to ", &clickablePath($upwhere, 1), "</b><p>\n";
print "<A HREF=\"#diff\">Request diff between arbitrary revisions</A>\n";
print "<HR NOSHADE>\n";
if ($curbranch) {
print "Default branch: ";
print ($revsym{$curbranch} || $curbranch);
}
else {
print "No default branch";
}
print "<BR>\n";
if ($input{only_with_tag}) {
print "Current tag: $input{only_with_tag}<BR>\n";
}
undef %nameprinted;
for (my $i = 0; $i <= $#revdisplayorder; $i++) {
print "<HR size=1 NOSHADE>";
printLog($revdisplayorder[$i]);
}
print "<A NAME=diff>\n";
print "<HR NOSHADE>";
print "This form allows you to request diff's between any two\n";
print "revisions of a file. You may select a symbolic revision\n";
print "name using the selection box or you may type in a numeric\n";
print "name using the type-in text box.\n";
print "</A><P>\n";
print "<FORM METHOD=\"GET\" ACTION=\"${scriptwhere}.diff\" NAME=\"diff_select\">\n";
foreach (@stickyvars) {
print "<INPUT TYPE=HIDDEN NAME=\"$_\" VALUE=\"$input{$_}\">\n"
if (defined($input{$_})
&& ($input{$_} ne $DEFAULTVALUE{$_} && $input{$_} ne ""));
}
print "Diffs between \n";
print "<SELECT NAME=\"r1\">\n";
print "<OPTION VALUE=\"text\" SELECTED>Use Text Field\n";
print $sel;
print "</SELECT>\n";
$diffrev = $revdisplayorder[$#revdisplayorder];
$diffrev = $input{"r1"} if (defined($input{"r1"}));
print "<INPUT TYPE=\"TEXT\" SIZE=\"$inputTextSize\" NAME=\"tr1\" VALUE=\"$diffrev\" onChange='document.diff_select.r1.selectedIndex=0'>\n";
print " and \n";
print "<SELECT NAME=\"r2\">\n";
print "<OPTION VALUE=\"text\" SELECTED>Use Text Field\n";
print $sel;
print "</SELECT>\n";
$diffrev = $revdisplayorder[0];
$diffrev = $input{"r2"} if (defined($input{"r2"}));
print "<INPUT TYPE=\"TEXT\" SIZE=\"$inputTextSize\" NAME=\"tr2\" VALUE=\"$diffrev\" onChange='docuement.diff_select.r2.selectedIndex=0'>\n";
print "<BR>Type of Diff should be a ";
printDiffSelect();
print "<INPUT TYPE=SUBMIT VALUE=\" Get Diffs \">\n";
print "</FORM>\n";
print "<HR noshade>\n";
if (@branchnames) {
print "<A name=branch>\n";
print "<FORM METHOD=\"GET\" ACTION=\"$scriptwhere\">\n";
foreach (@stickyvars) {
next if ($_ eq "only_with_tag");
next if ($_ eq "logsort");
print "<INPUT TYPE=HIDDEN NAME=\"$_\" VALUE=\"$input{$_}\">\n"
if (defined($input{$_}) && $input{$_} ne $DEFAULTVALUE{$_}
&& $input{$_} ne "");
}
print "View only Branch: \n";
print "<SELECT NAME=\"only_with_tag\"";
print " onchange=\"submit()\"" if ($use_java_script);
print ">\n";
print "<OPTION VALUE=\"\"";
print " SELECTED" if (defined($input{"only_with_tag"}) &&
$input{"only_with_tag"} eq "");
print ">Show all branches\n";
foreach (reverse sort @branchnames) {
print "<OPTION";
print " SELECTED" if (defined($input{"only_with_tag"})
&& $input{"only_with_tag"} eq $_);
print ">${_}\n";
}
print "</SELECT>\n";
print "<INPUT TYPE=SUBMIT VALUE=\" View Branch \">\n";
print "</FORM>\n";
print "</A>\n";
}
print "<A name=logsort>\n";
print "<FORM METHOD=\"GET\" ACTION=\"$scriptwhere\">\n";
foreach (@stickyvars) {
next if ($_ eq "only_with_tag");
next if ($_ eq "logsort");
print "<INPUT TYPE=HIDDEN NAME=\"$_\" VALUE=\"$input{$_}\">\n"
if (defined($input{$_}) && $input{$_} ne $DEFAULTVALUE{$_}
&& $input{$_} ne "");
}
print "Sort log by: \n";
print "<SELECT NAME=\"logsort\"";
print " onchange=\"submit()\"" if ($use_java_script);
print ">\n";
print "<OPTION VALUE=cvs",$logsort eq "cvs" ? " SELECTED" : "", ">Not sorted";
print "<OPTION VALUE=date",$logsort eq "date" ? " SELECTED" : "", ">Commit date";
print "<OPTION VALUE=rev",$logsort eq "rev" ? " SELECTED" : "", ">Revision";
print "</SELECT>\n";
print "<INPUT TYPE=SUBMIT VALUE=\" Sort \">\n";
print "</FORM>\n";
print "</A>";
print &html_footer;
print "</BODY></HTML>\n";
}
sub flush_diff_rows ($$$$)
{
my $j;
my ($leftColRef,$rightColRef,$leftRow,$rightRow) = @_;
if ($state eq "PreChangeRemove") { # we just got remove-lines before
for ($j = 0 ; $j < $leftRow; $j++) {
print "<tr><td bgcolor=\"$diffcolorRemove\">@$leftColRef[$j]</td>";
print "<td bgcolor=\"$diffcolorEmpty\"> </td></tr>\n";
}
}
elsif ($state eq "PreChange") { # state eq "PreChange"
# we got removes with subsequent adds
for ($j = 0; $j < $leftRow || $j < $rightRow ; $j++) { # dump out both cols
print "<tr>";
if ($j < $leftRow) {
print "<td bgcolor=\"$diffcolorChange\">@$leftColRef[$j]</td>";
}
else {
print "<td bgcolor=\"$diffcolorDarkChange\"> </td>";
}
if ($j < $rightRow) {
print "<td bgcolor=\"$diffcolorChange\">@$rightColRef[$j]</td>";
}
else {
print "<td bgcolor=\"$diffcolorDarkChange\"> </td>";
}
print "</tr>\n";
}
}
}
##
# Function to generate Human readable diff-files
# human_readable_diff(String revision_to_return_to);
##
sub human_readable_diff($){
my ($i,$difftxt, $where_nd, $filename, $pathname, $scriptwhere_nd);
my ($fh, $rev) = @_;
my ($date1, $date2, $r1d, $r2d, $r1r, $r2r, $rev1, $rev2, $sym1, $sym2);
my (@rightCol, @leftCol);
($where_nd = $where) =~ s/.diff$//;
($filename = $where_nd) =~ s/^.*\///;
($pathname = $where_nd) =~ s/(Attic\/)?[^\/]*$//;
($scriptwhere_nd = $scriptwhere) =~ s/.diff$//;
navigateHeader ($scriptwhere_nd, $pathname, $filename, $rev, "diff");
# Read header to pick up read revision and date, if possible
while (<$fh>) {
($r1d,$r1r) = /\t(.*)\t(.*)$/ if (/^--- /);
($r2d,$r2r) = /\t(.*)\t(.*)$/ if (/^\+\+\+ /);
last if (/^\+\+\+ /);
}
if (defined($r1r) && $r1r =~ /^(\d+\.)+\d+$/) {
$rev1 = $r1r;
$date1 = $r1d;
}
if (defined($r2r) && $r2r =~ /^(\d+\.)+\d+$/) {
$rev2 = $r2r;
$date2 = $r2d;
}
print "<h3 align=center>Diff for /$where_nd between version $rev1 and $rev2</h3>\n";
print "<table border=0 cellspacing=0 cellpadding=0 width=100%>\n";
print "<tr bgcolor=#ffffff>\n";
print "<th width=\"50%\" valign=TOP>";
print "version $rev1";
print ", $date1" if (defined($date1));
print "<br>Tag: $sym1\n" if ($sym1);
print "</th>\n";
print "<th width=\"50%\" valign=TOP>";
print "version $rev2";
print ", $date2" if (defined($date2));
print "<br>Tag: $sym2\n" if ($sym1);
print "</th>\n";
my $fs = "<font face=\"$difffontface\" size=\"$difffontsize\">";
my $fe = "</font>";
my $leftRow = 0;
my $rightRow = 0;
my ($oldline, $newline, $funname, $diffcode, $rest);
# Process diff text
# The diffrows are could make excellent use of
# cascading style sheets because we've to set the
# font and color for each row. anyone ...?
####
while (<$fh>) {
$difftxt = $_;
if ($difftxt =~ /^@@/) {
($oldline,$newline,$funname) = $difftxt =~ /@@ \-([0-9]+).*\+([0-9]+).*@@(.*)/;
print "<tr bgcolor=\"$diffcolorHeading\"><td width=\"50%\">";
print "<table width=100% border=1 cellpadding=5><tr><td><b>Line $oldline</b>";
print " <font size=-1>$funname</font></td></tr></table>";
print "</td><td width=\"50%\">";
print "<table width=100% border=1 cellpadding=5><tr><td><b>Line $newline</b>";
print " <font size=-1>$funname</font></td></tr></table>";
print "</td><tr>\n";
$state = "dump";
$leftRow = 0;
$rightRow = 0;
}
else {
($diffcode,$rest) = $difftxt =~ /^([-+ ])(.*)/;
$_ = spacedHtmlText ($rest);
# Add fontface, size
$_ = "$fs $_$fe";
#########
# little state machine to parse unified-diff output (Hen, zeller@think.de)
# in order to get some nice 'ediff'-mode output
# states:
# "dump" - just dump the value
# "PreChangeRemove" - we began with '-' .. so this could be the start of a 'change' area or just remove
# "PreChange" - okey, we got several '-' lines and moved to '+' lines -> this is a change block
##########
if ($diffcode eq '+') {
if ($state eq "dump") { # 'change' never begins with '+': just dump out value
print "<tr><td bgcolor=\"$diffcolorEmpty\"> </td><td bgcolor=\"$diffcolorAdd\">$_</td></tr>\n";
}
else { # we got minus before
$state = "PreChange";
$rightCol[$rightRow++] = $_;
}
}
elsif ($diffcode eq '-') {
$state = "PreChangeRemove";
$leftCol[$leftRow++] = $_;
}
else { # empty diffcode
flush_diff_rows \@leftCol, \@rightCol, $leftRow, $rightRow;
print "<tr><td>$_</td><td>$_</td></tr>\n";
$state = "dump";
$leftRow = 0;
$rightRow = 0;
}
}
}
flush_diff_rows \@leftCol, \@rightCol, $leftRow, $rightRow;
# state is empty if we didn't have any change
if (!$state) {
print "<tr><td colspan=2> </td></tr>";
print "<tr bgcolor=\"$diffcolorEmpty\" >";
print "<td colspan=2 align=center><b>- No viewable Change -</b></td></tr>";
}
print "</table>";
close($fh);
print "<br><hr noshade width=100%>\n";
print "<table border=0>";
print "<tr><td>";
# print legend
print "<table border=1><tr><td>";
print "Legend:<br><table border=0 cellspacing=0 cellpadding=1>\n";
print "<tr><td align=center bgcolor=\"$diffcolorRemove\">Removed from v.$rev1</td><td bgcolor=\"$diffcolorEmpty\"> </td></tr>";
print "<tr bgcolor=\"$diffcolorChange\"><td align=center colspan=2>changed lines</td></tr>";
print "<tr><td bgcolor=\"$diffcolorEmpty\"> </td><td align=center bgcolor=\"$diffcolorAdd\">Added in v.$rev2</td></tr>";
print "</table></td></tr></table>\n";
print "</body>\n</html>\n";
print "<td>";
# Print format selector
print "<FORM METHOD=\"GET\" ACTION=\"${scriptwhere}\">\n";
foreach my $var (keys %input) {
next if ($var eq "f");
next if (defined($DEFAULTVALUE{$var})
&& $DEFAULTVALUE{$var} eq $input{$var});
print "<INPUT TYPE=HIDDEN NAME=\"",urlencode($var),"\" VALUE=\"",
urlencode($input{$var}),"\">\n";
}
printDiffSelect($use_java_script);
print "<INPUT TYPE=SUBMIT VALUE=\"Show\">\n";
print "</FORM>\n";
print "</td>";
print "</tr></table>";
}
sub navigateHeader ($$$$$) {
my ($swhere,$path,$filename,$rev,$title) = @_;
$swhere = "" if ($swhere eq $scriptwhere);
$swhere = urlencode($filename) if ($swhere eq "");
print "<HTML>\n<HEAD>\n";
print '<!-- hennerik CVSweb $Revision: 1.6 $ -->';
print "\n<TITLE>$path$filename - $title - $rev</TITLE></HEAD>\n";
print "<BODY BGCOLOR=\"$backcolor\">\n";
print "<table width=\"100%\" border=0 cellspacing=0 cellpadding=1 bgcolor=\"$navigationHeaderColor\">";
print "<tr valign=bottom><td>";
print "<a href=\"$swhere$query#rev$rev\">$backicon";
print "</a> <b>Return to ", &link("$filename","$swhere$query#rev$rev")," CVS log";
print "</b> $fileicon</td>";
print "<td align=right>$diricon <b>Up to ", &clickablePath($path, 1), "</b></td>";
print "</tr></table>";
}
sub plural_write ($$)
{
my ($num,$text) = @_;
if ($num != 1) {
$text = $text . "s";
}
if ($num > 0) {
return $num . " " . $text;
}
else {
return "";
}
}
##
# print readable timestamp in terms of
# '..time ago'
# H. Zeller <zeller@think.de>
##
sub readableTime ($$)
{
my ($i, $break, $retval);
my ($secs,$long) = @_;
# this function works correct for time >= 2 seconds
if ($secs < 2) {
return "very little time";
}
my %desc = (1 , 'second',
60, 'minute',
3600, 'hour',
86400, 'day',
604800, 'week',
2628000, 'month',
31536000, 'year');
my @breaks = sort {$a <=> $b} keys %desc;
$i = 0;
while ($i <= $#breaks && $secs >= 2 * $breaks[$i]) {
$i++;
}
$i--;
$break = $breaks[$i];
$retval = plural_write(int ($secs / $break), $desc{"$break"});
if ($long == 1 && $i > 0) {
my $rest = $secs % $break;
$i--;
$break = $breaks[$i];
my $resttime = plural_write(int ($rest / $break),
$desc{"$break"});
if ($resttime) {
$retval = $retval . ", " . $resttime;
}
}
return $retval;
}
##
# clickablePath(String pathname, boolean last_item_clickable)
#
# returns a html-ified path whereas each directory is a link for
# faster navigation. last_item_clickable controls whether the
# basename (last directory/file) is a link as well
##
sub clickablePath($$) {
my ($pathname,$clickLast) = @_;
my $retval = '';
if ($pathname eq '/') {
# this should never happen - chooseCVSRoot() is
# intended to do this
$retval = "[$cvstree]";
}
else {
$retval = $retval . " <a href=\"${scriptname}/${query}#dirlist\">[$cvstree]</a>";
my $wherepath = '';
my ($lastslash) = $pathname =~ m|/$|;
foreach (split(/\//, $pathname)) {
$retval = $retval . " / ";
$wherepath = $wherepath . '/' . $_;
my ($last) = "$wherepath/" eq "/$pathname"
|| "$wherepath" eq "/$pathname";
if ($clickLast || !$last) {
$retval = $retval . "<a href=\"${scriptname}"
. urlencode($wherepath)
. (!$last || $lastslash ? '/' : '')
. ${query}
. (!$last || $lastslash ? "#dirlist" : "")
. "\">$_</a>";
}
else { # do not make a link to the current dir
$retval = $retval . $_;
}
}
}
return $retval;
}
sub chooseCVSRoot() {
my @foo;
foreach (sort keys %CVSROOT) {
if (-d $CVSROOT{$_}) {
push(@foo, $_);
}
}
if (@foo > 1) {
my ($k);
print "<form method=\"GET\" action=\"${scriptwhere}\">\n";
foreach $k (keys %input) {
print "<input type=hidden NAME=$k VALUE=$input{$k}>\n"
if ($input{$k}) && ($k ne "cvsroot");
}
# Form-Elements look wierd in Netscape if the background
# isn't gray and the form elements are not placed
# within a table ...
print "<table><tr>";
print "<td>CVS Root:</td>";
print "<td>\n<select name=\"cvsroot\"";
print " onchange=\"submit()\"" if ($use_java_script);
print ">\n";
foreach $k (@foo) {
print "<option value=\"$k\"";
print " selected" if ("$k" eq "$cvstree");
print ">" . ($CVSROOTdescr{"$k"} ? $CVSROOTdescr{"$k"} :
$k). "</option>\n";
}
print "</select>\n</td>";
print "<td><input type=submit value=\"Go\"></td>";
print "</tr></table></form>";
}
else {
# no choice ..
print "CVS Root: <b>[$cvstree]</b>";
}
}
sub chooseMirror() {
my ($mirror,$moremirrors);
$moremirrors = 0;
# This code comes from the original BSD-cvsweb
# and may not be useful for your site; If you don't
# set %MIRRORS this won't show up, anyway
#
# Should perhaps exlude the current site somehow..
if (keys %MIRRORS) {
print "\nThis cvsweb is mirrored in:\n";
foreach $mirror (keys %MIRRORS) {
print ", " if ($moremirrors);
print qq(<a href="$MIRRORS{$mirror}">$mirror</A>\n);
$moremirrors = 1;
}
print "<p>\n";
}
}
sub fileSortCmp {
my ($comp) = 0;
my ($c,$d,$af,$bf);
($af = $a) =~ s/,v$//;
($bf = $b) =~ s/,v$//;
my ($rev1,$date1,$log1,$author1,$filename1) = @{$fileinfo{$af}}
if (defined($fileinfo{$af}));
my ($rev2,$date2,$log2,$author2,$filename2) = @{$fileinfo{$bf}}
if (defined($fileinfo{$bf}));
if (defined($filename1) && defined($filename2) && $af eq $filename1 && $bf eq $filename2) {
# Two files
$comp = -revcmp($rev1, $rev2) if ($byrev && $rev1 && $rev2);
$comp = ($date2 <=> $date1) if ($bydate && $date1 && $date2);
$comp = ($log1 cmp $log2) if ($bylog && $log1 && $log2);
$comp = ($author1 cmp $author2) if ($byauthor && $author1 && $author2);
}
if ($comp == 0) {
# Directories first, then sorted on name if no other sort critera
# available.
my $ad = ((-d "$fullname/$a")?"D":"F");
my $bd = ((-d "$fullname/$b")?"D":"F");
($c=$a) =~ s|.*/||;
($d=$b) =~ s|.*/||;
$comp = ("$ad$c" cmp "$bd$d");
}
return $comp;
}
# make A url for downloading
sub download_url {
my ($url,$revision,$mimetype) = @_;
$revision =~ s/\b0\.//;
if (defined($checkout_magic)
&& (!defined($mimetype) || $mimetype ne "text/x-cvsweb-markup")) {
my ($path);
($path = $where) =~ s|/[^/]*$|/|;
$url = "$scriptname/$checkoutMagic/${path}$url";
}
$url .= "?rev=$revision";
$url .= "&content-type=$mimetype" if (defined($mimetype));
return $url;
}
# Presents a link to download the
# selected revision
sub download_link {
my ($url,$revision,$textlink,$mimetype) = @_;
my ($fullurl) = download_url($url,$revision,$mimetype);
my ($paren) = $textlink =~ /^\(/;
$textlink =~ s/^\(// if ($paren);
$textlink =~ s/\)$// if ($paren);
print "(" if ($paren);
print "<A HREF=\"$fullurl";
print $barequery;
print "\"";
if ($open_extern_window && (!defined($mimetype) || $mimetype ne "text/x-cvsweb-markup")) {
print " target=\"cvs_checkout\"";
# we should have
# 'if (document.cvswin==null) document.cvswin=window.open(...'
# in order to allow the user to resize the window; otherwise
# the user may resize the window, but on next checkout - zap -
# its original (configured s. cvsweb.conf) size is back again
# .. annoying (if $extern_window_(width|height) is defined)
# but this if (..) solution is far from perfect
# what we need to do as well is
# 1) save cvswin in an invisible frame that always exists
# (document.cvswin will be void on next load)
# 2) on close of the cvs_checkout - window set the cvswin
# variable to 'null' again - so that it will be
# reopenend with the configured size
# anyone a JavaScript programmer ?
# .. so here without if (..):
# currently, the best way is to comment out the size parameters
# ($extern_window...) in cvsweb.conf.
if ($use_java_script) {
print " onClick=\"window.open('$fullurl','cvs_checkout',";
print "'resizeable,scrollbars";
print ",status,toolbar" if (defined($mimetype)
&& $mimetype eq "text/html");
print ",width=$extern_window_width" if (defined($extern_window_width));
print ",height=$extern_window_height" if (defined($extern_window_height));
print"');\"";
}
}
print "><b>$textlink</b></A>";
print ")" if ($paren);
}
# Returns a Query string with the
# specified parameter toggled
sub toggleQuery($$) {
my ($toggle,$value) = @_;
my ($newquery,$var);
my (%vars);
%vars = %input;
if (defined($value)) {
$vars{$toggle} = $value;
}
else {
$vars{$toggle} = $vars{$toggle} ? 0 : 1;
}
# Build a new query of non-default paramenters
$newquery = "";
foreach $var (@stickyvars) {
my ($value) = defined($vars{$var}) ? $vars{$var} : "";
my ($default) = defined($DEFAULTVALUE{$var}) ? $DEFAULTVALUE{$var} : "";
if ($value ne $default) {
$newquery .= "&" if ($newquery ne "");
$newquery .= urlencode($var) . "=" . urlencode($value);
}
}
if ($newquery) {
return '?' . $newquery;
}
return "";
}
sub urlencode {
my ($in) = @_;
my ($out);
($out = $in) =~ s/([\000-+{-\377])/sprintf("%%%02x", ord($1))/ge;
return $out;
}
sub http_header {
my $content_type = shift || "text/html";
my $is_mod_perl = defined($ENV{'MOD_PERL'});
if ($is_mod_perl) {
Apache->request->content_type($content_type);
}
else {
print "Content-type: $content_type\n";
}
if ($allow_compress && $maycompress) {
my $fh = do {local(*FH);};
if (defined($GZIPBIN) && open($fh, "|$GZIPBIN -1 -c")) {
if ($is_mod_perl) {
Apache->request->content_encoding("x-gzip");
Apache->request->header_out(Vary => "Accept-Encoding");
Apache->request->send_http_header;
}
else {
print "Content-encoding: x-gzip\n";
print "Vary: Accept-Encoding\n"; #RFC 2068, 14.43
print "\n"; # Close headers
}
$| = 1; $| = 0; # Flush header output
select ($fh);
# print "<!-- gzipped -->" if ($content_type eq "text/html");
}
else {
if ($is_mod_perl) {
Apache->request->send_http_header;
}
else {
print "\n"; # Close headers
}
print "<font size=-1>Unable to find gzip binary in the \$PATH to compress output</font><br>";
}
}
else {
if ($is_mod_perl) {
Apache->request->send_http_header;
}
else {
print "\n"; # Close headers
}
}
}
sub html_header($) {
my ($title) = @_;
http_header();
print <<EOH;
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<title>$title</title>
<!-- hennerik CVSweb \$Revision: 1.6 $ \-->
</head>
$body_tag
$logo <h1 align="center">$title</h1>
EOH
}
sub html_footer {
return "<hr noshade><address>$address</address>\n";
}
sub link_tags
{
my ($tags) = @_;
my ($ret) = "";
my ($fileurl,$filename);
($filename = $where) =~ s/^.*\///;
$fileurl = urlencode($filename);
foreach my $sym (split(", ", $tags)) {
$ret .= ",\n" if ($ret ne "");
$ret .= "<A HREF=\"$fileurl"
. toggleQuery('only_with_tag',$sym) . "\">$sym</A>";
}
return $ret."\n";
}
#
# See if a module is listed in the config file's @HideModule list.
#
sub forbidden_module {
my($module) = @_;
return ("$module" =~ /$HideModules/);
}
|