forked from opening-hours/opening_hours.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.en.log
2749 lines (2581 loc) · 289 KB
/
test.en.log
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
"Time intervals" for "10:00-12:00": [1m[32mPASSED[39m[22m
"Time intervals" for "08:00-09:00; 10:00-12:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*08:00-09:00; 10:00-12:00 <--- (Separate rules detected each of which only consists of a time selector. These rules should be written as one rule by combining them using ",".)
"Time intervals" for "10:00-12:00,": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*10:00-12:00, <--- (The value ends with ",". Please either continue after "," or remove ",".)
"Time intervals" for "10:00-12:00;": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*10:00-12:00; <--- (This rule does not contain anything useful. Please remove this empty rule. Might it be possible that you are a programmer and adding a semicolon after each statement is hardwired in your muscle memory ;) ? The thing is that the semicolon in the opening_hours syntax is defined as rule separator. So for compatibility reasons you should omit this last semicolon.)
"Time intervals" for "10-12": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*10-12 <--- (Time range without minutes specified. Not very explicit! Please use this syntax instead "10:00-12:00".)
"Time intervals" for "10:00-11:00,11:00-12:00": [1m[32mPASSED[39m[22m
"Time intervals" for "10:00-12:00,10:30-11:30": [1m[32mPASSED[39m[22m
"Time intervals" for "10:00-14:00; 12:00-14:00 off": [1m[32mPASSED[39m[22m
"Time intervals" for "24/7; Mo 15:00-16:00 off": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*24/7; Mo 15:00-16:00 off <--- (You used 24/7 in a way that is probably not interpreted as "24 hours 7 days a week". For correctness you might want to use "open" or "closed" for this rule and then write your exceptions which should achieve the same goal and is more clear e.g. "open; Mo 12:00-14:00 off".)
"Time intervals" for "open; Mo 15:00-16:00 off": [1m[32mPASSED[39m[22m
"Time intervals" for "00:00-24:00; Mo 15:00-16:00 off": [1m[32mPASSED[39m[22m
"Time zero intervals (always closed)" for "off": [1m[32mPASSED[39m[22m
"Time zero intervals (always closed)" for "closed": [1m[32mPASSED[39m[22m
"Time zero intervals (always closed)" for "always closed": [1m[32mPASSED[39m[22m, [1m[33mexcept[39m[22m prettifyValue
With [1m[34mwarnings[39m[22m:
*always closed <--- (Please use notation "closed" for "always closed".)
"Time zero intervals (always closed)" for "off; closed": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*off; closed <--- (This rule which changes the default state (which is closed) for all following rules is not the first rule. The rule will overwrite all previous rules. It can be legitimate to change the default state to open for example and then only specify for which times the facility is closed.)
"Time zero intervals (always closed)" for "24/7 closed "always closed"": [1m[32mPASSED[39m[22m
"Time zero intervals (always closed)" for "24/7: closed "always closed"": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*24/7: <--- (You have used the optional symbol <separator_for_readability> in the wrong place. Please check the syntax specification to see where it could be used or remove it.)
"Time zero intervals (always closed)" for "24/7 closed: "always closed"": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*24/7 closed: <--- (You have used the optional symbol <separator_for_readability> in the wrong place. Please check the syntax specification to see where it could be used or remove it.)
"Time zero intervals (always closed)" for "24/7: closed: "always closed"": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*24/7: <--- (You have used the optional symbol <separator_for_readability> in the wrong place. Please check the syntax specification to see where it could be used or remove it.)
*24/7: closed: <--- (You have used the optional symbol <separator_for_readability> in the wrong place. Please check the syntax specification to see where it could be used or remove it.)
"Time zero intervals (always closed)" for "closed "always closed"": [1m[32mPASSED[39m[22m
"Time zero intervals (always closed)" for "off "always closed"": [1m[32mPASSED[39m[22m
"Time zero intervals (always closed)" for "00:00-24:00 closed": [1m[32mPASSED[39m[22m
"Time zero intervals (always closed)" for "24/7 closed": [1m[32mPASSED[39m[22m
"Time zero intervals (always closed), prettifyValue is OK …" for "yes": [1m[32mPASSED[39m[22m, [1m[33mexcept[39m[22m prettifyValue
"Error tolerance: dot as time separator" for "10:00-12:00": [1m[32mPASSED[39m[22m
"Error tolerance: dot as time separator" for "10.00-12.00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*10. <--- (Please use ":" as hour/minute-separator)
*10.00-12. <--- (Please use ":" as hour/minute-separator)
"Error tolerance: dot as time separator" for "10:00-14:00; 12:00-14:00 off": [1m[32mPASSED[39m[22m
"Error tolerance: dot as time separator" for "10-14; 12-14 off": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*10-14 <--- (Time range without minutes specified. Not very explicit! Please use this syntax instead "10:00-14:00".)
*10-14; 12-14 <--- (Time range without minutes specified. Not very explicit! Please use this syntax instead "12:00-14:00".)
"Error tolerance: dot as time separator" for "10.00-14.00; 12.00-14.00 off": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*10. <--- (Please use ":" as hour/minute-separator)
*10.00-14. <--- (Please use ":" as hour/minute-separator)
*10.00-14.00; 12. <--- (Please use ":" as hour/minute-separator)
*10.00-14.00; 12.00-14. <--- (Please use ":" as hour/minute-separator)
"Error tolerance: Correctly handle pm time." for "10:00-12:00,13:00-20:00": [1m[32mPASSED[39m[22m
"Error tolerance: Correctly handle pm time." for "10-12,13-20": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*10-12 <--- (Time range without minutes specified. Not very explicit! Please use this syntax instead "10:00-12:00".)
*10-12,13-20 <--- (Time range without minutes specified. Not very explicit! Please use this syntax instead "13:00-20:00".)
"Error tolerance: Correctly handle pm time." for "10am-12pm,1pm-8pm": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*10am <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*10am-12pm <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*10am-12pm,1pm <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*10am-12pm,1pm-8pm <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*10am-12pm <--- (Time range without minutes specified. Not very explicit! Please use this syntax instead "10:00-12:00".)
*10am-12pm,1pm-8pm <--- (Time range without minutes specified. Not very explicit! Please use this syntax instead "13:00-20:00".)
"Error tolerance: Correctly handle pm time." for "10:00am-12:00pm,1:00pm-8:00pm": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*10:00am <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*10:00am-12:00pm <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*10:00am-12:00pm,1:00pm <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*10:00am-12:00pm,1:00pm-8:00pm <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
"Error tolerance: Correctly handle pm time." for "10:00am-12:00pm,1.00pm-8.00pm": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*10:00am <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*10:00am-12:00pm <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*10:00am-12:00pm,1. <--- (Please use ":" as hour/minute-separator)
*10:00am-12:00pm,1.00pm <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*10:00am-12:00pm,1.00pm-8. <--- (Please use ":" as hour/minute-separator)
*10:00am-12:00pm,1.00pm-8.00pm <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
"Error tolerance: Correctly handle am/pm time." for "00:00-00:01": [1m[32mPASSED[39m[22m
"Error tolerance: Correctly handle am/pm time." for "12:00am-12:01am": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*12:00am <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*12:00am-12:01am <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
"Error tolerance: Correctly handle am/pm time." for "12:00 a.m. - 12:01am": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*12:00 a.m. <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*12:00 a.m. - 12:01am <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
"Error tolerance: Correctly handle am/pm time." for "01:00-11:00": [1m[32mPASSED[39m[22m
"Error tolerance: Correctly handle am/pm time." for "01:00am-11:00am": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*01:00am <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*01:00am-11:00am <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
"Error tolerance: Correctly handle am/pm time." for "01am-11am": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*01am <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*01am-11am <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*01am-11am <--- (Time range without minutes specified. Not very explicit! Please use this syntax instead "01:00-11:00".)
"Error tolerance: Correctly handle am/pm time." for "11:59-12:00": [1m[32mPASSED[39m[22m
"Error tolerance: Correctly handle am/pm time." for "11:59am-12:00pm": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*11:59am <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*11:59am-12:00pm <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
"Error tolerance: Correctly handle am/pm time." for "11:59a.m.-12:00 p.m.": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*11:59a.m. <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*11:59a.m.-12:00 p.m. <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
"Error tolerance: Correctly handle am/pm time." for "12:01-12:59": [1m[32mPASSED[39m[22m
"Error tolerance: Correctly handle am/pm time." for "12:01pm-12:59pm": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*12:01pm <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*12:01pm-12:59pm <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
"Error tolerance: Correctly handle am/pm time." for "12:01p.m.-12:59 p.m.": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*12:01p.m. <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*12:01p.m.-12:59 p.m. <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
"Error tolerance: Correctly handle am/pm time." for "13:00-13:01": [1m[32mPASSED[39m[22m
"Error tolerance: Correctly handle am/pm time." for "01:00pm-01:01pm": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*01:00pm <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*01:00pm-01:01pm <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
"Error tolerance: Correctly handle am/pm time." for "23:00-23:59": [1m[32mPASSED[39m[22m
"Error tolerance: Correctly handle am/pm time." for "11:00pm-11:59pm": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*11:00pm <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
*11:00pm-11:59pm <--- (Please use time format in 24 hours notation instead of the legacy 12 hours variant. If the 12 hours variant is used you might have to convert the hours to the 24 hours notation.)
"Error tolerance: Time intervals, short time" for "Mo 07:00-18:00": [1m[32mPASSED[39m[22m
"Error tolerance: Time intervals, short time" for "Montags 07:00-18:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Montags <--- (Please use the English abbreviation "Mo" for "montags".)
"Error tolerance: Time intervals, short time" for "Mo 7-18": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 7-18 <--- (Time range without minutes specified. Not very explicit! Please use this syntax instead "07:00-18:00".)
"Error tolerance: Time range" for "Mo 12:00-14:00": [1m[32mPASSED[39m[22m
"Error tolerance: Time range" for "Mo12:00-14:00": [1m[32mPASSED[39m[22m
"Error tolerance: Time range" for "Mo 12:00→14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00→ <--- (Please use notation "-" for "→".)
"Error tolerance: Time range" for "Mo 12:00–14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00– <--- (Please use notation "-" for "–". Although using "–" is typographical correct, it is not defined in the opening_hours syntax. Correct typography should be done on application level …)
"Error tolerance: Time range" for "Mo 12:00−14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00− <--- (Please use notation "-" for "−".)
"Error tolerance: Time range" for "Mo 12:00—14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00— <--- (Please use notation "-" for "—".)
"Error tolerance: Time range" for "Mo 12:00ー14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00ー <--- (Please use notation "-" for "ー".)
"Error tolerance: Time range" for "Mo 12:00=14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00= <--- (Assuming "-" for "=".)
"Error tolerance: Time range" for "Mo 12:00 to 14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00 to <--- (Please use notation "-" for "to".)
"Error tolerance: Time range" for "Mo 12:00 до 14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00 до <--- (Please use notation "-" for "до".)
"Error tolerance: Time range" for "Mo 12:00 a 14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00 a <--- (Please use notation "-" for "a".)
"Error tolerance: Time range" for "Mo 12:00 as 14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00 as <--- (Please use notation "-" for "as".)
"Error tolerance: Time range" for "Mo 12:00 á 14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00 á <--- (Please use notation "-" for "á".)
"Error tolerance: Time range" for "Mo 12:00 ás 14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00 ás <--- (Please use notation "-" for "ás".)
"Error tolerance: Time range" for "Mo 12:00 à 14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00 à <--- (Please use notation "-" for "à".)
"Error tolerance: Time range" for "Mo 12:00 às 14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00 às <--- (Please use notation "-" for "às".)
"Error tolerance: Time range" for "Mo 12:00 ate 14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00 ate <--- (Please use notation "-" for "ate".)
"Error tolerance: Time range" for "Mo 12:00 till 14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00 till <--- (Please use notation "-" for "till".)
"Error tolerance: Time range" for "Mo 12:00 til 14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00 til <--- (Please use notation "-" for "til".)
"Error tolerance: Time range" for "Mo 12:00 until 14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00 until <--- (Please use notation "-" for "until".)
"Error tolerance: Time range" for "Mo 12:00 through 14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00 through <--- (Please use notation "-" for "through".)
"Error tolerance: Time range" for "Mo 12:00~14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00~ <--- (Please use notation "-" for "~". If there is reason to suspect uncertainty consider adding a comment. Example: 12:00-14:00 "only on sunshine".)
"Error tolerance: Time range" for "Mo 12:00~14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00~ <--- (Please use notation "-" for "~". If there is reason to suspect uncertainty consider adding a comment. Example: 12:00-14:00 "only on sunshine".)
"Error tolerance: Time range" for "Mo 12:00-14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12:00-14: <--- (Please use notation ":" for ":".)
"Error tolerance: Time range" for "Mo 12°°-14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 12° <--- (Note that this is not a (superscript) zero but a degree sign which is misused as zero. A superscript zero is defined in Unicode (°) and would have been more appropriate/uniform here. But note that the use of none-ASCII digits is not allowed.)
*Mo 12°° <--- (Note that this is not a (superscript) zero but a degree sign which is misused as zero. A superscript zero is defined in Unicode (°) and would have been more appropriate/uniform here. But note that the use of none-ASCII digits is not allowed.)
*Mo 12°° <--- (Please use notation ":00" for "°°".)
"Error tolerance: Time range" for "Mo 00:30-14:09; 00:01-00:02 closed "warning at correct position?"": [1m[32mPASSED[39m[22m
"Error tolerance: Time range" for "Mo 00³°-14:09; 00:01-00:02 closed "warning at correct position?"": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 00³° <--- (Note that this is not a (superscript) zero but a degree sign which is misused as zero. A superscript zero is defined in Unicode (°) and would have been more appropriate/uniform here. But note that the use of none-ASCII digits is not allowed.)
*Mo 00³° <--- (Please use notation ":30" for "³°".)
"Error tolerance: Time range" for "Mo 00:³°-14:09; 00:01-00:02 closed "warning at correct position?"": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo 00:³° <--- (Note that this is not a (superscript) zero but a degree sign which is misused as zero. A superscript zero is defined in Unicode (°) and would have been more appropriate/uniform here. But note that the use of none-ASCII digits is not allowed.)
*Mo 00:³° <--- (Please use notation "30" for "³°".)
"Error tolerance: Time range" for "Mo °°³°-14:09; 00:01-00:02 closed "warning at correct position?"": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo ° <--- (Note that this is not a (superscript) zero but a degree sign which is misused as zero. A superscript zero is defined in Unicode (°) and would have been more appropriate/uniform here. But note that the use of none-ASCII digits is not allowed.)
*Mo °° <--- (Note that this is not a (superscript) zero but a degree sign which is misused as zero. A superscript zero is defined in Unicode (°) and would have been more appropriate/uniform here. But note that the use of none-ASCII digits is not allowed.)
*Mo °° <--- (Please use notation "00" for "°°".)
*Mo °°³° <--- (Note that this is not a (superscript) zero but a degree sign which is misused as zero. A superscript zero is defined in Unicode (°) and would have been more appropriate/uniform here. But note that the use of none-ASCII digits is not allowed.)
*Mo °°³° <--- (Please use notation ":30" for "³°".)
"Error tolerance: Time range" for "Mo ⁰⁰:³⁰-¹⁴:⁰⁹; 00:01-00:02 closed "warning at correct position?"": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo ⁰⁰ <--- (Please use notation "00" for "⁰⁰".)
*Mo ⁰⁰:³⁰ <--- (Please use notation "30" for "³⁰".)
*Mo ⁰⁰:³⁰-¹⁴ <--- (Please use notation "14" for "¹⁴".)
*Mo ⁰⁰:³⁰-¹⁴:⁰⁹ <--- (Please use notation "09" for "⁰⁹".)
"Error tolerance: Time range" for "Mo ₀₀₃₀-₁₄⁰⁹; 00:01-00:02 closed "warning at correct position?"": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo ₀₀ <--- (Please use notation "00" for "₀₀".)
*Mo ₀₀₃₀ <--- (Please use notation ":30" for "₃₀".)
*Mo ₀₀₃₀-₁₄ <--- (Please use notation "14" for "₁₄".)
*Mo ₀₀₃₀-₁₄⁰⁹ <--- (Please use notation ":09" for "⁰⁹".)
"Error tolerance: Time range" for "Mo ₀₀:₃₀-₁₄:₀₉; 00:01-00:02 closed "warning at correct position?"": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo ₀₀ <--- (Please use notation "00" for "₀₀".)
*Mo ₀₀:₃₀ <--- (Please use notation "30" for "₃₀".)
*Mo ₀₀:₃₀-₁₄ <--- (Please use notation "14" for "₁₄".)
*Mo ₀₀:₃₀-₁₄:₀₉ <--- (Please use notation "09" for "₀₉".)
"Error tolerance: Time range" for "Mo ₀:₃₀-₁₄:₀₉; 00:01-00:02 closed "warning at correct position?"": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo ₀ <--- (Please use notation "0" for "₀".)
*Mo ₀:₃₀ <--- (Please use notation "30" for "₃₀".)
*Mo ₀:₃₀-₁₄ <--- (Please use notation "14" for "₁₄".)
*Mo ₀:₃₀-₁₄:₀₉ <--- (Please use notation "09" for "₀₉".)
"Error tolerance: Time range" for "Mo ₀:₃₀-₁₄:₉; 00:01-00:02 closed "warning at correct position?"": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo ₀ <--- (Please use notation "0" for "₀".)
*Mo ₀:₃₀ <--- (Please use notation "30" for "₃₀".)
*Mo ₀:₃₀-₁₄ <--- (Please use notation "14" for "₁₄".)
*Mo ₀:₃₀-₁₄:₉ <--- (Please use notation "9" for "₉".)
"Time ranges spanning midnight" for "22:00-02:00": [1m[32mPASSED[39m[22m
"Time ranges spanning midnight" for "22:00-26:00": [1m[32mPASSED[39m[22m
"Time ranges spanning midnight" for "22-2": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*22-2 <--- (Time range without minutes specified. Not very explicit! Please use this syntax instead "22:00-02:00".)
"Time ranges spanning midnight" for "22:00-26:00": [1m[32mPASSED[39m[22m
"Time ranges spanning midnight" for "22-26": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*22-26 <--- (Time range without minutes specified. Not very explicit! Please use this syntax instead "22:00-26:00".)
"Time ranges spanning midnight" for "We 22:00-22:00": [1m[32mPASSED[39m[22m
"Time ranges spanning midnight" for "We22:00-22:00": [1m[32mPASSED[39m[22m
"Time ranges spanning midnight with date overwriting" for "22:00-02:00; Tu 12:00-14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*22:00-02:00; Tu 12:00-14:00 <--- (This rule overwrites parts of the previous rule. This happens because normal rules apply to the whole day and overwrite any definition made by previous rules. You can make this rule an additional rule by using a "," instead of the normal ";" to separate the rules. Note that the overwriting can also be desirable in which case you can ignore this warning.)
"Time ranges spanning midnight with date overwriting" for "22:00-02:00; Tu12:00-14:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*22:00-02:00; Tu12:00-14:00 <--- (This rule overwrites parts of the previous rule. This happens because normal rules apply to the whole day and overwrite any definition made by previous rules. You can make this rule an additional rule by using a "," instead of the normal ";" to separate the rules. Note that the overwriting can also be desirable in which case you can ignore this warning.)
"Time ranges spanning midnight with date overwriting (complex real world example)" for "Su-Tu 11:00-01:00, We-Th 11:00-03:00, Fr 11:00-06:00, Sa 11:00-07:00": [1m[32mPASSED[39m[22m
"Time ranges spanning midnight with date overwriting (complex real world example)" for "Su-Tu 11:00-01:00, We-Th11:00-03:00, Fr 11:00-06:00, Sa 11:00-07:00": [1m[32mPASSED[39m[22m
"Time ranges spanning midnight (maximum supported)" for "Tu 23:59-48:00": [1m[32mPASSED[39m[22m
"Time ranges spanning midnight with open ened (maximum supported)" for "Tu 23:59-40:00+": [1m[32mPASSED[39m[22m
"Open end" for "07:00+ open "visit there website to know if they did already close"": [1m[32mPASSED[39m[22m
"Open end" for "07:00+ unknown "visit there website to know if they did already close"": [1m[32mPASSED[39m[22m
"Open end" for "17:00+": [1m[32mPASSED[39m[22m
"Open end" for "17:00-late": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*17:00-late <--- (Assuming "+" (open end time) for "-late". Example: "12:00+".)
"Open end" for "17:00 til late": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*17:00 til late <--- (Assuming "+" (open end time) for "til late". Example: "12:00+".)
"Open end" for "17:00 till late": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*17:00 till late <--- (Assuming "+" (open end time) for "till late". Example: "12:00+".)
"Open end" for "17:00 bis Open End": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*17:00 bis Open End <--- (Assuming "+" (open end time) for "bis open end". Example: "12:00+".)
"Open end" for "17:00-open end": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*17:00-open end <--- (Assuming "+" (open end time) for "-open end". Example: "12:00+".)
"Open end" for "17:00-openend": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*17:00-openend <--- (Assuming "+" (open end time) for "-openend". Example: "12:00+".)
"Open end" for "17:00+; 15:00-16:00 off": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*17:00+; 15:00-16:00 off <--- (This rule overwrites parts of the previous rule. This happens because normal rules apply to the whole day and overwrite any definition made by previous rules. You can make this rule an additional rule by using a "," instead of the normal ";" to separate the rules. Note that the overwriting can also be desirable in which case you can ignore this warning.)
"Open end" for "15:00-16:00 off; 17:00+": [1m[32mPASSED[39m[22m
"Open end, variable time" for "sunrise+": [1m[32mPASSED[39m[22m
"Open end, variable time" for "(sunrise+01:00)+": [1m[32mPASSED[39m[22m
"Open end" for "17:00+ off": [1m[32mPASSED[39m[22m
"Open end" for "17:00+off": [1m[32mPASSED[39m[22m
"Open end" for "17:00-19:00 off": [1m[32mPASSED[39m[22m
"Open end" for "07:00+,12:00-16:00": [1m[32mPASSED[39m[22m
"Open end" for "07:00+,12:00-13:00,13:00-16:00": [1m[32mPASSED[39m[22m
"Open end" for "07:00+,12:00-16:00; 16:00-24:00 closed "needed because of open end"": [1m[32mPASSED[39m[22m
"Open end" for "05:00-06:00,06:45-07:00+,13:00-16:00": [1m[32mPASSED[39m[22m
"Open end" for "06:45-07:00+,05:00-06:00,13:00-16:00": [1m[32mPASSED[39m[22m
"Open end" for "06:45-07:00+,05:00-06:00,13:00-14:00,14:00-16:00": [1m[32mPASSED[39m[22m
"Open end" for "17:00+,13:00-02:00; 02:00-03:00 closed "needed because of open end"": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*17:00+,13:00-02:00; 02:00-03:00 closed "needed because of open end" <--- (This rule overwrites parts of the previous rule. This happens because normal rules apply to the whole day and overwrite any definition made by previous rules. You can make this rule an additional rule by using a "," instead of the normal ";" to separate the rules. Note that the overwriting can also be desirable in which case you can ignore this warning.)
"Open end" for "17:00+,13:00-02:00; 02:00-03:00 closed "needed because of open end"": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*17:00+,13:00-02:00; 02:00-03:00 closed "needed because of open end" <--- (This rule overwrites parts of the previous rule. This happens because normal rules apply to the whole day and overwrite any definition made by previous rules. You can make this rule an additional rule by using a "," instead of the normal ";" to separate the rules. Note that the overwriting can also be desirable in which case you can ignore this warning.)
"Open end" for "13:00-17:00+": [1m[32mPASSED[39m[22m
"Open end" for "13:00-17:00,17:00+": [1m[32mPASSED[39m[22m
"Open end" for "13:00-02:00,17:00+": [1m[32mPASSED[39m[22m
"Open end" for "13:00-17:00 open, 17:00+": [1m[32mPASSED[39m[22m
"Fixed time followed by open end" for "14:00-17:00+": [1m[32mPASSED[39m[22m
"Fixed time followed by open end, wrapping over midnight" for "Mo 22:00-04:00+": [1m[32mPASSED[39m[22m
"Fixed time followed by open end, wrapping over midnight" for "Mo 22:00-28:00+": [1m[32mPASSED[39m[22m
"variable time range followed by open end" for "14:00-sunset+": [1m[32mPASSED[39m[22m
"variable time range followed by open end" for "sunrise-14:00+": [1m[32mPASSED[39m[22m
"variable time range followed by open end" for "sunrise-14:00,14:00+": [1m[32mPASSED[39m[22m
"variable time range followed by open end" for "sunrise-14:00 open, 14:00+": [1m[32mPASSED[39m[22m
"variable time range followed by open end" for "sunrise-(sunset+01:00)+": [1m[32mPASSED[39m[22m
"variable time range followed by open end" for "sunrise-(sunset+01:00)+; Su off": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*sunrise-(sunset+01:00)+; Su off <--- (This rule overwrites parts of the previous rule. This happens because normal rules apply to the whole day and overwrite any definition made by previous rules. You can make this rule an additional rule by using a "," instead of the normal ";" to separate the rules. Note that the overwriting can also be desirable in which case you can ignore this warning.)
"variable time range followed by open end, day wrap and different states" for "Fr 11:00-24:00+ open "geöffnet täglich von 11:00 Uhr bis tief in die Nacht"": [1m[32mPASSED[39m[22m
"variable time range followed by open end, day wrap and different states" for "Fr 11:00-24:00+ open"geöffnet täglich von 11:00 Uhr bis tief in die Nacht"": [1m[32mPASSED[39m[22m
"variable time range followed by open end, day wrap and different states" for "Fr 11:00-24:00+open "geöffnet täglich von 11:00 Uhr bis tief in die Nacht"": [1m[32mPASSED[39m[22m
"variable time range followed by open end, day wrap and different states" for "Fr 11:00-24:00+open"geöffnet täglich von 11:00 Uhr bis tief in die Nacht"": [1m[32mPASSED[39m[22m
"variable time range followed by open end, day wrap and different states" for "Fr11:00-24:00+open"geöffnet täglich von 11:00 Uhr bis tief in die Nacht"": [1m[32mPASSED[39m[22m
"Variable times e.g. dawn, dusk" for "Mo dawn-dusk": [1m[32mPASSED[39m[22m
"Variable times e.g. dawn, dusk" for "dawn-dusk": [1m[32mPASSED[39m[22m
"Variable times e.g. sunrise, sunset" for "Mo sunrise-sunset": [1m[32mPASSED[39m[22m
"Variable times e.g. sunrise, sunset" for "sunrise-sunset": [1m[32mPASSED[39m[22m
"Variable times e.g. sunrise, sunset without coordinates (→ constant times)" for "sunrise-sunset": [1m[32mPASSED[39m[22m
"Variable times e.g. sunrise, sunset" for "sunrise-sunset open "Beware of sunburn!"": [1m[32mPASSED[39m[22m
"Variable times calculation without coordinates" for "(sunrise+01:02)-(sunset-00:30)": [1m[32mPASSED[39m[22m
"Variable times e.g. dawn, dusk without coordinates (→ constant times)" for "dawn-dusk": [1m[32mPASSED[39m[22m
"Variable times e.g. dawn, dusk without coordinates (→ constant times)" for "(dawn+00:00)-dusk": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*(dawn+00:00 <--- (Adding zero in a variable time calculation does not change the variable time. Please omit the calculation (example: "sunrise-(sunset-00:00)").)
"Variable times e.g. dawn, dusk without coordinates (→ constant times)" for "dawn-(dusk-00:00)": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*dawn-(dusk-00:00 <--- (Adding zero in a variable time calculation does not change the variable time. Please omit the calculation (example: "sunrise-(sunset-00:00)").)
"Variable times e.g. dawn, dusk without coordinates (→ constant times)" for "(dawn+00:00)-(dusk-00:00)": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*(dawn+00:00 <--- (Adding zero in a variable time calculation does not change the variable time. Please omit the calculation (example: "sunrise-(sunset-00:00)").)
*(dawn+00:00)-(dusk-00:00 <--- (Adding zero in a variable time calculation does not change the variable time. Please omit the calculation (example: "sunrise-(sunset-00:00)").)
"Variable times e.g. sunrise, sunset over a few days" for "sunrise-sunset": [1m[32mPASSED[39m[22m
"Variable times e.g. sunrise, sunset over a few days" for "daylight": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*daylight <--- (Please use notation "sunrise-sunset" for "daylight".)
"Variable times calculation with coordinates" for "(sunrise+02:00)-sunset": [1m[32mPASSED[39m[22m
"Variable times which moves over fix end time" for "sunrise-08:02": [1m[31mFAILED[39m[22m, bad duration(s): 1860000,0, expected 1800000,0, bad intervals:
[ '2013-01-27 08:01', '2013-01-27 08:02', false, undefined ],
[ '2013-01-28 08:00', '2013-01-28 08:02', false, undefined ],
[ '2013-01-29 07:59', '2013-01-29 08:02', false, undefined ],
[ '2013-01-30 07:58', '2013-01-30 08:02', false, undefined ],
[ '2013-01-31 07:56', '2013-01-31 08:02', false, undefined ],
[ '2013-02-01 07:55', '2013-02-01 08:02', false, undefined ],
[ '2013-02-02 07:54', '2013-02-02 08:02', false, undefined ],
expected:
[ '2013-01-28 08:00', '2013-01-28 08:02', false, undefined ],
[ '2013-01-29 07:59', '2013-01-29 08:02', false, undefined ],
[ '2013-01-30 07:58', '2013-01-30 08:02', false, undefined ],
[ '2013-01-31 07:56', '2013-01-31 08:02', false, undefined ],
[ '2013-02-01 07:55', '2013-02-01 08:02', false, undefined ],
[ '2013-02-02 07:54', '2013-02-02 08:02', false, undefined ],
"Variable times which moves over fix end time" for "sunrise-08:00": [1m[32mPASSED[39m[22m
"Variable times which moves over fix end time" for "sunrise-07:58": [1m[32mPASSED[39m[22m
"Variable times which moves over fix end time" for "sunrise-06:00": [1m[32mPASSED[39m[22m
"Variable times which moves over fix end time" for "sunrise-05:59": [1m[31mFAILED[39m[22m, bad duration(s): 158220000,0, expected 158160000,0, bad intervals:
[ '2013-01-26 00:00', '2013-01-26 05:59', false, undefined ],
[ '2013-01-26 08:01', '2013-01-27 05:59', false, undefined ],
[ '2013-01-27 08:00', '2013-01-28 00:00', false, undefined ],
expected:
[ '2013-01-26 00:00', '2013-01-26 05:59', false, undefined ],
[ '2013-01-26 08:02', '2013-01-27 05:59', false, undefined ],
[ '2013-01-27 08:00', '2013-01-28 00:00', false, undefined ],
"Variable times which moves over fix end time" for "sunrise-06:00": [1m[32mPASSED[39m[22m
"Variable times which moves over fix end time" for "sunrise-05:59": [1m[33mIGNORED[39m[22m, reason: not implemented yet
"Variable times spanning midnight" for "sunset-sunrise": [1m[32mPASSED[39m[22m
"Variable times spanning midnight" for "Mo-Su sunset-sunrise": [1m[32mPASSED[39m[22m
"Variable times spanning midnight" for "sunset-sunrise": [1m[32mPASSED[39m[22m
"Variable times spanning midnight" for "Mo-Su sunset-sunrise": [1m[32mPASSED[39m[22m
"Variable times spanning midnight" for "Mo-Su sunset-07:22": [1m[32mPASSED[39m[22m
"Variable times spanning midnight" for "Mo-Su 19:00-sunrise": [1m[32mPASSED[39m[22m
"Variable days: public holidays" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: public holidays" for "holiday": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*holiday <--- (Please use notation "PH" for "holiday".)
*holiday <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: public holidays" for "holidays": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*holidays <--- (Please use notation "PH" for "holidays".)
*holidays <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: public holidays" for "public holidays": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*public holidays <--- (Please use notation "PH" for "public holidays".)
*public holidays <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: public holidays" for "public holiday": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*public holiday <--- (Please use notation "PH" for "public holiday".)
*public holiday <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "SH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*SH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "SH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*SH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Germany school holidays" for "SH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*SH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Germany school holidays. Rheinland-Pfalz" for "SH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*SH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: public holidays" for "open; PH off": [1m[32mPASSED[39m[22m
"Variable days: public holidays (with time range)" for "PH 12:00-13:00": [1m[32mPASSED[39m[22m
"Variable days: public holidays (with time range)" for "PH 12:00-13:00 open "this comment should override the holiday name which is returned as comment if PH matches."": [1m[32mPASSED[39m[22m
"PH: Only if PH is Wednesday" for "PH We,Fr": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH We,Fr <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"PH: Only if PH is Wednesday" for "PH: We,Fr": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH: <--- (Please don’t use ":" after holiday.)
*PH: We,Fr <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"PH: Only if PH is Wednesday" for " We,Fr: PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
* We,Fr: PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
*PH <--- (The selector "holiday" was switched with the selector "weekday" for readability and compatibility reasons.)
*PH We,Fr <--- (The selector "weekday" was switched with the selector "holiday" for readability and compatibility reasons.)
"SH" for "SH Mo-Fr": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*SH Mo-Fr <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"SH" for "Schulferien Mo-Fr": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Schulferien <--- (Please use notation "SH" for "schulferien".)
*Schulferien Mo-Fr <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"SH" for "Ferien Mo-Fr": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Ferien <--- (Please use notation "SH" for "ferien".)
*Ferien Mo-Fr <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"SH" for "schoolholiday Mo-Fr": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*schoolholiday <--- (Please use notation "SH" for "schoolholiday".)
*schoolholiday Mo-Fr <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"SH" for "school holiday Mo-Fr": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*school holiday <--- (Please use notation "SH" for "school holiday".)
*school holiday Mo-Fr <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"SH" for "school holidays Mo-Fr": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*school holidays <--- (Please use notation "SH" for "school holidays".)
*school holidays Mo-Fr <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"SH" for "SH: Mo-Fr": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*SH: <--- (Please don’t use ":" after holiday.)
*SH: Mo-Fr <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"SH" for "SH on work day": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*SH on work day <--- (Assuming "Mo-Fr" for "on work day". Please avoid using "workday": https://wiki.openstreetmap.org/wiki/Talk:Key:opening_hours#need_syntax_for_holidays_and_workingdays)
*SH on work day <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"SH" for "SH on work days": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*SH on work days <--- (Assuming "Mo-Fr" for "on work days". Please avoid using "workday": https://wiki.openstreetmap.org/wiki/Talk:Key:opening_hours#need_syntax_for_holidays_and_workingdays)
*SH on work days <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"SH" for "SH Mo-Fr": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*SH Mo-Fr <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: public holidays" for "PH +1 day": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH +1 day <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: public holidays" for "day after public holiday": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*day after public holiday <--- (Please use notation "PH +1 day" for "day after public holiday".)
*day after public holiday <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: public holidays" for "one day after public holiday": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*one day after public holiday <--- (Please use notation "PH +1 day" for "one day after public holiday".)
*one day after public holiday <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: public holidays" for "PH -1 day Mo-We": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH -1 day Mo-We <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: public holidays" for "Mo-We PH -1 day": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo-We PH -1 day <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
*PH -1 day <--- (The selector "holiday" was switched with the selector "weekday" for readability and compatibility reasons.)
*PH -1 day Mo-We <--- (The selector "weekday" was switched with the selector "holiday" for readability and compatibility reasons.)
"Variable days: public holidays" for "day before public holiday Mo-We": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*day before public holiday <--- (Please use notation "PH -1 day" for "day before public holiday".)
*day before public holiday Mo-We <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: public holidays" for "one day before public holiday Mo-We": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*one day before public holiday <--- (Please use notation "PH -1 day" for "one day before public holiday".)
*one day before public holiday Mo-We <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: public holidays" for "SH PH -1 day Mo-We": [1m[31mFAILED[39m[22m, bad duration(s): 864000000,0, expected 259200000,0, bad intervals:
[ '2014-10-27 00:00', '2014-10-30 00:00', false, 'Herbstferien' ],
[ '2014-12-22 00:00', '2014-12-24 00:00', false, 'Weihnachtsferien' ],
[ '2014-12-24 00:00', '2014-12-25 00:00', false, 'Day before 1. Weihnachtstag' ],
[ '2014-12-29 00:00', '2014-12-31 00:00', false, 'Weihnachtsferien' ],
[ '2014-12-31 00:00', '2015-01-01 00:00', false, 'Day before Neujahrstag' ],
[ '2015-01-05 00:00', '2015-01-06 00:00', false, 'Day before Heilige Drei Könige' ],
expected:
[ '2014-12-24 00:00', '2014-12-25 00:00', false, 'Day before 1. Weihnachtstag' ],
[ '2014-12-31 00:00', '2015-01-01 00:00', false, 'Day before Neujahrstag' ],
[ '2015-01-05 00:00', '2015-01-06 00:00', false, 'Day before Heilige Drei Könige' ],
With [1m[34mwarnings[39m[22m:
*SH PH -1 day <--- (You have used 2 not connected holiday ranges in one rule. This is probably an error. Equal selector types can (and should) always be written in conjunction separated by comma. Example for time ranges "12:00-13:00,15:00-18:00". Example for weekdays "Mo-We,Fr". Rules can be separated by ";".)
*SH PH -1 day Mo-We <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: public holidays" for "PH -1 day SH Mo-We": [1m[31mFAILED[39m[22m, bad duration(s): 864000000,0, expected 259200000,0, bad intervals:
[ '2014-10-27 00:00', '2014-10-30 00:00', false, 'Herbstferien' ],
[ '2014-12-22 00:00', '2014-12-25 00:00', false, 'Weihnachtsferien' ],
[ '2014-12-29 00:00', '2015-01-01 00:00', false, 'Weihnachtsferien' ],
[ '2015-01-05 00:00', '2015-01-06 00:00', false, 'Weihnachtsferien' ],
expected:
[ '2014-12-24 00:00', '2014-12-25 00:00', false, 'Day before 1. Weihnachtstag' ],
[ '2014-12-31 00:00', '2015-01-01 00:00', false, 'Day before Neujahrstag' ],
[ '2015-01-05 00:00', '2015-01-06 00:00', false, 'Day before Heilige Drei Könige' ],
With [1m[34mwarnings[39m[22m:
*PH -1 day SH <--- (You have used 2 not connected holiday ranges in one rule. This is probably an error. Equal selector types can (and should) always be written in conjunction separated by comma. Example for time ranges "12:00-13:00,15:00-18:00". Example for weekdays "Mo-We,Fr". Rules can be separated by ";".)
*PH -1 day SH Mo-We <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: public holidays" for "PH -1 day": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH -1 day <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: public holidays" for "PH-1day": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH-1day <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: public holidays" for "day before public holiday": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*day before public holiday <--- (Please use notation "PH -1 day" for "day before public holiday".)
*day before public holiday <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: public holidays" for "one day before public holiday": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*one day before public holiday <--- (Please use notation "PH -1 day" for "one day before public holiday".)
*one day before public holiday <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holiday" for "open; SH off": [1m[32mPASSED[39m[22m
"SH: Only if SH is Wednesday" for "SH We": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*SH We <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"SH: Only if SH is Wednesday" for "SHWe": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*SHWe <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"SH: Only if SH is Wednesday" for "2014 SH We": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*2014 <--- (The year is in the past.)
*2014 SH We <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "SH,PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*SH,PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "2014 SH,PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*2014 <--- (The year is in the past.)
*2014 SH,PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "Jan-Feb SH,PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Jan-Feb SH,PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "Su,SH,PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Su,SH,PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "SH,Su,PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*SH,Su,PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "SH,PH,Su": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*SH,PH,Su <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "PH,Su,SH": [1m[31mFAILED[39m[22m, bad intervals:
[ '2014-01-01 00:00', '2014-01-05 00:00', false, 'Weihnachtsferien' ],
[ '2014-01-05 00:00', '2014-01-06 00:00', false, undefined ],
[ '2014-01-06 00:00', '2014-01-07 00:00', false, 'Heilige Drei Könige' ],
[ '2014-01-12 00:00', '2014-01-13 00:00', false, undefined ],
[ '2014-01-19 00:00', '2014-01-20 00:00', false, undefined ],
[ '2014-01-26 00:00', '2014-01-27 00:00', false, undefined ],
[ '2014-02-02 00:00', '2014-02-03 00:00', false, undefined ],
[ '2014-02-09 00:00', '2014-02-10 00:00', false, undefined ],
expected:
[ '2014-01-01 00:00', '2014-01-02 00:00', false, 'Neujahrstag' ],
[ '2014-01-02 00:00', '2014-01-05 00:00', false, 'Weihnachtsferien' ],
[ '2014-01-05 00:00', '2014-01-06 00:00', false, undefined ],
[ '2014-01-06 00:00', '2014-01-07 00:00', false, 'Heilige Drei Könige' ],
[ '2014-01-12 00:00', '2014-01-13 00:00', false, undefined ],
[ '2014-01-19 00:00', '2014-01-20 00:00', false, undefined ],
[ '2014-01-26 00:00', '2014-01-27 00:00', false, undefined ],
[ '2014-02-02 00:00', '2014-02-03 00:00', false, undefined ],
[ '2014-02-09 00:00', '2014-02-10 00:00', false, undefined ],
With [1m[34mwarnings[39m[22m:
*PH,Su,SH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "SH,Sonntag und an Feiertagen": [1m[32mPASSED[39m[22m, [1m[33mexcept[39m[22m prettifyValue
With [1m[34mwarnings[39m[22m:
*SH,Sonntag <--- (Please use the English abbreviation "Su" for "sonntag".)
*SH,Sonntag und <--- (Please use notation "," for "und".)
*SH,Sonntag und an Feiertagen <--- (Please use the English written "PH" for "an feiertagen".)
*SH,Sonntag und an Feiertagen <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "SH,Sonn und Feiertag": [1m[32mPASSED[39m[22m, [1m[33mexcept[39m[22m prettifyValue
With [1m[34mwarnings[39m[22m:
*SH,Sonn und Feiertag <--- (Please use notation "PH,Su" for "sonn und feiertag".)
*SH,Sonn und Feiertag <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "SH,Sonn und Feiertags": [1m[32mPASSED[39m[22m, [1m[33mexcept[39m[22m prettifyValue
With [1m[34mwarnings[39m[22m:
*SH,Sonn und Feiertags <--- (Please use notation "PH,Su" for "sonn und feiertags".)
*SH,Sonn und Feiertags <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "SH,Sonn- und Feiertags": [1m[32mPASSED[39m[22m, [1m[33mexcept[39m[22m prettifyValue
With [1m[34mwarnings[39m[22m:
*SH,Sonn- und Feiertags <--- (Please use notation "PH,Su" for "sonn- und feiertags".)
*SH,Sonn- und Feiertags <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "SH,Sonn- und Feiertage": [1m[32mPASSED[39m[22m, [1m[33mexcept[39m[22m prettifyValue
With [1m[34mwarnings[39m[22m:
*SH,Sonn- und Feiertage <--- (Please use notation "PH,Su" for "sonn- und feiertage".)
*SH,Sonn- und Feiertage <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "SH,Sonn-/Feiertag": [1m[32mPASSED[39m[22m, [1m[33mexcept[39m[22m prettifyValue
With [1m[34mwarnings[39m[22m:
*SH,Sonn-/Feiertag <--- (Please use notation "PH,Su" for "sonn-/feiertag".)
*SH,Sonn-/Feiertag <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "SH,Sonn-/Feiertags": [1m[32mPASSED[39m[22m, [1m[33mexcept[39m[22m prettifyValue
With [1m[34mwarnings[39m[22m:
*SH,Sonn-/Feiertags <--- (Please use notation "PH,Su" for "sonn-/feiertags".)
*SH,Sonn-/Feiertags <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "SH und nur Sonn-/Feiertags": [1m[32mPASSED[39m[22m, [1m[33mexcept[39m[22m prettifyValue
With [1m[34mwarnings[39m[22m:
*SH und <--- (Please use notation "," for "und".)
*SH und nur Sonn-/Feiertags <--- (Please use notation "PH,Su" for "nur sonn-/feiertags".)
*SH und nur Sonn-/Feiertags <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "SH und Sonn-/Feiertags": [1m[32mPASSED[39m[22m, [1m[33mexcept[39m[22m prettifyValue
With [1m[34mwarnings[39m[22m:
*SH und <--- (Please use notation "," for "und".)
*SH und Sonn-/Feiertags <--- (Please use notation "PH,Su" for "sonn-/feiertags".)
*SH und Sonn-/Feiertags <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: school holidays" for "SH und an Sonn- und Feiertagen": [1m[32mPASSED[39m[22m, [1m[33mexcept[39m[22m prettifyValue
With [1m[34mwarnings[39m[22m:
*SH und <--- (Please use notation "," for "und".)
*SH und an Sonn- und Feiertagen <--- (Please use notation "PH,Su" for "an sonn- und feiertagen".)
*SH und an Sonn- und Feiertagen <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Everyday including public holidays" for "Mo-Su,PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo-Su,PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Everyday including public holidays" for "PH,Mo-Su": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH,Mo-Su <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"SH(summer holiday) workaround" for "Jul-Sep SH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Jul-Sep SH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Italian public holidays" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
An error occurred during evaluation of the value "SH". Please submit a pull request: https://github.com/opening-hours/opening_hours.js. School holiday not defined for the year 2018.
"SH for Romania" for "SH": [1m[35mCRASHED[39m[22m, reason: An error occurred during evaluation of the value "SH". Please submit a pull request: https://github.com/opening-hours/opening_hours.js. School holiday not defined for the year 2018.
"SH for Austria" for "SH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*SH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian common public holidays" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Republic of Tatarstan" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Republic of Bashkortostan" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Chuvash Republic" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Sakha Republic" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Republic of Kalmykia" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Republic of Buryatia" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Republic of Karelia" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Republic of Udmurtia" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Republic of Adygea" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Republic of Dagestan" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Republic of Ingushetia" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Karachay-Cherkess Republic" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Chechen Republic" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Kabardino-Balkar Republic" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Altai Republic" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Tyva Republic" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Saratov Oblast" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Bryansk Oblast" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Russian public holidays. Komi Republic" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States common public holidays" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Alabama" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Alaska" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Arizona" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Arkansas" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. California" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Colorado" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Connecticut" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Delaware" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. District of Columbia" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Florida" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Georgia" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Guam" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Hawaii" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Idaho" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Illinois" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Indiana" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Iowa" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Kansas" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Kentucky" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Louisiana" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Maine" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Maryland" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Massachusetts" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Michigan" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Minnesota" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Mississippi" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Missouri" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Montana" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Nebraska" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Nevada" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. New Hampshire" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. New Jersey" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. New Mexico" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. New York" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. North Carolina" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Ohio" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Oklahoma" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Oregon" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Pennsylvania" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Puerto Rico" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Rhode Island" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. South Carolina" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. South Dakota" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Tennessee" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Texas" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. United States Virgin Islands" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Utah" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Vermont" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Virginia" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Washington" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. West Virginia" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Wisconsin" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: United States public holidays. Wyoming" for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Czech Republic public holidays." for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Swedish public holidays." for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Weekday in given week." for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Weekday in given week." for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Variable days: Ireland public holidays." for "PH": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*PH <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Weekdays" for "Mo,Th,Sa,Su 10:00-12:00": [1m[32mPASSED[39m[22m
"Weekdays" for "Mo,Th,weekend 10:00-12:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo,Th,weekend <--- (Please use notation "Sa,Su" for "weekend".)
"Weekdays" for "Mo & Th and weekends 10:00-12:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo & <--- (Please use notation "," for "&".)
*Mo & Th and <--- (Please use notation "," for "and".)
*Mo & Th and weekends <--- (Please use notation "Sa,Su" for "weekends".)
"Weekdays" for "Mo,Th,Sa,Su 10:00-12:00": [1m[32mPASSED[39m[22m
"Weekdays" for "Mo,Th,Sa-Su 10:00-12:00": [1m[32mPASSED[39m[22m
"Weekdays" for "Th,Sa-Mo 10:00-12:00": [1m[32mPASSED[39m[22m
"Weekdays" for "10:00-12:00; Tu-We 00:00-24:00 off; Fr 00:00-24:00 off": [1m[32mPASSED[39m[22m
"Weekdays" for "10:00-12:00; Tu-We off; Fr off": [1m[32mPASSED[39m[22m
"Omitted time" for "Mo,We": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo,We <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Omitted time" for "Mo&We": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo& <--- (Please use notation "," for "&".)
*Mo&We <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Omitted time" for "Mo and We": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo and <--- (Please use notation "," for "and".)
*Mo and We <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Omitted time" for "Mo-We; Tu off": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo-We <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Time ranges spanning midnight w/weekdays" for "We 22:00-02:00": [1m[32mPASSED[39m[22m
"Time ranges spanning midnight w/weekdays" for "We 22:00-26:00": [1m[32mPASSED[39m[22m
"Exception rules" for "Mo-Fr 10:00-16:00; We 12:00-18:00": [1m[32mPASSED[39m[22m
"Full range" for "00:00-24:00": [1m[32mPASSED[39m[22m
"Full range" for "00:00-00:00": [1m[32mPASSED[39m[22m
"Full range" for "12:00-12:00": [1m[32mPASSED[39m[22m
"Full range" for "Mo-Su 00:00-24:00": [1m[32mPASSED[39m[22m
"Full range" for "Tu-Mo 00:00-24:00": [1m[32mPASSED[39m[22m
"Full range" for "We-Tu 00:00-24:00": [1m[32mPASSED[39m[22m
"Full range" for "Th-We 00:00-24:00": [1m[32mPASSED[39m[22m
"Full range" for "Fr-Th 00:00-24:00": [1m[32mPASSED[39m[22m
"Full range" for "Sa-Fr 00:00-24:00": [1m[32mPASSED[39m[22m
"Full range" for "Su-Sa 00:00-24:00": [1m[32mPASSED[39m[22m
"Full range" for "24/7": [1m[32mPASSED[39m[22m
"Full range" for "24/7; 24/7": [1m[32mPASSED[39m[22m
"Full range" for "0-24": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*0-24 <--- (Time range without minutes specified. Not very explicit! Please use this syntax instead "00:00-24:00".)
"Full range" for "midnight-24:00": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*midnight <--- (Please use notation "00:00" for "midnight".)
"Full range" for "24 hours": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*24 hours <--- (Please use notation "00:00-24:00" for "24 hours".)
"Full range" for "open": [1m[32mPASSED[39m[22m
"Full range" for "12:00-13:00; 24/7": [1m[32mPASSED[39m[22m
"Full range" for "00:00-24:00,12:00-13:00": [1m[32mPASSED[39m[22m
"Full range" for "Mo-Fr,Sa,Su": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo-Fr,Sa,Su <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Full range" for "PH,Mo-Fr,Sa,Su": [1m[33mIGNORED[39m[22m, reason: check for week stable not implemented
"Full range" for "PH,Mo-Fr,Sa,Su,SH": [1m[33mIGNORED[39m[22m, reason: check for week stable not implemented
"Full range" for "Mo-Fr,Sa,PH,Su,SH": [1m[33mIGNORED[39m[22m, reason: check for week stable not implemented
"Full range" for "Jan-Dec": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Jan-Dec <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Full range" for "Feb-Jan": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Feb-Jan <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Full range" for "Dec-Nov": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Dec-Nov <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Full range" for "Jan 01-Dec 31": [1m[32mPASSED[39m[22m, [1m[33mexcept[39m[22m weekstable which is ignored for now
With [1m[34mwarnings[39m[22m:
*Jan 01-Dec 31 <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Full range" for "week 01-53": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*week 01-53 <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Full range" for "Mo 00:00-24:00; Tu 00:00-24:00; We 00:00-24:00; Th 00:00-24:00; Fr 00:00-24:00; Sa 00:00-24:00; Su 00:00-24:00": [1m[32mPASSED[39m[22m
"24/7 as time interval alias (don’t use 24/7 as showen here)" for "Mo,We 00:00-24:00": [1m[32mPASSED[39m[22m
"24/7 as time interval alias (don’t use 24/7 as showen here)" for "Mo,We 24/7": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo,We 24/7 <--- (You used 24/7 in a way that is probably not interpreted as "24 hours 7 days a week". For correctness you might want to use "open" or "closed" for this rule and then write your exceptions which should achieve the same goal and is more clear e.g. "open; Mo 12:00-14:00 off".)
"24/7 as time interval alias (don’t use 24/7 as showen here)" for "Mo,We open": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo,We open <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"24/7 as time interval alias (don’t use 24/7 as showen here)" for "Mo,We: open": [1m[32mPASSED[39m[22m, [1m[33mexcept[39m[22m prettifyValue
With [1m[34mwarnings[39m[22m:
*Mo,We: open <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
*Mo,We: <--- (You have used the optional symbol <separator_for_readability> in the wrong place. Please check the syntax specification to see where it could be used or remove it.)
"24/7 as time interval alias (don’t use 24/7 as showen here)" for "Mo,We": [1m[32mPASSED[39m[22m
With [1m[34mwarnings[39m[22m:
*Mo,We <--- (This rule is not very explicit because there is no time selector being used. A time selector is the part specifying hours when the object is opened, for example "10:00-19:00". Please add a time selector to this rule or use a comment to make it more explicit.)
"Constrained weekdays" for "We[4,5] 10:00-12:00": [1m[32mPASSED[39m[22m
"Constrained weekdays" for "We[4-5] 10:00-12:00": [1m[32mPASSED[39m[22m
"Constrained weekdays" for "We[4],We[5] 10:00-12:00": [1m[32mPASSED[39m[22m
"Constrained weekdays" for "We[4] 10:00-12:00; We[-1] 10:00-12:00": [1m[32mPASSED[39m[22m
"Constrained weekdays" for "We[-1,-2] 10:00-12:00": [1m[32mPASSED[39m[22m
"Calculations based on constrained weekdays" for "Sa[-1] +3 days 10:00-12:00": [1m[31mFAILED[39m[22m, bad intervals:
[ '2013-09-01 10:00', '2013-09-01 12:00', false, undefined ],