1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078
|
# Revision history for Perl extension Encode.
#
# $Id: Changes,v 3.08 2020/12/02 01:28:17 dankogai Exp dankogai $
#
$Revision: 3.08 $ $Date: 2020/12/02 01:28:17 $
! Makefile.PL
Addressed: Encode requires Test::More 0.81_01 - this warns
https://rt.cpan.org/Public/Bug/Display.html?id=133850
! bin/encguess
Pulled: Fix typo
https://github.com/dankogai/p5-encode/pull/153
! t/gsm0338.t
Pulled: Remove old disabled tests from t/gsm0338.t
https://github.com/dankogai/p5-encode/pull/152
! lib/Encode/GSM0338.pm t/gsm0338.t
Pulled: GSM0338: Enable PerlIO and fix code to not require
line buffering #151
https://github.com/dankogai/p5-encode/pull/151
3.07 2020/07/25 12:59:29
! lib/Encode/GSM0338.pm t/gsm0338.t
Pulled: GSM0338: Fix encoding module to be compatible with
latest GSM 03.38 standard
https://github.com/dankogai/p5-encode/pull/149
3.06 2020/05/02 02:32:27
! bin/enc2xs
address RT#132471: Will not work in 5.32 going forward
remove the use of lib/unicore/Name.pl
https://rt.cpan.org/Ticket/Display.html?id=132471
! encoding.pm
Bump version from 2.22 to 3.00 to address RT#132377
https://rt.cpan.org/Public/Bug/Display.html?id=132377
3.05 2020/03/18 04:56:12
! Encode.pm
Address Tiny change for Encode.pm from David Levine
We do some compiled perl, and @INC is not always defined,
so it throws a warning.
<BN8PR12MB3153AEAF99EC08DB1E69A458A4FA0@BN8PR12MB3153.namprd12.prod.outlook.com>
! lib/Encode/Guess.pm
fix RT#131359: Encode::Guess: incomplete error messsage
https://rt.cpan.org/Public/Bug/Display.html?id=131359
3.04 2020/03/10 22:29:50
! Encode.pm
Bump version to make bleadperl happy
<0036284d-87ac-a021-0ba9-44bc972e88ab@khwilliamson.com>
3.03 2020/03/02 04:34:34
! Encode.pm Encode.xs
pulled: Stop using deprecated function
https://github.com/dankogai/p5-encode/pull/148
! Encode.xs
pulled: Silence unused var warnings from Encode
https://github.com/dankogai/p5-encode/pull/147
3.02 2019/12/25 09:23:21
! t/whatwg-aliases.t
drop RELEASE_TESTING since Pumpking also uses it.
https://github.com/Perl/perl5/issues/17382
! bin/enc2xs
Pulled: enc2xs: Add environment variable to suppress comments
https://github.com/dankogai/p5-encode/pull/145
! t/enc_utf8.t
Pulled: fixup enc_utf8.t for ONLY_PRAGMA_WARNINGS
https://github.com/dankogai/p5-encode/pull/142
! Encode/encode.h
Pulled: Fix linker errors
https://github.com/dankogai/p5-encode/pull/141
3.01 2019/03/13 00:26:18
! Encode.xs
patched: Warning: Use of uninitialized value in subroutine entry
https://github.com/dankogai/p5-encode/issues/139#issuecomment-459765852
! Encode/encode.h
Pulled: Fix compile error and warning
https://github.com/dankogai/p5-encode/pull/138
3.00 2019/01/31
! Encode.pm
VERSION bumped to 3.00 to make PAUSE happy
2.100 2019/01/31 04:26:40
! Encode.xs MANIFEST
+ t/xml.t
Pulled: Do not access SV* buffer if we have not called SvPV_force()
https://github.com/dankogai/p5-encode/pull/137
! MANIFEST
remove utf8messages.t which is already deleted from the repository.
2.99 2019/01/21 03:13:35
! Unicode/Unicode.xs Unicode/Unicode.pm
VERSION++'ed as Perl core needed.
https://github.com/dankogai/p5-encode/issues/136
! encengine.c
Pulled: protect do_encode from NULL dst
https://github.com/dankogai/p5-encode/pull/135
2.98 2018/04/22 09:02:00
! Encode.pm Encode.xs Encode/encode.h Unicode/Unicode.xs encengine.c
t/decode.t t/enc_eucjp.t t/utf8messages.t t/utf8warnings.t
- t/utf8messages.t
+ t/utf32warnings.t
Pulled: Introduce new Encode check flag Encode::ONLY_PRAGMA_WARNINGS
https://github.com/dankogai/p5-encode/pull/134
2.98 2018/04/22 09:02:00
! t/truncated_utf8.t
Resolved: RT125131: truncated_utf8.t TODO test pass in blead
https://rt.cpan.org/Ticket/Display.html?id=125131
! Encode.xs
Pulled: Remove XS functions _bytes_to_utf8() and _utf8_to_bytes()
https://github.com/dankogai/p5-encode/pull/133
! Unicode/Unicode.xs
Pulled: Automatically compute length in attr() macro
https://github.com/dankogai/p5-encode/pull/132
! Encode.xs
Pulled: Fix compile warnings on 64bit MS VS2017
https://github.com/dankogai/p5-encode/pull/131
2.97 2018/02/21 12:14:33
! Encode.xs
Pulled: New perls that fixes
https://github.com/dankogai/p5-encode/issues/129
https://rt.cpan.org/Ticket/Display.html?id=124399
https://github.com/dankogai/p5-encode/pull/130
2.96 2018/02/11 05:35:26
! Encode.pm encoding.pm Unicode/Unicode.pm
VERSION++ to make bleadperl happy
<CADED=K4v5WQ3R7+aTu1xV4q2RcZFT=jriZubqfrHe7PZrgRmDA@mail.gmail.com>
2.95 2018/02/08 00:26:15
! Encode.pm Encode.xs Encode/encode.h Unicode/Unicode.pm
Unicode/Unicode.xs encengine.c
Pulled: new perls
https://github.com/dankogai/p5-encode/pull/128
2.94 2018/01/09 05:53:00
! lib/Encode/Alias.pm
Fixed: deep recursion in Encode::find_encoding when decoding
bad MIME header
https://github.com/dankogai/p5-encode/pull/127
! Encode.pm
Pulled: Include more information about Encode::is_utf8() that it
should not be normally used
https://github.com/dankogai/p5-encode/pull/126
Pulled: Remove misleading documentation about UTF8 flag
https://github.com/dankogai/p5-encode/pull/125
2.93 2017/10/06 22:21:53
! lib/Encode/MIME/Name.pm t/mime-name.t
Pulled: Add "euc-cn" => "EUC-CN" alias to Encode::MIME::Name
https://github.com/dankogai/p5-encode/pull/124
! encoding.pm
Pulled: Propagate fatal errors from the encoding pragma back to the caller
Resolves rt #100427
https://github.com/dankogai/p5-encode/pull/123
https://rt.cpan.org/Ticket/Display.html?id=100427
! lib/Encode/CN/HZ.pm lib/Encode/JP/JIS7.pm lib/Encode/MIME/Header.pm
t/decode.t
Pulled: Uninitialized value fixes #122
https://github.com/dankogai/p5-encode/pull/122
! Makefile.PL
Pulled: Fix -Werror=declaration-after-statement for gcc 4.1.2
https://github.com/dankogai/p5-encode/pull/121
2.92 2017/07/18 07:15:29
! Encode.pm MANIFEST lib/Encode/Alias.pm
+ t/use-Encode-Alias.t
Pulled: Fix loading Encode::Alias before Encode
https://github.com/dankogai/p5-encode/pull/118
! Makefile.PL
Pulled: Fix gccversion Argument "630 20170516" isn't numeric
https://github.com/dankogai/p5-encode/pull/118
! lib/Encode/MIME/Header.pm t/mime-header.t
Pulled: Encode::MIME::Header: Fix parsing quoted-printable text
in strict mode
https://github.com/dankogai/p5-encode/pull/115
! Encode.pm
use define_encoding() instead of tweaking $Encode::Encoding{utf8}.
https://github.com/dankogai/p5-encode/commit/208d094b8cf82da488495400ea9a518841fd007a#commitcomment-22698036
2.91 2017/06/22 08:11:05
! Encode.pm
Addressed: RT#122167: use parent q{Encode::Encoding}; fails:
Can't locate object
https://rt.cpan.org/Ticket/Display.html?id=122167
! Makefile.PL
Pulled: fix gcc warnings for older gcc < 4.0
https://github.com/dankogai/p5-encode/pull/114
2.90 2017/06/10 17:23:50
! Makefile.PL
Pulled: Include all contributors into META
https://github.com/dankogai/p5-encode/pull/111
! bin/enc2xs bin/ucmlint encoding.pm
lib/Encode/Encoding.pm lib/Encode/GSM0338.pm t/CJKT.t
Pulled: Where possible do not depend on value of $@,
instead use return value of eval
https://github.com/dankogai/p5-encode/pull/110
! Encode.xs
Pulled: Fix more XS problems in Encode.xs file
https://github.com/dankogai/p5-encode/pull/109
! encoding.pm lib/Encode/Encoding.pm t/guess.t
Pulled: Small fixes
https://github.com/dankogai/p5-encode/pull/108
! Encode.pm Makefile.PL
Pulled: Load modules Encode::MIME::Name and Storable normally
https://github.com/dankogai/p5-encode/pull/107
! Unicode/Unicode.pm lib/Encode/Alias.pm lib/Encode/Encoding.pm
lib/Encode/Unicode/UTF7.pm
Pulled: Remove no warnings 'redefine'; and correctly loaddependences
https://github.com/dankogai/p5-encode/pull/106
! Encode.pm Encode.xs Unicode/Unicode.pm Unicode/Unicode.xs
Pulled: Remove PP stubs and reformat predefine_encodings()
https://github.com/dankogai/p5-encode/pull/104
! Encode.pm Encode.xs
Pulled: Run Encode XS BOOT code at compile time
https://github.com/dankogai/p5-encode/pull/103
! Encode.pm Unicode/Unicode.pm lib/Encode/Encoding.pm
lib/Encode/Guess.pm lib/Encode/JP/JIS7.pm lib/Encode/MIME/Header.pm
lib/Encode/MIME/Header/ISO_2022_JP.pm
Pulled: Use Encode::define_encoding and propagate carp/croak message
https://github.com/dankogai/p5-encode/pull/102
! t/truncated_utf8.t t/utf8messages.t
Pulled: Fixes for older perl versions
https://github.com/dankogai/p5-encode/pull/101
! Encode.xs encoding.pm t/enc_eucjp.t t/enc_utf8.t
Pulled: cperl fixes: encoding undeprecated, no strict hashpairs
https://github.com/dankogai/p5-encode/pull/100
! MANIFEST
Pulled: Add missing tests into MANIFEST file
https://github.com/dankogai/p5-encode/pull/99
! Encode.xs t/fallback.t
Pulled: Cleanup code for handling fallback/replacement characters
https://github.com/dankogai/p5-encode/pull/98
2.89 2017/04/21 05:20:14
! Encode.pm Encode.xs MANIFEST t/enc_eucjp.t t/enc_utf8.t
+ t/utf8messages.t
Pulled: Fixes for Encode::utf8
https://github.com/dankogai/p5-encode/pull/97
! Encode.pm
Pulled: Fix documentation about CHECK coderef
https://github.com/dankogai/p5-encode/pull/96
! Encode.xs
Pulled: For efficiency use newSVpvn() instead of newSVpv()
in do_fallback_cb()
https://github.com/dankogai/p5-encode/pull/95
! Encode.xs
Pulled Call Encode callback function with integer argument correctly
https://github.com/dankogai/p5-encode/pull/94
! lib/Encode/CN/HZ.pm lib/Encode/GSM0338.pm lib/Encode/JP/JIS7.pm
lib/Encode/KR/2022_KR.pm lib/Encode/MIME/Header.pm
lib/Encode/MIME/Header/ISO_2022_JP.pm lib/Encode/Unicode/UTF7.pm
t/undef.t
Pulled: Fix all Encode modules so their encode(undef) and decode(undef)
calls returns undef
https://github.com/dankogai/p5-encode/pull/93
+ t/whatwg-aliases.json t/whatwg-aliases.t
Pulled: New (failing) tests for aliases defined in WHATWG Encoding spec #92
https://github.com/dankogai/p5-encode/pull/92
! Encode.pm
Pulled: Update documentation for UTF-8
https://github.com/dankogai/p5-encode/pull/91
! Encode.xs t/truncated_utf8.t
Pulled: Consume correct number of bytes on malformed
! Encode.pm Unicode/Unicode.pm
Pulled: document str2bytes and bytes2str
https://github.com/dankogai/p5-encode/pull/86
! Encode.xs t/fallback.t t/truncated_utf8.t
Pulled: Fix appending correct number of Unicode replacement characters
https://github.com/dankogai/p5-encode/pull/84
2.88 2016/11/29 23:29:23
! t/taint.t
Pulled: Fix test t/taint.t to pass when Encode::ConfigLocal is present
https://github.com/dankogai/p5-encode/pull/83
! Makefile.PL Unicode/Makefile.PL bin/enc2xs lib/Encode/Alias.pm
t/Aliases.t t/enc_data.t t/enc_module.t t/encoding.t t/jperl.t
Pulled: various fixes
https://github.com/dankogai/p5-encode/pull/82
! t/mime-header.t
Pulled: Fix test t/mime-header.t to pass on HP-UX 11.23/64 U
with perl v5.8.3
https://github.com/dankogai/p5-encode/pull/81
! t/Encode.t
Pulled: Extend COW tests for UTF-8 and Latin1
https://github.com/dankogai/p5-encode/pull/80
! Encode.xs Unicode/Unicode.xs
Pulled: Rmv impediment to compiling under C++11
https://github.com/dankogai/p5-encode/pull/78
! Encode.xs Unicode/Unicode.xs
Pulled: Do not use expressions in macros SvTRUE, SvPV, SvIV,
attr and attr_true
https://github.com/dankogai/p5-encode/pull/77
! Unicode/Unicode.xs t/magic.t
Pulled: Fix handling of undef, COW and magic scalar argument
in Unicode.xs
https://github.com/dankogai/p5-encode/pull/76
! Encode.xs encoding.pm
Fix 2 of 3 problems Steve Hay found.
1. C89 compiler failures (patch attached).
2. encoding.pm has changed slightly but has no $VERSION++
Message-Id: <CADED=K6ve_DAzRXPX=EsjtUDnZppAaw+BP1Ziw_fU5f32k+Wyg@mail.gmail.com>
2.87 2016/10/28 05:03:52
! Encode.xs t/taint.t
Pulled: Disable _utf8_on and _utf8_off for tainted values
https://github.com/dankogai/p5-encode/pull/74
! Encode.xs MANIFEST t/rt65541.t t/rt76824.t t/rt86327.t
Pulled: Fix crash 'panic: sv_setpvn called with negative strlen'
https://github.com/dankogai/p5-encode/pull/73
! Encode.xs MANIFEST t/rt113164.t
Pulled: Fix crash caused by undefined behaviour between
two sequence points
https://github.com/dankogai/p5-encode/pull/72
! Encode.xs MANIFEST lib/Encode/CN/HZ.pm lib/Encode/Encoder.pm
t/decode.t t/magic.t t/rt85489.t t/utf8ref.t
Pulled: Fix handling of undef, ref, typeglob, UTF8, COW and magic
scalar argument in all XS functions
https://github.com/dankogai/p5-encode/pull/70
! Encode/_T.e2x t/at-cn.t t/at-tw.t t/enc_data.t t/enc_module.t
t/encoding-locale.t t/encoding.t t/jperl.t t/mime-name.t t/undef.t
Pulled: Fix unit tests
https://github.com/dankogai/p5-encode/pull/69
! Encode.pm lib/Encode/MIME/Header.pm lib/Encode/MIME/Name.pm
t/mime-header.t t/mime-name.t t/taint.t
Pulled: Encode::MIME::Header clean up
https://github.com/dankogai/p5-encode/pull/68
! Encode.xs
Pulled: Generate CHECK value functions with newCONSTSUB()
instead with direct XS
https://github.com/dankogai/p5-encode/pull/67
! Encode.xs
Pulled: Encode::utf8: Fix count of replacement characters
for overflowed and overlong UTF-8 sequences
https://github.com/dankogai/p5-encode/pull/65
! Encode.xs t/fallback.t t/utf8strict.t
Pulled: Encode::utf8: Fix processing invalid UTF-8 subsequences
https://github.com/dankogai/p5-encode/pull/63
! Encode.pm t/utf8ref.t
Pulled: Fix return value of Encode::encode_utf8(undef)
https://rt.cpan.org/Ticket/Display.html?id=116904
https://github.com/dankogai/p5-encode/pull/62
2.86 2016/08/10 18:08:45
! encoding.pm t/enc_data.t t/enc_eucjp.t t/enc_module.t t/enc_utf8.t
t/encoding.t t/jperl.t
Fixed: #116196: [PATCH] Synchronize encoding.pm with blead
https://rt.cpan.org/Ticket/Display.html?id=116196
! Byte/Makefile.PL
Patched: #111421: Won't build with statically built perls
https://rt.cpan.org/Public/Bug/Display.html?id=111421
! Encode.xs encoding.pm
Pulled: Fixes for 5.8.x compilation failures
https://github.com/dankogai/p5-encode/pull/60
! Encode.xs
Patched: RT#116817 [PATCH] Avoid a C++ comment
https://rt.cpan.org/Ticket/Display.html?id=116817
2.85 2016/08/04 03:15:58
! Encode.pm bin/enc2xs bin/encguess bin/piconv bin/ucmlint bin/unidump
Pulled: CVE-2016-1238: avoid loading optional modules from .
https://github.com/dankogai/p5-encode/pull/58
! Encode.pm t/utf8warnings.t
Pulled: Rethrow 'utf8' warnings in from_to as well #57
https://github.com/dankogai/p5-encode/pull/57
! Encode.xs
Pulled and fixed:
Encode::utf8: Performance optimization for strict UTF-8 encoder #56
https://github.com/dankogai/p5-encode/pull/56
! t/Encode.t
s/use Test/use Test::More/
! t/Encode.t t/decode.t
Skip tests that pass typeglobs to decode if perl < v5.16
! Encode.xs t/cow.t
Patched: #115540 (from_to affecting COW strings)
https://rt.cpan.org/Ticket/Display.html?id=115540
! Encode.xs t/Encode.t t/decode.t
Merged: RT#115168:
[PATCH] Passing regex globals to decode() results in wrong result
https://rt.cpan.org/Ticket/Display.html?id=115168
! Makefile.pl
Pulled: t/encoding-locale.t fails with Test::More@0.80 or before.
https://github.com/dankogai/p5-encode/pull/55
! Encode.pm
Pulled: In-place modifications made explicit in docs for encode(),
decode() and decode_utf8()
https://github.com/dankogai/p5-encode/pull/54
2.84 2016/04/11 07:17:02
! lib/Encode/MIME/Header.pm
Pulled: Encode::MIME::Header:
Update description that this module is only for unstructured header
https://github.com/dankogai/p5-encode/pull/53
! lib/Encode/MIME/Header.pm t/mime-header.t
Pulled: Encode::MIME::Header: Fix valid_q_chars, '-' needs to be escaped
https://github.com/dankogai/p5-encode/pull/52
2.83 2016/03/24 07:49:54
! lib/Encode/MIME/Header.pm t/mime-header.t
Both decoder and encoder are rewritten by Pali Rohár.
Encoder should be now fully compliant of RFC 2047.
Decoder is less strict to be able to decode
strings generated by old versions of this module.
https://github.com/dankogai/p5-encode/pull/51
! t/mime-header.t
Add more test vectors from RFC2047, pp.11-12
! lib/Encode/Supported.pod
merge: Autrijus -> Audrey
https://github.com/dankogai/p5-encode/pull/50
2.82 2016/02/06 20:17:24
! lib/Encode/MIME/Header.pm
lib/Encode/MIME/Header/ISO_2022_JP.pm
t/mime-header.t
Reverted to 2.80 upon the request of whom submitted pull/48
2.81 2016/02/06 19:25:22
! lib/Encode/MIME/Header.pm
lib/Encode/MIME/Header/ISO_2022_JP.pm
t/mime-header.t
Merged: Encode::MIME::Header: Fix decoder and rewrite encoder
> Encoder should be now fully compliant of RFC 2047.
> Decoder is less strict to be able to decode strings
> generated by old versions of this module.
https://github.com/dankogai/p5-encode/pull/48
! t/mime-header.t
merge t/mime-header.t @ https://github.com/asjo/p5-encode
https://github.com/asjo/p5-encode/commit/19dcbff63e71909ffda7c151a73c5baaffe2976c
! t/mime-header.t
Add more test vectors from RFC2047, pp.11-12
2.80 2016/01/25 14:54:13
! lib/Encode/MIME/Header.pm t/mime-header.t
Address #111417: 2.79 breaks Email-MIME-1.936 tests
https://rt.cpan.org/Ticket/Display.html?id=111417
2.79 2016/01/22 06:44:53
! lib/Encode/MIME/Header.pm t/mime-header.t
Address: #88717:
encode('MIME-Header') does not find word boundaries correctly
By addressing this age-old bug, many other open RTs will be closed.
https://rt.cpan.org/Ticket/Display.html?id=88717
! lib/Encode/MIME/Header.pm
Address RT#107775: Inserts an empty line in an encoded header field
https://rt.cpan.org/Ticket/Display.html?id=107775
! lib/Encode/Alias.pm
Pulled: Update Alias.pm
https://github.com/dankogai/p5-encode/pull/47
! Encode.xs Unicode/Unicode.xs
Pulled: static funcs in Encode.xs and Unicode.xs
https://github.com/dankogai/p5-encode/pull/46
! Unicode/Unicode.pm
Pulled: Unicode.pm: Fix POD error
https://github.com/dankogai/p5-encode/pull/45
- META.yml
! MANIFEST
META.yml should not be included in the dist file.
It is also obsolete.
2.78 2015/09/24 02:19:21
! Makefile.PL
Mend pull/42 again. This time correctly.
! lib/Encode/Supported.pod
Applied: RT#107146: [PATCH] fix a spelling mistake
https://rt.cpan.org/Public/Bug/Display.html?id=107146
2.77 2015/09/15 13:53:27
! Unicode/Unicode.xs Unicode/Unicode.pm
Address RT#107043: If no BOM is found, the routine dies.
When you decode from UTF-(16|32) without -BE or LE without BOM,
Encode now assumes BE accordingly to RFC2781 and the Unicode
Standard version 8.0
https://rt.cpan.org/Public/Bug/Display.html?id=107043
! Makefile.PL encoding.t
Mend pull/42
! Encode.xs Makefile.PL encoding.pm encoding.t
Pulled: precompile 1252 table as that is now the Pod::Simple default
https://github.com/dankogai/p5-encode/pull/42
2.76 2015/07/31 02:18:28
! ucm/koi8-u.ucm
Pulled: Fix 0x95
https://github.com/dankogai/p5-encode/pull/41
2.75 2015/06/30 09:59:53
! Unicode/Unicode.pm Unicode/Unicode.xs encoding.pm
VERSION++'ed to make bleadperl happy
Message-Id: <CADED=K4QjMxGFAOLEuZUx3OtN-d-hokhurr4BYBE2E3okoxA7g@mail.gmail.com>
2.74 2015/06/25
! Unicode/Unicode.xs
Applied: #101486: [PATCH] reduce compiler warnings and stderr noise (again)
https://rt.cpan.org/Ticket/Display.html?id=101486
! bin/enc2xs
Applied patch: #105471: make Encode build with -pedantic
https://rt.cpan.org/Ticket/Display.html?id=105471
! Byte/Makefile.PL
CN/Makefile.PL
EBCDIC/Makefile.PL
JP/Makefile.PL
KR/Makefile.PL
Makefile.PL
Symbol/Makefile.PL
TW/Makefile.PL
Applied patch: #102826: non-deterministic Makefiles
https://rt.cpan.org/Ticket/Display.html?id=102826
2.73 2015/04/15 23:14:01
! lib/Encode/MIME/Header.pm
Addressed: RT#104422
decode('MIME-header') does not properly join similar Q encoded-words
https://rt.cpan.org/Ticket/Display.html?id=104422
2.73 2015/04/15 23:14:01
! MANIFEST
+ t/isa.t
! Encode.pm
Addressed RT#103253: Encode::XS does not inherit from Encode::Encoding
https://rt.cpan.org/Public/Bug/Display.html?id=103253
! encoding.pm
+ t/encoding-locale.t
Pulled: Rewrite of encoding::_get_locale_encoding for more portability #40
! encoding.pm
Pulled: encoding.pm: more inlining #39
https://github.com/dankogai/p5-encode/pull/39
2.72 2015/03/14 02:44:39
! encoding.pm
Copied from bleadperl to be in sync with it again.
http://www.nntp.perl.org/group/perl.perl5.porters/2015/03/msg226576.html
2.71 2015/03/12 00:03:52
! encoding.pm
Pulled: Don't fail 'no encoding' on EBCDIC
https://github.com/dankogai/p5-encode/pull/38
! lib/Encode/Alias.pm t/Aliases.t
Add cp65000 => UTF-7 and cp65001 => utf-8-strict
https://github.com/dankogai/p5-encode/issues/37
! encoding.pm
Sync w/ bleadperl
https://github.com/dankogai/p5-encode/pull/36
! bin/encguess
Pulled: show encguess example per #33
https://github.com/dankogai/p5-encode/pull/34
2.70 2015/02/05 10:53:00
! Makefile.PL
add bin/encguess to EXE_FILES
2.69 2015/02/05 10:35:11
! bin/encguess
Refactored so that
* does not depend on non-core module (File::Slurp in particular)
* PODified document
* -s "encA encB" to -s encA,encB which is more shell-friendly
* and more
! MANIFEST
+ bin/encguess
Pulled: Added CLI wrapper for Encode::Guess
https://github.com/dankogai/p5-encode/pull/32
! Unicode/Unicode.pm
Pulled: Bump $VERSION in module changed since Encode-2.60
https://github.com/dankogai/p5-encode/pull/31
2.68 2015/01/22 10:17:32
! Pulled: Fix C++ build on Windows with VC++
https://github.com/dankogai/p5-encode/pull/30
https://rt.cpan.org/Public/Bug/Display.html?id=82897
! lib/Encode/MIME/Header.pm t/taint.t
Pulled: maintain taint flag when encoding MIME on old perl
https://github.com/dankogai/p5-encode/pull/29
! Encode.pm
POD fixes
https://github.com/dankogai/p5-encode/pull/27
! bin/enc2xs
Addressed: RT#101345: [PATCH] reduce compiler warnings and stderr noise
enc2xs no longer emits verbose messages to STDERR
unless -v switch or $ENV{ENC2XS_VERBOSE} is set.
https://rt.cpan.org/Public/Bug/Display.html?id=101345
2.67 2014/12/04 20:13:00
! t/taint.t
Now skips nonexistent methods like Encode::Detect->encode() should
that be installed. This resolves RT#100105.
https://rt.cpan.org/Ticket/Display.html?id=100105
2.66 2014/12/02 23:30:34 $
! bin/enc2xs
Resolved RT#100656: enc2xs -C fails if URL::Encode::XS is installed
https://rt.cpan.org/Ticket/Display.html?id=100656
2.65 2014/11/27 14:08:33
! Changes Encode.xs bin/enc2xs
Applied 3 patches from jhi:
0001-For-C-don-t-use-the-array-size-in-forward-declaratiotion
0002-Unused-variables
0003-1-needs-casting-to-STRLEN
Message-Id: <54753674.6070909@iki.fi>
2.64 2014/10/29 15:37:54
! t/utf8warnings.t MANIFEST
Retouch pull #26 so it works with perl < 5.14
! Encode.pm
+ t/utf8warnings.t
Pulled: Catch and re-issue utf8 warnings at a higher level
https://github.com/dankogai/p5-encode/pull/26
! Encode.xs
Pulled: Validate continuations in the incremental UTF-X decoder
https://github.com/dankogai/p5-encode/pull/25
2.63 2014/10/19 07:01:15
! Encode.xs
Applied: RT #99264: call_pv() can reallocate the stack
https://rt.cpan.org/Ticket/Display.html?id=99264
! Byte/Makefile.PL CN/Makefile.PL EBCDIC/Makefile.PL Encode.xs
JP/Makefile.PL KR/Makefile.PL Symbol/Makefile.PL TW/Makefile.PL
bin/enc2xs encengine.c
Pulled: add PERL_NO_GET_CONTEXT to all dynamic libs
https://github.com/dankogai/p5-encode/pull/24
2.62 2014/05/31 12:12:39
! Encode.pm
s/2013/2014/ on COPYRIGHT section
! Byte/Makefile.PL
CN/Makefile.PL
EBCDIC/Makefile.PL
Encode/Makefile_PL.e2x
Encode.xs
JP/Makefile.PL
KR/Makefile.PL
Symbol/Makefile.PL
TW/Makefile.PL
bin/enc2xs
Merged from perl.git: "Fix Encode 2.60 with g++"
http://perl5.git.perl.org/perl.git/commit/89c2544cd3
2.61 2014/05/31 09:48:48
! bin/piconv
Applied: piconv nit
+ Better error handling when the encoding name is nonexistent
Message-Id: <537139A0.1000503@iki.fi>
! Encode.xs
Applied: RT #95466:
fallback definition of SvIsCOW() is wrong
(and hence breaks on 5.8.2 and earlier)
https://rt.cpan.org/Ticket/Display.html?id=95466
2.60 2014/04/29 16:25:06
! Byte/Makefile.PL
CN/Makefile.PL
EBCDIC/Makefile.PL
Encode/Makefile_PL.e2x
Encode/encode.h
JP/Makefile.PL
KR/Makefile.PL
Symbol/Makefile.PL
TW/Makefile.PL
bin/enc2xs
encengine.c
Applied: more Fix Windows build (of Encode) with VC++ 6.0
http://perl5.git.perl.org/perl.git/commit/9e9002efd1609c7d154f98af43a026320df7582c
! Unicode/Unicode.xs
Addressed: sign extension issue found by Coverity #21
https://github.com/dankogai/p5-encode/issues/21
! Encode/encode.h Encode.xs Unicode/Unicode.xs
removed #define U8 U8
https://rt.perl.org/Ticket/Display.html?id=121554
http://perl5.git.perl.org/perl.git/commit/2f2b4ff2c154a8e461857f2e82cb815c238d0d94
2.59 2014/04/06 17:23:55
! Byte/Makefile.PL
CN/Makefile.PL
EBCDIC/Makefile.PL
Encode.pm
Encode.xs
Encode/Makefile_PL.e2x
JP/Makefile.PL
KR/Makefile.PL
Symbol/Makefile.PL
TW/Makefile.PL
bin/enc2xs
Restored the signature of Encode_XSEncoding() to address RT#94478
* While https://github.com/dankogai/p5-encode/pull/20
pulls the symnames via argument thus breaks the compatibility
with Encode::XX modules with *.ucm, the restored version
pulls the symanmes via enc->name[0] so the added 2nd argument
is no longer needed.
https://rt.cpan.org/Public/Bug/Display.html?id=94478
2.58 2014/03/28 02:37:42
! bin/piconv
Addressed: piconv bug of decoding UTF-16 (with fix)
https://github.com/dankogai/p5-encode/issues/19
! Byte/Makefile.PL
CN/Makefile.PL
EBCDIC/Makefile.PL
Encode.pm
Encode.xs
Encode/Makefile_PL.e2x
JP/Makefile.PL
KR/Makefile.PL
Symbol/Makefile.PL
TW/Makefile.PL
bin/enc2xs
Pulled: Remap symname [RT #94221]
https://github.com/dankogai/p5-encode/pull/20
https://rt.cpan.org/Public/Bug/Display.html?id=94221
! Encode.pm
Pulled: [doc] clarify that CHECK coderefs return octets #18
https://github.com/dankogai/p5-encode/pull/18
2.57 2014/01/03 04:52:36
! encengine.c
Pulled: sun compiler (maybe others) doesn't like UTF-8 in the source
https://github.com/dankogai/p5-encode/pull/17
! bin/enc2xs
Merged RT#91763: POD errors
https://rt.cpan.org/Ticket/Display.html?id=91763
2.56 2013/12/22 13:40:00
! Encode.pm t/Encode.t
Merged RT#91569: [PATCH] decode_utf8 and non-PVs
https://rt.cpan.org/Ticket/Display.html?id=91569
2.55 2013/09/14 07:51:59
! Encode.pm
Makefile.PL
Unicode/Unicode.pm
lib/Encode/Alias.pm
lib/Encode/CN/HZ.pm
lib/Encode/Encoder.pm
lib/Encode/Encoding.pm
lib/Encode/GSM0338.pm
lib/Encode/Guess.pm
lib/Encode/JP/JIS7.pm
lib/Encode/KR/2022_KR.pm
lib/Encode/MIME/Header.pm
lib/Encode/MIME/Header/ISO_2022_JP.pm
lib/Encode/Unicode/UTF7.pm
t/Encoder.t
replaced 'use base' with 'use parent'
base.pm is an heavy module for what it is used for.
Fortunately it has a tiny replacement, parent.pm
that is on CPAN but also in perl core since 5.10.1.
https://github.com/dankogai/p5-encode/pull/15
2.54 2013/08/29 16:47:39
! Encode.xs
+ t/cow.t
Addressed: COW breakage with _utf8_on()
https://rt.cpan.org/Ticket/Display.html?id=88230
! Encode.pm
Reverted the document accordingly to #11
https://github.com/dankogai/p5-encode/pull/10
+ t/decode.t
Unit test for decoding behavior change in #11
https://github.com/dankogai/p5-encode/pull/12
2.53 2013/08/29 15:20:31
! Encode.pm
Merged: Do not short-circuit decode_utf8 with utf8 flags
https://github.com/dankogai/p5-encode/pull/11
Merged: document decode_utf8 behaviour more precise
https://github.com/dankogai/p5-encode/pull/10
! Makefile.PL
Added repository cpan metadata
https://github.com/dankogai/p5-encode/pull/9
2.52 2013/08/14 02:29:54
! ucm/*.ucm
Addressed:
Unicode Mappping tables are missing Unicode Inc. license notification
All files including "as long as this notice remains attached" now
have that notice attached in the comment section. (cp* and mac*
do not since their source files do not include that notice)
https://rt.cpan.org/Ticket/Display.html?id=87340
! lib/Encode/MIME/Header.pm
t/mime-header.t
Addressed: encoding "0" with MIME-Headers gets a blank string
https://rt.cpan.org/Ticket/Display.html?id=87831
! Encode.pm
Addressed: Documentation buglet
https://rt.cpan.org/Ticket/Display.html?id=84992
! Byte/Makefile.PL CN/Makefile.PL EBCDIC/Makefile.PL
Encode/Makefile_PL.e2x JP/Makefile.PL KR/Makefile.PL
Symbol/Makefile.PL TW/Makefile.PL
Applied: Patch to output #includes in deterministic order
https://rt.cpan.org/Ticket/Display.html?id=86974
2.51 2013/04/29 22:19:11
! Encode.xs
Addressed: Encode.xs doesn't compile with Microsoft C compiler
https://rt.cpan.org/Public/Bug/Display.html?id=84920
! MANIFEST
Addressed: t/taint.t missing
https://rt.cpan.org/Public/Bug/Display.html?id=84919
2.50 2013/04/26 18:30:46
! Encode.xs Unicode/Unicode.xs
lib/Encode/Unicode/UTF7.pm lib/CN/HZ.pm lib/Encode/GSM0338.pm
t/taint.t
Addressed: Encode::encode and Encode::decode
gratuitously launders tainted data
Taintedness now propagates as it should.
https://rt.cpan.org/Ticket/Display.html?id=84879
! encoding.pm
Addressed: 5.18 deprecation
https://rt.cpan.org/Ticket/Display.html?id=84709
! bin/piconv
Applied: Update piconv documentation
https://rt.cpan.org/Ticket/Display.html?id=84695
2.49 2013/03/05 03:12:49
! Encode.xs
Addressed: Encoding objects leak memory if decoding fails
https://github.com/dankogai/p5-encode/issues/8
2.48 2013/02/18 02:23:56
! encoding.pm
t/Mod_EUCJP.pm t/enc_data.t t/enc_eucjp.t t/enc_module.t t/enc_utf8.t
t/encoding.t t/jperl.t
[PATCH] Deprecate encoding.pm
https://rt.cpan.org/Ticket/Display.html?id=81255
! Encode/Supported.pod
Fixed: Pod errors
https://rt.cpan.org/Ticket/Display.html?id=81426
! Encode.pm t/Encode.t
[PATCH] Fix for shared hash key scalars
https://rt.cpan.org/Ticket/Display.html?id=80608
! Encode.pm
Fixed: Uninitialized value warning from Encode->encodings()
https://rt.cpan.org/Ticket/Display.html?id=80181
! Makefile.PL
Install to 'site' instead of 'perl' when perl version is 5.11+
https://rt.cpan.org/Ticket/Display.html?id=78917
! Encode/Makefile_PL.e2x
find enc2xs.bat if it works on windows.
https://github.com/dankogai/p5-encode/pull/7
! t/piconv.t
Fix finding piconv in t/piconv.t
https://github.com/dankogai/p5-encode/pull/6
2.47 2012/08/15 05:36:16
! Encode.pm
POD Fixes: Copyright and mail address
! Makefile.PL
Added LICENSE => 'perl'
! lib/Encode/GSM0338.pm t/gsm0338.t
REALLY fixed RT#75670: Wrong decoding for GSM 3.38 character \x09
ucm/gsm0338.ucm is dropped from MANIFEST since 2.25
but I was fixing the wrong file!
https://rt.cpan.org/Ticket/Display.html?id=75670
! 2.46 2012/08/12 05:49:30
! Encode.pm
Fixed: RT#78917 for I18N-Charset: Fails with Encode 2.45
To be more exact, 2.45 broke Encode->encodings(':all')
https://rt.cpan.org/Ticket/Display.html?id=78917
2.45 2012/08/05 23:08:49
! lib/Encode/Alias.pm
Addressed RT#78125: Missed Mac Alias x-mac-ce
https://rt.cpan.org/Ticket/Display.html?id=78125
! lib/Encode/Unicode/UTF7.pm
Applied the patch in RT#76711
https://rt.cpan.org/Ticket/Display.html?id=76711
! ucm/gsm0338.ucm
Addressed RT#75670: Wrong decoding for GSM 3.38 character \x09
https://rt.cpan.org/Ticket/Display.html?id=75670
! Encode.pm
Applied the patch in RT#72519
https://rt.cpan.org/Ticket/Display.html?id=72519
! Unicode/Unicode.xs
t/Unicode.t
Bug fixes in Unicode.xs by chansen
https://github.com/dankogai/p5-encode/pull/5
! Encode.pm
various POD improvements by daxim
https://github.com/dankogai/p5-encode/pull/4
2.44 2011/08/09 07:49:44
! Unicode/Unicode.xs
Addressed the following:
Date: Fri, 22 Jul 2011 13:58:43 +0200
From: Robert Zacek <zacek@avast.com>
To: perl5-security-report@perl.org
Subject: Unicode.xs!decode_xs n-byte heap-overflow
! Encode.pm encoding.pm
! lib/Encode/Alias.pm lib/Encode/Encoder.pm lib/Encode/Guess.pm
Applied: RT#69735: patch for use constant DEBUG =>
https://rt.cpan.org/Ticket/Update.html?id=69735
2.43 2011/05/21 23:14:43
! lib/Encode/Alias.pm
Addressed RT#68361: Encode::Bytes x-mac-... aliases missing
https://rt.cpan.org/Ticket/Display.html?id=68361
! Encode.pm
Applied the 0001-Fix-typo-in-pod.patch
https://rt.cpan.org/Ticket/Update.html?id=64381
Addressed RT#65796 Deep recursion error finding invalid charset
https://rt.cpan.org/Ticket/Update.html?id=65796
Applied a jumbo doc patch by Tom Christiansen
Message-Id: <14795.1304618434@chthon>
2.42 2010/12/31 22:48:48
! Encode.xs
! Unicode/Unicode.xs
Applied: RT#64371: Update for 5.14 API changes
http://rt.cpan.org/Ticket/Display.html?id=64371
2.41 2010/12/23 11:05:58
! lib/Encode/MIME/Header.pm
Applied: RT#63387 encode of MIME-Header inserts too much whitespace
http://rt.cpan.org/Ticket/Display.html?id=63387
! t/Aliases.t lib/Encode/Alias.pm
Applied: RT#63286: Various Encode::Alias improvements
http://rt.cpan.org/Ticket/Display.html?id=63286
2.40 2010/09/18 18:39:51
! Encode.pm Encode.xs
+ t/utf8ref.t
Addressed: RT#59981: find_encoding("UTF-8")->encode crashes
decode_utf8() is now a little faster, too.
http://rt.cpan.org/Ticket/Display.html?id=59981
http://rt.cpan.org/Ticket/Display.html?id=58541
! lib/Encode/Unicode/UTF7.pm
Addressed: RT#56443 utf-8 flag is not turned off after calling
Encode::encode('UTF-7', $string) to encode an ascii string
http://rt.cpan.org/Ticket/Display.html?id=56443
! t/utf8strict.t
Addressed: RT#57799
http://rt.cpan.org/Ticket/Display.html?id=57799
! lib/Encode/Guess.pm
Addressed: RT#46080: guess_encoding documentation
http://rt.cpan.org/Ticket/Display.html?id=46080
! ucm/nextstep.ucm
Addressed: RT#59668: nextstep encoding is broken - missing ASCII characters
http://rt.cpan.org/Ticket/Display.html?id=59668
! lib/Encode/MIME/Header.pm t/mime-header.t
Addressed: RT#52103: Encode::MIME::Header encoded words not separated by
white space
http://rt.cpan.org/Ticket/Display.html?id=52103
! t/guess.t lib/Encode/Guess.pm
Addressed: Encode: silenced a warning by from_to(..., 'Guess', ...)
http://coderepos.org/share/changeset/37731
2.39 2009/11/26 09:23:59
! Encode.xs t/fallback.t
$utf8 = decode('utf8', $malformed, sub{ ... }) # now works!
http://rt.cpan.org/Ticket/Display.html?id=51204
! t/CJKT.t t/guess.t t/perlio.t
$ENV{'PERL_CORE'} tricks removed since they are no longer necessary.
Message-Id: <20091116161513.GA25556@bestpractical.com>
2.38 2009/11/16 14:08:13
! Encode.xs
Addressed: Encode memory corruption [perl #70528]
Message-Id: <alpine.LFD.2.00.0911152328070.9483@ein.m-l.org>
! t/Unicode.t Unicode/Unicode.xs
Patched: #51263: set magic is not applied when modifying encode arguments
http://rt.cpan.org/Ticket/Display.html?id=51263
! Encode.xs
Patched: #51204: Callback CHECK not supported for UTF-8 decoder/encoder
http://rt.cpan.org/Ticket/Display.html?id=51204
! Byte/Byte.pm CN/CN.pm Changes JP/JP.pm KR/KR.pm TW/TW.pm
Unicode/Unicode.pm bin/enc2xs lib/Encode/Supported.pod
Fix URLs
http://rt.cpan.org/Ticket/Display.html?id=49776
! t/CJKT.t t/guess.t t/perlio.t t/piconv.t
$PERL_CORE trick is now off for perl 5.11 or better.
Message-Id: <b77c1dce0909070245s59b294bq8a8a8166e7342793@mail.gmail.com>
Message-Id: <E7FADA6C-D5A7-4ECA-BE4C-85911A97677E@dan.co.jp>
Message-Id: <20090907154908.GS60303@plum.flirble.org>
Message-Id: <20090907161509.GN8057@iabyn.com>
2.37 2009/09/06 14:32:21
! Encode.xs
fixed: compilation failure on compilers not supporting C99
http://rt.cpan.org/Ticket/Display.html?id=49466
2.36 2009/09/06 09:03:07
! Encode.xs
fixed: 'find_encoding("utf8")->decode(undef)' causes segmentation fault
http://rt.cpan.org/Ticket/Display.html?id=49462
2.35 2009/07/13 02:06:30
! lib/Encode/MIME/Header.pm
Addressed RT #40027:
decode of MIME-Header removes too much whitespace
http://rt.cpan.org/Ticket/Display.html?id=40027
http://rt.cpan.org/Ticket/Display.html?id=42902
! t/piconv.t
Addressed by CSJEWELL: t/piconv.t loops infinitely on Win32
http://rt.cpan.org/Ticket/Display.html?id=47760
2.34 2009/07/08 13:34:15
! bin/piconv
duplicate-BOM problem now fixed.
Message-Id: <10ECB9B7-006E-4570-9EB6-51C49F04ADCF@dan.co.jp>
! bin/piconv
+ t/piconv.t
patches and tests by SREZIC
Message-Id: <4A5366DA.8050801@iconmobile.com>
! Makefile.PL
man* removed on behalf of blead
Message-Id: <20090326135219.GU18164@plum.flirble.org>
2.33 2009/03/25 07:55:57
! lib/Encode/MIME/Header.pm
Decontaminated $& which sneaked in on 2.31.
Message-Id: <67FC9F3A39C746DA95AAB6BB01539099@robmhp>
Message-Id: <693254b90903242352x2dc26ba6p5e68deb871fa88ae@mail.gmail.com>
http://coderepos.org/share/changeset/31542
2.32 2009/03/07 07:32:37
! lib/Encode/Alias.pm t/Alias.t
Encode now resolves 'en_US.UTF-8' to utf-8-strict like 'ja_JP.euc'
Those who set locale on their shells should be happier now.
! AUTHORS
added tokuhirom
! Encode.pm
"encode(undef, 'str') should die earlier"
http://coderepos.org/share/changeset/30790
2.31 2009/02/16 06:18:09
! lib/Encode/MIME/Header.pm
"Revert [29767] and [29771] since it breaks perl 5.8" by miyagawa
http://coderepos.org/share/changeset/30111
2.30 2009/02/15 17:44:13
! encoding.pm
fixed regexes, et cetera. by drry
http://coderepos.org/share/changeset/29767
! lib/Encode/MIME/Header.pm
Addressed: Encode::MIME::Header::decode should respect CHECK
http://rt.cpan.org/Ticket/Display.html?id=43204
http://coderepos.org/share/changeset/29767
2.29 2009/02/01 13:14:37
! Encode.pm
VERSION++ just to make PAUSE happy
Message-Id: <877i4anwwt.fsf@k75.linux.bogus>
2.28 Date: 2009/02/01 12:30:18
! Unicode/Unicode.xs
Latest refactoring broke the backward compatibility
w/ Perl 5.8.6 and before now restored
Message-Id: <1233185156.DABa130.74940@basic2.hostingcompartido.com>
Message-Id: <693254b90902010027x277a5d0fm4f5700ba2f276239@mail.gmail.com>
! lib/Encode/MIME/Header.pm
Addressed: Split header lines are joined incorrectly
http://rt.cpan.org/Ticket/Display.html?id=42902
2.27 2009/01/21 22:55:07
! lib/Encode/MIME/Header.pm t/mime-header.t
Addressed: Encode::MIME::Header MIME-Q encoding truncates
trailing zeros in some circumstances
http://rt.cpan.org/Ticket/Display.html?id=42627
! lib/Encode/Alias.pm
Added alias: unicode-1-1-utf-7
http://rt.cpan.org/Ticket/Display.html?id=38558
! Encode.pm
Documented: _utf8_on() does not work for tainted values
http://rt.cpan.org/Ticket/Display.html?id=41163
! bin/enc2xs
s[oss.software.ibm.com/icu][www.icu-project.org]g
http://rt.cpan.org/Ticket/Display.html?id=40245
! lib/Encode/Guess.pm t/guess.t
Addressed:Empty file should produce an error message
http://rt.cpan.org/Ticket/Display.html?id=38652
! Unicode/Unicode.xs AUTHORS
Refactored by Alex Davies
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2007-10/msg00745.html
Message-Id: <7637669B2E3D46B187591747DA27F4C8@Amelie>
2.26 2008/07/01 20:56:17
! Encode.pm
Absense of Encode::ConfigLocal no longer carps no matter what.
http://bugzilla.redhat.com/show_bug.cgi?id=435505#c2
http://rt.cpan.org/Ticket/Display.html?id=28638
http://rt.cpan.org/Ticket/Display.html?id=11511
! lib/Encode/JIS7.pm
use encoding 'utf8' and 'iso-2022-jp' glitches on perl 5.10
Thanks, MIYAGAWA
Message-Id: <693254b90807011224h3ab50d76v50c6fea87baf223c@mail.gmail.com>
! lib/Encode/Alias.pm t/Aliases.t
macintosh' not recognize as MacRoman
http://rt.cpan.org/Ticket/Display.html?id=36326
! Makefile.PL
s{INC => "-I./Encode"}
{INC => '-I' . File::Spec->catfile( '.', 'Encode' )}
To prevent some platforms from forgetting to include Encode/encode.h.
http://rt.cpan.org/Ticket/Display.html?id=36348
2.25 2008/05/07 20:56:05
! Encode.pm
added ':default' to Exporter option.
! lib/Encode/GSM0338.pm
GSM0338 now handles coderef in CHECK
http://rt.cpan.org/Ticket/Display.html?id=31335
! Makefile.PL
Perl 5.10/Encode 2.24: Tiny typo in Encode's Makefile.PL arg processing
Message-Id: <961C2A4F-92B3-416D-A9F9-E7B0ADA9F134@fsck.com>
! lib/Encode/Alias.pm
"This fix for Encode::Alias should make Solaris happy:"
Message-ID: <47D886D9.6060001@iki.fi>
2.24 2008/03/12 09:51:11
! lib/Encode/Config.pm
adds and fixes also adds cp858 support.
! Encode.pm encoding.pm lib/Encode/Alias.pm ucm/cp858.ucm
Merged perl@33486.
> Change 33486 by rgs@scipion on 2008/03/12 08:50:11
An unfortunate side-effect of Encode and Encode::Alias use'ing each
other, and Encode::Alias exporting functions into Encode for it to use
as methods, broke the loading of the find_alias() Encode method in some
cases since 5.10. Breaking the recursive inheritance fixes it.
Message-Id: <b77c1dce0803120151o4166c3a0gfcfd14681ab7e10d@mail.gmail.com>
! Encode.pm
POD fix by tels
Message-Id: <200711281835.36125@bloodgate.com>
! bin/ucmlint
Fix by MIYAGAWA via CodeRepos
http://coderepos.org/share/changeset/1791
! encoding.pm t/mime_header_iso2022jp.t
ported back from Perl 5.10-RC1
2.23 2007/05/29 18:15:32
! Encode.xs
got rid of global fallback_cb; encode_method() now takes one more
argument which is a coderef to fallback. This should make
encode_method() thread-safe.
! Encode.pm
Added perluniintro, perlunifaq, and perlunitut to POD
! Encode.xs
Plug a memory leak in Encode -- by rgs
Message-Id: <b77c1dce0705290858v2be239c3o2d726e3d59091493@mail.gmail.com>
! Unicode/Unicode.pm
POD fixes on UTF-16LE
http://aspn.activestate.com/ASPN/Mail/Message/perl5-porters/3486118
! Makefile.PL
man page generation is now conditional; yes by default but no if $PERL_CORE
Message-Id: <b77c1dce0705290237h5c4667cdlf79a48b839170add@mail.gmail.com>
2.22 2007/05/29 07:35:27
! Encode.pm
from_to() does not honor the check while decoding. That's a feature.
To make sure it is a feature it is mentioned in the POD.
http://rt.cpan.org/NoAuth/Bug.html?id=27277
! Makefile.pl
Encode used to suppress man page generation. Now it does.
http://rt.cpan.org/NoAuth/Bug.html?id=27200
! Encode.pm Encode.xs t/fallback.t
Addressed: (de|en)code("ascii", "\x{3000}", sub{ $_[0] }) segfaults
Reported by MIYAGAWA
2.21 2007/05/12 06:42:19
+ lib/Encode/MIME/Name.pm t/mime-name.t
! Encode.pm Encode.xs lib/Encode/Encoding.pm
new method: mime_name()
inspired by: MIYAGAWA
! t/encoding.t
Subject: Re: Compress::Zlib, pack "C" and utf-8 [PATCH]
From: Marc Lehmann <schmorp@schmorp.de>
Date: Thu, 12 Apr 2007 08:41:53 +0200
Message-ID: <20070412064153.GA22475@schmorp.de>
http://public.activestate.com/cgi-bin/perlbrowse/p/31194
! Unicode/Unicode.pm
POD fix.
Message-Id: <20070417220547.GA11999@zetta.zet>
2.20 2007/04/22 14:56:12
! Encode.pm
Pod fixes. Now find_encoding() is explained more in details.
+ lib/Encode/GSM0338.pm
- ucm/gsm0338.ucm
! lib/Encode/Supported.pod lib/Encode/Config.pm Bytes/Makefile.PL t/gsm0338.t
ETSI GSM 03.38 support is relocated from Encode::Byte to Encode::GSM0338.
This encoding is so kaputt it is unfit for Encode::XS!
Though it was okay for general cases and escape sequences,
'\0' => '@' IFF '\0\0' => '\0' had gliches.
So kaputt even t/gsm0338 wrongly interpreted that.
ref. http://www.csoft.co.uk/sms/character_sets/gsm.htm
! encoding.pm t/Aliases.t
Imported from bleedperl #31015
2.19 2007/04/06 12:53:41
! lib/Encode/JP/JIS7.pm
+ t/jis7-fallback.t
encode('iso-2022-jp') fallback support added by MIYAGAWA++
decode()'s fallback remains unchanged (FB_PERLQQ) since UTF-8
contains all characters in iso-2022-jp so there's no need for fancy stuff.
Message-Id: <693254b90704060526s6d850320h71cdda50dfbf7eba@mail.gmail.com>
! Encode.pm
#25216 ([PATCH] Encode.pm: postpone the load of Encode::Encoding)
http://rt.cpan.org/NoAuth/Bug.html?id=25216
! lib/Encode/MIME/Header.pm t/mime-header.t
#24418 (Encode::MIME::Header: wrong encoding with latin1 characters)
http://rt.cpan.org/NoAuth/Bug.html?id=24418
! Encode.pm
#23876 (Add documentation for LEAVE_SRC)
http://rt.cpan.org/NoAuth/Bug.html?id=23876
! lib/Encode/Alias.pm t/Aliases.t
#20781: Thai encoding needs alias for tis-620
http://rt.cpan.org/NoAuth/Bug.html?id=20781
! bin/piconv AUTHORS
#20344: piconv: wrong conversion of utf-16le encoded files (with PATCH)
http://rt.cpan.org/NoAuth/Bug.html?id=20344
! Encode.pm Encode.xs bin/enc2xs encoding.pm t/Aliases.t t/utf8strict.t
Imported from bleedperl's 2.18_01
2.18 2006/06/03 20:28:48
! bin/enc2xs
overhauled the -C option
- added ascii-ctrl', 'null', 'utf-8-strict' to core
- auto-generated Encode::ConfigLocal no longer use v-string for version
- now searches modules via File::Find so Encode/JP/Mobile is happy
! Byte/Byte.pm CN/CN.pm EBCDIC/EBCDIC.pm JP/JP.pm KR/KR.pm Symbol/Symbol.pm
use strict added; though all they do is load XS, it's
still better a practice
! *.pm
use warnings added to all of them for better practices' sake.
2.17 2006/05/09 17:10:09
! encode.pm
'chin' =~ /^zh_CN|chin(?:a|ese)?$/i is true
but chin is not china or chinese.
http://d.hatena.ne.jp/jankogai/20060508/1147090316
! Encode.xs
Integrated maintperl change (27824|27824) which I overlooked
-- sorry, Nicholas and Coverity Scan.
Message-Id: <200604152115.k3FLF1Ar014538@smtp3.ActiveState.com>
Message-Id: <200605091615.k49GF1gJ016777@smtp3.ActiveState.com>
2.16 2006/05/03 18:24:10
! bin/piconv
--xmlcref and --htmlcref added.
! Encode.pm
Copyright Notice Added.
http://rt.cpan.org/NoAuth/Bug.html?id=19056
! *
Replaced remaining ^\t with q( ) x 4. -- Perl Best Practice pp. 20
And all .pm's are now perltidy-ed.
2.15 2006/04/06 15:44:11
! Unicode/Unicode.xs
Addressed: UTF-16, UTF-32, UCS, UTF-7 decoders mishandle illegal characters
http://rt.cpan.org/NoAuth/Bug.html?id=18556
! Encode.pm
added str2bytes() as an alias to encode() and bytes2str() as an alias
to decode()
http://rt.cpan.org/NoAuth/Bug.html?id=17103
! Encode.xs
Change 26922: Avoid warning with MS Visual C compiler.
Message-Id: <200601231245.k0NCj2dw009484@smtp3.ActiveState.com>
! t/perlio.t
Change 26067: As using -C to turn on utf8 IO is equivalent to the open pragma
Message-Id: <200511092227.jA9MRcYD009025@smtp3.ActiveState.com>
2.14 2006/01/15 15:43:36
! Makefile.PL
Change 26295: Don't build manpages for Encode and Unicode::Normalize
Message-Id: <200512071540.jB7Fe4Gt017960@smtp3.ActiveState.com>
! Encode.pm
Change 26081: Pod nit in Encode.pm, found by Marc Lehmann in RT #36949.
Message-Id: <200511110357.jAB3vZcP023647@smtp3.ActiveState.com>
! Encode.xs Encode/encode.h bin/enc2xs encengine.c
Change 25821: Mark more static Encode data structures as const.
Change 25823: use more 'const' in the Encode data structures.
Message-Id: <200510221243.j9MChTSu027711@smtp3.ActiveState.com>
Message-Id: <200510221343.j9MDhTk9001245@smtp3.ActiveState.com>
2.13 2006/01/15 15:06:36
! AUTHORS
Miyagawa's mail address updated
Message-Id: <693254b90601150535o767e10bai4f4732c275b4ebe0@mail.gmail.com>
! lib/Encode/MIME/Header.pm
#16413: Encode::MIME::Headers patch to solve what is probably someone else's bug
http://rt.cpan.org/NoAuth/Bug.html?id=16413
! lib/Encode/MIME/Header.pm t/mime-header.t
Applied: RT #16258: Support for RFC 2184 language tag
http://rt.cpan.org/NoAuth/Bug.html?id=16258
! Encode.pm
Fixed RT #14559: fix for #8872 introduces new "bug"
http://rt.cpan.org/NoAuth/Bug.html?id=14559
! Encode.pm
+ t/from_to.t
from_to() now makes use of $check more naturally.
Message-Id: <693254b90601150535o767e10bai4f4732c275b4ebe0@mail.gmail.com>
<B10B4DE2-9BAF-4344-B3BE-2119977D817A@dan.co.jp>
2.12 2005/09/08 14:17:17
! Encode.xs Encode.pm t/fallback.t
Now accepts coderef for CHECK!
! ucm/8859-7.ucm
Updated to newer version at unicode.org
http://rt.cpan.org/NoAuth/Bug.html?id=14222
! lib/Encode/Supported.pod
More POD typo fixed.
<42F5E243.80500@gmail.com>
! encoding.pm
More POD typo leftover fixed.
Message-Id: <b77c1dce05080615487f95314@mail.gmail.com>
2.11 2005/08/05 10:58:25
! AUTHORS CHANGES
To reflect changes below
! Encode.pm encoding.pm
lib/Encode/Alias.pm lib/Encode/PerlIO.pod lib/Encode/Supported.pod
Typo fixed by Piotr Fusik in Change 25261 & 25266
Message-ID: <001401c595bd$dccb5d80$0bd34dd5@piec>
! Encode.xs
Addresses "BUG REPORT: panic in Encode.xs".
Message-Id: <42EDDA97.2010608@hyper.to>
+ lib/Encode/MIME/Header/ISO_2022_JP.pm mime_header_iso2022jp.t
! lib/Encode/MIME/Header.pm lib/Encode/Config.pm
Encoding 'MIME-Header-ISO_2022_JP' is introduced by Makamaka
Message-Id: <200507311557.j6VFvE2K034605@www231.sakura.ne.jp>
! Encode/encode.h Encode.pm Encode.xs
PerlIO's "encoding(utf-8-strict)" got a problem w/ partial character.
Found and addressed by KONNO Hiroharu <hiroharu.konno@bowneglobal.co.jp>
See also ext/PerlIO/encoding/encoding.pm
Message-Id: <E1DineE-00068X-TB@yok-gs-workman.asia.bgsinternal.com>
2.10 2005/05/16 18:46:36
! Encode.pm
fixed decode_utf8() accordingly to RT#8872
http://rt.cpan.org/NoAuth/Bug.html?id=8872
! Encode.xs AUTHORS
s/SvIVX/SvIV_set/ by Steve Peters.
Message-Id: <2297.67.96.185.36.1114626315.squirrel@webmail3.pair.com>
! AUTHORS
GAAS was missing!
! Encode.pm
New Pod section: "UTF-8 vs utf8"; explains utf-8-strict
+ t/utf8strict.t
Tests utf-8-strict, accordingly to
UTF-8 decoder capability and stress test" by Markus Kuhn
http://smontagu.damowmow.com/utf8test.html
Note that malformed and overlong sequences are not test here
because perl already does that for you, utf-8-strict or not.
! Encode.pm Encode/encode.h t/fallback.t
Addressed "encode(..., Encode::LEAVE_SRC) does not work".
Now FB_(PERLQQ|HTMLCREF|XMLCREF) implies LEAVE_SRC so
you can (en|de)code constant strings with these fallbacks.
http://rt.cpan.org/NoAuth/Bug.html?id=8736
! Encode.pm Encode.xs lib/Encode/Alias.pm t/Aliases.t
Make Encode.pm support the real UTF-8, by GAAS
Message-Id: <lrfz2mcngd.fsf@caliper.activestate.com>
Message-Id: <lr4qizbvvm.fsf@caliper.activestate.com>
! Encode.pm Encode.xs
post-2.09 comment patches from GAAS applied.
Message-Id: <lroehacz6q.fsf@caliper.activestate.com>
Message-Id: <lrk6rycymu.fsf@caliper.activestate.com>
2.09 2004/12/03 19:16:53
! Encode.pm Encode.xs
Addressed " :encoding(utf8) broken in perl-5.8.6".
Message-Id: <lrllcfeank.fsf_-_@caliper.activestate.com>
! Encode.pm
Addressed "(de|en)code($valid_encoding, undef) does not warn".
http://rt.cpan.org/NoAuth/Bug.html?id=8723
! Encode.pm t/Encode.t
Addressed "Can't encode URI". When a reference is fed to (en|de)code,
Encode now stringifies instead of returning undef.
http://rt.cpan.org/NoAuth/Bug.html?id=8725
! Encode.xs t/fallback.t
Addressed "FB_HTMLCREF and FB_XMLCREF for the UTF-8 decoder".
http://rt.cpan.org/NoAuth/Bug.html?id=8694
! Encode.pm
Addressed "s/digit/number/".
http://rt.cpan.org/NoAuth/Bug.html?id=8695
! Encode.pm
Addressed "while (defined(read )) { ... } is an infinite loop".
http://rt.cpan.org/NoAuth/Bug.html?id=8696
! Encode.pm
Addressed "What the heck is UCM?".
Document fixed so that it no longer contains "UCM-Based Encodings".
http://rt.cpan.org/NoAuth/Bug.html?id=8697
2.08 2004/10/24 13:00:29
! Encode.xs lib/Encode/Encoding.pm Unicode/Unicode.{pm,xs}
Resolved the issue that was raised by 2.07 -- Encode::utf8 fallbacks
that was introduce messed up PerlIO::encoding.
* To do so, ->renew() is renewed and ->renewed() was introduced to
tell whether the caller is PerlIO or not.
Message-Id: <94B2EB12-25B7-11D9-9E6A-000A95DBB50A@dan.co.jp>
2.07 2004/10/22 19:35:52
! lib/Encode/Encoding.pm
"Remove Carp from warnings.pm" that influences Encode, by Tels.
Message-Id: <200410161618.29779@bloodgate.com>
! Encode.xs AUTHORS t/fallback.t
Now Encode::utf8's fallbacks are compliant to Encode standard.
Thank Bjoern Hoehrmann for persistently convincing me.
Message-Id: <41a61aea.638409494@smtp.bjoern.hoehrmann.de>
! Encode.pm
POD further revised.
2.06 2004/10/22 06:23:11
! ucm/mac*
RT #8083 reports that MacThai mapping was obsolete
Updated all mac* encodings accordingly to the URI below.
One remaining mystery is that MacRomanian vs. MacRumanian.
MacRumanian is not found in unicode.org...
http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/
! Encode.pm t/Encode.t
Fixed RT #8081: "decode(..., bless{},'x') segfault"
Two more tests added to test that.
http://rt.cpan.org/NoAuth/Bug.html?id=8081
! Encode.pm
POD revised accordingly to RT #7966
http://rt.cpan.org/NoAuth/Bug.html?id=7966
! Unicode/Unicode.pm
POD updated explaining why Encode::Unicode always croaks on error
rather than giving users choices.
http://rt.cpan.org/NoAuth/Bug.html?id=7892
2.05 2004/10/19 04:55:01
! encoding.pm
"unnuke" jhi's patch in bleedperl, with minor correction by dankogai.
Message-ID: <41210A84.6060506@iki.fi>
Message-ID: <20041018233442.7418113f@r2d2>
Message-Id: <2BA3DAC4-218A-11D9-906D-000A95DBB50A@dan.co.jp>
2.04 2004/10/16 21:22:44
! Makefle.PL
From: craigberry@mac.com
Subject: [PATCH ext/Encode/Makefile.PL] make Encode.c dependency explicit
Message-Id: <41716868.7000102@mac.com>
2.03 2004/10/06 05:07:20
! lib/Encode/Alias.pm
Resolved some alias case sensitivity glitches reported via RT.
http://rt.cpan.org/NoAuth/Bug.html?id=7835
! bin/piconv
Resolved Win32 glitches reported via RT.
(Fixed by dankogai and tested by Steve Hay)
http://rt.cpan.org/Ticket/Display.html?id=7831
! JP/JP.pm lib/Encode/Alias.pm lib/Encode/Supported.pod AUTHORS
/\bwindows-31j$/i is now an alias of CP932, by Steve Hay.
http://rt.cpan.org/NoAuth/Bug.html?id=6695
2.02 2004/08/31 10:55:34
! ucm/big5-hkscs.ucm AUTHORS t/big5-hkscs.enc t/big5-hkscs.utf
New map submitted by Deng Liu and Autrijus. Test data needed
to be upgrade as well, done by dankogai
Message-Id: <20040824204828.GB6999@aut.dyndns.org>
! bin/ucmsort
Now works for characters U+10000 and above. This fix was needed
to "tidy" the original map that was submitted.
! bin/enc2xs
"ucmsort" now mentioned in pod
2.01 2004/05/25 16:27:14
! bin/enc2xs AUTHORS
From: domo@computer.org
Subject: [PATCH] Correct statistics from enc2xs
<4AF60A4A-B8BB-11D8-BF99-000A27839BD6@computer.org>
<CDEBBD45-B91D-11D8-BF99-000A27839BD6@computer.org>
! lib/Encode/Alias.pm
Addressed "False [] range "\s-" in regex;" in Encode::Alias.pm
<200405271148.i4RBm4KY026529@mail.mvnet.de>
2.01 2004/05/25 16:27:14
! lib/Encode/CN/HZ.pm lib/Encode/Unicode/UTF7.pm
"If someone thinks utf8::upgrade($1) should be croaked like
chom?p($1),please try the following patch for Encode.pm."
-- sadahiro-san
<20040522212704.C068.BQW10602@nifty.com>
2.0 2004/05/16 20:55:15
* version updated to 2.00
-- sorry, no big feature change. I just hate version 1.100 :)
! lib/Encode/Guess.pm
Unicode/Unicode.pm
addressed UTF-(8|32LE) + BOM misguessing
https://rt.cpan.org/Ticket/Display.html?id=6279
! Encode.pm
s/is_utif8/is_utf8/ in POD
! Encode/lib/Encode/CN/HZ.pm
Fixes "make test" failure after the patch to pp_hot.c
by Sadahiro-san
Message-Id: <20040222182357.6B39.BQW10602@nifty.com>
! bin/piconv
From: autrijus@autrijus.org
Subject: [PATCH] "piconv -C 512" badly broken
Message-Id: <1072870210.769.5.camel@localhost>
1.99 2003/12/29 02:47:16
! Unicode/Unicode.xs
find_encoding("UTF-16BE")->encode("abc") now null terminates
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2003-10/threads.html#00258
! Encode.pm
prototype bug in decode_utf8() fixed
Message-Id: <600A4CDA-F004-11D7-B570-000393AE4244@dan.co.jp>
! Encode.pm /MANIFEST encoding.pm lib/Encode/Supported.pod
t/at-cn.t t/at-tw.t t/gsm0338.t ucm/gsm0338.ucm
+ t/gsm0338.t
Merged from maintperl@21987
1.98 2003/08/20 11:15:31
! lib/Encode/MIME/Header.pm AUTHORS t/mime-header.t
Dave Evans has found and corrected a bug in Encode::MIME::Header.
Test suite added by Dan Kogai.
Message-Id: <3F43440B.7060606@rudolf.org.uk>
! encoding.pm
Typo fixes rolled back in from bleedperl
! t/at-cn.t t/at-tw.t
v-strings, now depreciated in perl 5.8.1, is replaced by sadahiro
Message-Id: <20030805002313.9880.BQW10602@nifty.com>
! bin/enc2xs
argv case nit for VMS by Craig
Message-ID: <3F2B02DE.10207@mac.com>
! t/enc_eucjp.t t/enc_utf8.t AUTHORS
Encode test fixes for VMS by Peter Prymmer
Message-ID: <OFBD4A7559.D7CF9517-ON85256D6B.00534853-85256D6B.00538131@factset.com>
! lib/Encode/Alias.pm t/Aliases.t
koi-8 aliases bug detected and patched by sadahiro.
Further fix and test suite by dankogai
Message-Id: <20030713102228.C76A.BQW10602@nifty.com>
1.97 2003/07/08 21:52:14
! encoding.pm lib/Encode/Guess.pm lib/Encode/Alias.pm
lib/Encode/JP/JIS7.pm lib/Encode/Encoder.pm Encode.pm
$DEBUG replaced with DEBUG() so perl optimizes better,
by Rafael with further fixes by dankogai
Message-Id: <20030705222023.1f24e041.rgarciasuarez@free.fr>
! lib/Encode/Aliases.pm
Was: define_alias( qr/\bGB[-_ ]?2312(?:\D.*$|$)/i => '"euc-cn"' );
Now: define_alias( qr/\bGB[-_ ]?2312(?!-?raw)/i => '"euc-cn"' );
So new hash seeding introduced in bleedperl works.
Message-Id: <20030629100937.GD20285@vipunen.hut.fi>
! lib/Encode/Guess.pm
$Encode::Guess::NoUTFAutoGuess is added so you can turn off
automatic utf(8|16|32) guessing -- originally by Autrijus
Message-Id: <20030626162731.GA2077@not.autrijus.org>
! Encode.pm
Addressed the following;
Subject: [perl #22835] FB_QUIET doesn't work with Encode::encode
Message-Id: <rt-22835-59975.6.8650775354304@rt.perl.org>
1.96 2003/06/18 09:29:02
! lib/Encode/JP/JP.pm t/guess.t
m/(...)/ in void context then $1 is considered a Bad Thing
Message-Id: <B5AB34D0-A019-11D7-AF03-000393AE4244@dan.co.jp>
! Encode.pm
Mentions in POD that as of perl 5.8.1 utf8::is_utf8() is
also available.
! encengine.c
More typecast from maintperl@19739
Message-Id: <200306110645.h5B6j5D2009640@smtp3.ActiveState.com>
! t/perlio.t
Tests 37 & 38 failed on Win32 -- yet another CRLF issue
Message-Id: <200306090733.h597XQPA031646@smtp3.ActiveState.com>
! t/Encode.t
Now skips for EBCDIC platform.
Message-Id: <OF44B38062.A3998148-ON80256D27.004CF379@portsmouth.uk.ibm.com>
! t/perlio.t
Craig's patch applied that addresses "Many systems (DOS, VMS) cannot
have more than one C<.> in their filenames." -- perlport.
Message-Id: <3ED79E01.8050401@mac.com>
! bin/piconv
Found and fixed the back that -p,--perlqq does not work.
Induced by the change from Getopt::Std to Getopt::Long.
! encoding.pm
Addressed [cpan #2629] Wrong assumption in numeric comparison
Message-Id: <rt-2629-7326.19.5700583232515@cpan.org>
! Encode.pm Encode.xs Unicode/Unicode.pm Unicode/Unicode.xs
lib/Encode/Encoding.pm t/perlio.t
! API Change: ->new_sequence() => ->renew()
+ Encode::Unicode makes use of it so it can handle BOM on PerlIO
+ Encode::XS and Encode::utf8 now supports ->renew()
+ Encode::Encoding now documents this with examples
- Non-XS (en|de)code stripped out of Encode::Unicode
Message-Id: <146957DB-8C39-11D7-9C91-000393AE4244@dan.co.jp>
1.95 2003/05/21 08:41:11
! ucm/8859-*.ucm
Since bogus entries were found in iso-8859-6, all entries are
re-generated once again out of
http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-*.TXT
Thank David Graff <graff@unagi.cis.upenn.edu> for the discovery
Message-Id: <200305201819.h4KIJRRU013746@unagi.cis.upenn.edu>
+ lib/Encode/Unicode/UTF7.pm
! lib/Encode/Config.pm lib/Encode/Alias.pm Unicode/Unicode.pm t/Unicode.t
lib/Encode/Supported.pod
UTF-7 support is now added. With this Encode now has all transcoding
methods in Unicode::String.
1.94 2003/05/10 18:13:59
! lib/Encode/MIME/Header.pm
A more sophisticated solution for double-encoding by dankogai
! lib/Encode/MIME/Header.pm AUTHORS
Two bugs fixed by Bjoern Jacke
* "Double Encoding" was not possible
i.e. encode("MIME-B" => "=?UTF-8?B?w4RwZmVs?=")
* encode("MIME-Q") had UTF-8 flag on
Message-Id: <rt-22166-57077.2.12980078979811@bugs6.perl.org>
! lib/Encode/MIME/Header.pm AUTHORS
Two occurances of "croak ()" fixed as "croak qq()".
Simon Cozens is added to AUTHORS as a result.
Message-Id: <20030509103708.GA30664@deep-dark-truthful-mirror.pad>
! bin/piconv
POD fixes that reflect enhancements by jhi
! bin/piconv
Two enhancements by jhi.
+ Now uses Getopt::Long so it accepts long name options
(--from for -f, for example)
+ New option: -r,--resolve
Message-Id: <20030505114149.GA227075@kosh.hut.fi>
! MANIFEST META.yml
META.yml added upon request of Schwern
Message-Id: <F3B0BD2C-7BCB-11D7-A488-000393AE4244@dan.co.jp>
! AUTHORS
Enache Adrian removed upon request -- to live longer than Encode
and/or FreeBSD (toy-)?thread :)
Message-Id: <20030425015701.GA2069@ratsnest.hole>
! t/enc_module.t
"close STDOUT unless $^O eq 'freebsd';" once again relocated
to keep VMS happy in which case "$^O eq 'freebsd'" is required
to keep FreeBSD+thread happy. Sigh.
Message-Id: <3EA88ADC.3000300@mac.com>
1.93 2003/04/24 17:43:16
! t/enc_eucjp.t
added "no warnings 'pack'" in for loop to keep bleedperl from
complaining "Character in 'C' format wrapped in pack".
! Makefile.PL
More elegant perl core detection inspired by Ilya Zakharevich
(but further elaborated for general cases).
! lib/Encode/Encoding.pm lib/Encode/PerlIO.pod
POD fixes.
! t/euc-jp.ucm
like cp9??, \x80-\x9F (control + 0x80) are zapped so they
are less likely to be confused w/ ISO-8859-*
! t/CJKT.t
RT tests added (vendor encodings are exemplified)
-- that successfully found a flaw on iso-2022-kr before the patch.
! lib/Encode/CJKConstants.pm lib/Encode/KR/2022_KR.pm
decode("ISO-2022-KR") has been buggy but no one ever sited
that since no one seems to be using it. Bugs discovered by
SADAHIRO-san
Message-Id: <20030416231757.A545.BQW10602@nifty.com>
! lib/Encode/CN/HZ.pm t/perlio.t
HZ is now perlio_ok, thanks to SADAHIRO-san. perlio.t modified
so it adds test for HZ.
Message-Id: <20030416231757.A545.BQW10602@nifty.com>
! lib/Encode/Guess.pm
Now guesses UTF-(16|32)(BE|LE) when the string contains \x00.
So long as the string contains \x{00}-\x{ff} it does not fail.
See perldoc for details.
Message-Id: <D2F9BB3C-6DC8-11D7-8F19-000393AE4244@dan.co.jp>
1.92 2003/03/31 03:27:27
! ucm/big5-eten.ucm ucm/big5-hkscs.ucm
Extraneous single-byte chars in range \x80-\xA0 and \xFA-\xFF
removed. FYI, IBM's ICU has none of these for java-Big5-1.3_P.ucm
but glibc-BIG5-2.1.2.ucm does.
Message-Id: <20030325215213.4CA1.BQW10602@nifty.com>
! ucm/cp932.ucm ucm/cp936.ucm ucm/cp949.ucm ucm/cp950.ucm
Maps regenerated again but this time based upon
http://oss.software.ibm.com/cvs/icu/charset/data/ucm/
(But where is THE DOCUMENT by MICROSOFT?)
! t/enc_module.t AUTHORS
failure with threaded Perl on FreeBSD addressed.
Enache Adrian <enache@rdslink.ro> is added to AUTHORS for this.
Message-Id: <20030322230131.GA813@ratsnest.hole>
! lib/Encode/Guess.pm
Some POD fixes.
! t/CJKT.t
Change 18989: Make the :bytes conditional on PerlIO.
further Modified by Dan Kogai
<200303161730.h2GHU5B16265@smtp3.ActiveState.com>
! t/enc_module.t
Chnage 18966: another fix for failing test on windows ("use encoding"
puts STDIN in :raw mode, so chomp() wasn't stripping the CR), by gsar
Message-Id: <200303140545.h2E5j5B08856@smtp3.ActiveState.com>
! t/CJKT.t
Change 18970: Hopefully this works also in Win32, by jhi
Message-Id: <200303140745.h2E7j6B22729@smtp3.ActiveState.com>
Change 18965: fix CJKT.t failures on windows due to incorrect
binmode(), by gsar
Message-Id: <200303140530.h2E5U5B07046@smtp3.ActiveState.com>
1.91 2003/03/09 20:07:37
! encoding.pm
even more proofread by jhi.
Message-Id: <20030309194323.GT20843@kosh.hut.fi>
! t/enc_module.t
-use lib 't';
+use lib qw(t ext/Encode/t ../ext/Encode/t);
Message-Id: <20030309182057.GR20843@kosh.hut.fi>
! AUTHORS
s/Hirohito/Hiroto/ig; Sorry, Hiroto-san.
Message-Id: <20030309181748.GP20843@kosh.hut.fi>
! encoding.pm
s/logner/longer/
Message-Id: <20030309181907.GQ20843@kosh.hut.fi>
1.90 2003/03/09 17:32:43
! encoding.pm
+ t/enc_data.t
Inaba-san has added a patch for perl 5.8.1 or later that makes
encoding.pm work for <DATA> filehandle. t/enc_data.t is to test
that. POD is further revised.
Message-Id: <200303091515.h29FF6B03903@smtp3.ActiveState.com>
! encoding.pm t/enc_module.t
encoding vs. ${^UNICODE} resolved. POD revised accordingly.
Message-Id: <20030306112940.GN20652@kosh.hut.fi>
1.89 2003/02/28
! Encode.xs
signed vs. unsigned issue discovered by Craig on OpenVM
Message-Id: <a05200f12ba81fe9d6298@[172.16.52.1]>
! encoding.pm AUTHORS
+ t/Mod_EUCJP.pm t/enc_module.enc t/enc_module.t
Because binmode() stacks layers instead of overwrite, you have to
":raw :encoding()" in encoding.pm or your are in trouble when you
call encoding.pm multiple times. There are several workarounds
but Inaba-san's idea is in. SUGAWARA Hajime <sugawara@hdt.co.jp>,
who was the first to address this problem was added to AUTHORS.
The test suites was added for this, which is a modified version
of SUGAWARA-san's scripts
Message-Id: <3E5CF695.6AE07852@st.rim.or.jp>
1.88 2003/02/20 14:42:34
! Encode.xs
one signedness nit for Encode by jhi
<200302161933.h1GJX876018710@kosh.hut.fi>
! ucm/viscii.ucm
VISCII map was incorrect; fixed by Sadahiro-san
Message-Id: <20030216120828.47D3.BQW10602@nifty.com>
! t/enc_eucjp.t t/enc_utf8.t AUTHORS
You can't unlink files that are opened in cygwin but the last
file handle opened in t/enc_*.t left open. Patch submitted
by Yitzchak and he was added to AUTHORS.
Message-Id: <iN0Q+gzkgmZN092yn@efn.org>
! t/CJKT.t
now works with 'LC_ALL=en_US.UTF-8 PERL_UTF8_LOCALE=1'
Message-Id: <20030206104513.GA11081@kosh.hut.fi>
! Unicode/Unicode.xs
For 1.88: Unicode.xs =~ s/regog/recog/ -- jhi
Message-Id: <20030206045153.GA6826@kosh.hut.fi>
1.87 2003/02/06 01:52:11
! AUTHORS
* Inaba "Sensei" Hirohito added (I thought I have done so a long
ago but apparently I did not).
* SUZUKI Norio added for verious and useful bug reports.
! Byte/Byte.pm KR/KR.pm Unicode/Unicode.pm
lib/Encode/Encoder.pm lib/Encode/CJKConstants.pm
podchecked so all warnings are gone except for L<http://>.
! encoding.pm t/enc_eucjp.t
* t/uni/tr_utf8.t now t ok on maintperl (sorry, jhi)
* Filter option overhaul
* POD revision
! Encode.pm Encode.xs encengine.c Encode/encode.h
lib/Encode/Encoding.pm lib/Encode/JP/JIS7.pm
Merged inaba-san's patch that fixes "use encoding 'shiftjis'"
without filter. podchecked by Dan Kogai.
Message-Id: <3E3BC46B.6C687CFD@st.rim.or.jp>
! lib/Encode/Alias.pm
decode('alias', $1) went wild because of local $_ in find_alias()
the evil local $_ is eradicated but that changes find_alias()
format for coderef aliasing. See Encode::Alias for details
Message-Id: <200302051704.AA00042@kipp0.nifty.com>
1.86 2003/01/22 03:29:07
! encoding.pm
* Don't forget to canonize when you attempt an exact match!
Message-Id: <73E7F801-2DAA-11D7-BF9A-000393AE4244@dan.co.jp>
* ${^ENCODING} exception is off for $] > 5.008
Message-Id: <20030122110617T.inaba.hiroto@toshiba-it.co.jp>
! t/enc_utf8.t
$] check commented out so it runs on 5.8.0
1.85 2003/01/21 22:19:14
! encoding.pm
${^ENCODING} exception is now explicit rather than handled by regex.
+ t/enc_eucjp.t t/enc_utf8.t
Test suite for the better "encoding" pragma support for bleedperl.
On 5.8.0, they will just be skipped.
1.84 2003/01/10 12:00:16
! encoding.pm
${^ENCODING} is no longer set for utf so encoding is no longer fun :)
(That is to prevent duplicate encoding first by IO then ${^ENCODING})
Message-Id: <20030108213737.GK331043@lyta.hut.fi>
! Unicode/Unicode.xs
%_ fixes saves the resulting .so .05% smaller, by NC
Message-Id: <20021226225709.GF284@Bagpuss.unfortu.net>
! Encode.pm
Silence Encode on undef, by Andreas
Message-Id: <m3smwrohd1.fsf@k242.linux.bogus>
Message-Id: <m3of7fo7np.fsf@k242.linux.bogus>
! Unicode/Unicode.xs
s/regognised/recognised/ . British spelling left intact to pay
respect to two British Nicks :)
Message-Id: <20021203020454.GK2274@kosh.hut.fi>
1.83 2002/11/18 17:28:49
! Encode.xs lib/Encode/JIS7.pm
Even more patches from Inaba-san has been applied. With this
patch t/uni/tr_7jis.t and t/uni/t_utf8.t of bleedperl will work.
Message-Id: <20021115105514D.inaba.hiroto@toshiba-it.co.jp>
1.82 2002/11/14 23:06:12
! Encode.xs
Encode::utf8 (XS Version) assertion botch first found in Cygwin,
later found in perls w/ -Dusemymalloc was fixed by NC.
Message-Id: <20021114210349.GA288@Bagpuss.unfortu.net>
1.81 2002/11/08 18:29:27
! Encode.pm Encode.xs
Non-XS version of Encode::utf8 is back (with XS being default).
Encode::predefine_encodings(0) to turn off XS.
This is primarily to cope w/ Cygwin smoke but Sadahiro-san has
found that it was Test::More causing the problem, not Encode.
But I have already made it configurable so it may be useful in
some rare cases....
Message-Id: <20021107210110.2EE4.BQW10602@nifty.com>, et al.
! bin/enc2xs
The ingenious patch by Nicholas Clark that reduces shlib sizes by
50% with no penalty and backward compatibility preserved, is in.
Message-Id: <20021103231324.GE288@Bagpuss.unfortu.net>
1.80 2002/10/21 20:39:09
! Encode.xs t/mime-header.t
Even more patches from NI-XS regarding Encode::utf8->decode().
And one more test to t/mime-header.t to prove it
Message-Id: <E183i0Y-0003mo-00@mserv1c.vianw.co.uk>
1.79 2002/10/21 06:05:37
! Encode.xs
Further patches from NI-XS. Encode::utf8->decode() now checks the
value of utf8 flag of the argument. As a result, the fix to
lib/Encode/MIME/Header.pm is no longer neccessary but since it did
no harm (even speedwise) I'll leave it unreverted.
! ucm/cp949.ucm ucm/cp950.ucm
U+20AC EURO SIGN
U+00AE REGISTERED SIGN
were missing as a result of 1.78. Discovered by Moriyama-san.
Moriyama-san has also developed a test script that compares
(en|de)coded results to the corresponding Win32 API result and
all cp9?? maps are now verified.
Message-Id: <20021021025220.3AED.MSYK@mtg.biglobe.ne.jp>
1.78 2002/10/20 15:44:00
! lib/Encode/MIME/Header.pm
fixed so that it works with new Encode::utf8
! Encode.pm Encode.xs
Encode::utf8 is now in Encode.xs by Nick In-XS. This allows
:encoding(UTF-8) to handle partial chars at end of buffers
correctly.
Message-Id: <20021020134935.2079.3@bactrian.ni-s.u-net.com>
! lib/Encode/Supported.pod
More nitpickings applied.
+ t/rt.pl MANIFEST
! t/CJKT.t
Moriyama-san has discovered a serious bug in t/CJKT.t; its roundtrip
tests were completely useless. To redeem that and get the peace of
mind again, I wrote t/rt.pl to test ALL '|0' ENTRIES in all
ucm/*.ucm Since this script takes too long to finish (30 seconds on
PIII-800MHz, FreeBSD), it is deliberately excluded from 'make test'
but you can easily run that by either renaming it or:
perl -Mblib t/rt.pl
Message-Id: <20021019065420.0C48.MSYK@mtg.biglobe.ne.jp>
! ucm/cp936.ucm ucm/cp949.ucm ucm/cp950.ucm
Other CJKT cp9?? also updated according to the URI below;
http://www.microsoft.com/typography/unicode/cscp.htm
+ bin/ucmsort MANIFEST
ucmsort is a crude utility that sorts CHARMAP entries in UCM files
to proper order. intended for hardcore develpers only.
! ucm/cp932.ucm JP/JP.pm AUTHORS
CP932 mapping which was based upon the mapping file at unicode.org
was found obsolete by MORIYAMA Masayuki msyk@mtg.biglobe.ne.jp>. He
has also supplied the patch so he was added to AUTHORS.
! lib/Encode/Supported.pod
ISO-8859-11 != TIS 620
== TIS 620 + \xA0 ( )
Message-Id:
<DC504E9C3384054C8506D3E6BB012460810D23@bsebe001.americas.nokia.com>
1.77 2002/10/06 03:27:02
! t/jperl.t
* Modified to accomodate up and comming patch by Inaba-san that
will fix tr/// needing eval qq{}
Message-Id: <9F78A19C-D6C3-11D6-BAC6-0003939A104C@dan.co.jp>
! encoding.pm
* pod fixes/enhancements to reflect the changes above
! lib/Encode/Alias.pm
"Encode::TW is correct, Encode::Alias not." - /Autrijus/
Message-Id: <20021001015648.GB18710@not.autrijus.org>
1.76 2002/08/25 15:09:51
! t/big5-eten.utf
To reflect ucm change by Autrijus. t/big5-eten.enc was regenerated
but naturally identical to previous version -- dankogai
! ucm/big5-eten.ucm
Codepoint fixes -- autrijus
Message-Id: <20020805040236.GC5220@not.autrijus.org>
= *
copied everything under perl-5.8.0/ext/Encode to make sure Encode
is in sync w/ perl core
! t/CJKT.t t/guess.t
Change 17175 by jhi@alpha on 2002/06/10 23:24:42
Now that binmode(FH) does implicit ":bytes" revisit
the failing tests. The worrisome one is the Digest::MD5
test-- how will it fare in CRLF lands now?
! t/CJKT.t t/guess.t
From: Radu Greab <radu@netsoft.ro>
Date: Mon, 10 Jun 2002 00:40:34 +0300
Message-Id: <200206092140.g59LeYn15745@ix.netsoft.ro>
Fixes for en_US.UTF-8 failures, all but ext/PerlIO/t/fallback.t
ones which I cannot figure out.
! lib/Encode/Alias.pm
Subject: [Encode PATCH] spurious warning
From: Nicholas Clark <nick@unfortu.net>
Date: Sun, 2 Jun 2002 20:26:22 +0100
Message-ID: <20020602192619.GA320@Bagpuss.unfortu.net>
1.75 2002/06/01 18:07:49
! lib/Encode/Alias.pm t/Alias.t lib/Encode/Supported.pod TW/TW.pm
glibc compliance cited by Autrijus.
http://www.li18nux.org/docs/html/CodesetAliasTable-V10.html
! bin/enc2xs bin/piconv
Subject: Re: forewarning: usedevel and versiononly
Message-Id: <20020529081515.D570.H.M.BRAND@hccnet.nl>
1.74 2002/05/28 18:33:15
+ ucm/null.ucm ucm/ctrl.ucm
! Makefile.PL bin/enc2xs lib/Encode/Supported.pod
"null" and "ascii-ctrl" encodings added upon the request of Autrijus
Subject: Re: unicode -> &# notation
Message-ID: <20020518193704.GB40272@not.autrijus.org>
1.73 2002/05/28 17:26:18
! */Makefile.PL Makefile.PL bin/enc2xs Encode/Makefile_PL.e2x AUTHORS
Chris Nandor has fixed Encode so that it works w/ MacPerl --
at least w/ PPC (68k need static linking which does not work due to
64k limit). pudge is added to AUTHORS (I'm surprised he was not
there in the list). Encode/Makefile_PL.e2x was additionally fixed
by dankogai to reflect changes in other Makefile.PL
Message-Id: <p0510030ab9195ed230ff@[10.0.1.107]>
! t/mime-header.t
Subject: Change 16746: -Mutf8 cleanup.
Message-Id: <200205222345.g4MNj7e10597@smtp3.ActiveState.com>
1.72 2002/05/20 15:49:56
! Makefile.PL
Subject: [PATCH] Encode should be in perl-core library path
Message-Id: <86r8k7h738.wl@mail.edge.co.jp>
Message-Id: <20020520161201.A11019@alpha.hut.fi>
! lib/Encode/MIME/Header.pm
Subject: [PATCH] Encode::MIME::Header
Message-Id: <86sn4nh7a8.wl@mail.edge.co.jp>
! Encode/Makefile_PL.e2x
Subject: [PATCH] Make Makefile_PL.e2x happy on MSWin32
Message-Id: <20020519201031.GA1603@not.autrijus.org>
! CN/Makefile.PL Byte/Makefile.PL JP/Makefile.PL TW/Makefile.PL
Symbol/Makefile.PL KR/Makefile.PL EBCDIC/Makefile.PL Makefile.PL
AUTHORS
@16628 and @16652 from Vadim. Vadim was added to AUTHORS.
Subject: [PATCH] good day for WinCE port of perl.
Message-ID: <001301c1fc68$e808e560$a95cc3d9@vad>
! Encode.xs
! Unicode/Unicode.xs
Even more linting by Robin via @16532
! Encode.xs
Even more typecast by Sarathy in @16460
1.71 2002/05/07 16:22:42
! Encode.xs
even more typecasts by Robin
Message-Id: <200205071513.QAA05846@tempest.npl.co.uk>
! bin/enc2xs
A very strange bug that was causing a bugus ucm -> C table
generation that was revealed by a UCM file that Andreas was
working. This is the king of wierdest bug I've encountered
in the course of Encode maintenance.
Message-Id: <6C04F0FA-61D4-11D6-B164-00039301D480@dan.co.jp>
1.70 2002/05/06 10:26:48
! encoding.pm
Made more 'module-safe' with conjunction w/ 'no encoding'.
Message-Id: <EAB48C16-60DA-11D6-9982-00039301D480@dan.co.jp>
! lib/Encode/Encoding.pm
'require Encode' because ->Define uses Encode::define_encoding();
problem and solution addressed by Miyagawa-kun
Message-Id: <86znzdfvuh.wl@mail.edge.co.jp>
! t/Unicode.t
Cuts the frill to make djgpp happier, as suggested by Laszlo
Message-Id: <20020506105819.H17012@libra.eth.ericsson.se>
! bin/enc2xs
enc2xs no longer overwrites files w/ -M option, as suggested by Andreas
Message-Id: <m3bsbug48n.fsf@anima.de>
1.69 2002/05/04 16:41:18
! lib/Encode/MIME/Header
Floating-point coerced for UNICOS (in integer arithmetics it folds
line one character too early). Verification by Mark is pending.
Message-Id: <C670F60D-5F4F-11D6-A5CA-00039301D480@dan.co.jp>
! Unicode/Unicode.pm
more doc patch from Elizabeth
Message-Id: <4.2.0.58.20020503210946.02f4ed30@mickey.dijkmat.nl>
! Encode/Makefile_PL.e2x
More platform-independent patch from Benjamin
Message-Id: <3CD31BE0.69F79B06@earthlink.net>
! lib/Encode/Guess AUTHORS
split regex fix by Graham Barr. Adds him to AUTHORS.
Message-Id: <20020504085419.E95940@valueclick.com>
! Encode/Makefile_PL.e2x
enc2xs script discovery made smarter and more sensible, first cited
by Miyagawa-kun and further suggestions by Rafael and Andreas
! Encode.pm lib/Encode/Guess.pm t/fallback.t t/guess.t t/mime-header.t
"The EBCDIC remapping of the low 256 bites again" #16372 by jhi
1.68 2002/05/03 12:20:13
! lib/Encode/Alias.pm lib/Encode/Supported.pod t/Alias.t AUTHORS
UCS-4 added to aliases of UTF-32 by Elizabeth Mattijsen. Alias.t
and Supported.pod modified to reflect the change. Elizabeth added
to Authors. And H.M. is also added for forwarding her patch among
other contributions (I was rather surprised to find his name was not
there yet!)
Message-Id: <20020503114901.D639.H.M.BRAND@hccnet.nl>
1.67 2002/05/02 07:33:09
! Encode.xs
Error message now consistent w/ perlqq (\N{U+} -> \x{})
done in perl@16308 but Philip linted me further. Now the error
messages are macronized as ERR_ENCODE_NOMAP and ERR_DECODE_NOMAP
! lib/Encode/Guess.pm
Sanity check for happier -w by Autrijus
1.66 2002/05/01 05:41:06
! Encode.xs t/fallback.t
WARN_ON_ERR no longer assumes RETURN_ON_ERR so you can issue a warning
while fallback is in effect. This even came with a welcome side-effect
of cleaner code with less nests! Thank you, NI-XS. t/fallback.t is
also modified to test this.
And of course, the corresponding varialbles to UV[Xx]f are appropriately
cast. This should've concluded NI-XS homework.
! Encode.pm
encode(undef) does warn again! Repented upon suggestion by NI-XS.
Document for unless vs. '' added
Message-Id: <20020430171547.3322.13@bactrian.elixent.com>
1.65 2002/04/30 16:13:37
! Encode.pm
encode(undef) no longer warns for C<Use of uninitialized value in
subroutine entry>. Suggested by Paul.
Message-Id: <AIEAJICLCBDNAAOLLOKLMEEEEJAA.Paul.Marquess@ntlworld.com>
! lib/Encode/Supported.pod
Encode::MIME::Header and Encode::Guess mentioned
Updated for Encode::HanExtra 0.05 and Encode::JIS2K
! lib/Encode/Guess.pm
POD fix by Miyagawa-kun
Message-Id: <86k7qqx8p7.wl@mail.edge.co.jp>
1.64 2002/04/29 06:54:06
! ucm/euc-jp.ucm
Now decodes euc-jisx0213 also. CAVEAT: encode("euc-jp"...) and
encocde("euc-jisx0213") are still DIFFERENT.
Message-Id: <A5DFA5CA-5B3C-11D6-A54F-00039301D480@dan.co.jp>
! Encode.xs
A few white spaces corrected by NI-XS via PerlIO integration to
Mainline
Subject: Change 16247: Integrate perlio;
! Encode.pm
Document fixes by Andreas
Message-Id: <m3k7qsf1we.fsf@anima.de>
1.63 2002/04/27 18:59:50
! lib/Encode/Encoding.pm
! Encoding.pm Unicode/Unicode.pm lib/Encode/Guess.pm lib/Encode/CN/HZ.pm
! lib/Encode/JP/JIS7.pm lib/Encode/MIME/Header.pm lib/Encode/KR/2022_KR.pm
Make use of the Encode::Encoding base class!
And other cleanups in Encode.xs upon NI-XS suggestions
Message-Id: <20020427160718.1290.15@bactrian.ni-s.u-net.com>
1.62 2002/04/27 11:17:39
! Encode.pm
encodings() now just check %ExtModule instead of eval{require}
all of them for ":all" to conserve more memory.
! Encode.xs
more "%x" -> "%" UVxf stuff.
! Encode.pm
s/=over2/=over 2/g # oops.
1.61 2002/04/26 03:02:04
! t/mime-header.t
Now does decent tests besides use_ok()
! lib/Encode/Guess.pm t/guess.t
UI streamlined, document added
! Unicode/Unicode.xs
various signed/unsigned mismatch nits (#16173)
http://public.activestate.com/cgi-bin/perlbrowse?patch=16173
! Encode.pm
POD: utf8-flag-related caveats added. A few sections completely
rewritten.
! Encode.xs
! AUTHORS
Thou shalt not assume %d works, either!
Robin Baker added to AUTHORS for this
Message-Id: <200204251132.MAA28237@tempest.npl.co.uk>
! t/CJKT.t
"Change 16144 by gsar@onru on 2002/04/24 18:59:05"
1.60 2002/04/24 20:06:52
! Encode.xs
"Thou shalt not assume %x works." -- jhi
Message-Id: <20020424210618.E24347@alpha.hut.fi>
! CN/Makefile.PL JP/Makefile.PL KR/Makefile.PL TW/Makefile.PL To make
low-memory build machines happy, now *.c is created for each *.ucm
(no table aggregation). You can still override this by setting
$ENV{AGGREGATE_TABLES}.
Message-Id: <00B1B3E4-579F-11D6-A441-00039301D480@dan.co.jp>
+ lib/Encode/Guess.pm
+ lib/Encode/JP/JIS7.pm
Encoding-autodetect (mainly for Japanese encoding) added. In a
course of development, JIS7.pm was improved.
+ lib/Encode/HTML/Header.pm
+ lib/Encode/Config.pm
MIME B/Q Header Encoding Added!
! Encode.pm Encode.xs t/fallback.t
new fallbacks; XMLCREF and HTMLCREF upon Bart's request.
Message-Id: <20020424130709.GA14211@tanglefoot>
1.59 $ 2002/04/22 23:54:22
! Encode.pm Encode.xs
needs_lines() and perlio_ok() are added to Internal encodings such
as utf8 so XML::SAX is happy. FB_* stub xsubs are now prototyped.
1.58 2002/04/22 23:54:22
! TW/TW.pm
s/MacChineseSimp/MacChineseTrad/ # ... oops.
! bin/ucm2text
! t/*.t
- t/*.euc t/*.ref
+ t/*.enc t/*.utf
Now all CJKT encodings go thru round-trip test via t/CJKT.t.
t/(CN|TW).t by Autrijus are renamed at-(cn|tw).t
t/(JP|KR).t are aggregated to t/CJKT.t
test data are all remade via bin/ucm2text.
And .... They are no longer skipped for -Uuseperlio !
1.57 2002/04/22 20:27:30
! t/JP.t t/KR.t t/perlio.t
unless (find PerlIO::Layer 'perlio') ... line is back again.
t/JP.t and t/KR.t were supposed to work but maybe '>:utf8' lines
need PerlIO. Sigh....
! Encode.xs Unicode/Unicode.pm lib/Encode/JP/JIS7.pm t/perlio.t
->perlio_ok now does eval{ require PerlIO::encoding } there so
it correctly returns 1 when PerlIO::encoding is yet loaded.
! Encode.xs
perl-current patch #16072 reflected
1.56 2002/04/22 09:48:07
! Encode.pm encoding.pm t/perlio.t t/jperl.t
New PerlIO::encoding 0.04 compliance met
1.55 2002/04/22 03:43:05
! Encode.pm Encode.xs Unicode/Unicode.pm
needs_lines() defined so Encode::Encoding is no longer needed
for perlio
1.54 2002/04/22 02:50:01
! Encode.pm! Encode.xs! Unicode/Unicode.pm t/perlio.t
! lib/Encode/Encoding.pm lib/Encode/CN/HZ.pm
now perlio_ok is true by default if PerlIO::encoding->VERSION is
0.03 or larger. POD in Encode::Encoding revised to reflect this.
Encode::XS and Encode::Unicode now has perlio_ok() method.
! lib/Encode/Supported.pod
s/UP-UX/HP-UX/ by jhi
! AUTHORS Byte/Byte.pm CN/CN.pm Encode.pm JP/JP.pm KR/KR.pm README
! Symbol/Symbol.pm TW/TW.pm Unicode/Unicode.pm bin/enc2xs bin/piconv
! bin/ucmlint encoding.pm lib/Encode/Alias.pm lib/Encode/CN/HZ.pm
! lib/Encode/Config.pm lib/Encode/Encoder.pm lib/Encode/Encoding.pm
! lib/Encode/KR/2022_KR.pm lib/Encode/PerlIO.pod
! lib/Encode/Supported.pod
Huge document fixes by Philip.
! AUTHORS
! t/JP.t
s/compare\(/compare_text\(/o by Sarathy. Adds him to AUTHORS
http://public.activestate.com/cgi-bin/perlbrowse?patch=16049
! t/perlio.t
binmode() after "<:encoding" to make Win32 happy, by Mattia.
Mattia added to AUTHORS file
Message-Id: <3CC3150F.5798.22A05AE@localhost>
1.52 2002/04/20 23:43:47
! t/perlio.t
TODO: is now SKIP:, as NI-XS requested. Also adds more
eraborate failure analysis added.
! bin/enc2xs
A note on how to make sure of round-trip safety added to POD
section (so Autrijus is happier)
! ucm/big5-hkscs.ucm ucm/big5-eten.ucm t/TW.pm
big5-(eten|hkscs) is round-trip safe again!
Message-Id: <A2C949CC-54AC-11D6-A5FB-00039301D480@dan.co.jp>
! encoding.pm
Typo fixes by Andreas
! Encode.pm Encode.xs Unicode/Unicode.xs Encode/Encoding.pm
! lib/Encode/JP/JIS7.pm lib/Encode/KR/2022_KR.pm t/perlio.t
PerIO coodination patches from NI-XS.
Message-Id: <2769E572-54A1-11D6-B7E2-00039301D480@dan.co.jp>
1.51 2002/04/20 09:58:23
! t/TW.t
Updated test suite by Autrijis so "make test" is happy again
Message-Id: <20020420082104.GA25037@not.autrijus.org>
+ ucm/big5-eten.ucm
! ucm/big5-hkscs.ucm lib/Encode/Alias.pm
- ucm/big5.ucm
TW/TW.pm TW/Makefile.PL
Updates by Autrijus. 'big5' is no longer a canonical but an
alias to 'big5-eten'. big5-hkscs is now in 2001 edition.
Message-Id: <20020419195346.GA19597@not.autrijus.org>
! Encode.xs
Fix by NI-XS that fallback may cause SEGV w/ Perl/TK
Message-Id: <20020419184509.1924.1@bactrian.ni-s.u-net.com>
! Encode.pm
PerlIO detection a little bit smarter; no longer uses eval qq{}
but eval {}.
1.50 2002/04/19 06:13:02
! ! Encode.pm Encode.xs Encode/encoding.h
+ t/fallback.pm
New Fallback API imlemented and documented. See "perldoc Encode"
for details
! lib/Encode/JP/JIS7.pm Encode.pm
+ lib/Encode/PerlIO.pod t/perlio.t
API compliance met. However, it still does not work unless perlio
implements line buffer. See BUGS section in perldoc Encode::PerlIO
As a sensible workaround, perlio_ok() added to Encode.
! encoding.pm
! lib/Encode/Supported.pod
Doc fixes from jhi
Message-Id: <20020418174647.J8466@alpha.hut.fi>
! CN/CN.pm
Doc fixes from Autrijus
Message-Id: <20020418144131.GA10987@not.autrijus.org>
! Encode.pm
perlqq mode documented
! t/JP.t
+ t/jisx0201.euc t/jisx0201.ref
! t/jisx0208.euc t/jisx0208.ref
t/JP.t tests more rigorously and with other encodings
t/jisx0201.* added to test JIS7 encodings. jisx0208 is now PURELY
in jis0208 (used to contain jisx0201 part).
! Encode/Makefile_PL.e2x
The resulting Makefile.PL that "enc2xs -M" creates now auto-discovers
enc2xs and encode.h rather than hard-coded. This allows the resulting
module fully CPANizable.
! encoding.pm t/JP.t t/KR.t
PerlIO detection simplified (checks %INC instead of eval{})
! Encode.xs Encode/encode.h
+ Unicode/Makefile.PL Unicode/Unicode.pm Unicode/Unicode.xs
- lib/Encode/Unicode.pm
(en|de)code_xs relocated to where it belongs. Source reindented
to my taste
! bin/enc2xs
Additional (U8 *) cast added as suggested by jhi
Message-Id: <20020417165916.A28599@alpha.hut.fi>
1.42 Date: 2002/04/17
- lib/Encode/XS.pm
no-op module; Thought of adding a pod there but enc2xs has
one so gone.
! encoding.pm
! t/JP.pm
! t/KR.pm
correct mechanism to detect Perlio::encoding layar installed.
! Encode.xs
PerlIO Layer detached.
1.41 2002/04/16 23:35:00
! encoding.pm
binmode(STDIN|STDOUT ...) done iff PerlIO is available
! t/*.t
Cleaned up PerlIO skip conditions to prepare for the upcoming
Encode - PerlIO forking.
! Encode.pm
exported functions are now prototyped.
! lib/Encode/CN/HZ.pm
! bin/enc2xs
! Encode.xs
fallback implemented # was /* FIXME */
affected programs revised to fit (only HZ was using the try-catch
approach which needed to be fixed for API-compliance).
! Encode/Config.pm
! Encode/KR/2022_KR.pm
! Encode/KR/KR.pm
can find =head1 NAME now, jhi
Message-Id: <20020416083059.V30639@alpha.hut.fi>
! encoding.pm
s/\{h\}/{$h}/g ;)
! Encode.xs
now complies with less warnings with the pickest compilers.
Suggested by Craig, fixed by Dan.
! Encode/Makefile_PL.e2x
! bin/enc2xs
A bug that fails to find *.e2x in certain conditions fixed
1.40 2002/04/14 22:27:14
+ Encode/ConfigLocal_PM.e2x
! lib/Encode/Config.pm
! bin/enc2xs
"enc2xs -C" now generates/updates Encode::ConfigLocal.
ConfigLocal_PM.e2x is a skelton thereof.
! lib/Encode/Config.pm
! CN/CN.pm
"use Encode::CN::HZ;" was missing.
! t/Unicode.t
! t/unibench.t
More rigorous tests added to test XS, especially on memory allocation.
! Encode.xs
! lib/Encode/Unicode.pm
NI-S implemented an XS version -- merged
Message-Id: <20020414154857.2066.4@bactrian.ni-s.u-net.com>
! encoding.pm
! t/jperl.t
Source filter option added. With this option on, you can write
perl 5.8-savvy scripts (such as UTF-8 identifiers) in legacy
encodings. t/jperl.t enhanced to test this feature.
! t/Unicode.t
ok() gotcha addressed by Benjamin fixed. Though I didn't exactly
apply his suggestion, this degree of nitting is enough to add him
to AUTHORS list.
Message-Id: <3CB93223.291E5E2E@earthlink.net>
! JP/JP.pm
+ lib/Encode/JP/JIS7.pm
- lib/Encode/JP/JIS.pm
- lib/Encode/JP/2022_JP.pm
- lib/Encode/JP/2022_JP1.pm
7bit-jis, iso-2022-jp and iso-2022-jp1 are all aggregated to
JIS7.pm for better maintainability and performance
! encoding.pm
Added caveat for non-ascii identifiers.
! encoding.pm
fixes by jhi, the original author of this pragramtic module.
Message-Id: <20020413231527.V1826@alpha.hut.fi>
1.34 2002/04/12 20:23:05 (Unreleased)
! Encode.pm
! t/Unicode.t
EBCDIC fixes addressed by jhi.
Message-Id: <20020412161844.D9383@alpha.hut.fi>
! lib/Encode/Encoder.pm
POD fix by Miyagawa-kun
Message-Id: <86bscqq4hu.wl@mail.edge.co.jp>
1.33 2002/04/10 22:28:40
! AUTHORS
Philip's mail address corrected.
! AUTHORS
! t/Encoder.t
! lib/Encode/Encoder.pm
s/ = shift;/ = @_;/ # trivial but a common idiomatic typo :)
This adds Miyagawa-kun to AUTHORS.
* encoding() no longer exported by default but on demand
* t/Encoder.t updated to test all these
Message-Id: <86hemjpdn4.wl@mail.edge.co.jp>
! lib/Encode/Unicode.pm
! lib/Encode/Supported.pm
Further doc fixes by Anton
1.32 2002/04/09 20:06:15
+ bin/ucmlint
+ t/bogus.ucm
- ucm/macDevanaga.ucm Unicode Character Map
- ucm/macGujarati.ucm Unicode Character Map
- ucm/macGurmukhi.ucm Unicode Character Map
A utility to check integrity of .ucm files. t/bogus.ucm is a
ucm that is deliberately bogus. unused Indic mappings are removed
for the time being.
! Encode.pm
resolve_alias() added as suggested by jhi. Same as
find_encoding("alias")->name. For convenience. This one is
defined in Encode.pm instead of Alias.pm.
Message-Id: <20020409215846.H17022@alpha.hut.fi>
! Encode.xs
Memory Allocate but detected during the devel of ucmlint -- fixed.
Message-Id: <C0DDCE16-4BE7-11D6-9204-00039301D480@dan.co.jp>
! lib/Encode/Unicode.pm
valid_ucs2(0) is false but must be true.
3 patches from NI-S as follows. This also has fixed the incident
Andy has reported.
! lib/Encode/Alias.pm
find_alias() recursion prevention
! t/Aliases.t
Checks for the patch above
! t/Encode/Unicode.pm
An extra "F" that causes valid_ucs2() return a bogus value fixed
Message-Id: <20020409133927.17803.1@bactrian.elixent.com>
Message-Id: <Pine.SOL.4.10.10204091338220.10390-100000@maxwell.phys.lafayette.edu>
2 Small Patches from jhi as follows:
! Encode.pm
Encode->encodings() lists in case-insensitve order (as it was)
! bin/piconv
-l option prints avaiable encodings to STDOUT instead of STDERR
! lib/Encode/Aliases.pm
s/defintion/definition/
Message-Id: <200204082306.CAA21033@alpha.hut.fi>
! AUTHORS
! lib/Encode/Supported.pod
! lib/Encode/Unicode.pm
POD revise by Philip Newton. This adds Philip to AUTHORS list.
Thank you for the exact quote of Douglas Adams :)
Message-Id: <22s3bu4gpvhhsses64nj3afuu0lo927rv3@4ax.com>
1.31 2002/04/08 18:08:07
! lib/Encode/Encoder.pm
+ t/Encoder.t
Encode::Encoder, once just a placeholder of an idea, is now much more
practical. See t/Encode.t to find how practical it can be.
+ lib/Encode/Config.pm
! Encode.pm
my false laziness at Encode.pm is fixed. Now %ExtModules are set
in Encode::Config and they are all literally, not programatically
set. My false laziness was resulting many encodings missing from
%ExtModules.
! lib/Encode/Unicode.pm
! t/Unicode.t
BOM for 32LE was bogus as noted by Anton. t/Unicode.t is fixed
so that it does not rely Encode::Unicode for BOM values
Message-Id: <FFEC33E9-4AFB-11D6-B415-00039301D480@dan.co.jp>
1.30 2002/04/08 02:34:51
+ lib/Encode/Encoder.pm
Object Oriented Encoder. I reckon something like this is in need.
! Encode.pm
! t/Unicode.pm
! lib/Encode/Supported.pod
* autoloading bug that prevented upper-case canonicals such as UTF-16
is fixed. Now even UTF/UCS are autoloaded!
* encodings() is now more intuitive.
* t/Unicode.t fixed to explicitly use Unicode.pm -- BOM values are
stored therein.
* Obligatory fixes to the POD.
! lib/Encode/Supported.pod
Patch from Anton applied.
Message-Id: <66641479.20020408033300@motor.ru>
! Encode.pm
! lib/Encode/Unicode.pm
Cosmetic changes: "bless $obj, $class" => "bless $obj => class"
1.28 2002/04/07 18:58:42
! MANIFEST
+ t/Unicode.t
+ t/grow.t
Just a MANIFEST for those missing files.
1.26 Date: 2002/04/07 15:22:04
! JP/Makefile.PL
! t/Aliases.PL
Schwarn's patches against Makefile.PL has zapped jis*.ucm. Restored.
And t/Aliases.t fixed to make sure they all exist.
1.25 2002/04/07 15:01:25 (Unreleased)
! Encode.pm
! lib/Encode/Unicode.pm
More POD fixes....
! Encode.pm
- lib/Encode/UTF_EBCDIC.pm
- lib/Encode/Internal.pm
- lib/Encode/utf8.pm
Integrated into Encode.pm as closures. That way "one package, one file"
rule is preserved yet less files to require.
! encoding.pm
commented out binmode(STDERR ...
! Makefile.PL
! Byte/Makefile.PL
! CN/Makefile.PL
! EBCDIC/Makefile.PL
! JP/Makefile.PL
! KR/Makefile.PL
! Symbol/Makefile.PL
! TW/Makefile.PL
! Encode/Makefile_PL.e2x
Schwarn's MM-compliance patch merged
Message-Id: <20020406082609.GA28758@blackrider>
! Encode.pm
! lib/Encode/Unicode.pm
+ lib/Encode/UTF_EBCDIC.pm
+ t/Unicode.t
- lib/Encode/10646_1.pm
- lib/Encode/ucs2_le.pm
(UCS-2|UTF-(16|32))(LE|BE)? implementation and cleanups. Instead of
per-module based (en|de)code, I saved a number of .pm by
reorganizing it as per-object base (Well, this is what Encode::XS
does under the hood). See Encode::Unicode for details.
The original Unicode.pm is now correctly renamed to UTF_EBCDIC.pm.
This module is used only on EBCDIC environments.
1.21 2002/04/05 14:46:34 (Not Released)
! JP/JP.pm
! Encode.pm
+ ucm/jis0201.ucm
+ ucm/jis0208.ucm
+ ucm/jis0212.ucm
Are back to make Perl/Tk happy Smile, NI-S.
! t/Alias.pm
! lib/Encode/Alias.pm
! lib/Encode/Supported.pm
! lib/Encode/10646_1.pm
! lib/Encode/ucs2_le.pm
UCS-16BE is now canonical for UCS-2/ISO-10646-1.
Leftover implicit aliases in ucs2_le.pm removed. Tests and documents
updated to reflect changes.
essage-Id: <20020405114024.1290.17@bactrian.ni-s.u-net.com>
! lib/Encode/Alias.pm
! lib/Encode/Supported.pm
Anton's revision commited. Added Dan's own fixes as well.
Message-Id: <159103166906.20020405161134@motor.ru>
! lib/Encode/Alias.pm
134c134
< qr/^UCS2-le$/i => '"UCS-2"', );
---
> qr/^UCS2-LE$/i => '"UTF-16LE"');
Sigh. Thank you, Anton.
Message-Id: <14567692196.20020405062020@motor.ru>
Message-Id: <69FEC0B4-483E-11D6-A045-00039301D480@dan.co.jp>
1.20 2002/04/04 19:50:52
+ bin/unidump
the last minute addtion. Just give it a try. Docs remains to be done.
Not installed by default.
! lib/Encode/Supported.pod
Enhanced Greatly.
! t/Alias.t
! lib/Encode/Alias.pm
! lib/Encode/utf8.pm
! lib/Encode/10464_1.pm
! lib/Encode/ucs2_le.pm
Canonical name for 'UCS-2le" is now "UTF-16LE". UCS-2 left
unchanged but UTF-16BE is added as an alias. Implicit aliases
move to Encode::Alias so init_alias() works more as expected.
Also, 'utf8' is now canonical with 'UTF-8' being an alias.
Though pedantically wrong, This should make perl mongers happier.
t/Alias.t is enhanced to test all these.
Message-Id: <9C39BD58-47AF-11D6-9D82-00039301D480@dan.co.jp>
! Byte/Makefile.PL
Now all .ucm are stacked in byte_t; They all share ascii part so 50%
of the codepoints are common. CJKT left as is because the saving is
not significant.
! Byte/Makefile.PL
! CN/Makefile.PL
! EBCDIC/Makefile.PL
! Encode.xs
! Encode/Makefile_PL.e2x
! JP/Makefile.PL
! KR/Makefile.PL
! Makefile.PL
! Symbol/Makefile.PL
! TW/Makefile.PL
! bin/enc2xs
! AUTHORS
All occurance of _def.h replaced with .exh so djgpp works happily
ever after! To credit this amazing discovery, Laszlo is now in
AUTHORS list
Message-Id: <20020403181424.GA8778@freemail.hu>
Message-Id: <B5BF0C6F-4732-11D6-B13D-00039301D480@dan.co.jp>
! Makefile.PL
! */Makefile.PL
! Encode/Makefile_PL.skel
bin/enc2xs
No more @INC fiddling! Uses $ENV{PERL_CORE} instead
Message-Id: <20020401222744.GX2000@blackrider>, et al.
! t/encoding.t
Two more tests by added jhi
Message-Id: <200204020000.DAA25121@alpha.hut.fi>
+ t/grow.t
! Encode.xs
The showstopper fixed -- Memory reallocation bug was causing
Encode::XS to fall into infinite loop on certain conditions.
t/grow.t tests that.
Message-Id: <9572CAC4-463C-11D6-ABA5-00039301D480@dan.co.jp>, et al
+ bin/txt2ucm
! */Makefile.PL
! */*.ucm
! */XX.pm
! lib/Encode/Supported.pod
Vendor encodings rebuilt out of original map files at unicode.org.
Indic languages such as MacDevanagali remain unspported do to the
shortcoming of encengine capabilities (they need algorithmical
conversion and I have no knowledge on that!). Pods fixed for added
encodings.
Oh, macJapan.ucm renamed to macJapanese.ucm.
macROMnn is macRomanian and macRUMnn is macRumanian.
txt2ucm is a crude script that is used to convert them.
! bin/enc2xs
Unicode Compound Characters (used extensively on Mac) supported
! bin/piconv
Typo fixes and improvements by jhi
Message-Id: <200204010201.FAA03564@alpha.hut.fi>, et al.
1.11 2002/03/31 22:12:13
+ t/encoding.t
+ t/jperl.t
! MANIFEST
Missing files from the MANIFEST fixed.
Message-Id: <20020401010156.H10509@alpha.hut.fi>
Version incremented just to make CPAN happy.
1.10 2002/03/31 21:32:42
! Makefile.PL
! README
INSTALL_UCM option added to Makefile.PL so you can install *.ucm
if you want. This should make Autrijus happy. Also, piconv
is added to default install.
+ Encode/*.e2x
! bin/enc2xs
Here-documented files that enc2xs generates are now exported
to *.e2x. Much cleaner and easier to debug.
! encoding.pm
encoding enhances so you can make it act more like such
(now prehistoric ) "localized" variations of perl like Jperl.
+ t/jperl.t
Further test for encoding.pm. Written in euc-jp
+ encoding.pm
+ t/encoding.t
Taken over form jhi.
Message-Id: <20020330174618.B10154@alpha.hut.fi>
- Encode/*.ucm
+ ucm/*.ucm
! Makefile.PL
! */Makefile.PL
*.ucm relocated to ucm/ so MakeMaker will not install'em by default.
- ucm2table
+ bin/ucm2table
***
! AUTHORS
! Byte/Byte.pm
! Encode.pm
! Encode/macIceland.ucm
! lib/Encode/Alias.pm
! lib/Encode/Supported.pod
MacIceland fixes and Pod Typo fixes. This adds Andreas to AUTHORS.
Message-Id: <m3lmcavhjt.fsf@anima.de>
1.01 2002/03/29 20:59:39
! Makefile.PL
! README
s/USE_SCRIPTS/MORE_SCRIPTS/
! Makefile.PL
installs enc2xs by default for external Encode:: modules in CPAN,
such as Encode::HanExtra
! t/*.t
More sensible perl core detection via $ENV{PERL_CORE}
suggested by Spider
Message-Id: <200203291007.FAA07329@Orb.Nashua.NH.US>
! bin/enc2xs
Perl core ditection via $^X =~ m/\bminiperl$/o
Message-Id: <A5C7B0CA-42F1-11D6-B5AD-00039301D480@dan.co.jp>
1.00 Wed Mar 29 2002
! *
The version of all files is updated to 1.00 via "ci -f -l1.00",
commemorating version 1.00. All files, including *.ucm are now
under version control.
- encode.h
+ Encode/encode.h
encode.h moved to Encode/ so it will be installed for the later
use by enc2xs
! enc2xs
h2xs-like feature added via "h2xs -M Name *.(enc|ucm)"
! Makefile.PL
! */Makefile.PL
- compile
+ bin/enc2xs
compile renamed to enc2xs.
Affected Makefle.PL updated
- lib/CN/2022_CN.pm
"Punt it. HanExtra can take care of that later." -- Autrijus
Message-Id: <20020328154338.GA7351@not.autrijus.org>
! Encode/johab.ucm
! Encode/euc-kr.ucm
! Encode/ksc5601.ucm
! lib/Encode/CJKConstants.pm
! lib/Encode/KR/2022_KR.pm
Table patches for Euro Signs, 2022-KR fixups by Jungshik
Message-Id: <Pine.LNX.4.44.0203280616190.2259-200000@www.ykga.org>
! README
! Makefile.PL
+ bin/piconv
bin/ added for example scripts. They are not installed by default.
to install them, "perl Makefile.PL USE_SCRIPTS".
piconv is iconv reinvented in perl. in addition to all features
of iconv, it also adds perlish features. See L<piconv/1> for more
details.
! lib/Encode/Alias.pm
qr/^ replaced with qr/\b so it directly matches locale names
such as en_US.US-ASCII
! AUTHORS
! t/Aliases.t
Patch by MJD to fix the following problem applied.
Subject: [PATCH 5.7.3 Encode]
Aliases.t not properly skipped when Encode extension not built
Message-Id: <20020328091850.18677.qmail@plover.com>
! lib/Encode/KR/2022_KR.pm
! lib/Encode/CJKConstants.pm
Another patch from Jungshik to make iso-2022-kr actually work
Message-Id: <Pine.LNX.4.44.0203271745210.30462-200000@www.ykga.org>
! Encode/Encode/euc-kr.ucm
+ Encode/Encode/johab.ucm
! Encode/Encode/ksc5601.ucm
! Encode/KR/KR.pm
! Encode/KR/Makefile.PL
! Encode/lib/Encode/Alias.pm
! t/Alias.t
Johab support and complete revision of Korean Encoding by Jungshik
Message-Id: <Pine.LNX.4.44.0203271105060.30462-200000@www.ykga.org>
+ Encode.pm
Revised to make up with now-dropped Encode::Details.
- lib/Encode/Details.pod
Dropped. Besides being obsolete, the topics are now covered in
respective pods now.
! AUTHORS
! t/Alias.t
KR/KR.pm
lib/Encode/Alias.pm
Korean aliases fixed thanks to Jungshik Shin
/ks[-_ ]?c[-_ ]?5601-1987$/i => cp936
Message-Id: <Pine.LNX.4.44.0203262102250.1237-100000@www.ykga.org>
! *.pm
=head1 NAME added to all modules to make buildtoc happy
Message-Id: <20020327041151.A10618@alpha.hut.fi>
- lib/Encode/CJKguide.pod
Too controversial and dropped from the dist. Will be available
separately on the web.
! Encode/*.ucm
RCS tags added so table debugging gets easier (should that be
needed! I hope they all stay 1.00!)
+ lib/Encode/CJKguide.pod
A detailed guide to mainly, but not limited to, CJK multibyte
encodings.
- Encode/roman8.ucm
+ Encode/hp-roman8.ucm
! Byte/Makefile.PL
! Encode/Supported.pod
All occurance of "roman8" replaced with "hp-roman8" to avoid
confusion
! Encode/Supported.pod
! Encode/mac*.ucm
! t/Alias.t
Mac Encodings now comply the Inside Macintosh
! t/Alias.t
Test for '-raw' conventions added.
! Encode/Alias.pm
aliased gb2312 -> euc-cn, ksc5601 -> euc-kr
! Encode/gb12345.ucm
! Encode/gb2312.ucm
! Encode/ksc5601.ucm
"-raw" appended to canonical names.
File mames stay unchanged thanks to UCM format.
! lib/Encode/CN/HZ.pm
Patch from Autrijus to fix gb2312 -> gb2312-raw + code linting
Message-Id: <20020326035210.GA2091@not.autrijus.org>
0.99 Tue Mar 26 2002
- lib/Encode/JP/Const.pm
+ lib/Encode/CJKConstants.pm
+ lib/Encode/CN/2022_CN.pm
+ lib/Encode/KR/2022_KR.pm
+ t/KR.t
+ t/gb2312.euc
+ t/gb2312.ref
+ t/ksc5601.euc
+ t/ksc5601.ref
+ t/table.euc
+ t/table.ref
+ ucm2table
* Support for ISO-2022-KR and ISO-2022-CN added.
* t/KR.t added!
* more t/*.{euc,ref} added, which was autogenerated from ucm2table
* ucm2table autogenerates character table out of UCM files.
- engine.c
+ encengine.c
- lib/Encode/Supports.pod
+ lib/Encode/Supported.pod
Names reverted due to popular demand.
8.3 rule applies only when there is a conflict.
Message-Id: <20020325095924.GD44120@not.autrijus.org>
! */Makefile.PL
- Encode/*.enc
+ Encode/*.ucm
- lib/Tcl*
- lib/Encode/Format/Enc.pod
- t/Tcl.t
* Character tables is now 100% ucm.
* All files under Encode/ is now 8.3-compliant
* some of missing encodings added (i.e. gsm0338 and nextstep)
* Vendor mappings aggregated with appropriate national std in
Makefile.PL, resulting smaller *.so especially for CJK.
Following is result on Dan's FreeBSD box.
Now Then
---------------------------------------------------------------
blib/arch/auto/Encode/Byte/Byte.so 157,279 171,042
blib/arch/auto/Encode/CN/CN.so 1,634,476 1,626,685
blib/arch/auto/Encode/EBCDIC/EBCDIC.so 18,476 18,476
blib/arch/auto/Encode/Encode.so 27,791 27,791
blib/arch/auto/Encode/JP/JP.so 1,408,056 1,832,811
blib/arch/auto/Encode/KR/KR.so 1,156,518 1,329,587
blib/arch/auto/Encode/Symbol/Symbol.so 23,940 20,990
blib/arch/auto/Encode/TW/TW.so* 948,761 1,316,437
---------------------------------------------------------------
Total 5,375,297 6,343,819
Saving 968,522
* As a result of ucm-transition, Encode::Tcl dropped because
Encode::Tcl demands *.enc.
Encode::Tcl will be supplied in a separate tarball with *.enc.
Message-Id: <C024E294-3FC3-11D6-8347-00039301D480@dan.co.jp>
!compile
-encengine.c
+encode.c
!Encode.pm
-lib/Encode/Supported.pod
+lib/Encode/Supports.pod
-lib/Encode/iso10646_1.pm
+lib/Encode/10646_1.pm
-lib/Encode/EncFormat.pod
+lib/Encode/Format/Enc.pod
Files renamed 8.3 filename compliance. Affected modules/scripts revised.
- lib/Encode/JP/Constants.pm
+ lib/Encode/JP/Consts.pm
! lib/Encode/JP/JIS.pm
! lib/Encode/JP/H2Z.pm
Version nit problem and 8.3 rule fix.
> Package namespace installed latest in CPAN file
> Encode::JP::Constants 0.92 1.02 J/JH/JHI/perl-5.7.3.tar.gz
was noted by jhi then Dan discovers "Constants.pm" does not comply 8.3
rule. Contants.pm renamed to Consts.pm and affected modules are fixed
accordingly. In addition, legacy "use vars qw()..." are replaced with
"our";
Message-Id: <20020325011248.D1561@alpha.hut.fi>
Message-Id: <41023D51-3FB5-11D6-8347-00039301D480@dan.co.jp>
! JP/JP.pm
- lib/Encode/JP/ISO_2022_JP.pm
- lib/Encode/JP/ISO_2022_JP_1.pm
+ lib/Encode/JP/2022_JP.pm
+ lib/Encode/JP/2022_JP1.pm
01234567.012
8.3 naming conflict for vanilla fat addressed by jhi
Message-Id: <20020324201931.V22596@alpha.hut.fi>
! Encode.xs
Typecast fix addressed by jhi
Message-Id: <20020324185540.T22596@alpha.hut.fi>
0.98 Mon Mar 25 2002
! lib/Encode/Supported.pod
Further pod fixes
+ lib/Encode/JP/ISO_2022_JP_1.pm
! lib/Encode/JP/ISO_2022_JP.pm
! lib/Encode/JP/JIS.pm
! JP/JP.pm
Now Encode::JP is more strict on the difference between ISO-2022-JP
and ISO-2022-JP-1. See JP/JP.pm for details. I hope this move
makes Anton happier :) FYI the previous version implements
ISO-2022-JP as ISO-2022-JP-1 since it had X0212 support.
! lib/Encode/Supported.pod
Further pod fixes
! Encode.xs
Avoid core-dump in Encode with PERLIO=mmap by NI-S
Message-Id: <20020324104139.1326.7@bactrian.ni-s.u-net.com>
! CN/CN.pm
! JP/JP.pm
! KR/KR.pm
! TW/TW.pm
! lib/Encode/Suppoted.pod
pod fixes to replace F<http://...> to L<http://...>,
as suggested by Autrijius in:
Message-Id: <20020324083943.GA14901@not.autrijus.org>
! lib/Encode/Suppoted.pod
fixes and enhancements by Anton
Message-Id: <10632060120.20020324103753@motor.ru>
! lib/Encode/Alias.pm
> define_alias( qr/^GB[- ]?(\d+)$/i => '"gb$1"' );
added. Suggested by Anton then deobfuscated by Autrijius
Message-Id: <20020324064455.GA3667@not.autrijus.org>
! compile
Further fix by Nicholas Clark
Message-Id: <20020323145840.GD304@Bagpuss.unfortu.net>
- lib/EncodeFormat.pod
+ lib/Encode/EncFormat.pod
! MANIFEST
File renamed as suggested by Autrijius
! Encode.pm
! lib/Encode/Details.pod
! lib/Encode/Supported.pod Sun Mar 24 13:29:35 2002
! Encode.pm Sun Mar 24 13:43:47 2002
pod fixes by Autrijius.
Message-Id: <20020324062804.GA3595@not.autrijus.org>
Message-Id: <20020324075627.GB11986@not.autrijus.org>
! t/Alias.t
! lib/Encode/Alias.pm
! Encode.pm
now more EBCDIC conscious;
%ExtModules on EBCDIC system excludes CJK so that you don't
have to worry about the matched alias resulting cloaking.
t/Alias.t also revised to reflect changes. Verified by jhi
Message-Id: <20020324022929.D22596@alpha.hut.fi>
0.97 Sun Mar 24 2002
! CN/CN.pm
! KR/KR.pm
! TW/TW.pm
EBCDIC detection mechanism installed as in JP/JP.pm
Message-Id: <20020323211847.G19148@alpha.hut.fi>
! Byte/Makefile.PL
! CN/Makefile.PL
! EBCDIC/Makefile.PL
! JP/Makefile.PL
! KR/Makefile.PL
! Symbol/Makefile.PL
! TW/Makefile.PL
Now all table files used by compile are postfixed '_t' to avoid
namespace collisions in case insensitive file systems once for all!
inspired by:
Message-ID: <58290227735.20020323195659@familiehaase.de>
! t/Aliases.t
Since the Encode::JP is unsupported under EBCDIC we
cannot run this test (aliases as such should work fine) -- jhi
Message-Id: <20020323202119.D19148@alpha.hut.fi>
! Byte/Makefile.PL
duplicate occurance of ascii.ucm and 8859-1.ucm
causes MacOS X dlyd to cloak
! t/CN.t
! t/Encode.t
! t/JP.t
! t/TW.t
! t/Tcl.t
< chdir 't' if -d 't';
---
> if (! -d 'blib' and -d 't'){ chdir 't' };
When you are "make test"-ing on Encode/ directory, you must not
change $ENV{PWD}. t/JP.t has been fixed before but others somehow
remain unchanced. Also the situation detection was made simpler
in t/JP.t, which was originally;
> chdir 't' if -d 't' and $ENV{PWD} !~ m,/Encode[^/]*$,o;
! Encode.pm
"Use of uninitialized value in string eq at Encode.pm line 96."
! Symbol/Makefile.PL
! EBCDIC/Makefile.PL
! AUTHOR
-- Problem on case insensitive file systems
"coexist of ebcdic.c <> EBCDIC.c on Cygwin not possible"
Message-ID: <88254111953.20020323095503@familiehaase.de>
! compile
! AUTHOR
"So I think it's a bug in gcc, not perl. But it still needs to be
worked around."
Message-Id: <20020323145840.GD304@Bagpuss.unfortu.net>
Message-Id: <20020323170509.C96475@plum.flirble.org>
0.96 Sat Mar 23 2002
! TW/TW.pm
! lib/Encode/Encoding.pm
! lib/Encode/Alias.pm
! lib/Encode/Supported.pod
! KR/KR.pm
Pod Fixes by Michael G Schwern <schwern@pobox.com> via jhi
Message-ID: <20020322073908.GB10539@blackrider>
! Makefile.PL
! Encode.pm
"...I think we should include ISO 8859-1 as well." -- NI-S
Message-Id: <20020322120230.1332.8@bactrian.elixent.com>
! JP/JP.pm
! CN/CN.pm
! KR/KR.pm
! TW/TW.pm
! lib/Encode/Alias.pm
alias definitions relocated to Encode::Alias so module autoloading
works for aliases also.
! Encode.pm
encodings() now accepts args to check ExtModules.
+ Byte/Byte.pm
+ Byte/Makefile.PL
+ EBCDIC/EBCDIC.pm
+ EBCDIC/Makefile.PL
+ Symbol/Makefile.PL
+ Symbol/Symbol.pm
! Encode.pm
! Encode.xs
Latin and single byte encodings are reorganized so they are
demand-loaded like Encode::XX. Now only ascii is compiled into
Encode itself.
! lib/Encode/Alias.pm
for my $k (keys %hash){ delete $hash{$k}; }
is depreciated; fixed.
0.95 Fri Mar 22 2002
In this update, pod rewrites and alias fixes are the main issues
+ lib/Encode/Supported.pod
Describes supported encodings
! Makefile.PL
streamlined compiled-in encodings.
! lib/Encode/Description.pod -> lib/Encode/Details.pod
Renamed.
+ Encode/ibm-125?.ucm
Added from icu distibution with any occurance of
"IBM-125?" to "cp125?". Filenames remain unchanged to pay
some respect to icu staff, however.
+ lib/Encode/Alias.pm
! Encode.pm
Alias difinitions in Encode.pm relocated.
! AUTHORS
! Encode.xs
packWARN patch from Paul Marquess via jhi
Message-Id: <20020321010101.O28978@alpha.hut.fi>
Paul added to AUTHORS as a result.
! t/CJKalias.t -> t/Aliases.t
Renamed. Checks even more aliases and alias overloading
! Encode.pm
! CN/CN.pm
duplicate alias for ujis => euc-jp removed (Encode::JP has one)
gbk => cp936 relocated to CN.pm
! t/CJKalias.t
Test::More with plans (by jhi)
0.94 Thu Mar 21 2002
+ lib/Encode/Description.pod
! lib/Encode/Encoding.pm
Now the pod in Encode.pm is abridged as programming references.
lib/Encode/Description.pod contains the original, detailed description
and Encode::Encoding explains how to write your own module to
add new encodings. So far, lib/Encode/Description.pod contains
the whole pod once in Encode.pm. This is intentional.
! Encode.pm
Pod revisions by Anton Tagunov
Message-Id: <517178431.20020320174824@motor.ru>
! lib/Encode/Tcl.pm
all occrance of Encode::Tcl::Extended removed including pod
! t/CJKalias.t
test now checks $encoding->name only; $encoding->{name} are
no longer check to find the canonical name.
! lib/Encode/JP/JIS.pm
! lib/Encode/JP/ISO_2022_JP.pm
->name() added to be more compliant with API
! CN/CN.pm
! JP/JP.pm
! KR/KR.pm
! TW/TW.pm
! t/CJKalias.t
Patch by Autrijus to add aliases to TW and fixes to POD
Message-Id: <20020320090619.GA24774@not.autrijus.org>
! AUTHORS
SADAHIRO Tomoyuki added as should. My apologies.
0.93 Wed Mar 20 2002
* First release to be uploaded to CPAN. For prehistoric changes,
please see Changes file of perl distibution as well as
perl-unicode@perl.org archive, available at:
http://archive.develooper.com/perl-unicode@perl.org/
Changes Since 0.92 includes;
+ Changes
+ AUTHORS
! Encode.pm
! README
+ Mention to perl-unicode@perl.org added
! JP/JP.pm
+ Encoding aliases added so you can feed locale names
and MIME Charset="" directly.
- Mention to JISX0212 removed because it's fixed
! CN/CN.pm
! KR/KR.pm
+ Encoding aliases added. Note TW is left untouched because
euc-tw is not implemented in TW but in Encode::HanExtra.
Autrijus, you may fix Encode::HanExtra.
+ t/CJKalias.t
+ to test encode aliases added
|