1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884
|
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR Free Software Foundation, Inc.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2012-06-10 14:43+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#. type: TH
#: en/linkchecker.1:1
#, no-wrap
msgid "LINKCHECKER"
msgstr ""
#. type: TH
#: en/linkchecker.1:1
#, no-wrap
msgid "2010-07-01"
msgstr ""
#. type: TH
#: en/linkchecker.1:1 en/linkcheckerrc.5:1
#, no-wrap
msgid "LinkChecker"
msgstr ""
#. type: TH
#: en/linkchecker.1:1
#, no-wrap
msgid "LinkChecker commandline usage"
msgstr ""
#. type: SH
#: en/linkchecker.1:2 en/linkcheckerrc.5:2 en/linkchecker-gui.1:2
#, no-wrap
msgid "NAME"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:4
msgid ""
"linkchecker - command line client to check HTML documents and websites for "
"broken links"
msgstr ""
#. type: SH
#: en/linkchecker.1:5 en/linkchecker-gui.1:5
#, no-wrap
msgid "SYNOPSIS"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:7
msgid "B<linkchecker> [I<options>] [I<file-or-url>]..."
msgstr ""
#. type: SH
#: en/linkchecker.1:8 en/linkcheckerrc.5:5 en/linkchecker-gui.1:8
#, no-wrap
msgid "DESCRIPTION"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:11
msgid "LinkChecker features"
msgstr ""
#. type: IP
#: en/linkchecker.1:11 en/linkchecker.1:13 en/linkchecker.1:15 en/linkchecker.1:17 en/linkchecker.1:19 en/linkchecker.1:21 en/linkchecker.1:23 en/linkchecker.1:25 en/linkchecker.1:27 en/linkchecker.1:29 en/linkchecker.1:31 en/linkchecker.1:33 en/linkchecker.1:515 en/linkchecker.1:519 en/linkchecker.1:521
#, no-wrap
msgid "\\(bu"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:13
msgid "recursive and multithreaded checking,"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:15
msgid ""
"output in colored or normal text, HTML, SQL, CSV, XML or a sitemap graph in "
"different formats,"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:17
msgid ""
"support for HTTP/1.1, HTTPS, FTP, mailto:, news:, nntp:, Telnet and local "
"file links,"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:19
msgid "restriction of link checking with URL filters,"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:21
msgid "proxy support,"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:23
msgid "username/password authorization for HTTP, FTP and Telnet,"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:25
msgid "support for robots.txt exclusion protocol,"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:27
msgid "support for Cookies"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:29
msgid "support for HTML5"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:31
msgid "HTML and CSS syntax check"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:33
msgid "Antivirus check"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:35
msgid "a command line, GUI and web interface"
msgstr ""
#. type: SH
#: en/linkchecker.1:35
#, no-wrap
msgid "EXAMPLES"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:39
#, no-wrap
msgid ""
"The most common use checks the given domain recursively, plus any\n"
"URL pointing outside of the domain:\n"
" B<linkchecker http://www.example.net/>\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:42
msgid ""
"Beware that this checks the whole site which can have thousands of URLs. "
"Use the B<-r> option to restrict the recursion depth."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:46
#, no-wrap
msgid ""
"Don't connect to B<mailto:> hosts, only check their URL syntax. All other\n"
"links are checked as usual:\n"
" B<linkchecker --ignore-url=^mailto: mysite.example.org>\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:49
#, no-wrap
msgid ""
"Checking a local HTML file on Unix:\n"
" B<linkchecker ../bla.html>\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:52
#, no-wrap
msgid ""
"Checking a local HTML file on Windows:\n"
" B<linkchecker c:\\etemp\\etest.html>\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:55
#, no-wrap
msgid ""
"You can skip the B<http://> url part if the domain starts with B<www.>:\n"
" B<linkchecker www.example.com>\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:58
#, no-wrap
msgid ""
"You can skip the B<ftp://> url part if the domain starts with B<ftp.>:\n"
" B<linkchecker -r0 ftp.example.org>\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:61
#, no-wrap
msgid ""
"Generate a sitemap graph and convert it with the graphviz dot utility:\n"
" B<linkchecker -odot -v www.example.com | dot -Tps E<gt> sitemap.ps>\n"
msgstr ""
#. type: SH
#: en/linkchecker.1:62
#, no-wrap
msgid "OPTIONS"
msgstr ""
#. type: SS
#: en/linkchecker.1:63
#, no-wrap
msgid "General options"
msgstr ""
#. type: TP
#: en/linkchecker.1:64
#, no-wrap
msgid "B<-f>I<FILENAME>, B<--config=>I<FILENAME>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:68
msgid ""
"Use I<FILENAME> as configuration file. As default LinkChecker uses "
"B<~/.linkchecker/linkcheckerrc>."
msgstr ""
#. type: TP
#: en/linkchecker.1:68
#, no-wrap
msgid "B<-h>, B<--help>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:71
msgid "Help me! Print usage information for this program."
msgstr ""
#. type: TP
#: en/linkchecker.1:71
#, no-wrap
msgid "B<--stdin>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:74
msgid "Read list of white-space separated URLs to check from stdin."
msgstr ""
#. type: TP
#: en/linkchecker.1:74
#, no-wrap
msgid "B<-t>I<NUMBER>, B<--threads=>I<NUMBER>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:78 en/linkcheckerrc.5:16
msgid ""
"Generate no more than the given number of threads. Default number of threads "
"is 10. To disable threading specify a non-positive number."
msgstr ""
#. type: TP
#: en/linkchecker.1:78
#, no-wrap
msgid "B<-V>, B<--version>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:81
msgid "Print version and exit."
msgstr ""
#. type: SS
#: en/linkchecker.1:82
#, no-wrap
msgid "Output options"
msgstr ""
#. type: TP
#: en/linkchecker.1:83
#, no-wrap
msgid "B<--check-css>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:87
msgid ""
"Check syntax of CSS URLs with cssutils. If it's not installed, check with "
"the W3C online validator."
msgstr ""
#. type: TP
#: en/linkchecker.1:87
#, no-wrap
msgid "B<--check-html>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:91
msgid ""
"Check syntax of HTML URLs with HTML tidy. If it's not installed, check with "
"the W3C online validator."
msgstr ""
#. type: TP
#: en/linkchecker.1:91
#, no-wrap
msgid "B<--complete>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:94
msgid ""
"Log all URLs, including duplicates. Default is to log duplicate URLs only "
"once."
msgstr ""
#. type: TP
#: en/linkchecker.1:94
#, no-wrap
msgid "B<-D>I<STRING>, B<--debug=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:104
msgid ""
"Print debugging output for the given logger. Available loggers are "
"B<cmdline>, B<checking>, B<cache>, B<gui>, B<dns> and B<all>. Specifying "
"B<all> is an alias for specifying all available loggers. The option can be "
"given multiple times to debug with more than one logger. For accurate "
"results, threading will be disabled during debug runs."
msgstr ""
#. type: TP
#: en/linkchecker.1:104
#, no-wrap
msgid ""
"B<-F>I<TYPE>[B</>I<ENCODING>][B</>I<FILENAME>], "
"B<--file-output=>I<TYPE>[B</>I<ENCODING>][B</>I<FILENAME>]"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:113
msgid ""
"Output to a file B<linkchecker-out.>I<TYPE>, B<$HOME/.linkchecker/blacklist> "
"for B<blacklist> output, or I<FILENAME> if specified. The I<ENCODING> "
"specifies the output encoding, the default is that of your locale. Valid "
"encodings are listed at "
"B<http://docs.python.org/library/\\:codecs.html#standard-encodings>."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:122
msgid ""
"The I<FILENAME> and I<ENCODING> parts of the B<none> output type will be "
"ignored, else if the file already exists, it will be overwritten. You can "
"specify this option more than once. Valid file output types are B<text>, "
"B<html>, B<sql>, B<csv>, B<gml>, B<dot>, B<xml>, B<none> or B<blacklist>. "
"Default is no file output. The various output types are documented "
"below. Note that you can suppress all console output with the option B<-o "
"none>."
msgstr ""
#. type: TP
#: en/linkchecker.1:122
#, no-wrap
msgid "B<--no-status>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:125
msgid "Do not print check status messages."
msgstr ""
#. type: TP
#: en/linkchecker.1:125
#, no-wrap
msgid "B<--no-warnings>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:128
msgid "Don't log warnings. Default is to log warnings."
msgstr ""
#. type: TP
#: en/linkchecker.1:128
#, no-wrap
msgid "B<-o>I<TYPE>[B</>I<ENCODING>], B<--output=>I<TYPE>[B</>I<ENCODING>]"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:134 en/linkcheckerrc.5:203
msgid ""
"Specify output type as B<text>, B<html>, B<sql>, B<csv>, B<gml>, B<dot>, "
"B<xml>, B<none> or B<blacklist>. Default type is B<text>. The various "
"output types are documented below."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:138
msgid ""
"The I<ENCODING> specifies the output encoding, the default is that of your "
"locale. Valid encodings are listed at "
"B<http://docs.python.org/library/\\:codecs.html#standard-encodings>."
msgstr ""
#. type: TP
#: en/linkchecker.1:138
#, no-wrap
msgid "B<--profile>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:142
msgid ""
"Write profiling data into a file named B<linkchecker.prof> in the current "
"working directory. See also B<--viewprof>."
msgstr ""
#. type: TP
#: en/linkchecker.1:142
#, no-wrap
msgid "B<-q>, B<--quiet>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:146
msgid "Quiet operation, an alias for B<-o none>. This is only useful with B<-F>."
msgstr ""
#. type: TP
#: en/linkchecker.1:146
#, no-wrap
msgid "B<--scan-virus>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:149 en/linkcheckerrc.5:82
msgid "Scan content of URLs for viruses with ClamAV."
msgstr ""
#. type: TP
#: en/linkchecker.1:149
#, no-wrap
msgid "B<--trace>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:152
msgid "Print tracing information."
msgstr ""
#. type: TP
#: en/linkchecker.1:152
#, no-wrap
msgid "B<-v>, B<--verbose>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:155
msgid "Log all checked URLs once. Default is to log only errors and warnings."
msgstr ""
#. type: TP
#: en/linkchecker.1:155
#, no-wrap
msgid "B<--viewprof>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:159
msgid "Print out previously generated profiling data. See also B<--profile>."
msgstr ""
#. type: TP
#: en/linkchecker.1:159
#, no-wrap
msgid "B<-W>I<REGEX>, B<--warning-regex=>I<REGEX>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:164 en/linkcheckerrc.5:42
msgid ""
"Define a regular expression which prints a warning if it matches any content "
"of the checked link. This applies only to valid pages, so we can get their "
"content."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:167
msgid ""
"Use this to check for pages that contain some form of error, for example "
"\"This page has moved\" or \"Oracle Application error\"."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:170
msgid ""
"Note that multiple values can be combined in the regular expression, for "
"example \"(This page has moved|Oracle Application error)\"."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:172 en/linkchecker.1:199 en/linkchecker.1:212
msgid "See section B<REGULAR EXPRESSIONS> for more info."
msgstr ""
#. type: TP
#: en/linkchecker.1:172
#, no-wrap
msgid "B<--warning-size-bytes=>I<NUMBER>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:176 en/linkcheckerrc.5:51
msgid ""
"Print a warning if content size info is available and exceeds the given "
"number of I<bytes>."
msgstr ""
#. type: SS
#: en/linkchecker.1:177
#, no-wrap
msgid "Checking options"
msgstr ""
#. type: TP
#: en/linkchecker.1:178
#, no-wrap
msgid "B<-a>, B<--anchors>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:182 en/linkcheckerrc.5:28
msgid ""
"Check HTTP anchor references. Default is not to check anchors. This option "
"enables logging of the warning B<url-anchor-not-found>."
msgstr ""
#. type: TP
#: en/linkchecker.1:182
#, no-wrap
msgid "B<-C>, B<--cookies>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:188
msgid ""
"Accept and send HTTP cookies according to RFC 2109. Only cookies which are "
"sent back to the originating server are accepted. Sent and accepted cookies "
"are provided as additional logging information."
msgstr ""
#. type: TP
#: en/linkchecker.1:188
#, no-wrap
msgid "B<--cookiefile=>I<FILENAME>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:192
msgid ""
"Read a file with initial cookie data. The cookie data format is explained "
"below."
msgstr ""
#. type: TP
#: en/linkchecker.1:192
#, no-wrap
msgid "B<--ignore-url=>I<REGEX>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:195
msgid ""
"URLs matching the given regular expression will only have their syntax "
"checked."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:197 en/linkchecker.1:210
msgid "This option can be given multiple times."
msgstr ""
#. type: TP
#: en/linkchecker.1:199
#, no-wrap
msgid "B<-N>I<STRING>, B<--nntp-server=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:204 en/linkcheckerrc.5:58
msgid ""
"Specify an NNTP server for B<news:> links. Default is the environment "
"variable B<NNTP_SERVER>. If no host is given, only the syntax of the link is "
"checked."
msgstr ""
#. type: TP
#: en/linkchecker.1:204
#, no-wrap
msgid "B<--no-follow-url=>I<REGEX>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:208
msgid "Check but do not recurse into URLs matching the given regular expression."
msgstr ""
#. type: TP
#: en/linkchecker.1:212
#, no-wrap
msgid "B<-p>, B<--password>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:217
msgid ""
"Read a password from console and use it for HTTP and FTP authorization. For "
"FTP the default password is B<anonymous@>. For HTTP there is no default "
"password. See also B<-u>."
msgstr ""
#. type: TP
#: en/linkchecker.1:217
#, no-wrap
msgid "B<-P>I<NUMBER>, B<--pause=>I<NUMBER>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:221
msgid ""
"Pause the given number of seconds between two subsequent connection requests "
"to the same host. Default is no pause between requests."
msgstr ""
#. type: TP
#: en/linkchecker.1:221
#, no-wrap
msgid "B<-r>I<NUMBER>, B<--recursion-level=>I<NUMBER>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:226 en/linkcheckerrc.5:35
msgid ""
"Check recursively all links up to given depth. A negative depth will enable "
"infinite recursion. Default depth is infinite."
msgstr ""
#. type: TP
#: en/linkchecker.1:226
#, no-wrap
msgid "B<--timeout=>I<NUMBER>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:230 en/linkcheckerrc.5:22
msgid ""
"Set the timeout for connection attempts in seconds. The default timeout is "
"60 seconds."
msgstr ""
#. type: TP
#: en/linkchecker.1:230
#, no-wrap
msgid "B<-u>I<STRING>, B<--user=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:235
msgid ""
"Try the given username for HTTP and FTP authorization. For FTP the default "
"username is B<anonymous>. For HTTP there is no default username. See also "
"B<-p>."
msgstr ""
#. type: TP
#: en/linkchecker.1:235
#, no-wrap
msgid "B<--user-agent=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:240 en/linkcheckerrc.5:65
msgid ""
"Specify the User-Agent string to send to the HTTP server, for example "
"\"Mozilla/4.0\". The default is \"LinkChecker/X.Y\" where X.Y is the current "
"version of LinkChecker."
msgstr ""
#. type: SH
#: en/linkchecker.1:241
#, no-wrap
msgid "CONFIGURATION FILES"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:245
msgid ""
"Configuration files can specify all options above. They can also specify "
"some options that cannot be set on the command line. See "
"B<linkcheckerrc>(5) for more info."
msgstr ""
#. type: SH
#: en/linkchecker.1:246
#, no-wrap
msgid "OUTPUT TYPES"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:250
msgid ""
"Note that by default only errors and warnings are logged. You should use "
"the B<--verbose> option to get the complete URL list, especially when "
"outputting a sitemap graph format."
msgstr ""
#. type: TP
#: en/linkchecker.1:251
#, no-wrap
msgid "B<text>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:254
msgid "Standard text logger, logging URLs in keyword: argument fashion."
msgstr ""
#. type: TP
#: en/linkchecker.1:254
#, no-wrap
msgid "B<html>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:259
msgid ""
"Log URLs in keyword: argument fashion, formatted as HTML. Additionally has "
"links to the referenced pages. Invalid URLs have HTML and CSS syntax check "
"links appended."
msgstr ""
#. type: TP
#: en/linkchecker.1:259
#, no-wrap
msgid "B<csv>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:262
msgid "Log check result in CSV format with one URL per line."
msgstr ""
#. type: TP
#: en/linkchecker.1:262
#, no-wrap
msgid "B<gml>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:265
msgid "Log parent-child relations between linked URLs as a GML sitemap graph."
msgstr ""
#. type: TP
#: en/linkchecker.1:265
#, no-wrap
msgid "B<dot>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:268
msgid "Log parent-child relations between linked URLs as a DOT sitemap graph."
msgstr ""
#. type: TP
#: en/linkchecker.1:268
#, no-wrap
msgid "B<gxml>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:271
msgid "Log check result as a GraphXML sitemap graph."
msgstr ""
#. type: TP
#: en/linkchecker.1:271
#, no-wrap
msgid "B<xml>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:274
msgid "Log check result as machine-readable XML."
msgstr ""
#. type: TP
#: en/linkchecker.1:274
#, no-wrap
msgid "B<sql>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:278
msgid ""
"Log check result as SQL script with INSERT commands. An example script to "
"create the initial SQL table is included as create.sql."
msgstr ""
#. type: TP
#: en/linkchecker.1:278
#, no-wrap
msgid "B<blacklist>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:283
msgid ""
"Suitable for cron jobs. Logs the check result into a file "
"B<~/.linkchecker/blacklist> which only contains entries with invalid URLs "
"and the number of times they have failed."
msgstr ""
#. type: TP
#: en/linkchecker.1:283
#, no-wrap
msgid "B<none>"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:286
msgid "Logs nothing. Suitable for debugging or checking the exit code."
msgstr ""
#. type: SH
#: en/linkchecker.1:287
#, no-wrap
msgid "REGULAR EXPRESSIONS"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:290
msgid ""
"LinkChecker accepts Python regular expressions. See "
"B<http://docs.python.org/\\:howto/regex.html> for an introduction."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:293
msgid ""
"An addition is that a leading exclamation mark negates the regular "
"expression."
msgstr ""
#. type: SH
#: en/linkchecker.1:294
#, no-wrap
msgid "COOKIE FILES"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:297
msgid ""
"A cookie file contains standard HTTP header (RFC 2616) data with the "
"following possible names:"
msgstr ""
#. type: TP
#: en/linkchecker.1:298
#, no-wrap
msgid "B<Scheme> (optional)"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:301
msgid "Sets the scheme the cookies are valid for; default scheme is B<http>."
msgstr ""
#. type: TP
#: en/linkchecker.1:301
#, no-wrap
msgid "B<Host> (required)"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:304
msgid "Sets the domain the cookies are valid for."
msgstr ""
#. type: TP
#: en/linkchecker.1:304
#, no-wrap
msgid "B<Path> (optional)"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:307
msgid "Gives the path the cookies are value for; default path is B</>."
msgstr ""
#. type: TP
#: en/linkchecker.1:307
#, no-wrap
msgid "B<Set-cookie> (optional)"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:310
msgid "Set cookie name/value. Can be given more than once."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:312
msgid "Multiple entries are separated by a blank line."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:316
msgid ""
"The example below will send two cookies to all URLs starting with "
"B<http://example.com/hello/> and one to all URLs starting with "
"B<https://example.org/>:"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:321
#, no-wrap
msgid ""
" Host: example.com\n"
" Path: /hello\n"
" Set-cookie: ID=\"smee\"\n"
" Set-cookie: spam=\"egg\"\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:325
#, no-wrap
msgid ""
" Scheme: https\n"
" Host: example.org\n"
" Set-cookie: baggage=\"elitist\"; comment=\"hologram\"\n"
msgstr ""
#. type: SH
#: en/linkchecker.1:326
#, no-wrap
msgid "PROXY SUPPORT"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:332
msgid ""
"To use a proxy on Unix or Windows set the $http_proxy, $https_proxy or "
"$ftp_proxy environment variables to the proxy URL. The URL should be of the "
"form B<http://>[I<user>B<:>I<pass>B<@>]I<host>[B<:>I<port>]. LinkChecker "
"also detects manual proxy settings of Internet Explorer under Windows "
"systems. On a Mac use the Internet Config to select a proxy."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:335
msgid ""
"You can also set a comma-separated domain list in the $no_proxy environment "
"variables to ignore any proxy settings for these domains."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:337
msgid "Setting a HTTP proxy on Unix for example looks like this:"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:339
#, no-wrap
msgid " export http_proxy=\"http://proxy.example.com:8080\"\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:341
msgid "Proxy authentication is also supported:"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:343
#, no-wrap
msgid " export http_proxy=\"http://user1:mypass@proxy.example.org:8081\"\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:345
msgid "Setting a proxy on the Windows command prompt:"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:347
#, no-wrap
msgid " set http_proxy=http://proxy.example.com:8080\n"
msgstr ""
#. type: SH
#: en/linkchecker.1:348
#, no-wrap
msgid "PERFORMED CHECKS"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:354
msgid ""
"All URLs have to pass a preliminary syntax test. Minor quoting mistakes will "
"issue a warning, all other invalid syntax issues are errors. After the "
"syntax check passes, the URL is queued for connection checking. All "
"connection check types are described below."
msgstr ""
#. type: TP
#: en/linkchecker.1:355
#, no-wrap
msgid "HTTP links (B<http:>, B<https:>)"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:363
msgid ""
"After connecting to the given HTTP server the given path or query is "
"requested. All redirections are followed, and if user/password is given it "
"will be used as authorization when necessary. Permanently moved pages issue "
"a warning. All final HTTP status codes other than 2xx are errors."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:365
msgid "HTML page contents are checked for recursion."
msgstr ""
#. type: TP
#: en/linkchecker.1:365
#, no-wrap
msgid "Local files (B<file:>)"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:370
msgid ""
"A regular, readable file that can be opened is valid. A readable directory "
"is also valid. All other files, for example device files, unreadable or "
"non-existing files are errors."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:372
msgid "HTML or other parseable file contents are checked for recursion."
msgstr ""
#. type: TP
#: en/linkchecker.1:372
#, no-wrap
msgid "Mail links (B<mailto:>)"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:377
msgid ""
"A mailto: link eventually resolves to a list of email addresses. If one "
"address fails, the whole list will fail. For each mail address we check the "
"following things:"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:387
#, no-wrap
msgid ""
" 1) Check the adress syntax, both of the part before and after\n"
" the @ sign.\n"
" 2) Look up the MX DNS records. If we found no MX record,\n"
" print an error.\n"
" 3) Check if one of the mail hosts accept an SMTP connection.\n"
" Check hosts with higher priority first.\n"
" If no host accepts SMTP, we print a warning.\n"
" 4) Try to verify the address with the VRFY command. If we got\n"
" an answer, print the verified address as an info.\n"
msgstr ""
#. type: TP
#: en/linkchecker.1:387
#, no-wrap
msgid "FTP links (B<ftp:>)"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:391
#, no-wrap
msgid " For FTP links we do:\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:397
#, no-wrap
msgid ""
" 1) connect to the specified host\n"
" 2) try to login with the given user and password. The default\n"
" user is ``anonymous``, the default password is ``anonymous@``.\n"
" 3) try to change to the given directory\n"
" 4) list the file with the NLST command\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:399
msgid "- Telnet links (``telnet:``)"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:402
#, no-wrap
msgid ""
" We try to connect and if user/password are given, login to the\n"
" given telnet server.\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:404
msgid "- NNTP links (``news:``, ``snews:``, ``nntp``)"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:407
#, no-wrap
msgid ""
" We try to connect to the given NNTP server. If a news group or\n"
" article is specified, try to request it from the server.\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:409
msgid "- Ignored links (``javascript:``, etc.)"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:412
#, no-wrap
msgid ""
" An ignored link will only print a warning. No further checking\n"
" will be made.\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:415
#, no-wrap
msgid ""
" Here is a complete list of recognized, but ignored links. The most\n"
" prominent of them should be JavaScript links.\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:451
#, no-wrap
msgid ""
" - ``acap:`` (application configuration access protocol)\n"
" - ``afs:`` (Andrew File System global file names)\n"
" - ``chrome:`` (Mozilla specific)\n"
" - ``cid:`` (content identifier)\n"
" - ``clsid:`` (Microsoft specific)\n"
" - ``data:`` (data)\n"
" - ``dav:`` (dav)\n"
" - ``fax:`` (fax)\n"
" - ``find:`` (Mozilla specific)\n"
" - ``gopher:`` (Gopher)\n"
" - ``imap:`` (internet message access protocol)\n"
" - ``isbn:`` (ISBN (int. book numbers))\n"
" - ``javascript:`` (JavaScript)\n"
" - ``ldap:`` (Lightweight Directory Access Protocol)\n"
" - ``mailserver:`` (Access to data available from mail servers)\n"
" - ``mid:`` (message identifier)\n"
" - ``mms:`` (multimedia stream)\n"
" - ``modem:`` (modem)\n"
" - ``nfs:`` (network file system protocol)\n"
" - ``opaquelocktoken:`` (opaquelocktoken)\n"
" - ``pop:`` (Post Office Protocol v3)\n"
" - ``prospero:`` (Prospero Directory Service)\n"
" - ``rsync:`` (rsync protocol)\n"
" - ``rtsp:`` (real time streaming protocol)\n"
" - ``service:`` (service location)\n"
" - ``shttp:`` (secure HTTP)\n"
" - ``sip:`` (session initiation protocol)\n"
" - ``steam:`` (Steam browser protocol)\n"
" - ``tel:`` (telephone)\n"
" - ``tip:`` (Transaction Internet Protocol)\n"
" - ``tn3270:`` (Interactive 3270 emulation sessions)\n"
" - ``vemmi:`` (versatile multimedia interface)\n"
" - ``wais:`` (Wide Area Information Servers)\n"
" - ``z39.50r:`` (Z39.50 Retrieval)\n"
" - ``z39.50s:`` (Z39.50 Session)\n"
msgstr ""
#. type: SH
#: en/linkchecker.1:453
#, no-wrap
msgid "RECURSION"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:456
msgid ""
"Before descending recursively into a URL, it has to fulfill several "
"conditions. They are checked in this order:"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:458
msgid "1. A URL must be valid."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:464
#, no-wrap
msgid ""
"2. A URL must be parseable. This currently includes HTML files,\n"
" Opera bookmarks files, and directories. If a file type cannot\n"
" be determined (for example it does not have a common HTML file\n"
" extension, and the content does not look like HTML), it is assumed\n"
" to be non-parseable.\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:467
#, no-wrap
msgid ""
"3. The URL content must be retrievable. This is usually the case\n"
" except for example mailto: or unknown URL types.\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:470
#, no-wrap
msgid ""
"4. The maximum recursion level must not be exceeded. It is configured\n"
" with the ``--recursion-level`` option and is unlimited per default.\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:473
#, no-wrap
msgid ""
"5. It must not match the ignored URL list. This is controlled with\n"
" the ``--ignore-url`` option.\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:477
#, no-wrap
msgid ""
"6. The Robots Exclusion Protocol must allow links in the URL to be\n"
" followed recursively. This is checked by searching for a\n"
" \"nofollow\" directive in the HTML header data.\n"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:480
msgid ""
"Note that the directory recursion reads all files in that directory, not "
"just a subset like ``index.htm*``."
msgstr ""
#. type: SH
#: en/linkchecker.1:481
#, no-wrap
msgid "NOTES"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:486
msgid ""
"URLs on the commandline starting with B<ftp.> are treated like "
"B<ftp://ftp.>, URLs starting with B<www.> are treated like B<http://www.>. "
"You can also give local files as arguments."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:491
msgid ""
"If you have your system configured to automatically establish a connection "
"to the internet (e.g. with diald), it will connect when checking links not "
"pointing to your local host. Use the B<--ignore-url> option to prevent "
"this."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:493
msgid "Javascript links are currently ignored."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:496
msgid ""
"If your platform does not support threading, LinkChecker disables it "
"automatically."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:498
msgid "You can supply multiple user/password pairs in a configuration file."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:501
msgid ""
"When checking B<news:> links the given NNTP host doesn't need to be the same "
"as the host of the user browsing your pages."
msgstr ""
#. type: SH
#: en/linkchecker.1:502
#, no-wrap
msgid "ENVIRONMENT"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:504
msgid "B<NNTP_SERVER> - specifies default NNTP server"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:506
msgid "B<http_proxy> - specifies default HTTP proxy server"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:508
msgid "B<ftp_proxy> - specifies default FTP proxy server"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:510
msgid ""
"B<no_proxy> - comma-separated list of domains to not contact over a proxy "
"server"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:512
msgid "B<LC_MESSAGES>, B<LANG>, B<LANGUAGE> - specify output language"
msgstr ""
#. type: SH
#: en/linkchecker.1:513
#, no-wrap
msgid "RETURN VALUE"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:515
msgid "The return value is 2 when"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:517
msgid "a program error occurred."
msgstr ""
#. type: Plain text
#: en/linkchecker.1:519
msgid "The return value is 1 when"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:521
msgid "invalid links were found or"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:523
msgid "link warnings were found and warnings are enabled"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:525
msgid "Else the return value is zero."
msgstr ""
#. type: SH
#: en/linkchecker.1:526
#, no-wrap
msgid "LIMITATIONS"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:530
msgid ""
"LinkChecker consumes memory for each queued URL to check. With thousands of "
"queued URLs the amount of consumed memory can become quite large. This might "
"slow down the program or even the whole system."
msgstr ""
#. type: SH
#: en/linkchecker.1:531
#, no-wrap
msgid "FILES"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:533
msgid "B<~/.linkchecker/linkcheckerrc> - default configuration file"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:535
msgid "B<~/.linkchecker/blacklist> - default blacklist logger output filename"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:537
msgid "B<linkchecker-out.>I<TYPE> - default logger file output name"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:539
msgid ""
"B<http://docs.python.org/library/codecs.html#standard-encodings> - valid "
"output encodings"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:541
msgid ""
"B<http://docs.python.org/howto/regex.html> - regular expression "
"documentation"
msgstr ""
#. type: SH
#: en/linkchecker.1:542 en/linkcheckerrc.5:538 en/linkchecker-gui.1:16
#, no-wrap
msgid "SEE ALSO"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:544
msgid "B<linkcheckerrc>(5)"
msgstr ""
#. type: SH
#: en/linkchecker.1:545 en/linkcheckerrc.5:541 en/linkchecker-gui.1:19
#, no-wrap
msgid "AUTHOR"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:547 en/linkcheckerrc.5:543 en/linkchecker-gui.1:21
msgid "Bastian Kleineidam E<lt>calvin@users.sourceforge.netE<gt>"
msgstr ""
#. type: SH
#: en/linkchecker.1:548 en/linkcheckerrc.5:544 en/linkchecker-gui.1:22
#, no-wrap
msgid "COPYRIGHT"
msgstr ""
#. type: Plain text
#: en/linkchecker.1:549 en/linkcheckerrc.5:545
msgid "Copyright \\(co 2000-2012 Bastian Kleineidam"
msgstr ""
#. type: TH
#: en/linkcheckerrc.5:1
#, no-wrap
msgid "linkcheckerrc"
msgstr ""
#. type: TH
#: en/linkcheckerrc.5:1
#, no-wrap
msgid "2007-11-30"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:4
msgid "linkcheckerrc - configuration file for LinkChecker"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:8
msgid ""
"B<linkcheckerrc> is the default configuration file LinkChecker. The file is "
"written in an INI-style format."
msgstr ""
#. type: SH
#: en/linkcheckerrc.5:9
#, no-wrap
msgid "SETTINGS"
msgstr ""
#. type: SS
#: en/linkcheckerrc.5:11
#, no-wrap
msgid "[checking]"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:12
#, no-wrap
msgid "B<threads=>I<NUMBER>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:18
msgid "Command line option: B<--threads>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:18
#, no-wrap
msgid "B<timeout=>I<NUMBER>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:24
msgid "Command line option: B<--timeout>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:24
#, no-wrap
msgid "B<anchors=>[B<0>|B<1>]"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:30
msgid "Command line option: B<--anchors>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:30
#, no-wrap
msgid "B<recursionlevel=>I<NUMBER>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:37
msgid "Command line option: B<--recursion-level>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:37
#, no-wrap
msgid "B<warningregex=>=I<REGEX>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:45
msgid ""
"Use this to check for pages that contain some form of error, for example "
"\"This page has moved\" or \"Oracle Application Server error\"."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:47
msgid "Command line option: B<--warning-regex>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:47
#, no-wrap
msgid "B<warnsizebytes=>I<NUMBER>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:53
msgid "Command line option: B<--warning-size-bytes>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:53
#, no-wrap
msgid "B<nntpserver=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:60
msgid "Command line option: B<--nntp-server>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:60
#, no-wrap
msgid "B<useragent=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:67
msgid "Command line option: B<--user-agent>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:67
#, no-wrap
msgid "B<checkhtml=>[B<0>|B<1>]"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:71
msgid ""
"Check syntax of HTML URLs with the HTML tidy library, falling back to the "
"W3C online validator if HTML tidy is not available.."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:73
msgid "Command line option: B<--check-html>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:73
#, no-wrap
msgid "B<checkcss=>[B<0>|B<1>]"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:77
msgid ""
"Check syntax of CSS URLs with the cssutils library, falling back to the W3C "
"online validator if cssutils is not available."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:79
msgid "Command line option: B<--check-css>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:79
#, no-wrap
msgid "B<scanvirus=>[B<0>|B<1>]"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:84
msgid "Command line option: B<--scan-virus>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:84
#, no-wrap
msgid "B<clamavconf=>I<filename>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:87
msgid "Filename of B<clamd.conf> config file."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:89 en/linkcheckerrc.5:116 en/linkcheckerrc.5:126 en/linkcheckerrc.5:144 en/linkcheckerrc.5:150 en/linkcheckerrc.5:257 en/linkcheckerrc.5:274
msgid "Command line option: none"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:89
#, no-wrap
msgid "B<cookies=>[B<0>|B<1>]"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:92
msgid "Accept and send HTTP cookies."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:94
msgid "Command line option: B<--cookies>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:94
#, no-wrap
msgid "B<cookiefile=>I<filename>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:98
msgid ""
"Read a file with initial cookie data. The cookie data format is explained in "
"linkchecker(1)."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:100
msgid "Command line option: B<--cookiefile>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:100
#, no-wrap
msgid "B<pause=>I<NUMBER>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:104
msgid ""
"Pause the given number of seconds between two subsequent connection requests "
"to the same host."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:106
msgid "Command line option: B<--pause>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:106
#, no-wrap
msgid "B<debugmemory=>[B<0>|B<1>]"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:111
msgid ""
"When checking finishes, write a memory dump to a temporary file. The memory "
"dump is written both when checking finishes normally and when checking gets "
"canceled."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:114
msgid ""
"The memory dump only works if the python-meliae package is installed. "
"Otherwise a warning is printed to install it."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:116
#, no-wrap
msgid "B<localwebroot=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:120
msgid ""
"When checking absolute URLs inside local files, the given root directory is "
"used as base URL."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:124
msgid ""
"Note that the given directory must have URL syntax, so it must use a slash "
"to join directories instead of a backslash. And the given directory must "
"end with a slash."
msgstr ""
#. type: SS
#: en/linkcheckerrc.5:126
#, no-wrap
msgid "[filtering]"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:127
#, no-wrap
msgid "B<ignore=>I<REGEX> (MULTILINE)"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:130
msgid "Only check syntax of URLs matching the given regular expressions."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:132
msgid "Command line option: B<--ignore-url>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:132
#, no-wrap
msgid "B<nofollow=>I<REGEX> (MULTILINE)"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:136
msgid "Check but do not recurse into URLs matching the given regular expressions."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:138
msgid "Command line option: B<--no-follow-url>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:138
#, no-wrap
msgid "B<ignorewarnings=>I<NAME>[B<,>I<NAME>...]"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:142
msgid ""
"Ignore the comma-separated list of warnings. See B<WARNIGS> for the list of "
"supported warnings."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:144
#, no-wrap
msgid "B<internlinks=>I<REGEX>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:148
msgid ""
"Regular expression to add more URLs recognized as internal links. Default "
"is that URLs given on the command line are internal."
msgstr ""
#. type: SS
#: en/linkcheckerrc.5:150
#, no-wrap
msgid "[authentication]"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:151
#, no-wrap
msgid "B<entry=>I<REGEX> I<USER> [I<PASS>] (MULTILINE)"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:157
msgid ""
"Provide different user/password pairs for different link types. Entries are "
"a triple (URL regex, username, password) or a tuple (URL regex, username), "
"where the entries are separated by whitespace."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:160
msgid ""
"The password is optional and if missing it has to be entered at the "
"commandline."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:166
msgid ""
"If the regular expression matches the checked URL, the given user/password "
"pair is used for authentication. The commandline options B<-u> and B<-p> "
"match every link and therefore override the entries given here. The first "
"match wins. At the moment, authentication is used/needed for http[s] and ftp "
"links."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:168
msgid "Command line option: B<-u>, B<-p>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:168
#, no-wrap
msgid "B<loginurl=>I<URL>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:173
msgid ""
"A login URL to be visited before checking. Also needs authentication data "
"set for it, and implies using cookies because most logins use cookies "
"nowadays."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:173
#, no-wrap
msgid "B<loginuserfield=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:176
msgid "The name of the user CGI field. Default name is B<login>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:176
#, no-wrap
msgid "B<loginpasswordfield=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:179
msgid "The name of the password CGI field. Default name is B<password>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:179
#, no-wrap
msgid "B<loginextrafields=>I<NAME>B<:>I<VALUE> (MULTILINE)"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:183
msgid ""
"Optionally any additional CGI name/value pairs. Note that the default values "
"are submitted automatically."
msgstr ""
#. type: SS
#: en/linkcheckerrc.5:183
#, no-wrap
msgid "[output]"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:184
#, no-wrap
msgid "B<debug=>I<STRING>[B<,>I<STRING>...]"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:190
msgid ""
"Print debugging output for the given loggers. Available loggers are "
"B<cmdline>, B<checking>, B<cache>, B<gui>, B<dns>, B<thread> and B<all>. "
"Specifying B<all> is an alias for specifying all available loggers."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:192
msgid "Command line option: B<--debug>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:192
#, no-wrap
msgid "B<status=>[B<0>|B<1>]"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:195
msgid "Control printing check status messages. Default is 1."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:197
msgid "Command line option: B<--no-status>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:197
#, no-wrap
msgid "B<log=>I<TYPE>[B</>I<ENCODING>]"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:207
msgid ""
"The I<ENCODING> specifies the output encoding, the default is that of your "
"locale. Valid encodings are listed at "
"B<http://docs.python.org/library/codecs.html#standard-encodings>."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:209
msgid "Command line option: B<--output>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:209
#, no-wrap
msgid "B<verbose=>[B<0>|B<1>]"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:212
msgid ""
"If set log all checked URLs once. Default is to log only errors and "
"warnings."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:214 en/linkcheckerrc.5:231
msgid "Command line option: B<--verbose>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:214
#, no-wrap
msgid "B<complete=>[B<0>|B<1>]"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:218
msgid ""
"If set log all checked URLs, even duplicates. Default is to log duplicate "
"URLs only once."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:220
msgid "Command line option: B<--complete>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:220
#, no-wrap
msgid "B<warnings=>[B<0>|B<1>]"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:223
msgid "If set log warnings. Default is to log warnings."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:225
msgid "Command line option: B<--no-warnings>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:225
#, no-wrap
msgid "B<quiet=>[B<0>|B<1>]"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:229
msgid ""
"If set, operate quiet. An alias for B<log=none>. This is only useful with "
"B<fileoutput>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:231
#, no-wrap
msgid "B<fileoutput=>I<TYPE>[B<,>I<TYPE>...]"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:236
msgid ""
"Output to a files B<linkchecker-out.>I<TYPE>, "
"B<$HOME/.linkchecker/blacklist> for B<blacklist> output."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:242
msgid ""
"Valid file output types are B<text>, B<html>, B<sql>, B<csv>, B<gml>, "
"B<dot>, B<xml>, B<none> or B<blacklist> Default is no file output. The "
"various output types are documented below. Note that you can suppress all "
"console output with B<output=none>."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:244
msgid "Command line option: B<--file-output>"
msgstr ""
#. type: SS
#: en/linkcheckerrc.5:244
#, no-wrap
msgid "[text]"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:245 en/linkcheckerrc.5:308 en/linkcheckerrc.5:318 en/linkcheckerrc.5:328 en/linkcheckerrc.5:344 en/linkcheckerrc.5:360 en/linkcheckerrc.5:391 en/linkcheckerrc.5:398 en/linkcheckerrc.5:408
#, no-wrap
msgid "B<filename=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:249
msgid ""
"Specify output filename for text logging. Default filename is "
"B<linkchecker-out.txt>."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:251
msgid "Command line option: B<--file-output=>"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:251 en/linkcheckerrc.5:311 en/linkcheckerrc.5:321 en/linkcheckerrc.5:331 en/linkcheckerrc.5:347 en/linkcheckerrc.5:363 en/linkcheckerrc.5:401 en/linkcheckerrc.5:411
#, no-wrap
msgid "B<parts=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:255
msgid ""
"Comma-separated list of parts that have to be logged. See B<LOGGER PARTS> "
"below."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:257 en/linkcheckerrc.5:314 en/linkcheckerrc.5:324 en/linkcheckerrc.5:334 en/linkcheckerrc.5:350 en/linkcheckerrc.5:366 en/linkcheckerrc.5:394 en/linkcheckerrc.5:404 en/linkcheckerrc.5:414
#, no-wrap
msgid "B<encoding=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:261
msgid ""
"Valid encodings are listed in "
"B<http://docs.python.org/library/codecs.html#standard-encodings>."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:263
msgid "Default encoding is B<iso-8859-15>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:263
#, no-wrap
msgid "I<color*>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:272
msgid ""
"Color settings for the various log parts, syntax is I<color> or "
"I<type>B<;>I<color>. The I<type> can be B<bold>, B<light>, B<blink>, "
"B<invert>. The I<color> can be B<default>, B<black>, B<red>, B<green>, "
"B<yellow>, B<blue>, B<purple>, B<cyan>, B<white>, B<Black>, B<Red>, "
"B<Green>, B<Yellow>, B<Blue>, B<Purple>, B<Cyan> or B<White>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:274
#, no-wrap
msgid "B<colorparent=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:277
msgid "Set parent color. Default is B<white>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:277
#, no-wrap
msgid "B<colorurl=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:280
msgid "Set URL color. Default is B<default>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:280
#, no-wrap
msgid "B<colorname=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:283
msgid "Set name color. Default is B<default>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:283
#, no-wrap
msgid "B<colorreal=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:286
msgid "Set real URL color. Default is B<cyan>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:286
#, no-wrap
msgid "B<colorbase=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:289
msgid "Set base URL color. Default is B<purple>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:289
#, no-wrap
msgid "B<colorvalid=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:292
msgid "Set valid color. Default is B<bold;green>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:292
#, no-wrap
msgid "B<colorinvalid=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:295
msgid "Set invalid color. Default is B<bold;red>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:295
#, no-wrap
msgid "B<colorinfo=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:298
msgid "Set info color. Default is B<default>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:298
#, no-wrap
msgid "B<colorwarning=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:301
msgid "Set warning color. Default is B<bold;yellow>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:301
#, no-wrap
msgid "B<colordltime=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:304
msgid "Set download time color. Default is B<default>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:304
#, no-wrap
msgid "B<colorreset=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:307
msgid "Set reset color. Default is B<deault>."
msgstr ""
#. type: SS
#: en/linkcheckerrc.5:307
#, no-wrap
msgid "[gml]"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:311 en/linkcheckerrc.5:314 en/linkcheckerrc.5:317 en/linkcheckerrc.5:321 en/linkcheckerrc.5:324 en/linkcheckerrc.5:327 en/linkcheckerrc.5:331 en/linkcheckerrc.5:334 en/linkcheckerrc.5:337 en/linkcheckerrc.5:347 en/linkcheckerrc.5:350 en/linkcheckerrc.5:353 en/linkcheckerrc.5:363 en/linkcheckerrc.5:366 en/linkcheckerrc.5:369 en/linkcheckerrc.5:394 en/linkcheckerrc.5:397 en/linkcheckerrc.5:401 en/linkcheckerrc.5:404 en/linkcheckerrc.5:407 en/linkcheckerrc.5:411 en/linkcheckerrc.5:414 en/linkcheckerrc.5:417
msgid "See [text] section above."
msgstr ""
#. type: SS
#: en/linkcheckerrc.5:317
#, no-wrap
msgid "[dot]"
msgstr ""
#. type: SS
#: en/linkcheckerrc.5:327
#, no-wrap
msgid "[csv]"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:337 en/linkcheckerrc.5:356
#, no-wrap
msgid "B<separator=>I<CHAR>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:340
msgid "Set CSV separator. Default is a comma (B<,>)."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:340
#, no-wrap
msgid "B<quotechar=>I<CHAR>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:343
msgid "Set CSV quote character. Default is a double quote (B<\">)."
msgstr ""
#. type: SS
#: en/linkcheckerrc.5:343
#, no-wrap
msgid "[sql]"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:353
#, no-wrap
msgid "B<dbname=>I<STRING>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:356
msgid "Set database name to store into. Default is B<linksdb>."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:359
msgid "Set SQL command separator character. Default is a semicolor (B<;>)."
msgstr ""
#. type: SS
#: en/linkcheckerrc.5:359
#, no-wrap
msgid "[html]"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:369
#, no-wrap
msgid "B<colorbackground=>I<COLOR>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:372
msgid "Set HTML background color. Default is B<#fff7e5>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:372
#, no-wrap
msgid "B<colorurl=>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:375
msgid "Set HTML URL color. Default is B<#dcd5cf>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:375
#, no-wrap
msgid "B<colorborder=>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:378
msgid "Set HTML border color. Default is B<#000000>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:378
#, no-wrap
msgid "B<colorlink=>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:381
msgid "Set HTML link color. Default is B<#191c83>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:381
#, no-wrap
msgid "B<colorwarning=>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:384
msgid "Set HTML warning color. Default is B<#e0954e>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:384
#, no-wrap
msgid "B<colorerror=>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:387
msgid "Set HTML error color. Default is B<#db4930>."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:387
#, no-wrap
msgid "B<colorok=>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:390
msgid "Set HTML valid color. Default is B<#3ba557>."
msgstr ""
#. type: SS
#: en/linkcheckerrc.5:390
#, no-wrap
msgid "[blacklist]"
msgstr ""
#. type: SS
#: en/linkcheckerrc.5:397
#, no-wrap
msgid "[xml]"
msgstr ""
#. type: SS
#: en/linkcheckerrc.5:407
#, no-wrap
msgid "[gxml]"
msgstr ""
#. type: SH
#: en/linkcheckerrc.5:418
#, no-wrap
msgid "LOGGER PARTS"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:434
#, no-wrap
msgid ""
" B<all> (for all parts)\n"
" B<id> (a unique ID for each logentry)\n"
" B<realurl> (the full url link)\n"
" B<result> (valid or invalid, with messages)\n"
" B<extern> (1 or 0, only in some logger types reported)\n"
" B<base> (base href=...)\n"
" B<name> (E<lt>a href=...E<gt>nameE<lt>/aE<gt> and E<lt>img "
"alt=\"name\"E<gt>)\n"
" B<parenturl> (if any)\n"
" B<info> (some additional info, e.g. FTP welcome messages)\n"
" B<warning> (warnings)\n"
" B<dltime> (download time)\n"
" B<checktime> (check time)\n"
" B<url> (the original url name, can be relative)\n"
" B<intro> (the blurb at the beginning, \"starting at ...\")\n"
" B<outro> (the blurb at the end, \"found x errors ...\")\n"
msgstr ""
#. type: SH
#: en/linkcheckerrc.5:434
#, no-wrap
msgid "MULTILINE"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:438
msgid ""
"Some option values can span multiple lines. Each line has to be indented for "
"that to work. Lines starting with a hash (B<#>) will be ignored, though they "
"must still be indented."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:444
#, no-wrap
msgid ""
" ignore=\n"
" lconline\n"
" bookmark\n"
" # a comment\n"
" ^mailto:\n"
msgstr ""
#. type: SH
#: en/linkcheckerrc.5:445
#, no-wrap
msgid "EXAMPLE"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:448
#, no-wrap
msgid ""
" [output]\n"
" log=html\n"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:451
#, no-wrap
msgid ""
" [checking]\n"
" threads=5\n"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:454
#, no-wrap
msgid ""
" [filtering]\n"
" ignorewarnings=http-moved-permanent\n"
msgstr ""
#. type: SH
#: en/linkcheckerrc.5:455
#, no-wrap
msgid "WARNINGS"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:458
msgid ""
"The following warnings are recognized in the 'ignorewarnings' config file "
"entry:"
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:459
#, no-wrap
msgid "B<file-missing-slash>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:462
msgid "The file: URL is missing a trailing slash."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:462
#, no-wrap
msgid "B<file-system-path>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:465
msgid "The file: path is not the same as the system specific path."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:465
#, no-wrap
msgid "B<ftp-missing-slash>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:468
msgid "The ftp: URL is missing a trailing slash."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:468
#, no-wrap
msgid "B<http-auth-unknonwn>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:471
msgid "Unsupported HTTP authentication method."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:471
#, no-wrap
msgid "B<http-cookie-store-error>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:474
msgid "An error occurred while storing a cookie."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:474
#, no-wrap
msgid "B<http-decompress-error>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:477
msgid "An error occurred while decompressing the URL content."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:477
#, no-wrap
msgid "B<http-empty-content>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:480
msgid "The URL had no content."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:480
#, no-wrap
msgid "B<http-moved-permanent>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:483
msgid "The URL has moved permanently."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:483
#, no-wrap
msgid "B<http-robots-denied>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:486
msgid "The http: URL checking has been denied."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:486
#, no-wrap
msgid "B<http-unsupported-encoding>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:489
msgid "The URL content is encoded with an unknown encoding."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:489
#, no-wrap
msgid "B<http-wrong-redirect>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:492
msgid "The URL has been redirected to an URL of a different type."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:492
#, no-wrap
msgid "B<ignore-url>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:495
msgid "The URL has been ignored."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:495
#, no-wrap
msgid "B<mail-no-connection>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:498
msgid "No connection to a MX host could be established."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:498
#, no-wrap
msgid "B<mail-no-mx-host>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:501
msgid "The mail MX host could not be found."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:501
#, no-wrap
msgid "B<mail-unverified-address>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:504
msgid "The mailto: address could not be verified."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:504
#, no-wrap
msgid "B<nntp-no-newsgroup>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:507
msgid "The NNTP newsgroup could not be found."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:507
#, no-wrap
msgid "B<nntp-no-server>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:510
msgid "No NNTP server was found."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:510
#, no-wrap
msgid "B<url-anchor-not-found>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:513
msgid "URL anchor was not found."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:513
#, no-wrap
msgid "B<url-content-size-unequal>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:516
msgid "The URL content size and download size are unequal."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:516
#, no-wrap
msgid "B<url-content-size-zero>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:519
msgid "The URL content size is zero."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:519
#, no-wrap
msgid "B<url-content-too-large>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:522
msgid "The URL content size is too large."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:522
#, no-wrap
msgid "B<url-effective-url>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:525
msgid "The effective URL is different from the original."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:525
#, no-wrap
msgid "B<url-error-getting-content>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:528
msgid "Could not get the content of the URL."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:528
#, no-wrap
msgid "B<url-obfuscated-ip>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:531
msgid "The IP is obfuscated."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:531
#, no-wrap
msgid "B<url-warnregex-found>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:534
msgid "The warning regular expression was found in the URL contents."
msgstr ""
#. type: TP
#: en/linkcheckerrc.5:534
#, no-wrap
msgid "B<url-whitespace>"
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:537
msgid "The URL contains leading or trailing whitespace."
msgstr ""
#. type: Plain text
#: en/linkcheckerrc.5:540
msgid "linkchecker(1)"
msgstr ""
#. type: TH
#: en/linkchecker-gui.1:1
#, no-wrap
msgid "LINKCHECKER-GUI"
msgstr ""
#. type: TH
#: en/linkchecker-gui.1:1
#, no-wrap
msgid "2009-01-10"
msgstr ""
#. type: TH
#: en/linkchecker-gui.1:1
#, no-wrap
msgid "LinkChecker GUI"
msgstr ""
#. type: TH
#: en/linkchecker-gui.1:1
#, no-wrap
msgid "LinkChecker GUI client"
msgstr ""
#. type: Plain text
#: en/linkchecker-gui.1:4
msgid "linkchecker-gui - GUI client to check links of websites and HTML documents"
msgstr ""
#. type: Plain text
#: en/linkchecker-gui.1:7
msgid "B<linkchecker-gui> [I<file-or-url-or-project>]"
msgstr ""
#. type: Plain text
#: en/linkchecker-gui.1:10
msgid "A graphical interface to check links of websites and HTML documents."
msgstr ""
#. type: SH
#: en/linkchecker-gui.1:11
#, no-wrap
msgid "PROJECT FILES"
msgstr ""
#. type: Plain text
#: en/linkchecker-gui.1:15
msgid ""
"A project file has a .lcp extension. The file stores all active preferences "
"and the current checked URL. Project files can be loaded with the menu entry "
"or with drag-and-drop on the GUI window."
msgstr ""
#. type: Plain text
#: en/linkchecker-gui.1:18
msgid "B<linkchecker>(1)"
msgstr ""
#. type: Plain text
#: en/linkchecker-gui.1:23
msgid "Copyright \\(co 2009-2012 Bastian Kleineidam"
msgstr ""
|