-
Notifications
You must be signed in to change notification settings - Fork 94
/
MANIFEST
1605 lines (1605 loc) · 79.3 KB
/
MANIFEST
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
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/ampparit.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.cz
grab/huro/catmap.hu
grab/huro/catmap.ro
grab/huro/catmap.sk
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/channel_ids
grab/it/test.conf
grab/it/tv_grab_it.PL
grab/it/tv_grab_it.in
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/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