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
|
COPYING
Changes
MANIFEST
Makefile.PL
README.md
README.cygwin
Uninstall.pm
authors.txt
xmltv-lineups.xsd
xmltv.dtd
xmltv_logo.ico
xmltv_logo.png
analyse_tvprefs/README
analyse_tvprefs/analyse_tvprefs
analyse_tvprefs/bnc_freq.txt
choose/tv_check/README.tv_check
choose/tv_check/tv_check
choose/tv_check/tv_check_doc.html
choose/tv_check/tv_check_doc.jpg
choose/tv_pick/tv_pick_cgi
choose/tv_pick/merge_tvprefs
doc/COPYING
doc/README-Windows.md
doc/QuickStart
doc/exe_build.html
doc/code/coding_standards
filter/Grep.pm
filter/augment/augment.conf
filter/augment/augment.rules
filter/tv_augment
filter/tv_augment_tz
filter/tv_cat
filter/tv_count
filter/tv_extractinfo_ar
filter/tv_extractinfo_en
filter/tv_grep.PL
filter/tv_grep.in
filter/tv_imdb
filter/tv_merge
filter/tv_remove_some_overlapping
filter/tv_sort
filter/tv_split
filter/tv_tmdb
filter/tv_to_latex
filter/tv_to_potatoe
filter/tv_to_text
grab/Get_nice.pm
grab/Grab_XML.pm
grab/Memoize.pm
grab/DST.pm
grab/Config_file.pm
grab/Mode.pm
grab/ch_search/test.conf
grab/ch_search/tv_grab_ch_search.PL
grab/ch_search/tv_grab_ch_search.in
grab/combiner/test.conf
grab/combiner/tv_grab_combiner
grab/fi/fi/common.pm
grab/fi/fi/day.pm
grab/fi/fi/programme.pm
grab/fi/fi/programmeStartOnly.pm
grab/fi/fi/source/iltapulu.pm
grab/fi/fi/source/star.pm
grab/fi/fi/source/telkku.pm
grab/fi/fi/source/telsu.pm
grab/fi/fi/source/yle.pm
grab/fi/get_latest_version.sh
grab/fi/merge.PL
grab/fi/test.conf
grab/fi/test.sh
grab/fi/tv_grab_fi.pl
grab/fi_sv/test.conf
grab/fi_sv/tv_grab_fi_sv
grab/fr/test.conf
grab/fr/tv_grab_fr
grab/huro/catmap.hu
grab/huro/jobmap
grab/huro/test.conf
grab/huro/tv_grab_huro.PL
grab/huro/tv_grab_huro.in
grab/is/test.conf
grab/is/tv_grab_is
grab/is/category_map
grab/it_dvb/channel_ids
grab/it_dvb/sky_it.dict
grab/it_dvb/sky_it.themes
grab/it_dvb/tv_grab_it_dvb.PL
grab/it_dvb/tv_grab_it_dvb.in
grab/na_dd/tv_grab_na_dd.PL
grab/na_dd/tv_grab_na_dd.in
grab/na_tvmedia/test.conf
grab/na_tvmedia/tv_grab_na_tvmedia
grab/pt_vodafone/channel.list
grab/pt_vodafone/test.conf
grab/pt_vodafone/tv_grab_pt_vodafone
grab/test_grabbers
grab/uk_freeview/test.conf
grab/uk_freeview/tv_grab_uk_freeview
grab/zz_sdjson/tv_grab_zz_sdjson
grab/zz_sdjson_sqlite/fixups.txt
grab/zz_sdjson_sqlite/tv_grab_zz_sdjson_sqlite
lib/Ask.pm
lib/Ask/Term.pm
lib/Ask/Tk.pm
lib/Augment.pm
lib/Capabilities.pm
lib/Clumps.pm
lib/Configure.pm
lib/Configure/Writer.pm
lib/Data/Recursive/Encode.pm
lib/Date.pm
lib/Description.pm
lib/GUI.pm
lib/Gunzip.pm
lib/IMDB.pm
lib/Options.pm
lib/PreferredMethod.pm
lib/ProgressBar.pm
lib/ProgressBar/None.pm
lib/ProgressBar/Term.pm
lib/ProgressBar/Tk.pm
lib/Summarize.pm
lib/Supplement.pm.PL
lib/Supplement.pm.in
lib/TMDB.pm
lib/TMDB/API.pm
lib/TMDB/API/Config.pm
lib/TMDB/API/Movie.pm
lib/TMDB/API/Person.pm
lib/TMDB/API/Tv.pm
lib/TZ.pm
lib/Usage.pm
lib/ValidateFile.pm
lib/ValidateGrabber.pm
lib/Version.pm
lib/XMLTV.pm.PL
lib/XMLTV.pm.in
lib/exe_opt.pl
lib/xmltv.pl
lib/set_share_dir.pl
t/README
t/parallel_test
t/add_time_info
t/test_filters.t
t/test_library.t
t/test_tv_split.t
t/test_icon.t
t/test_dst.t
t/data/attrs.xml
t/data/amp.xml
t/data/clump.xml
t/data/clump_extract.xml
t/data/clump_extract_1.xml
t/data/dups.xml
t/data/empty.xml
t/data/length.xml
t/data/overlap.xml
t/data/simple.xml
t/data/sort.xml
t/data/sort1.xml
t/data/sort2.xml
t/data/test.xml
t/data/test_empty.xml
t/data/test_livre.xml
t/data/test_sort_by_channel.xml
t/data/tv_cat_all_UTF8.expected
t/data/tv_cat_amp_xml.expected
t/data/tv_cat_amp_xml_amp_xml.expected
t/data/tv_cat_amp_xml_clump_xml.expected
t/data/tv_cat_amp_xml_dups_xml.expected
t/data/tv_cat_amp_xml_empty_xml.expected
t/data/tv_cat_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_cat_attrs_xml.expected
t/data/tv_cat_clump_extract_1_xml.expected
t/data/tv_cat_clump_extract_xml.expected
t/data/tv_cat_clump_xml.expected
t/data/tv_cat_clump_xml_amp_xml.expected
t/data/tv_cat_clump_xml_clump_xml.expected
t/data/tv_cat_clump_xml_dups_xml.expected
t/data/tv_cat_clump_xml_empty_xml.expected
t/data/tv_cat_dups_xml.expected
t/data/tv_cat_dups_xml_amp_xml.expected
t/data/tv_cat_dups_xml_clump_xml.expected
t/data/tv_cat_dups_xml_dups_xml.expected
t/data/tv_cat_dups_xml_empty_xml.expected
t/data/tv_cat_empty_xml.expected
t/data/tv_cat_empty_xml_amp_xml.expected
t/data/tv_cat_empty_xml_clump_xml.expected
t/data/tv_cat_empty_xml_dups_xml.expected
t/data/tv_cat_empty_xml_empty_xml.expected
t/data/tv_cat_length_xml.expected
t/data/tv_cat_overlap_xml.expected
t/data/tv_cat_simple_xml.expected
t/data/tv_cat_simple_xml_x_whatever_xml.expected
t/data/tv_cat_sort_xml.expected
t/data/tv_cat_test_empty_xml.expected
t/data/tv_cat_test_livre_xml.expected
t/data/tv_cat_test_sort_by_channel_xml.expected
t/data/tv_cat_test_xml.expected
t/data/tv_cat_test_xml_test_xml.expected
t/data/tv_cat_whitespace_xml.expected
t/data/tv_cat_x_whatever_xml.expected
t/data/tv_extractinfo_en_all_UTF8.expected
t/data/tv_extractinfo_en_amp_xml.expected
t/data/tv_extractinfo_en_amp_xml_amp_xml.expected
t/data/tv_extractinfo_en_amp_xml_clump_xml.expected
t/data/tv_extractinfo_en_amp_xml_dups_xml.expected
t/data/tv_extractinfo_en_amp_xml_empty_xml.expected
t/data/tv_extractinfo_en_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_extractinfo_en_attrs_xml.expected
t/data/tv_extractinfo_en_clump_extract_1_xml.expected
t/data/tv_extractinfo_en_clump_extract_xml.expected
t/data/tv_extractinfo_en_clump_xml.expected
t/data/tv_extractinfo_en_clump_xml_amp_xml.expected
t/data/tv_extractinfo_en_clump_xml_clump_xml.expected
t/data/tv_extractinfo_en_clump_xml_dups_xml.expected
t/data/tv_extractinfo_en_clump_xml_empty_xml.expected
t/data/tv_extractinfo_en_dups_xml.expected
t/data/tv_extractinfo_en_dups_xml_amp_xml.expected
t/data/tv_extractinfo_en_dups_xml_clump_xml.expected
t/data/tv_extractinfo_en_dups_xml_dups_xml.expected
t/data/tv_extractinfo_en_dups_xml_empty_xml.expected
t/data/tv_extractinfo_en_empty_xml.expected
t/data/tv_extractinfo_en_empty_xml_amp_xml.expected
t/data/tv_extractinfo_en_empty_xml_clump_xml.expected
t/data/tv_extractinfo_en_empty_xml_dups_xml.expected
t/data/tv_extractinfo_en_empty_xml_empty_xml.expected
t/data/tv_extractinfo_en_length_xml.expected
t/data/tv_extractinfo_en_overlap_xml.expected
t/data/tv_extractinfo_en_simple_xml.expected
t/data/tv_extractinfo_en_simple_xml_x_whatever_xml.expected
t/data/tv_extractinfo_en_sort_xml.expected
t/data/tv_extractinfo_en_test_empty_xml.expected
t/data/tv_extractinfo_en_test_livre_xml.expected
t/data/tv_extractinfo_en_test_sort_by_channel_xml.expected
t/data/tv_extractinfo_en_test_xml.expected
t/data/tv_extractinfo_en_test_xml_test_xml.expected
t/data/tv_extractinfo_en_whitespace_xml.expected
t/data/tv_extractinfo_en_x_whatever_xml.expected
t/data/tv_grep_a_all_UTF8.expected
t/data/tv_grep_a_amp_xml.expected
t/data/tv_grep_a_amp_xml_amp_xml.expected
t/data/tv_grep_a_amp_xml_clump_xml.expected
t/data/tv_grep_a_amp_xml_dups_xml.expected
t/data/tv_grep_a_amp_xml_empty_xml.expected
t/data/tv_grep_a_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_a_attrs_xml.expected
t/data/tv_grep_a_clump_extract_1_xml.expected
t/data/tv_grep_a_clump_extract_xml.expected
t/data/tv_grep_a_clump_xml.expected
t/data/tv_grep_a_clump_xml_amp_xml.expected
t/data/tv_grep_a_clump_xml_clump_xml.expected
t/data/tv_grep_a_clump_xml_dups_xml.expected
t/data/tv_grep_a_clump_xml_empty_xml.expected
t/data/tv_grep_a_dups_xml.expected
t/data/tv_grep_a_dups_xml_amp_xml.expected
t/data/tv_grep_a_dups_xml_clump_xml.expected
t/data/tv_grep_a_dups_xml_dups_xml.expected
t/data/tv_grep_a_dups_xml_empty_xml.expected
t/data/tv_grep_a_empty_xml.expected
t/data/tv_grep_a_empty_xml_amp_xml.expected
t/data/tv_grep_a_empty_xml_clump_xml.expected
t/data/tv_grep_a_empty_xml_dups_xml.expected
t/data/tv_grep_a_empty_xml_empty_xml.expected
t/data/tv_grep_a_length_xml.expected
t/data/tv_grep_a_overlap_xml.expected
t/data/tv_grep_a_simple_xml.expected
t/data/tv_grep_a_simple_xml_x_whatever_xml.expected
t/data/tv_grep_a_sort_xml.expected
t/data/tv_grep_a_test_empty_xml.expected
t/data/tv_grep_a_test_livre_xml.expected
t/data/tv_grep_a_test_sort_by_channel_xml.expected
t/data/tv_grep_a_test_xml.expected
t/data/tv_grep_a_test_xml_test_xml.expected
t/data/tv_grep_a_whitespace_xml.expected
t/data/tv_grep_a_x_whatever_xml.expected
t/data/tv_grep_category_b_all_UTF8.expected
t/data/tv_grep_category_b_amp_xml.expected
t/data/tv_grep_category_b_amp_xml_amp_xml.expected
t/data/tv_grep_category_b_amp_xml_clump_xml.expected
t/data/tv_grep_category_b_amp_xml_dups_xml.expected
t/data/tv_grep_category_b_amp_xml_empty_xml.expected
t/data/tv_grep_category_b_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_category_b_attrs_xml.expected
t/data/tv_grep_category_b_clump_extract_1_xml.expected
t/data/tv_grep_category_b_clump_extract_xml.expected
t/data/tv_grep_category_b_clump_xml.expected
t/data/tv_grep_category_b_clump_xml_amp_xml.expected
t/data/tv_grep_category_b_clump_xml_clump_xml.expected
t/data/tv_grep_category_b_clump_xml_dups_xml.expected
t/data/tv_grep_category_b_clump_xml_empty_xml.expected
t/data/tv_grep_category_b_dups_xml.expected
t/data/tv_grep_category_b_dups_xml_amp_xml.expected
t/data/tv_grep_category_b_dups_xml_clump_xml.expected
t/data/tv_grep_category_b_dups_xml_dups_xml.expected
t/data/tv_grep_category_b_dups_xml_empty_xml.expected
t/data/tv_grep_category_b_empty_xml.expected
t/data/tv_grep_category_b_empty_xml_amp_xml.expected
t/data/tv_grep_category_b_empty_xml_clump_xml.expected
t/data/tv_grep_category_b_empty_xml_dups_xml.expected
t/data/tv_grep_category_b_empty_xml_empty_xml.expected
t/data/tv_grep_category_b_length_xml.expected
t/data/tv_grep_category_b_overlap_xml.expected
t/data/tv_grep_category_b_simple_xml.expected
t/data/tv_grep_category_b_simple_xml_x_whatever_xml.expected
t/data/tv_grep_category_b_sort_xml.expected
t/data/tv_grep_category_b_test_empty_xml.expected
t/data/tv_grep_category_b_test_livre_xml.expected
t/data/tv_grep_category_b_test_sort_by_channel_xml.expected
t/data/tv_grep_category_b_test_xml.expected
t/data/tv_grep_category_b_test_xml_test_xml.expected
t/data/tv_grep_category_b_whitespace_xml.expected
t/data/tv_grep_category_b_x_whatever_xml.expected
t/data/tv_grep_category_e_and_title_f_all_UTF8.expected
t/data/tv_grep_category_e_and_title_f_amp_xml.expected
t/data/tv_grep_category_e_and_title_f_amp_xml_amp_xml.expected
t/data/tv_grep_category_e_and_title_f_amp_xml_clump_xml.expected
t/data/tv_grep_category_e_and_title_f_amp_xml_dups_xml.expected
t/data/tv_grep_category_e_and_title_f_amp_xml_empty_xml.expected
t/data/tv_grep_category_e_and_title_f_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_category_e_and_title_f_attrs_xml.expected
t/data/tv_grep_category_e_and_title_f_clump_extract_1_xml.expected
t/data/tv_grep_category_e_and_title_f_clump_extract_xml.expected
t/data/tv_grep_category_e_and_title_f_clump_xml.expected
t/data/tv_sort_amp_xml.expected
t/data/tv_grep_category_e_and_title_f_clump_xml_amp_xml.expected
t/data/tv_grep_category_e_and_title_f_clump_xml_clump_xml.expected
t/data/tv_grep_category_e_and_title_f_clump_xml_dups_xml.expected
t/data/tv_grep_category_e_and_title_f_clump_xml_empty_xml.expected
t/data/tv_grep_category_e_and_title_f_dups_xml.expected
t/data/tv_grep_category_e_and_title_f_dups_xml_amp_xml.expected
t/data/tv_grep_category_e_and_title_f_dups_xml_clump_xml.expected
t/data/tv_grep_category_e_and_title_f_dups_xml_dups_xml.expected
t/data/tv_grep_category_e_and_title_f_dups_xml_empty_xml.expected
t/data/tv_grep_category_e_and_title_f_empty_xml.expected
t/data/tv_grep_category_e_and_title_f_empty_xml_amp_xml.expected
t/data/tv_grep_category_e_and_title_f_empty_xml_clump_xml.expected
t/data/tv_grep_category_e_and_title_f_empty_xml_dups_xml.expected
t/data/tv_grep_category_e_and_title_f_empty_xml_empty_xml.expected
t/data/tv_grep_category_e_and_title_f_length_xml.expected
t/data/tv_grep_category_e_and_title_f_overlap_xml.expected
t/data/tv_grep_category_e_and_title_f_simple_xml.expected
t/data/tv_grep_category_e_and_title_f_simple_xml_x_whatever_xml.expected
t/data/tv_grep_category_e_and_title_f_sort_xml.expected
t/data/tv_grep_category_e_and_title_f_test_empty_xml.expected
t/data/tv_grep_category_e_and_title_f_test_livre_xml.expected
t/data/tv_grep_category_e_and_title_f_test_sort_by_channel_xml.expected
t/data/tv_grep_category_e_and_title_f_test_xml.expected
t/data/tv_grep_category_e_and_title_f_test_xml_test_xml.expected
t/data/tv_grep_category_e_and_title_f_whitespace_xml.expected
t/data/tv_grep_category_e_and_title_f_x_whatever_xml.expected
t/data/tv_grep_category_g_or_title_h_all_UTF8.expected
t/data/tv_grep_category_g_or_title_h_amp_xml.expected
t/data/tv_grep_category_g_or_title_h_amp_xml_amp_xml.expected
t/data/tv_grep_category_g_or_title_h_amp_xml_clump_xml.expected
t/data/tv_grep_category_g_or_title_h_amp_xml_dups_xml.expected
t/data/tv_grep_category_g_or_title_h_amp_xml_empty_xml.expected
t/data/tv_grep_category_g_or_title_h_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_category_g_or_title_h_attrs_xml.expected
t/data/tv_grep_category_g_or_title_h_clump_extract_1_xml.expected
t/data/tv_grep_category_g_or_title_h_clump_extract_xml.expected
t/data/tv_grep_category_g_or_title_h_clump_xml.expected
t/data/tv_grep_category_g_or_title_h_clump_xml_amp_xml.expected
t/data/tv_grep_category_g_or_title_h_clump_xml_clump_xml.expected
t/data/tv_grep_category_g_or_title_h_clump_xml_dups_xml.expected
t/data/tv_grep_category_g_or_title_h_clump_xml_empty_xml.expected
t/data/tv_grep_category_g_or_title_h_dups_xml.expected
t/data/tv_grep_category_g_or_title_h_dups_xml_amp_xml.expected
t/data/tv_grep_category_g_or_title_h_dups_xml_clump_xml.expected
t/data/tv_grep_category_g_or_title_h_dups_xml_dups_xml.expected
t/data/tv_grep_category_g_or_title_h_dups_xml_empty_xml.expected
t/data/tv_grep_category_g_or_title_h_empty_xml.expected
t/data/tv_grep_category_g_or_title_h_empty_xml_amp_xml.expected
t/data/tv_grep_category_g_or_title_h_empty_xml_clump_xml.expected
t/data/tv_grep_category_g_or_title_h_empty_xml_dups_xml.expected
t/data/tv_grep_category_g_or_title_h_empty_xml_empty_xml.expected
t/data/tv_grep_category_g_or_title_h_length_xml.expected
t/data/tv_grep_category_g_or_title_h_overlap_xml.expected
t/data/tv_grep_category_g_or_title_h_simple_xml.expected
t/data/tv_grep_category_g_or_title_h_simple_xml_x_whatever_xml.expected
t/data/tv_grep_category_g_or_title_h_sort_xml.expected
t/data/tv_grep_category_g_or_title_h_test_empty_xml.expected
t/data/tv_grep_category_g_or_title_h_test_livre_xml.expected
t/data/tv_grep_category_g_or_title_h_test_sort_by_channel_xml.expected
t/data/tv_grep_category_g_or_title_h_test_xml.expected
t/data/tv_grep_category_g_or_title_h_test_xml_test_xml.expected
t/data/tv_grep_category_g_or_title_h_whitespace_xml.expected
t/data/tv_grep_category_g_or_title_h_x_whatever_xml.expected
t/data/tv_grep_new_all_UTF8.expected
t/data/tv_grep_channel_id_channel4_com_all_UTF8.expected
t/data/tv_grep_channel_id_channel4_com_amp_xml.expected
t/data/tv_grep_channel_id_channel4_com_amp_xml_amp_xml.expected
t/data/tv_grep_channel_id_channel4_com_amp_xml_clump_xml.expected
t/data/tv_grep_channel_id_channel4_com_amp_xml_dups_xml.expected
t/data/tv_grep_channel_id_channel4_com_amp_xml_empty_xml.expected
t/data/tv_grep_channel_id_channel4_com_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_channel_id_channel4_com_attrs_xml.expected
t/data/tv_grep_channel_id_channel4_com_clump_extract_1_xml.expected
t/data/tv_grep_channel_id_channel4_com_clump_extract_xml.expected
t/data/tv_grep_channel_id_channel4_com_clump_xml.expected
t/data/tv_grep_channel_id_channel4_com_clump_xml_amp_xml.expected
t/data/tv_grep_channel_id_channel4_com_clump_xml_clump_xml.expected
t/data/tv_grep_channel_id_channel4_com_clump_xml_dups_xml.expected
t/data/tv_grep_channel_id_channel4_com_clump_xml_empty_xml.expected
t/data/tv_grep_channel_id_channel4_com_dups_xml.expected
t/data/tv_grep_channel_id_channel4_com_dups_xml_amp_xml.expected
t/data/tv_grep_channel_id_channel4_com_dups_xml_clump_xml.expected
t/data/tv_grep_channel_id_channel4_com_dups_xml_dups_xml.expected
t/data/tv_grep_channel_id_channel4_com_dups_xml_empty_xml.expected
t/data/tv_grep_channel_id_channel4_com_empty_xml.expected
t/data/tv_grep_channel_id_channel4_com_empty_xml_amp_xml.expected
t/data/tv_grep_channel_id_channel4_com_empty_xml_clump_xml.expected
t/data/tv_grep_channel_id_channel4_com_empty_xml_dups_xml.expected
t/data/tv_grep_channel_id_channel4_com_empty_xml_empty_xml.expected
t/data/tv_grep_channel_id_channel4_com_length_xml.expected
t/data/tv_grep_channel_id_channel4_com_overlap_xml.expected
t/data/tv_grep_channel_id_channel4_com_simple_xml.expected
t/data/tv_grep_channel_id_channel4_com_simple_xml_x_whatever_xml.expected
t/data/tv_grep_channel_id_channel4_com_sort_xml.expected
t/data/tv_grep_channel_id_channel4_com_test_empty_xml.expected
t/data/tv_grep_channel_id_channel4_com_test_livre_xml.expected
t/data/tv_grep_channel_id_channel4_com_test_sort_by_channel_xml.expected
t/data/tv_grep_channel_id_channel4_com_test_xml.expected
t/data/tv_grep_channel_id_channel4_com_test_xml_test_xml.expected
t/data/tv_grep_channel_id_channel4_com_whitespace_xml.expected
t/data/tv_grep_channel_id_channel4_com_x_whatever_xml.expected
t/data/tv_grep_channel_name_d_all_UTF8.expected
t/data/tv_grep_channel_name_d_amp_xml.expected
t/data/tv_grep_channel_name_d_amp_xml_amp_xml.expected
t/data/tv_grep_channel_name_d_amp_xml_clump_xml.expected
t/data/tv_grep_channel_name_d_amp_xml_dups_xml.expected
t/data/tv_grep_channel_name_d_amp_xml_empty_xml.expected
t/data/tv_grep_channel_name_d_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_channel_name_d_attrs_xml.expected
t/data/tv_grep_channel_name_d_clump_extract_1_xml.expected
t/data/tv_grep_channel_name_d_clump_extract_xml.expected
t/data/tv_grep_channel_name_d_clump_xml.expected
t/data/tv_grep_channel_name_d_clump_xml_amp_xml.expected
t/data/tv_grep_channel_name_d_clump_xml_clump_xml.expected
t/data/tv_grep_channel_name_d_clump_xml_dups_xml.expected
t/data/tv_grep_channel_name_d_clump_xml_empty_xml.expected
t/data/tv_grep_channel_name_d_dups_xml.expected
t/data/tv_grep_channel_name_d_dups_xml_amp_xml.expected
t/data/tv_grep_channel_name_d_dups_xml_clump_xml.expected
t/data/tv_grep_channel_name_d_dups_xml_dups_xml.expected
t/data/tv_grep_channel_name_d_dups_xml_empty_xml.expected
t/data/tv_grep_channel_name_d_empty_xml.expected
t/data/tv_grep_channel_name_d_empty_xml_amp_xml.expected
t/data/tv_grep_channel_name_d_empty_xml_clump_xml.expected
t/data/tv_grep_channel_name_d_empty_xml_dups_xml.expected
t/data/tv_grep_channel_name_d_empty_xml_empty_xml.expected
t/data/tv_grep_channel_name_d_length_xml.expected
t/data/tv_grep_channel_name_d_overlap_xml.expected
t/data/tv_grep_channel_name_d_simple_xml.expected
t/data/tv_grep_channel_name_d_sort_xml.expected
t/data/tv_grep_channel_name_d_simple_xml_x_whatever_xml.expected
t/data/tv_grep_channel_name_d_test_empty_xml.expected
t/data/tv_grep_channel_name_d_test_livre_xml.expected
t/data/tv_grep_channel_name_d_test_sort_by_channel_xml.expected
t/data/tv_grep_channel_name_d_test_xml.expected
t/data/tv_grep_channel_name_d_test_xml_test_xml.expected
t/data/tv_grep_channel_name_d_whitespace_xml.expected
t/data/tv_grep_channel_name_d_x_whatever_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_all_UTF8.expected
t/data/tv_grep_channel_xyz_or_channel_b_amp_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_amp_xml_amp_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_amp_xml_clump_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_amp_xml_dups_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_amp_xml_empty_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_attrs_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_clump_extract_1_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_clump_extract_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_clump_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_clump_xml_amp_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_clump_xml_clump_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_clump_xml_dups_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_clump_xml_empty_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_dups_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_dups_xml_amp_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_dups_xml_clump_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_dups_xml_dups_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_dups_xml_empty_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_empty_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_empty_xml_amp_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_empty_xml_clump_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_empty_xml_dups_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_empty_xml_empty_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_length_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_overlap_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_simple_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_simple_xml_x_whatever_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_sort_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_test_empty_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_test_livre_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_test_sort_by_channel_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_test_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_test_xml_test_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_whitespace_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_x-whatever_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_x_whatever_xml.expected
t/data/tv_grep_eval_scalar_keys_5_all_UTF8.expected
t/data/tv_grep_eval_scalar_keys_5_amp_xml.expected
t/data/tv_grep_eval_scalar_keys_5_amp_xml_amp_xml.expected
t/data/tv_grep_eval_scalar_keys_5_amp_xml_clump_xml.expected
t/data/tv_grep_eval_scalar_keys_5_amp_xml_dups_xml.expected
t/data/tv_grep_eval_scalar_keys_5_amp_xml_empty_xml.expected
t/data/tv_grep_eval_scalar_keys_5_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_eval_scalar_keys_5_attrs_xml.expected
t/data/tv_grep_eval_scalar_keys_5_clump_extract_1_xml.expected
t/data/tv_grep_eval_scalar_keys_5_clump_extract_xml.expected
t/data/tv_grep_eval_scalar_keys_5_clump_xml.expected
t/data/tv_grep_eval_scalar_keys_5_clump_xml_amp_xml.expected
t/data/tv_grep_eval_scalar_keys_5_clump_xml_clump_xml.expected
t/data/tv_grep_eval_scalar_keys_5_clump_xml_dups_xml.expected
t/data/tv_grep_eval_scalar_keys_5_clump_xml_empty_xml.expected
t/data/tv_grep_eval_scalar_keys_5_dups_xml.expected
t/data/tv_grep_eval_scalar_keys_5_dups_xml_amp_xml.expected
t/data/tv_grep_eval_scalar_keys_5_sort_xml.expected
t/data/tv_grep_eval_scalar_keys_5_dups_xml_clump_xml.expected
t/data/tv_grep_eval_scalar_keys_5_dups_xml_dups_xml.expected
t/data/tv_grep_eval_scalar_keys_5_dups_xml_empty_xml.expected
t/data/tv_grep_eval_scalar_keys_5_empty_xml.expected
t/data/tv_grep_eval_scalar_keys_5_empty_xml_amp_xml.expected
t/data/tv_grep_eval_scalar_keys_5_empty_xml_clump_xml.expected
t/data/tv_grep_eval_scalar_keys_5_empty_xml_dups_xml.expected
t/data/tv_grep_eval_scalar_keys_5_empty_xml_empty_xml.expected
t/data/tv_grep_eval_scalar_keys_5_length_xml.expected
t/data/tv_grep_eval_scalar_keys_5_overlap_xml.expected
t/data/tv_grep_eval_scalar_keys_5_simple_xml.expected
t/data/tv_grep_eval_scalar_keys_5_simple_xml_x_whatever_xml.expected
t/data/tv_grep_eval_scalar_keys_5_test_empty_xml.expected
t/data/tv_grep_eval_scalar_keys_5_test_livre_xml.expected
t/data/tv_grep_eval_scalar_keys_5_test_sort_by_channel_xml.expected
t/data/tv_grep_eval_scalar_keys_5_test_xml.expected
t/data/tv_grep_eval_scalar_keys_5_test_xml_test_xml.expected
t/data/tv_grep_eval_scalar_keys_5_whitespace_xml.expected
t/data/tv_grep_eval_scalar_keys_5_x_whatever_xml.expected
t/data/tv_grep_i_category_i_title_h_all_UTF8.expected
t/data/tv_grep_i_category_i_title_h_amp_xml.expected
t/data/tv_grep_i_category_i_title_h_amp_xml_amp_xml.expected
t/data/tv_grep_i_category_i_title_h_amp_xml_clump_xml.expected
t/data/tv_grep_i_category_i_title_h_amp_xml_dups_xml.expected
t/data/tv_grep_i_category_i_title_h_amp_xml_empty_xml.expected
t/data/tv_grep_i_category_i_title_h_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_i_category_i_title_h_attrs_xml.expected
t/data/tv_grep_i_category_i_title_h_clump_extract_1_xml.expected
t/data/tv_grep_i_category_i_title_h_clump_extract_xml.expected
t/data/tv_grep_i_category_i_title_h_clump_xml.expected
t/data/tv_grep_i_category_i_title_h_clump_xml_amp_xml.expected
t/data/tv_grep_i_category_i_title_h_clump_xml_clump_xml.expected
t/data/tv_grep_i_category_i_title_h_clump_xml_dups_xml.expected
t/data/tv_grep_i_category_i_title_h_clump_xml_empty_xml.expected
t/data/tv_grep_i_category_i_title_h_dups_xml.expected
t/data/tv_grep_i_category_i_title_h_dups_xml_amp_xml.expected
t/data/tv_grep_i_category_i_title_h_dups_xml_clump_xml.expected
t/data/tv_grep_i_category_i_title_h_dups_xml_dups_xml.expected
t/data/tv_grep_i_category_i_title_h_dups_xml_empty_xml.expected
t/data/tv_grep_i_category_i_title_h_empty_xml.expected
t/data/tv_grep_i_category_i_title_h_empty_xml_amp_xml.expected
t/data/tv_grep_i_category_i_title_h_empty_xml_clump_xml.expected
t/data/tv_grep_i_category_i_title_h_empty_xml_dups_xml.expected
t/data/tv_grep_i_category_i_title_h_empty_xml_empty_xml.expected
t/data/tv_grep_i_category_i_title_h_length_xml.expected
t/data/tv_grep_i_category_i_title_h_overlap_xml.expected
t/data/tv_grep_i_category_i_title_h_simple_xml.expected
t/data/tv_grep_i_category_i_title_h_simple_xml_x_whatever_xml.expected
t/data/tv_grep_i_category_i_title_h_sort_xml.expected
t/data/tv_grep_i_category_i_title_h_test_empty_xml.expected
t/data/tv_grep_i_category_i_title_h_test_livre_xml.expected
t/data/tv_grep_i_category_i_title_h_test_sort_by_channel_xml.expected
t/data/tv_grep_i_category_i_title_h_test_xml.expected
t/data/tv_grep_i_category_i_title_h_test_xml_test_xml.expected
t/data/tv_grep_i_category_i_title_h_whitespace_xml.expected
t/data/tv_grep_i_category_i_title_h_x_whatever_xml.expected
t/data/tv_grep_i_category_i_title_j_all_UTF8.expected
t/data/tv_grep_i_category_i_title_j_amp_xml.expected
t/data/tv_grep_i_category_i_title_j_amp_xml_amp_xml.expected
t/data/tv_grep_i_category_i_title_j_amp_xml_clump_xml.expected
t/data/tv_grep_i_category_i_title_j_amp_xml_dups_xml.expected
t/data/tv_grep_i_category_i_title_j_amp_xml_empty_xml.expected
t/data/tv_grep_i_category_i_title_j_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_i_category_i_title_j_attrs_xml.expected
t/data/tv_grep_i_category_i_title_j_clump_extract_1_xml.expected
t/data/whitespace.xml
t/data/tv_grep_i_category_i_title_j_clump_extract_xml.expected
t/data/tv_grep_i_category_i_title_j_clump_xml.expected
t/data/tv_grep_i_category_i_title_j_clump_xml_amp_xml.expected
t/data/tv_grep_i_category_i_title_j_clump_xml_clump_xml.expected
t/data/tv_grep_i_category_i_title_j_clump_xml_dups_xml.expected
t/data/tv_grep_i_category_i_title_j_clump_xml_empty_xml.expected
t/data/tv_grep_i_category_i_title_j_dups_xml.expected
t/data/tv_grep_i_category_i_title_j_dups_xml_amp_xml.expected
t/data/tv_grep_i_category_i_title_j_dups_xml_clump_xml.expected
t/data/tv_grep_i_category_i_title_j_dups_xml_dups_xml.expected
t/data/tv_grep_i_category_i_title_j_dups_xml_empty_xml.expected
t/data/tv_grep_i_category_i_title_j_empty_xml.expected
t/data/tv_grep_i_category_i_title_j_empty_xml_amp_xml.expected
t/data/tv_grep_i_category_i_title_j_empty_xml_clump_xml.expected
t/data/tv_grep_i_category_i_title_j_empty_xml_dups_xml.expected
t/data/tv_grep_i_category_i_title_j_empty_xml_empty_xml.expected
t/data/tv_grep_i_category_i_title_j_length_xml.expected
t/data/tv_grep_i_category_i_title_j_overlap_xml.expected
t/data/tv_grep_i_category_i_title_j_simple_xml.expected
t/data/tv_grep_i_category_i_title_j_simple_xml_x_whatever_xml.expected
t/data/tv_grep_i_category_i_title_j_sort_xml.expected
t/data/tv_grep_i_category_i_title_j_test_empty_xml.expected
t/data/tv_grep_i_category_i_title_j_test_livre_xml.expected
t/data/tv_grep_i_category_i_title_j_test_sort_by_channel_xml.expected
t/data/tv_grep_i_category_i_title_j_test_xml.expected
t/data/tv_grep_i_category_i_title_j_test_xml_test_xml.expected
t/data/tv_grep_i_category_i_title_j_whitespace_xml.expected
t/data/tv_grep_i_category_i_title_j_x_whatever_xml.expected
t/data/tv_grep_i_last_chance_c_all_UTF8.expected
t/data/tv_grep_i_last_chance_c_amp_xml.expected
t/data/tv_grep_i_last_chance_c_amp_xml_amp_xml.expected
t/data/tv_grep_i_last_chance_c_amp_xml_clump_xml.expected
t/data/tv_grep_i_last_chance_c_amp_xml_dups_xml.expected
t/data/tv_grep_i_last_chance_c_amp_xml_empty_xml.expected
t/data/tv_grep_i_last_chance_c_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_i_last_chance_c_attrs_xml.expected
t/data/tv_grep_i_last_chance_c_clump_extract_1_xml.expected
t/data/tv_grep_i_last_chance_c_clump_extract_xml.expected
t/data/tv_grep_i_last_chance_c_clump_xml.expected
t/data/tv_grep_i_last_chance_c_clump_xml_amp_xml.expected
t/data/tv_grep_i_last_chance_c_clump_xml_clump_xml.expected
t/data/tv_grep_i_last_chance_c_clump_xml_dups_xml.expected
t/data/tv_grep_i_last_chance_c_clump_xml_empty_xml.expected
t/data/tv_grep_i_last_chance_c_dups_xml.expected
t/data/tv_grep_i_last_chance_c_dups_xml_amp_xml.expected
t/data/tv_grep_i_last_chance_c_dups_xml_clump_xml.expected
t/data/tv_grep_i_last_chance_c_dups_xml_dups_xml.expected
t/data/tv_grep_i_last_chance_c_dups_xml_empty_xml.expected
t/data/tv_grep_i_last_chance_c_empty_xml.expected
t/data/tv_grep_i_last_chance_c_empty_xml_amp_xml.expected
t/data/tv_grep_i_last_chance_c_empty_xml_clump_xml.expected
t/data/tv_grep_i_last_chance_c_empty_xml_dups_xml.expected
t/data/tv_grep_i_last_chance_c_empty_xml_empty_xml.expected
t/data/tv_grep_i_last_chance_c_length_xml.expected
t/data/tv_grep_i_last_chance_c_overlap_xml.expected
t/data/tv_grep_i_last_chance_c_simple_xml.expected
t/data/tv_grep_i_last_chance_c_simple_xml_x_whatever_xml.expected
t/data/tv_grep_i_last_chance_c_sort_xml.expected
t/data/tv_grep_i_last_chance_c_test_empty_xml.expected
t/data/tv_grep_i_last_chance_c_test_livre_xml.expected
t/data/tv_grep_i_last_chance_c_test_sort_by_channel_xml.expected
t/data/tv_grep_i_last_chance_c_test_xml.expected
t/data/tv_grep_i_last_chance_c_test_xml_test_xml.expected
t/data/tv_grep_i_last_chance_c_whitespace_xml.expected
t/data/tv_grep_i_last_chance_c_x_whatever_xml.expected
t/data/tv_grep_new_amp_xml.expected
t/data/tv_grep_new_amp_xml_amp_xml.expected
t/data/tv_grep_new_amp_xml_clump_xml.expected
t/data/tv_grep_new_amp_xml_dups_xml.expected
t/data/x-whatever.xml
t/data/tv_grep_new_amp_xml_empty_xml.expected
t/data/tv_grep_new_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_new_attrs_xml.expected
t/data/tv_grep_new_clump_extract_1_xml.expected
t/data/tv_grep_new_clump_extract_xml.expected
t/data/tv_grep_new_clump_xml.expected
t/data/tv_grep_new_clump_xml_amp_xml.expected
t/data/tv_grep_new_clump_xml_clump_xml.expected
t/data/tv_grep_new_clump_xml_dups_xml.expected
t/data/tv_grep_new_clump_xml_empty_xml.expected
t/data/tv_grep_new_dups_xml.expected
t/data/tv_grep_new_dups_xml_amp_xml.expected
t/data/tv_grep_new_dups_xml_clump_xml.expected
t/data/tv_grep_new_dups_xml_dups_xml.expected
t/data/tv_grep_new_dups_xml_empty_xml.expected
t/data/tv_grep_new_empty_xml.expected
t/data/tv_grep_new_empty_xml_amp_xml.expected
t/data/tv_grep_new_empty_xml_clump_xml.expected
t/data/tv_grep_new_empty_xml_dups_xml.expected
t/data/tv_grep_new_empty_xml_empty_xml.expected
t/data/tv_grep_new_length_xml.expected
t/data/tv_grep_new_overlap_xml.expected
t/data/tv_grep_new_simple_xml.expected
t/data/tv_grep_new_simple_xml_x_whatever_xml.expected
t/data/tv_grep_new_sort_xml.expected
t/data/tv_grep_new_test_empty_xml.expected
t/data/tv_grep_new_test_livre_xml.expected
t/data/tv_grep_new_test_sort_by_channel_xml.expected
t/data/tv_grep_new_test_xml.expected
t/data/tv_grep_new_test_xml_test_xml.expected
t/data/tv_grep_new_whitespace_xml.expected
t/data/tv_grep_new_x_whatever_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_all_UTF8.expected
t/data/tv_grep_on_after_2002_02_05_UTC_amp_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_amp_xml_amp_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_amp_xml_clump_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_amp_xml_dups_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_amp_xml_empty_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_attrs_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_clump_extract_1_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_clump_extract_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_clump_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_clump_xml_amp_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_clump_xml_clump_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_clump_xml_dups_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_clump_xml_empty_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_dups_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_dups_xml_amp_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_dups_xml_clump_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_dups_xml_dups_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_dups_xml_empty_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_empty_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_empty_xml_amp_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_empty_xml_clump_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_empty_xml_dups_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_empty_xml_empty_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_length_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_overlap_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_simple_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_simple_xml_x_whatever_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_sort_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_test_empty_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_test_livre_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_test_sort_by_channel_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_test_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_test_xml_test_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_whitespace_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_x_whatever_xml.expected
t/data/tv_grep_premiere_all_UTF8.expected
t/data/tv_grep_premiere_amp_xml.expected
t/data/tv_grep_premiere_amp_xml_amp_xml.expected
t/data/tv_grep_premiere_amp_xml_clump_xml.expected
t/data/tv_grep_premiere_amp_xml_dups_xml.expected
t/data/tv_grep_premiere_amp_xml_empty_xml.expected
t/data/tv_grep_premiere_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_premiere_attrs_xml.expected
t/data/tv_grep_premiere_clump_extract_1_xml.expected
t/data/tv_grep_premiere_clump_extract_xml.expected
t/data/tv_grep_premiere_clump_xml.expected
t/data/tv_grep_premiere_clump_xml_amp_xml.expected
t/data/tv_grep_premiere_clump_xml_clump_xml.expected
t/data/tv_grep_premiere_clump_xml_dups_xml.expected
t/data/tv_grep_premiere_clump_xml_empty_xml.expected
t/data/tv_grep_premiere_dups_xml.expected
t/data/tv_grep_premiere_dups_xml_amp_xml.expected
t/data/tv_grep_premiere_dups_xml_clump_xml.expected
t/data/tv_grep_premiere_dups_xml_dups_xml.expected
t/data/tv_grep_premiere_dups_xml_empty_xml.expected
t/data/tv_grep_premiere_empty_xml.expected
t/data/tv_grep_premiere_empty_xml_amp_xml.expected
t/data/tv_grep_premiere_empty_xml_clump_xml.expected
t/data/tv_grep_premiere_empty_xml_dups_xml.expected
t/data/tv_grep_premiere_empty_xml_empty_xml.expected
t/data/tv_grep_premiere_length_xml.expected
t/data/tv_grep_premiere_overlap_xml.expected
t/data/tv_grep_premiere_simple_xml.expected
t/data/tv_grep_premiere_simple_xml_x_whatever_xml.expected
t/data/tv_grep_premiere_sort_xml.expected
t/data/tv_grep_premiere_test_empty_xml.expected
t/data/tv_grep_premiere_test_livre_xml.expected
t/data/tv_grep_premiere_test_sort_by_channel_xml.expected
t/data/tv_grep_premiere_test_xml.expected
t/data/tv_grep_premiere_test_xml_test_xml.expected
t/data/tv_grep_premiere_whitespace_xml.expected
t/data/tv_grep_premiere_x_whatever_xml.expected
t/data/tv_grep_previously_shown_all_UTF8.expected
t/data/tv_grep_previously_shown_amp_xml.expected
t/data/tv_grep_previously_shown_amp_xml_amp_xml.expected
t/data/tv_grep_previously_shown_amp_xml_clump_xml.expected
t/data/tv_grep_previously_shown_amp_xml_dups_xml.expected
t/data/tv_grep_previously_shown_amp_xml_empty_xml.expected
t/data/tv_grep_previously_shown_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_previously_shown_attrs_xml.expected
t/data/tv_grep_previously_shown_clump_extract_1_xml.expected
t/data/tv_grep_previously_shown_clump_extract_xml.expected
t/data/tv_grep_previously_shown_clump_xml.expected
t/data/tv_grep_previously_shown_clump_xml_amp_xml.expected
t/data/tv_grep_previously_shown_clump_xml_clump_xml.expected
t/data/tv_grep_previously_shown_clump_xml_dups_xml.expected
t/data/tv_grep_previously_shown_clump_xml_empty_xml.expected
t/data/tv_grep_previously_shown_dups_xml.expected
t/data/tv_grep_previously_shown_dups_xml_amp_xml.expected
t/data/tv_grep_previously_shown_dups_xml_clump_xml.expected
t/data/tv_grep_previously_shown_dups_xml_dups_xml.expected
t/data/tv_grep_previously_shown_dups_xml_empty_xml.expected
t/data/tv_grep_previously_shown_empty_xml.expected
t/data/tv_grep_previously_shown_empty_xml_amp_xml.expected
t/data/tv_grep_previously_shown_empty_xml_clump_xml.expected
t/data/tv_grep_previously_shown_empty_xml_dups_xml.expected
t/data/tv_grep_previously_shown_empty_xml_empty_xml.expected
t/data/tv_grep_previously_shown_length_xml.expected
t/data/tv_grep_previously_shown_overlap_xml.expected
t/data/tv_grep_previously_shown_simple_xml.expected
t/data/tv_grep_previously_shown_simple_xml_x_whatever_xml.expected
t/data/tv_grep_previously_shown_sort_xml.expected
t/data/tv_grep_previously_shown_test_empty_xml.expected
t/data/tv_grep_previously_shown_test_livre_xml.expected
t/data/tv_grep_previously_shown_test_sort_by_channel_xml.expected
t/data/tv_grep_previously_shown_test_xml.expected
t/data/tv_grep_previously_shown_test_xml_test_xml.expected
t/data/tv_grep_previously_shown_whitespace_xml.expected
t/data/tv_grep_previously_shown_x_whatever_xml.expected
t/data-tv_augment/configs/tv_augment_automatic_type_1.xml.conf
t/data-tv_augment/configs/tv_augment_automatic_type_2.xml.conf
t/data-tv_augment/configs/tv_augment_automatic_type_3.xml.conf
t/data-tv_augment/configs/tv_augment_automatic_type_4.xml.conf
t/data-tv_augment/configs/tv_augment_automatic_type_5-0a.xml.conf
t/data-tv_augment/configs/tv_augment_automatic_type_5-0b.xml.conf
t/data-tv_augment/configs/tv_augment_automatic_type_5-1.xml.conf
t/data-tv_augment/configs/tv_augment_automatic_type_5-2.xml.conf
t/data-tv_augment/configs/tv_augment_automatic_type_5-3.xml.conf
t/data-tv_augment/configs/tv_augment_automatic_type_5-4.xml.conf
t/data-tv_augment/configs/tv_augment_user_type_1.xml.conf
t/data-tv_augment/configs/tv_augment_user_type_10.xml.conf
t/data-tv_augment/configs/tv_augment_user_type_11.xml.conf
t/data-tv_augment/configs/tv_augment_user_type_12.xml.conf
t/data-tv_augment/configs/tv_augment_user_type_13.xml.conf
t/data-tv_augment/configs/tv_augment_user_type_14.xml.conf
t/data-tv_augment/configs/tv_augment_user_type_15.xml.conf
t/data-tv_augment/configs/tv_augment_user_type_16.xml.conf
t/data-tv_augment/configs/tv_augment_user_type_2.xml.conf
t/data-tv_augment/configs/tv_augment_user_type_3.xml.conf
t/data-tv_augment/configs/tv_augment_user_type_4.xml.conf
t/data-tv_augment/configs/tv_augment_user_type_5.xml.conf
t/data-tv_augment/configs/tv_augment_user_type_6.xml.conf
t/data-tv_augment/configs/tv_augment_user_type_7.xml.conf
t/data-tv_augment/configs/tv_augment_user_type_8.xml.conf
t/data-tv_augment/configs/tv_augment_user_type_9.xml.conf
t/data-tv_augment/rules/test_tv_augment.rules
t/data-tv_augment/tv_augment_automatic_type_1.xml
t/data-tv_augment/tv_augment_automatic_type_1.xml-expected
t/data-tv_augment/tv_augment_automatic_type_2.xml
t/data-tv_augment/tv_augment_automatic_type_2.xml-expected
t/data-tv_augment/tv_augment_automatic_type_3.xml
t/data-tv_augment/tv_augment_automatic_type_3.xml-expected
t/data-tv_augment/tv_augment_automatic_type_4.xml
t/data-tv_augment/tv_augment_automatic_type_4.xml-expected
t/data-tv_augment/tv_augment_automatic_type_5-0a.xml
t/data-tv_augment/tv_augment_automatic_type_5-0a.xml-expected
t/data-tv_augment/tv_augment_automatic_type_5-0b.xml
t/data-tv_augment/tv_augment_automatic_type_5-0b.xml-expected
t/data-tv_augment/tv_augment_automatic_type_5-1.xml
t/data-tv_augment/tv_augment_automatic_type_5-1.xml-expected
t/data-tv_augment/tv_augment_automatic_type_5-2.xml
t/data-tv_augment/tv_augment_automatic_type_5-2.xml-expected
t/data-tv_augment/tv_augment_automatic_type_5-3.xml
t/data-tv_augment/tv_augment_automatic_type_5-3.xml-expected
t/data-tv_augment/tv_augment_automatic_type_5-4.xml
t/data-tv_augment/tv_augment_automatic_type_5-4.xml-expected
t/data-tv_augment/tv_augment_user_type_1.xml
t/data-tv_augment/tv_augment_user_type_1.xml-expected
t/data-tv_augment/tv_augment_user_type_10.xml
t/data-tv_augment/tv_augment_user_type_10.xml-expected
t/data-tv_augment/tv_augment_user_type_11.xml
t/data-tv_augment/tv_augment_user_type_11.xml-expected
t/data-tv_augment/tv_augment_user_type_12.xml
t/data-tv_augment/tv_augment_user_type_12.xml-expected
t/data-tv_augment/tv_augment_user_type_13.xml
t/data-tv_augment/tv_augment_user_type_13.xml-expected
t/data-tv_augment/tv_augment_user_type_14.xml
t/data-tv_augment/tv_augment_user_type_14.xml-expected
t/data-tv_augment/tv_augment_user_type_15.xml
t/data-tv_augment/tv_augment_user_type_15.xml-expected
t/data-tv_augment/tv_augment_user_type_16.xml
t/data-tv_augment/tv_augment_user_type_16.xml-expected
t/data-tv_augment/tv_augment_user_type_2.xml
t/data-tv_augment/tv_augment_user_type_2.xml-expected
t/data-tv_augment/tv_augment_user_type_3.xml
t/data-tv_augment/tv_augment_user_type_3.xml-expected
t/data-tv_augment/tv_augment_user_type_4.xml
t/data-tv_augment/tv_augment_user_type_4.xml-expected
t/data-tv_augment/tv_augment_user_type_5.xml
t/data-tv_augment/tv_augment_user_type_5.xml-expected
t/data-tv_augment/tv_augment_user_type_6.xml
t/data-tv_augment/tv_augment_user_type_6.xml-expected
t/data-tv_augment/tv_augment_user_type_7.xml
t/data-tv_augment/tv_augment_user_type_7.xml-expected
t/data-tv_augment/tv_augment_user_type_8.xml
t/data-tv_augment/tv_augment_user_type_8.xml-expected
t/data-tv_augment/tv_augment_user_type_9.xml
t/data-tv_augment/tv_augment_user_type_9.xml-expected
t/test_tv_augment.t
t/data-tv_imdb/lists/actors.list
t/data-tv_imdb/lists/actresses.list
t/data-tv_imdb/lists/directors.list
t/data-tv_imdb/lists/genres.list
t/data-tv_imdb/lists/keywords.list
t/data-tv_imdb/lists/movies.list
t/data-tv_imdb/lists/plot.list
t/data-tv_imdb/lists/ratings.list
t/data-tv_imdb/After-data-freeze.xml
t/data-tv_imdb/After-data-freeze.xml-expected
t/data-tv_imdb/Cast-actor-with-generation.xml
t/data-tv_imdb/Cast-actor-with-generation.xml-expected
t/data-tv_imdb/Cast-actors-and-actresses.xml
t/data-tv_imdb/Cast-actors-and-actresses.xml-expected
t/data-tv_imdb/Cast-billing.xml
t/data-tv_imdb/Cast-billing.xml-expected
t/data-tv_imdb/Cast-duplicate.xml
t/data-tv_imdb/Cast-duplicate.xml-expected
t/data-tv_imdb/Cast-host-or-narrator.xml
t/data-tv_imdb/Cast-host-or-narrator.xml-expected
t/data-tv_imdb/Cast-name-with-suffix.xml
t/data-tv_imdb/Cast-name-with-suffix.xml-expected
t/data-tv_imdb/Cast-role.xml
t/data-tv_imdb/Cast-role.xml-expected
t/data-tv_imdb/Director-multiple-and-duplicate-directors.xml
t/data-tv_imdb/Director-multiple-and-duplicate-directors.xml-expected
t/data-tv_imdb/Director-name-with-suffix.xml
t/data-tv_imdb/Director-name-with-suffix.xml-expected
t/data-tv_imdb/Director-with-generation.xml
t/data-tv_imdb/Director-with-generation.xml-expected
t/data-tv_imdb/Genres-duplicate.xml
t/data-tv_imdb/Genres-duplicate.xml-expected
t/data-tv_imdb/Genres-multiple.xml
t/data-tv_imdb/Genres-multiple.xml-expected
t/data-tv_imdb/Genres-single.xml
t/data-tv_imdb/Genres-single.xml-expected
t/data-tv_imdb/Movie1.xml
t/data-tv_imdb/Movie1.xml-expected
t/data-tv_imdb/Movie1-case-insensitive.xml
t/data-tv_imdb/Movie1-case-insensitive.xml-expected
t/data-tv_imdb/Movie1-movies-only.xml
t/data-tv_imdb/Movie1-movies-only.xml-expected
t/data-tv_imdb/Movie3-and-amp.xml
t/data-tv_imdb/Movie3-and-amp.xml-expected
t/data-tv_imdb/Movie5-ignore-punc.xml
t/data-tv_imdb/Movie5-ignore-punc.xml-expected
t/data-tv_imdb/Movie5-with-punc.xml
t/data-tv_imdb/Movie5-with-punc.xml-expected
t/data-tv_imdb/Movie6-articles.xml
t/data-tv_imdb/Movie6-articles.xml-expected
t/data-tv_imdb/Movie21-accents.xml
t/data-tv_imdb/Movie21-accents.xml-expected
t/data-tv_imdb/Movie22-dots.xml
t/data-tv_imdb/Movie22-dots.xml-expected
t/data-tv_imdb/Movie100-years.xml
t/data-tv_imdb/Movie100-years.xml-expected
t/data-tv_imdb/Movie101-movie-and-tv.xml
t/data-tv_imdb/Movie101-movie-and-tv.xml-expected
t/data-tv_imdb/Movie-same-year-movie-and-series.xml
t/data-tv_imdb/Movie-same-year-movie-and-series.xml-expected
t/data-tv_imdb/Movie-startswith-hyphen.xml
t/data-tv_imdb/Movie-startswith-hyphen.xml-expected
t/data-tv_imdb/Movie-two-in-same-year.xml
t/data-tv_imdb/Movie-two-in-same-year.xml-expected
t/data-tv_imdb/Movie-with-aka.xml
t/data-tv_imdb/Movie-with-aka.xml-expected
t/data-tv_imdb/Movie-with-unknown-year.xml
t/data-tv_imdb/Movie-with-unknown-year.xml-expected
t/data-tv_imdb/Ratings.xml
t/data-tv_imdb/Ratings.xml-expected
t/data-tv_imdb/Show1.xml
t/data-tv_imdb/Show1.xml-expected
t/data-tv_imdb/Show1-movies-only.xml
t/data-tv_imdb/Show1-movies-only.xml-expected
t/test_tv_imdb.t
t/data-tv_tmdb/Cast-actors-and-actresses.xml
t/data-tv_tmdb/Cast-actors-and-actresses.xml-expected
t/data-tv_tmdb/Cast-actor-with-generation.xml
t/data-tv_tmdb/Cast-actor-with-generation.xml-expected
t/data-tv_tmdb/Cast-billing.xml
t/data-tv_tmdb/Cast-billing.xml-expected
t/data-tv_tmdb/Cast-duplicate.xml
t/data-tv_tmdb/Cast-duplicate.xml-expected
t/data-tv_tmdb/Cast-host-or-narrator.xml
t/data-tv_tmdb/Cast-host-or-narrator.xml-expected
t/data-tv_tmdb/Cast-image-url.xml
t/data-tv_tmdb/Cast-image-url.xml-expected
t/data-tv_tmdb/Cast-merge.xml
t/data-tv_tmdb/Cast-merge.xml-expected
t/data-tv_tmdb/Cast-multiple-role.xml
t/data-tv_tmdb/Cast-multiple-role.xml-expected
t/data-tv_tmdb/Cast-role.xml
t/data-tv_tmdb/Cast-role.xml-expected
t/data-tv_tmdb/configs/Cast-actors-and-actresses.conf
t/data-tv_tmdb/configs/Cast-actor-with-generation.conf
t/data-tv_tmdb/configs/Cast-billing.conf
t/data-tv_tmdb/configs/Cast-duplicate.conf
t/data-tv_tmdb/configs/Cast-host-or-narrator.conf
t/data-tv_tmdb/configs/Cast-image-url.conf
t/data-tv_tmdb/configs/Cast-merge.conf
t/data-tv_tmdb/configs/Cast-multiple-role.conf
t/data-tv_tmdb/configs/Cast-role.conf
t/data-tv_tmdb/configs/Content-id.conf
t/data-tv_tmdb/configs/Director-multiple-and-duplicate-directors.conf
t/data-tv_tmdb/configs/Director-with-generation.conf
t/data-tv_tmdb/configs/Genres-duplicate.conf
t/data-tv_tmdb/configs/Genres-multiple.conf
t/data-tv_tmdb/configs/Genres-single.conf
t/data-tv_tmdb/configs/Movie-and-tv.conf
t/data-tv_tmdb/configs/Movie.conf
t/data-tv_tmdb/configs/Movie-icon-and-url.conf
t/data-tv_tmdb/configs/Movie-same-year-movie-and-series.conf
t/data-tv_tmdb/configs/Movies-only.conf
t/data-tv_tmdb/configs/Movie-two-in-same-year.conf
t/data-tv_tmdb/configs/Movie-with-aka.conf
t/data-tv_tmdb/configs/Movie-with-unknown-year.conf
t/data-tv_tmdb/configs/Movie-years.conf
t/data-tv_tmdb/configs/Ratings.conf
t/data-tv_tmdb/configs/Show.conf
t/data-tv_tmdb/configs/Show-movies-only.conf
t/data-tv_tmdb/configs/Show-two-in-same-year.conf
t/data-tv_tmdb/configs/Title-and-amp.conf
t/data-tv_tmdb/configs/Title-articles.conf
t/data-tv_tmdb/configs/Title-case-insensitive.conf
t/data-tv_tmdb/configs/Title-dots.conf
t/data-tv_tmdb/configs/Title-ignore-punc.conf
t/data-tv_tmdb/configs/Title-startswith-hyphen.conf
t/data-tv_tmdb/configs/Title-with-accent.conf
t/data-tv_tmdb/configs/Title-with-not-az.conf
t/data-tv_tmdb/configs/Title-with-punc.conf
t/data-tv_tmdb/configs/Title-year-from-title.conf
t/data-tv_tmdb/configs/Utf8.conf
t/data-tv_tmdb/Content-id.xml
t/data-tv_tmdb/Content-id.xml-expected
t/data-tv_tmdb/Director-multiple-and-duplicate-directors.xml
t/data-tv_tmdb/Director-multiple-and-duplicate-directors.xml-expected
t/data-tv_tmdb/Director-with-generation.xml
t/data-tv_tmdb/Director-with-generation.xml-expected
t/data-tv_tmdb/Genres-duplicate.xml
t/data-tv_tmdb/Genres-duplicate.xml-expected
t/data-tv_tmdb/Genres-multiple.xml
t/data-tv_tmdb/Genres-multiple.xml-expected
t/data-tv_tmdb/Genres-single.xml
t/data-tv_tmdb/Genres-single.xml-expected
t/data-tv_tmdb/Movie-and-tv.xml
t/data-tv_tmdb/Movie-and-tv.xml-expected
t/data-tv_tmdb/Movie-icon-and-url.xml
t/data-tv_tmdb/Movie-icon-and-url.xml-expected
t/data-tv_tmdb/Movie-same-year-movie-and-series.xml
t/data-tv_tmdb/Movie-same-year-movie-and-series.xml-expected
t/data-tv_tmdb/Movies-only.xml
t/data-tv_tmdb/Movies-only.xml-expected
t/data-tv_tmdb/Movie-two-in-same-year.xml
t/data-tv_tmdb/Movie-two-in-same-year.xml-expected
t/data-tv_tmdb/Movie-with-aka.xml
t/data-tv_tmdb/Movie-with-aka.xml-expected
t/data-tv_tmdb/Movie-with-unknown-year.xml
t/data-tv_tmdb/Movie-with-unknown-year.xml-expected
t/data-tv_tmdb/Movie.xml
t/data-tv_tmdb/Movie.xml-expected
t/data-tv_tmdb/Movie-years.xml
t/data-tv_tmdb/Movie-years.xml-expected
t/data-tv_tmdb/Ratings.xml
t/data-tv_tmdb/Ratings.xml-expected
t/data-tv_tmdb/Show-movies-only.xml
t/data-tv_tmdb/Show-movies-only.xml-expected
t/data-tv_tmdb/Show-two-in-same-year.xml
t/data-tv_tmdb/Show-two-in-same-year.xml-expected
t/data-tv_tmdb/Show.xml
t/data-tv_tmdb/Show.xml-expected
t/data-tv_tmdb/Title-and-amp.xml
t/data-tv_tmdb/Title-and-amp.xml-expected
t/data-tv_tmdb/Title-articles.xml
t/data-tv_tmdb/Title-articles.xml-expected
t/data-tv_tmdb/Title-case-insensitive.xml
t/data-tv_tmdb/Title-case-insensitive.xml-expected
t/data-tv_tmdb/Title-dots.xml
t/data-tv_tmdb/Title-dots.xml-expected
t/data-tv_tmdb/Title-ignore-punc.xml
t/data-tv_tmdb/Title-ignore-punc.xml-expected
t/data-tv_tmdb/Title-startswith-hyphen.xml
t/data-tv_tmdb/Title-startswith-hyphen.xml-expected
t/data-tv_tmdb/Title-with-accent.xml
t/data-tv_tmdb/Title-with-accent.xml-expected
t/data-tv_tmdb/Title-with-not-az.xml
t/data-tv_tmdb/Title-with-not-az.xml-expected
t/data-tv_tmdb/Title-with-punc.xml
t/data-tv_tmdb/Title-with-punc.xml-expected
t/data-tv_tmdb/Title-year-from-title.xml
t/data-tv_tmdb/Title-year-from-title.xml-expected
t/data-tv_tmdb/Utf8.xml
t/data-tv_tmdb/Utf8.xml-expected
t/test_tv_tmdb.t
t/data/tv_sort_all_UTF8.expected
t/data/tv_sort_amp_xml_amp_xml.expected
t/data/tv_sort_amp_xml_clump_xml.expected
t/data/tv_sort_amp_xml_dups_xml.expected
t/data/tv_sort_amp_xml_empty_xml.expected
t/data/tv_sort_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_sort_attrs_xml.expected
t/data/intervals.xml
t/data/tv_sort_by_channel_all_UTF8.expected
t/data/tv_sort_by_channel_amp_xml.expected
t/data/tv_sort_by_channel_amp_xml_amp_xml.expected
t/data/tv_sort_by_channel_amp_xml_clump_xml.expected
t/data/tv_sort_by_channel_amp_xml_dups_xml.expected
t/data/tv_sort_by_channel_amp_xml_empty_xml.expected
t/data/tv_sort_by_channel_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_sort_by_channel_attrs_xml.expected
t/data/tv_sort_by_channel_clump_extract_1_xml.expected
t/data/tv_sort_by_channel_clump_extract_xml.expected
t/data/tv_sort_by_channel_clump_xml.expected
t/data/tv_sort_by_channel_clump_xml_amp_xml.expected
t/data/tv_sort_by_channel_clump_xml_clump_xml.expected
t/data/tv_sort_by_channel_clump_xml_dups_xml.expected
t/data/tv_sort_by_channel_clump_xml_empty_xml.expected
t/data/tv_sort_by_channel_dups_xml.expected
t/data/tv_sort_by_channel_dups_xml_amp_xml.expected
t/data/tv_sort_by_channel_dups_xml_clump_xml.expected
t/data/tv_sort_by_channel_dups_xml_dups_xml.expected
t/data/tv_sort_by_channel_dups_xml_empty_xml.expected
t/data/tv_sort_by_channel_empty_xml.expected
t/data/tv_sort_by_channel_empty_xml_amp_xml.expected
t/data/tv_sort_by_channel_empty_xml_clump_xml.expected
t/data/tv_sort_by_channel_empty_xml_dups_xml.expected
t/data/tv_sort_by_channel_empty_xml_empty_xml.expected
t/data/tv_sort_by_channel_length_xml.expected
t/data/tv_sort_by_channel_overlap_xml.expected
t/data/tv_sort_by_channel_simple_xml.expected
t/data/tv_sort_by_channel_simple_xml_x_whatever_xml.expected
t/data/tv_sort_by_channel_sort_xml.expected
t/data/tv_sort_by_channel_test_empty_xml.expected
t/data/tv_sort_by_channel_test_livre_xml.expected
t/data/tv_sort_by_channel_test_sort_by_channel.expected
t/data/tv_sort_by_channel_test_sort_by_channel_xml.expected
t/data/tv_sort_by_channel_test_xml.expected
t/data/tv_sort_by_channel_test_xml_test_xml.expected
t/data/tv_sort_by_channel_whitespace_xml.expected
t/data/tv_sort_by_channel_x_whatever_xml.expected
t/data/tv_sort_clump_extract_1_xml.expected
t/data/tv_sort_clump_extract_xml.expected
t/data/tv_sort_clump_xml.expected
t/data/tv_sort_clump_xml_amp_xml.expected
t/data/tv_sort_clump_xml_clump_xml.expected
t/data/tv_sort_clump_xml_dups_xml.expected
t/data/tv_sort_clump_xml_empty_xml.expected
t/data/tv_sort_dups_xml.expected
t/data/tv_sort_dups_xml_amp_xml.expected
t/data/tv_sort_dups_xml_clump_xml.expected
t/data/tv_sort_dups_xml_dups_xml.expected
t/data/tv_sort_dups_xml_empty_xml.expected
t/data/tv_sort_empty_xml.expected
t/data/tv_sort_empty_xml_amp_xml.expected
t/data/tv_sort_empty_xml_clump_xml.expected
t/data/tv_sort_empty_xml_dups_xml.expected
t/data/tv_sort_empty_xml_empty_xml.expected
t/data/tv_sort_length_xml.expected
t/data/tv_sort_overlap_xml.expected
t/data/tv_sort_overlap_xml.expected_err
t/data/tv_sort_simple_xml.expected
t/data/tv_sort_simple_xml_x_whatever_xml.expected
t/data/tv_sort_sort_xml.expected
t/data/tv_sort_test_empty_xml.expected
t/data/tv_sort_test_livre_xml.expected
t/data/tv_sort_test_sort_by_channel_xml.expected
t/data/tv_sort_test_xml.expected
t/data/tv_sort_test_xml_test_xml.expected
t/data/tv_sort_whitespace_xml.expected
t/data/tv_sort_x_whatever_xml.expected
t/data/tv_to_latex_all_UTF8.expected
t/data/tv_to_latex_amp_xml.expected
t/data/tv_to_latex_amp_xml_amp_xml.expected
t/data/tv_to_latex_amp_xml_clump_xml.expected
t/data/tv_to_latex_amp_xml_dups_xml.expected
t/data/tv_to_latex_amp_xml_empty_xml.expected
t/data/tv_to_latex_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_to_latex_attrs_xml.expected
t/data/tv_to_latex_clump_extract_1_xml.expected
t/data/tv_to_latex_clump_extract_xml.expected
t/data/tv_to_latex_clump_xml.expected
t/data/tv_to_latex_clump_xml_amp_xml.expected
t/data/tv_to_latex_clump_xml_clump_xml.expected
t/data/tv_to_latex_clump_xml_dups_xml.expected
t/data/tv_to_latex_clump_xml_empty_xml.expected
t/data/tv_to_latex_dups_xml.expected
t/data/tv_to_latex_dups_xml_amp_xml.expected
t/data/tv_to_latex_dups_xml_clump_xml.expected
t/data/tv_to_latex_dups_xml_dups_xml.expected
t/data/tv_to_latex_dups_xml_empty_xml.expected
t/data/tv_to_latex_empty_xml.expected
t/data/tv_to_latex_empty_xml_amp_xml.expected
t/data/tv_to_latex_empty_xml_clump_xml.expected
t/data/tv_to_latex_empty_xml_dups_xml.expected
t/data/tv_to_latex_empty_xml_empty_xml.expected
t/data/tv_to_latex_length_xml.expected
t/data/tv_to_latex_overlap_xml.expected
t/data/tv_to_latex_simple_xml.expected
t/data/tv_to_latex_simple_xml_x_whatever_xml.expected
t/data/tv_to_latex_sort_xml.expected
t/data/tv_to_latex_test_empty_xml.expected
t/data/tv_to_latex_test_livre_xml.expected
t/data/tv_to_latex_test_sort_by_channel_xml.expected
t/data/tv_to_latex_test_xml.expected
t/data/tv_to_latex_test_xml_test_xml.expected
t/data/tv_to_latex_whitespace_xml.expected
t/data/tv_to_latex_x_whatever_xml.expected
t/data/tv_to_text_all_UTF8.expected
t/data/tv_to_text_amp_xml.expected
t/data/tv_to_text_amp_xml_amp_xml.expected
t/data/tv_to_text_amp_xml_clump_xml.expected
t/data/tv_to_text_amp_xml_dups_xml.expected
t/data/tv_to_text_amp_xml_empty_xml.expected
t/data/tv_to_text_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_to_text_attrs_xml.expected
t/data/tv_to_text_clump_extract_1_xml.expected
t/data/tv_to_text_clump_extract_xml.expected
t/data/tv_to_text_clump_xml.expected
t/data/tv_to_text_clump_xml_amp_xml.expected
t/data/tv_to_text_clump_xml_clump_xml.expected
t/data/tv_to_text_clump_xml_dups_xml.expected
t/data/tv_to_text_clump_xml_empty_xml.expected
t/data/tv_to_text_dups_xml.expected
t/data/tv_to_text_dups_xml_amp_xml.expected
t/data/tv_to_text_dups_xml_clump_xml.expected
t/data/tv_to_text_dups_xml_dups_xml.expected
t/data/tv_to_text_dups_xml_empty_xml.expected
t/data/tv_to_text_empty_xml.expected
t/data/tv_to_text_empty_xml_amp_xml.expected
t/data/tv_to_text_empty_xml_clump_xml.expected
t/data/tv_to_text_empty_xml_dups_xml.expected
t/data/tv_to_text_empty_xml_empty_xml.expected
t/data/tv_to_text_length_xml.expected
t/data/tv_to_text_overlap_xml.expected
t/data/tv_to_text_simple_xml.expected
t/data/tv_to_text_simple_xml_x_whatever_xml.expected
t/data/tv_to_text_sort_xml.expected
t/data/tv_to_text_test_empty_xml.expected
t/data/tv_to_text_test_livre_xml.expected
t/data/tv_to_text_test_sort_by_channel_xml.expected
t/data/tv_to_text_test_xml.expected
t/data/tv_to_text_test_xml_test_xml.expected
t/data/tv_to_text_whitespace_xml.expected
t/data/tv_to_text_x_whatever_xml.expected
t/data/tv_cat_intervals_xml.expected
t/data/tv_extractinfo_en_intervals_xml.expected
t/data/tv_grep_a_intervals_xml.expected
t/data/tv_grep_category_b_intervals_xml.expected
t/data/tv_grep_category_e_and_title_f_intervals_xml.expected
t/data/tv_grep_category_g_or_title_h_intervals_xml.expected
t/data/tv_grep_channel_id_channel4_com_intervals_xml.expected
t/data/tv_grep_channel_name_d_intervals_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_intervals_xml.expected
t/data/tv_grep_eval_scalar_keys_5_intervals_xml.expected
t/data/tv_grep_i_category_i_title_h_intervals_xml.expected
t/data/tv_grep_i_category_i_title_j_intervals_xml.expected
t/data/tv_grep_i_last_chance_c_intervals_xml.expected
t/data/tv_grep_new_intervals_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_intervals_xml.expected
t/data/tv_grep_premiere_intervals_xml.expected
t/data/tv_grep_previously_shown_intervals_xml.expected
t/data/tv_sort_by_channel_intervals_xml.expected
t/data/tv_sort_intervals_xml.expected
t/data/tv_to_latex_intervals_xml.expected
t/data/tv_to_text_intervals_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_all_UTF8.expected
t/data/tv_grep_on_after_200302161330_UTC_amp_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_amp_xml_amp_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_amp_xml_clump_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_amp_xml_dups_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_amp_xml_empty_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_attrs_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_clump_extract_1_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_clump_extract_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_clump_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_clump_xml_amp_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_clump_xml_clump_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_clump_xml_dups_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_clump_xml_empty_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_dups_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_dups_xml_amp_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_dups_xml_clump_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_dups_xml_dups_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_dups_xml_empty_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_empty_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_empty_xml_amp_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_empty_xml_clump_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_empty_xml_dups_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_empty_xml_empty_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_intervals_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_length_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_overlap_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_simple_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_simple_xml_x_whatever_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_sort_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_test_empty_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_test_livre_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_test_sort_by_channel_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_test_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_test_xml_test_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_whitespace_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_x_whatever_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_all_UTF8.expected
t/data/tv_grep_on_before_200302161330_UTC_amp_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_amp_xml_amp_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_amp_xml_clump_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_amp_xml_dups_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_amp_xml_empty_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_attrs_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_clump_extract_1_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_clump_extract_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_clump_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_clump_xml_amp_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_clump_xml_clump_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_clump_xml_dups_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_clump_xml_empty_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_dups_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_dups_xml_amp_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_dups_xml_clump_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_dups_xml_dups_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_dups_xml_empty_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_empty_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_empty_xml_amp_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_empty_xml_clump_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_empty_xml_dups_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_empty_xml_empty_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_intervals_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_length_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_overlap_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_simple_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_simple_xml_x_whatever_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_sort_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_test_empty_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_test_livre_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_test_sort_by_channel_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_test_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_test_xml_test_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_whitespace_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_x_whatever_xml.expected
t/data/tv_cat_sort1_xml.expected
t/data/tv_cat_sort2_xml.expected
t/data/tv_extractinfo_en_sort1_xml.expected
t/data/tv_extractinfo_en_sort2_xml.expected
t/data/tv_grep_a_sort1_xml.expected
t/data/tv_grep_a_sort2_xml.expected
t/data/tv_grep_category_b_sort1_xml.expected
t/data/tv_grep_category_b_sort2_xml.expected
t/data/tv_grep_category_e_and_title_f_sort1_xml.expected
t/data/tv_grep_category_e_and_title_f_sort2_xml.expected
t/data/tv_grep_category_g_or_title_h_sort1_xml.expected
t/data/tv_grep_category_g_or_title_h_sort2_xml.expected
t/data/tv_grep_channel_id_channel4_com_sort1_xml.expected
t/data/tv_grep_channel_id_channel4_com_sort2_xml.expected
t/data/tv_grep_channel_name_d_sort1_xml.expected
t/data/tv_grep_channel_name_d_sort2_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_sort1_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_sort2_xml.expected
t/data/tv_grep_eval_scalar_keys_5_sort1_xml.expected
t/data/tv_grep_eval_scalar_keys_5_sort2_xml.expected
t/data/tv_grep_i_category_i_title_h_sort1_xml.expected
t/data/tv_grep_i_category_i_title_h_sort2_xml.expected
t/data/tv_grep_i_category_i_title_j_sort1_xml.expected
t/data/tv_grep_i_category_i_title_j_sort2_xml.expected
t/data/tv_grep_i_last_chance_c_sort1_xml.expected
t/data/tv_grep_i_last_chance_c_sort2_xml.expected
t/data/tv_grep_new_sort1_xml.expected
t/data/tv_grep_new_sort2_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_sort1_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_sort2_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_sort1_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_sort2_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_sort1_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_sort2_xml.expected
t/data/tv_grep_premiere_sort1_xml.expected
t/data/tv_grep_premiere_sort2_xml.expected
t/data/tv_grep_previously_shown_sort1_xml.expected
t/data/tv_grep_previously_shown_sort2_xml.expected
t/data/tv_sort_by_channel_sort1_xml.expected
t/data/tv_sort_by_channel_sort2_xml.expected
t/data/tv_sort_sort1_xml.expected
t/data/tv_sort_sort2_xml.expected
t/data/tv_to_latex_sort1_xml.expected
t/data/tv_to_latex_sort2_xml.expected
t/data/tv_to_text_sort1_xml.expected
t/data/tv_to_text_sort2_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_all_UTF8.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_amp_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_amp_xml_amp_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_amp_xml_clump_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_amp_xml_dups_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_amp_xml_empty_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_attrs_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_clump_extract_1_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_clump_extract_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_clump_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_clump_xml_amp_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_clump_xml_clump_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_clump_xml_dups_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_clump_xml_empty_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_dups_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_dups_xml_amp_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_dups_xml_clump_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_dups_xml_dups_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_dups_xml_empty_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_empty_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_empty_xml_amp_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_empty_xml_clump_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_empty_xml_dups_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_empty_xml_empty_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_intervals_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_length_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_overlap_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_simple_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_simple_xml_x_whatever_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_sort1_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_sort2_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_sort_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_test_empty_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_test_livre_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_test_sort_by_channel_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_test_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_test_xml_test_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_whitespace_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_x_whatever_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_all_UTF8.expected
t/data/tv_grep_not_channel_id_channel4_com_amp_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_amp_xml_amp_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_amp_xml_clump_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_amp_xml_dups_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_amp_xml_empty_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_attrs_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_clump_extract_1_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_clump_extract_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_clump_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_clump_xml_amp_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_clump_xml_clump_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_clump_xml_dups_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_clump_xml_empty_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_dups_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_dups_xml_amp_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_dups_xml_clump_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_dups_xml_dups_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_dups_xml_empty_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_empty_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_empty_xml_amp_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_empty_xml_clump_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_empty_xml_dups_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_empty_xml_empty_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_intervals_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_length_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_overlap_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_simple_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_simple_xml_x_whatever_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_sort1_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_sort2_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_sort_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_test_empty_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_test_livre_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_test_sort_by_channel_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_test_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_test_xml_test_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_whitespace_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_x_whatever_xml.expected
t/data/tv_grep_not_channel_name_d_all_UTF8.expected
t/data/tv_grep_not_channel_name_d_amp_xml.expected
t/data/tv_grep_not_channel_name_d_amp_xml_amp_xml.expected
t/data/tv_grep_not_channel_name_d_amp_xml_clump_xml.expected
t/data/tv_grep_not_channel_name_d_amp_xml_dups_xml.expected
t/data/tv_grep_not_channel_name_d_amp_xml_empty_xml.expected
t/data/tv_grep_not_channel_name_d_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_not_channel_name_d_attrs_xml.expected
t/data/tv_grep_not_channel_name_d_clump_extract_1_xml.expected
t/data/tv_grep_not_channel_name_d_clump_extract_xml.expected
t/data/tv_grep_not_channel_name_d_clump_xml.expected
t/data/tv_grep_not_channel_name_d_clump_xml_amp_xml.expected
t/data/tv_grep_not_channel_name_d_clump_xml_clump_xml.expected
t/data/tv_grep_not_channel_name_d_clump_xml_dups_xml.expected
t/data/tv_grep_not_channel_name_d_clump_xml_empty_xml.expected
t/data/tv_grep_not_channel_name_d_dups_xml.expected
t/data/tv_grep_not_channel_name_d_dups_xml_amp_xml.expected
t/data/tv_grep_not_channel_name_d_dups_xml_clump_xml.expected
t/data/tv_grep_not_channel_name_d_dups_xml_dups_xml.expected
t/data/tv_grep_not_channel_name_d_dups_xml_empty_xml.expected
t/data/tv_grep_not_channel_name_d_empty_xml.expected
t/data/tv_grep_not_channel_name_d_empty_xml_amp_xml.expected
t/data/tv_grep_not_channel_name_d_empty_xml_clump_xml.expected
t/data/tv_grep_not_channel_name_d_empty_xml_dups_xml.expected
t/data/tv_grep_not_channel_name_d_empty_xml_empty_xml.expected
t/data/tv_grep_not_channel_name_d_intervals_xml.expected
t/data/tv_grep_not_channel_name_d_length_xml.expected
t/data/tv_grep_not_channel_name_d_overlap_xml.expected
t/data/tv_grep_not_channel_name_d_simple_xml.expected
t/data/tv_grep_not_channel_name_d_simple_xml_x_whatever_xml.expected
t/data/tv_grep_not_channel_name_d_sort1_xml.expected
t/data/tv_grep_not_channel_name_d_sort2_xml.expected
t/data/tv_grep_not_channel_name_d_sort_xml.expected
t/data/tv_grep_not_channel_name_d_test_empty_xml.expected
t/data/tv_grep_not_channel_name_d_test_livre_xml.expected
t/data/tv_grep_not_channel_name_d_test_sort_by_channel_xml.expected
t/data/tv_grep_not_channel_name_d_test_xml.expected
t/data/tv_grep_not_channel_name_d_test_xml_test_xml.expected
t/data/tv_grep_not_channel_name_d_whitespace_xml.expected
t/data/tv_grep_not_channel_name_d_x_whatever_xml.expected
t/data/test_remove_some_overlapping.xml
t/data/tv_cat_test_remove_some_overlapping_xml.expected
t/data/tv_extractinfo_en_test_remove_some_overlapping_xml.expected
t/data/tv_grep_a_test_remove_some_overlapping_xml.expected
t/data/tv_grep_category_b_test_remove_some_overlapping_xml.expected
t/data/tv_grep_category_e_and_title_f_test_remove_some_overlapping_xml.expected
t/data/tv_grep_category_g_or_title_h_test_remove_some_overlapping_xml.expected
t/data/tv_grep_channel_id_channel4_com_test_remove_some_overlapping_xml.expected
t/data/tv_grep_channel_name_d_test_remove_some_overlapping_xml.expected
t/data/tv_grep_channel_xyz_or_channel_b_test_remove_some_overlapping_xml.expected
t/data/tv_grep_channel_xyz_or_not_channel_b_test_remove_some_overlapping_xml.expected
t/data/tv_grep_eval_scalar_keys_5_test_remove_some_overlapping_xml.expected
t/data/tv_grep_i_category_i_title_h_test_remove_some_overlapping_xml.expected
t/data/tv_grep_i_category_i_title_j_test_remove_some_overlapping_xml.expected
t/data/tv_grep_i_last_chance_c_test_remove_some_overlapping_xml.expected
t/data/tv_grep_new_test_remove_some_overlapping_xml.expected
t/data/tv_grep_not_channel_id_channel4_com_test_remove_some_overlapping_xml.expected
t/data/tv_grep_not_channel_name_d_test_remove_some_overlapping_xml.expected
t/data/tv_grep_on_after_2002_02_05_UTC_test_remove_some_overlapping_xml.expected
t/data/tv_grep_on_after_200302161330_UTC_test_remove_some_overlapping_xml.expected
t/data/tv_grep_on_before_200302161330_UTC_test_remove_some_overlapping_xml.expected
t/data/tv_grep_premiere_test_remove_some_overlapping_xml.expected
t/data/tv_grep_previously_shown_test_remove_some_overlapping_xml.expected
t/data/tv_grep_channel_id_exp_sat_all_UTF8.expected
t/data/tv_grep_channel_id_exp_sat_amp_xml.expected
t/data/tv_grep_channel_id_exp_sat_amp_xml_amp_xml.expected
t/data/tv_grep_channel_id_exp_sat_amp_xml_clump_xml.expected
t/data/tv_grep_channel_id_exp_sat_amp_xml_dups_xml.expected
t/data/tv_grep_channel_id_exp_sat_amp_xml_empty_xml.expected
t/data/tv_grep_channel_id_exp_sat_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_grep_channel_id_exp_sat_attrs_xml.expected
t/data/tv_grep_channel_id_exp_sat_clump_extract_1_xml.expected
t/data/tv_grep_channel_id_exp_sat_clump_extract_xml.expected
t/data/tv_grep_channel_id_exp_sat_clump_xml.expected
t/data/tv_grep_channel_id_exp_sat_clump_xml_amp_xml.expected
t/data/tv_grep_channel_id_exp_sat_clump_xml_clump_xml.expected
t/data/tv_grep_channel_id_exp_sat_clump_xml_dups_xml.expected
t/data/tv_grep_channel_id_exp_sat_clump_xml_empty_xml.expected
t/data/tv_grep_channel_id_exp_sat_dups_xml.expected
t/data/tv_grep_channel_id_exp_sat_dups_xml_amp_xml.expected
t/data/tv_grep_channel_id_exp_sat_dups_xml_clump_xml.expected
t/data/tv_grep_channel_id_exp_sat_dups_xml_dups_xml.expected
t/data/tv_grep_channel_id_exp_sat_dups_xml_empty_xml.expected
t/data/tv_grep_channel_id_exp_sat_empty_xml.expected
t/data/tv_grep_channel_id_exp_sat_empty_xml_amp_xml.expected
t/data/tv_grep_channel_id_exp_sat_empty_xml_clump_xml.expected
t/data/tv_grep_channel_id_exp_sat_empty_xml_dups_xml.expected
t/data/tv_grep_channel_id_exp_sat_empty_xml_empty_xml.expected
t/data/tv_grep_channel_id_exp_sat_intervals_xml.expected
t/data/tv_grep_channel_id_exp_sat_length_xml.expected
t/data/tv_grep_channel_id_exp_sat_overlap_xml.expected
t/data/tv_grep_channel_id_exp_sat_simple_xml.expected
t/data/tv_grep_channel_id_exp_sat_simple_xml_x_whatever_xml.expected
t/data/tv_grep_channel_id_exp_sat_sort1_xml.expected
t/data/tv_grep_channel_id_exp_sat_sort2_xml.expected
t/data/tv_grep_channel_id_exp_sat_sort_xml.expected
t/data/tv_grep_channel_id_exp_sat_test_empty_xml.expected
t/data/tv_grep_channel_id_exp_sat_test_livre_xml.expected
t/data/tv_grep_channel_id_exp_sat_test_remove_some_overlapping_xml.expected
t/data/tv_grep_channel_id_exp_sat_test_sort_by_channel_xml.expected
t/data/tv_grep_channel_id_exp_sat_test_xml.expected
t/data/tv_grep_channel_id_exp_sat_test_xml_test_xml.expected
t/data/tv_grep_channel_id_exp_sat_whitespace_xml.expected
t/data/tv_grep_channel_id_exp_sat_x_whatever_xml.expected
t/data/tv_remove_some_overlapping_all_UTF8.expected
t/data/tv_remove_some_overlapping_amp_xml.expected
t/data/tv_remove_some_overlapping_amp_xml_amp_xml.expected
t/data/tv_remove_some_overlapping_amp_xml_clump_xml.expected
t/data/tv_remove_some_overlapping_amp_xml_dups_xml.expected
t/data/tv_remove_some_overlapping_amp_xml_empty_xml.expected
t/data/tv_remove_some_overlapping_amp_xml_empty_xml_empty_xml_clump_xml.expected
t/data/tv_remove_some_overlapping_attrs_xml.expected
t/data/tv_remove_some_overlapping_clump_extract_1_xml.expected
t/data/tv_remove_some_overlapping_clump_extract_xml.expected
t/data/tv_remove_some_overlapping_clump_xml.expected
t/data/tv_remove_some_overlapping_clump_xml_amp_xml.expected
t/data/tv_remove_some_overlapping_clump_xml_clump_xml.expected
t/data/tv_remove_some_overlapping_clump_xml_dups_xml.expected
t/data/tv_remove_some_overlapping_clump_xml_empty_xml.expected
t/data/tv_remove_some_overlapping_dups_xml.expected
t/data/tv_remove_some_overlapping_dups_xml_amp_xml.expected
t/data/tv_remove_some_overlapping_dups_xml_clump_xml.expected
t/data/tv_remove_some_overlapping_dups_xml_dups_xml.expected
t/data/tv_remove_some_overlapping_dups_xml_empty_xml.expected
t/data/tv_remove_some_overlapping_empty_xml.expected
t/data/tv_remove_some_overlapping_empty_xml_amp_xml.expected
t/data/tv_remove_some_overlapping_empty_xml_clump_xml.expected
t/data/tv_remove_some_overlapping_empty_xml_dups_xml.expected
t/data/tv_remove_some_overlapping_empty_xml_empty_xml.expected
t/data/tv_remove_some_overlapping_intervals_xml.expected
t/data/tv_remove_some_overlapping_length_xml.expected
t/data/tv_remove_some_overlapping_overlap_xml.expected
t/data/tv_remove_some_overlapping_simple_xml.expected
t/data/tv_remove_some_overlapping_simple_xml_x_whatever_xml.expected
t/data/tv_remove_some_overlapping_sort1_xml.expected
t/data/tv_remove_some_overlapping_sort2_xml.expected
t/data/tv_remove_some_overlapping_sort_xml.expected
t/data/tv_remove_some_overlapping_test_empty_xml.expected
t/data/tv_remove_some_overlapping_test_livre_xml.expected
t/data/tv_remove_some_overlapping_test_remove_some_overlapping_xml.expected
t/data/tv_remove_some_overlapping_test_sort_by_channel_xml.expected
t/data/tv_remove_some_overlapping_test_xml.expected
t/data/tv_remove_some_overlapping_test_xml_test_xml.expected
t/data/tv_remove_some_overlapping_whitespace_xml.expected
t/data/tv_remove_some_overlapping_x_whatever_xml.expected
t/data/tv_sort_by_channel_test_remove_some_overlapping_xml.expected
t/data/tv_sort_test_remove_some_overlapping_xml.expected
t/data/tv_to_latex_test_remove_some_overlapping_xml.expected
t/data/tv_to_text_test_remove_some_overlapping_xml.expected
tools/tv_find_grabbers
tools/tv_validate_file.PL
tools/tv_validate_file.in
tools/tv_validate_grabber.PL
tools/tv_validate_grabber.in
|