-
Notifications
You must be signed in to change notification settings - Fork 0
/
mvpissues.py
11564 lines (11564 loc) · 642 KB
/
mvpissues.py
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
issues = { 'compiler':
[ { 'closed': u'2012-05-21T13:54:55Z',
'delta': 3,
'opened': u'2012-05-18T21:22:49Z',
'title': 'Installation on Mac OSX (update docs)',
'url': u'https://github.com/elm/compiler/issues/6'},
{ 'closed': u'2012-05-19T20:07:57Z',
'delta': 0,
'opened': u'2012-05-19T07:27:33Z',
'title': 'elm-lang.org is down',
'url': u'https://github.com/elm/compiler/issues/7'},
{ 'closed': u'2012-05-29T18:52:23Z',
'delta': 4,
'opened': u'2012-05-25T05:01:05Z',
'title': 'collage filled to Window.dimensions falls short',
'url': u'https://github.com/elm/compiler/issues/8'},
{ 'closed': u'2013-01-06T00:32:07Z',
'delta': 216,
'opened': u'2012-06-04T17:54:51Z',
'title': 'elm-lang.org does not work in conkeror',
'url': u'https://github.com/elm/compiler/issues/21'},
{ 'closed': u'2012-08-16T18:39:31Z',
'delta': 44,
'opened': u'2012-07-03T20:30:41Z',
'title': 'foldr1 uses the wrong item for the base case',
'url': u'https://github.com/elm/compiler/issues/22'},
{ 'closed': u'2012-08-16T18:39:07Z',
'delta': 43,
'opened': u'2012-07-04T04:59:03Z',
'title': 'Decimal values error',
'url': u'https://github.com/elm/compiler/issues/23'},
{ 'closed': u'2012-08-16T18:11:51Z',
'delta': 42,
'opened': u'2012-07-05T02:45:24Z',
'title': 'Quicksort explanation',
'url': u'https://github.com/elm/compiler/issues/24'},
{ 'closed': u'2012-10-01T22:42:24Z',
'delta': 25,
'opened': u'2012-09-06T12:10:56Z',
'title': 'elm-server',
'url': u'https://github.com/elm/compiler/issues/25'},
{ 'closed': u'2012-09-18T15:38:09Z',
'delta': 1,
'opened': u'2012-09-17T05:12:36Z',
'title': 'shakespeare dependency needs minimum version',
'url': u'https://github.com/elm/compiler/issues/26'},
{ 'closed': u'2012-10-25T08:51:26Z',
'delta': 33,
'opened': u'2012-09-22T07:22:07Z',
'title': 'elm-lang.org brought down by infinite loop in compiler',
'url': u'https://github.com/elm/compiler/issues/27'},
{ 'closed': u'2013-08-16T19:44:26Z',
'delta': 324,
'opened': u'2012-09-26T02:48:59Z',
'title': 'Module system bugs when using elm --make',
'url': u'https://github.com/elm/compiler/issues/28'},
{ 'closed': u'2012-10-25T08:50:27Z',
'delta': 23,
'opened': u'2012-10-02T01:47:13Z',
'title': 'Elm lacks String -> Number (and Number -> String) functions',
'url': u'https://github.com/elm/compiler/issues/30'},
{ 'closed': u'2013-08-15T18:42:26Z',
'delta': 315,
'opened': u'2012-10-04T23:43:58Z',
'title': 'Support custom line thickness',
'url': u'https://github.com/elm/compiler/issues/31'},
{ 'closed': u'2012-10-25T08:49:36Z',
'delta': 13,
'opened': u'2012-10-12T16:14:50Z',
'title': 'The zip code example does not compile.',
'url': u'https://github.com/elm/compiler/issues/32'},
{ 'closed': u'2012-10-31T07:58:20Z',
'delta': 1,
'opened': u'2012-10-30T06:59:49Z',
'title': 'String.fromCharCode is missing in Elm.Char.fromCode',
'url': u'https://github.com/elm/compiler/issues/33'},
{ 'closed': u'2013-08-16T19:00:02Z',
'delta': 286,
'opened': u'2012-11-03T01:27:11Z',
'title': 'cabal refuses to install elm package',
'url': u'https://github.com/elm/compiler/issues/34'},
{ 'closed': u'2012-11-04T21:59:52Z',
'delta': 0,
'opened': u'2012-11-04T20:56:27Z',
'title': "[JsonObject JsonValue] doesn't act like a list in all instances",
'url': u'https://github.com/elm/compiler/issues/35'},
{ 'closed': u'2012-11-05T02:19:31Z',
'delta': 1,
'opened': u'2012-11-04T21:06:55Z',
'title': 'implementation of fittedImage prevents animated gifs from working',
'url': u'https://github.com/elm/compiler/issues/36'},
{ 'closed': u'2012-12-02T04:27:10Z',
'delta': 18,
'opened': u'2012-11-14T13:34:46Z',
'title': 'elm-lang.org shows a blank page on IE8 and IE9',
'url': u'https://github.com/elm/compiler/issues/39'},
{ 'closed': u'2012-12-09T00:14:54Z',
'delta': 21,
'opened': u'2012-11-18T20:55:35Z',
'title': 'middleAt is not working',
'url': u'https://github.com/elm/compiler/issues/40'},
{ 'closed': u'2012-11-20T18:03:16Z',
'delta': 2,
'opened': u'2012-11-18T20:58:21Z',
'title': 'could you add a function addClass :: Element -> String -> Element',
'url': u'https://github.com/elm/compiler/issues/41'},
{ 'closed': u'2012-11-18T21:29:28Z',
'delta': 0,
'opened': u'2012-11-18T21:08:36Z',
'title': "make a new 'elementLink' function that makes a link from an element",
'url': u'https://github.com/elm/compiler/issues/42'},
{ 'closed': u'2012-12-02T04:26:37Z',
'delta': 14,
'opened': u'2012-11-18T21:19:21Z',
'title': 'some unclear documentation stuff',
'url': u'https://github.com/elm/compiler/issues/43'},
{ 'closed': u'2013-08-16T19:48:21Z',
'delta': 271,
'opened': u'2012-11-18T22:05:41Z',
'title': 'hover signals / position signals',
'url': u'https://github.com/elm/compiler/issues/44'},
{ 'closed': u'2013-08-16T19:06:28Z',
'delta': 271,
'opened': u'2012-11-18T22:25:22Z',
'title': 'background properties of elements, beside color',
'url': u'https://github.com/elm/compiler/issues/45'},
{ 'closed': u'2012-11-18T23:01:58Z',
'delta': 0,
'opened': u'2012-11-18T22:34:59Z',
'title': 'arbitrary element to become a buttons (that can trigger signals)',
'url': u'https://github.com/elm/compiler/issues/46'},
{ 'closed': u'2012-12-09T00:14:25Z',
'delta': 16,
'opened': u'2012-11-23T13:23:33Z',
'title': '"import Automaton (init\')" breaks',
'url': u'https://github.com/elm/compiler/issues/47'},
{ 'closed': u'2012-11-24T20:50:52Z',
'delta': 0,
'opened': u'2012-11-24T13:39:11Z',
'title': 'request: automaton improvements',
'url': u'https://github.com/elm/compiler/issues/48'},
{ 'closed': u'2012-11-28T07:05:09Z',
'delta': 2,
'opened': u'2012-11-26T20:49:45Z',
'title': 'elm fails to compile Pong',
'url': u'https://github.com/elm/compiler/issues/50'},
{ 'closed': u'2013-08-16T19:07:47Z',
'delta': 262,
'opened': u'2012-11-27T06:16:27Z',
'title': "combo box don't fit their inner contents on some browers",
'url': u'https://github.com/elm/compiler/issues/51'},
{ 'closed': u'2012-12-02T04:02:24Z',
'delta': 1,
'opened': u'2012-12-01T13:56:28Z',
'title': 'main = plainText "Vid\\\xc3\xa9os" bug',
'url': u'https://github.com/elm/compiler/issues/52'},
{ 'closed': u'2012-12-02T04:00:43Z',
'delta': 1,
'opened': u'2012-12-01T14:00:46Z',
'title': '[markdown|test|] is different thant plainText "test" (a newline in the former before content)',
'url': u'https://github.com/elm/compiler/issues/53'},
{ 'closed': u'2012-12-02T03:58:40Z',
'delta': 1,
'opened': u'2012-12-01T14:16:18Z',
'title': 'toForm is not documented (and a bit illogical I think)',
'url': u'https://github.com/elm/compiler/issues/54'},
{ 'closed': u'2012-12-09T00:14:03Z',
'delta': 8,
'opened': u'2012-12-01T20:54:31Z',
'title': '[cabal hell] Elm is incompatible with current Yesod version',
'url': u'https://github.com/elm/compiler/issues/55'},
{ 'closed': u'2013-05-21T21:25:56Z',
'delta': 170,
'opened': u'2012-12-02T09:12:37Z',
'title': 'bug with texFields ',
'url': u'https://github.com/elm/compiler/issues/56'},
{ 'closed': u'2012-12-11T21:16:11Z',
'delta': 7,
'opened': u'2012-12-04T18:41:56Z',
'title': 'Parse error with function composition operator.',
'url': u'https://github.com/elm/compiler/issues/57'},
{ 'closed': u'2012-12-08T03:34:32Z',
'delta': 3,
'opened': u'2012-12-05T18:02:19Z',
'title': 'Where is the online compiler/REPL',
'url': u'https://github.com/elm/compiler/issues/58'},
{ 'closed': u'2013-08-15T18:43:29Z',
'delta': 253,
'opened': u'2012-12-05T22:14:26Z',
'title': 'Parse error with unary (-) operator.',
'url': u'https://github.com/elm/compiler/issues/59'},
{ 'closed': u'2012-12-09T20:20:14Z',
'delta': 0,
'opened': u'2012-12-09T07:32:57Z',
'title': 'http://elm-lang.org/misc/Pong.html gives a Server error: public//misc/Pong.html: openFile: does not exist (No such file or directory)',
'url': u'https://github.com/elm/compiler/issues/60'},
{ 'closed': u'2012-12-11T05:47:01Z',
'delta': 1,
'opened': u'2012-12-10T09:05:30Z',
'title': 'readInt and readFloat broken in Elm 0.6',
'url': u'https://github.com/elm/compiler/issues/61'},
{ 'closed': u'2013-01-06T00:31:31Z',
'delta': 26,
'opened': u'2012-12-11T04:26:51Z',
'title': 'Hello world example having an error with IE7',
'url': u'https://github.com/elm/compiler/issues/62'},
{ 'closed': u'2013-01-06T00:30:58Z',
'delta': 26,
'opened': u'2012-12-11T06:07:09Z',
'title': 'License Type?',
'url': u'https://github.com/elm/compiler/issues/63'},
{ 'closed': u'2012-12-12T05:59:12Z',
'delta': 1,
'opened': u'2012-12-11T07:49:45Z',
'title': 'Elm 0.6.0.1 shipping with 0.6 runtime',
'url': u'https://github.com/elm/compiler/issues/64'},
{ 'closed': u'2013-02-03T09:36:21Z',
'delta': 54,
'opened': u'2012-12-11T22:08:59Z',
'title': 'Installing Elm on Fedora 17',
'url': u'https://github.com/elm/compiler/issues/65'},
{ 'closed': u'2013-08-15T18:43:55Z',
'delta': 247,
'opened': u'2012-12-11T22:15:14Z',
'title': 'Tuples are still incomparable.',
'url': u'https://github.com/elm/compiler/issues/66'},
{ 'closed': u'2012-12-18T14:31:29Z',
'delta': 7,
'opened': u'2012-12-11T22:32:17Z',
'title': 'Dict fromList seems to be broken.',
'url': u'https://github.com/elm/compiler/issues/67'},
{ 'closed': u'2013-05-03T22:36:05Z',
'delta': 135,
'opened': u'2012-12-19T19:33:25Z',
'title': 'Linking pandoc makes Elm "effectively" GPL',
'url': u'https://github.com/elm/compiler/issues/70'},
{ 'closed': u'2013-01-05T21:26:40Z',
'delta': 3,
'opened': u'2013-01-02T01:20:15Z',
'title': 'Random numbers',
'url': u'https://github.com/elm/compiler/issues/72'},
{ 'closed': u'2013-08-16T19:09:07Z',
'delta': 226,
'opened': u'2013-01-02T07:25:42Z',
'title': 'Easily Constructing Records',
'url': u'https://github.com/elm/compiler/issues/73'},
{ 'closed': u'2013-01-06T00:29:12Z',
'delta': 2,
'opened': u'2013-01-04T13:31:24Z',
'title': 'http://elm-lang.org/Try.html gives error || http://elm-lang.org/Try.elm gives nothing but message in the middle of the page',
'url': u'https://github.com/elm/compiler/issues/74'},
{ 'closed': u'2013-01-25T18:45:06Z',
'delta': 21,
'opened': u'2013-01-04T14:41:12Z',
'title': 'Two similar programs, Elm 0.7 compiles one of them and not the other one',
'url': u'https://github.com/elm/compiler/issues/75'},
{ 'closed': u'2013-05-21T21:20:31Z',
'delta': 131,
'opened': u'2013-01-10T10:45:29Z',
'title': 'Idiom brackets',
'url': u'https://github.com/elm/compiler/issues/76'},
{ 'closed': u'2013-08-16T19:12:56Z',
'delta': 218,
'opened': u'2013-01-10T10:54:05Z',
'title': 'Embedded quote syntax for JS FFI',
'url': u'https://github.com/elm/compiler/issues/77'},
{ 'closed': u'2013-01-25T18:44:38Z',
'delta': 4,
'opened': u'2013-01-21T14:19:51Z',
'title': "Installing Elm fails on Ubuntu (Not in scope: `Pan.defaultParserState')",
'url': u'https://github.com/elm/compiler/issues/80'},
{ 'closed': u'2013-03-15T01:48:59Z',
'delta': 44,
'opened': u'2013-01-30T02:49:55Z',
'title': 'core-elm does not always compile',
'url': u'https://github.com/elm/compiler/issues/83'},
{ 'closed': u'2013-02-02T11:53:00Z',
'delta': 1,
'opened': u'2013-02-01T14:00:10Z',
'title': 'Add SVG support',
'url': u'https://github.com/elm/compiler/issues/85'},
{ 'closed': u'2013-02-03T09:44:30Z',
'delta': 1,
'opened': u'2013-02-02T05:21:16Z',
'title': 'JSON fromString does not handle invalid input',
'url': u'https://github.com/elm/compiler/issues/87'},
{ 'closed': u'2013-05-21T21:19:37Z',
'delta': 108,
'opened': u'2013-02-02T05:28:09Z',
'title': 'Add String split to Prelude/JavaScript',
'url': u'https://github.com/elm/compiler/issues/88'},
{ 'closed': u'2013-02-05T23:10:20Z',
'delta': 0,
'opened': u'2013-02-05T00:50:32Z',
'title': 'isClickedOn',
'url': u'https://github.com/elm/compiler/issues/90'},
{ 'closed': u'2013-05-03T22:36:42Z',
'delta': 85,
'opened': u'2013-02-07T01:38:33Z',
'title': 'Set.remove bug',
'url': u'https://github.com/elm/compiler/issues/91'},
{ 'closed': u'2013-02-07T18:56:08Z',
'delta': 0,
'opened': u'2013-02-07T17:25:51Z',
'title': "builtInModules doesn't have Either",
'url': u'https://github.com/elm/compiler/issues/93'},
{ 'closed': u'2013-02-09T19:20:26Z',
'delta': 2,
'opened': u'2013-02-07T18:54:32Z',
'title': 'elm-happstack example is outdated (i.e. index.elm fails to load/compile)',
'url': u'https://github.com/elm/compiler/issues/94'},
{ 'closed': u'2013-02-09T18:46:47Z',
'delta': 0,
'opened': u'2013-02-09T09:22:21Z',
'title': 'type Either defined as a Maybe',
'url': u'https://github.com/elm/compiler/issues/96'},
{ 'closed': u'2013-02-09T21:04:42Z',
'delta': 0,
'opened': u'2013-02-09T20:00:56Z',
'title': 'A new (i.e. wrong?) compile error on previously working Elm code',
'url': u'https://github.com/elm/compiler/issues/97'},
{ 'closed': u'2013-08-07T03:45:50Z',
'delta': 178,
'opened': u'2013-02-10T22:13:43Z',
'title': 'Importing Record Type Synonyms',
'url': u'https://github.com/elm/compiler/issues/98'},
{ 'closed': u'2013-05-21T21:29:08Z',
'delta': 99,
'opened': u'2013-02-11T15:01:04Z',
'title': "ELM.exe doesn't set ERRORLEVEL on failure on Windows",
'url': u'https://github.com/elm/compiler/issues/99'},
{ 'closed': u'2013-08-15T18:44:50Z',
'delta': 185,
'opened': u'2013-02-11T16:49:10Z',
'title': 'no compiler error when assign undefined symbols to main',
'url': u'https://github.com/elm/compiler/issues/100'},
{ 'closed': u'2013-08-16T19:14:34Z',
'delta': 186,
'opened': u'2013-02-11T20:36:39Z',
'title': 'record update zeroing a field?',
'url': u'https://github.com/elm/compiler/issues/101'},
{ 'closed': u'2013-02-12T04:42:27Z',
'delta': 0,
'opened': u'2013-02-12T04:34:29Z',
'title': 'Form transformations are communitive (bad)',
'url': u'https://github.com/elm/compiler/issues/102'},
{ 'closed': u'2013-03-11T08:00:18Z',
'delta': 27,
'opened': u'2013-02-12T04:59:00Z',
'title': 'pong.elm paddles: up is down',
'url': u'https://github.com/elm/compiler/issues/103'},
{ 'closed': u'2013-03-15T01:48:25Z',
'delta': 31,
'opened': u'2013-02-12T05:06:44Z',
'title': 'Version Control Sanity for Contributors',
'url': u'https://github.com/elm/compiler/issues/104'},
{ 'closed': u'2013-02-14T10:14:11Z',
'delta': 0,
'opened': u'2013-02-14T10:07:31Z',
'title': 'No exponentiation operator (**) or method',
'url': u'https://github.com/elm/compiler/issues/106'},
{ 'closed': u'2013-02-21T22:21:26Z',
'delta': 0,
'opened': u'2013-02-21T20:58:05Z',
'title': "arrows is a record that can't be printed",
'url': u'https://github.com/elm/compiler/issues/107'},
{ 'closed': u'2013-08-16T19:18:20Z',
'delta': 168,
'opened': u'2013-03-01T14:34:11Z',
'title': 'On Win7 64-bit: (1) "compile.bat" gives error: Could not find module \'Happstack.Server.Compression\'; (2) "cabal install elm-yesod" gives error: unable to load package \'regex-pcre-builtin-0.94.4.5.8.31\'',
'url': u'https://github.com/elm/compiler/issues/108'},
{ 'closed': u'2013-08-16T19:51:45Z',
'delta': 168,
'opened': u'2013-03-01T16:25:07Z',
'title': 'On Ubuntu 12.04 (32-bit) on AWS EC2 (after fresh install of haskell-platform and yesod-platform): "cabal install elm-yesod" gives error at Language/Elm/Yesod.hs:(65,1)-(73,46)',
'url': u'https://github.com/elm/compiler/issues/109'},
{ 'closed': u'2013-03-08T01:05:59Z',
'delta': 1,
'opened': u'2013-03-07T10:05:03Z',
'title': 'Compiler error "String is not equal to String" in record instantiation',
'url': u'https://github.com/elm/compiler/issues/111'},
{ 'closed': u'2013-05-21T21:30:30Z',
'delta': 71,
'opened': u'2013-03-11T17:44:40Z',
'title': 'Record pattern in case-of pattern results in compiler runtime error',
'url': u'https://github.com/elm/compiler/issues/114'},
{ 'closed': u'2013-05-21T21:10:50Z',
'delta': 63,
'opened': u'2013-03-19T01:42:50Z',
'title': 'Clean install is looking for docs.json',
'url': u'https://github.com/elm/compiler/issues/120'},
{ 'closed': u'2013-08-07T03:44:54Z',
'delta': 141,
'opened': u'2013-03-19T01:45:47Z',
'title': 'Default html generates absolute path to elm runtime.',
'url': u'https://github.com/elm/compiler/issues/121'},
{ 'closed': u'2013-05-21T21:10:26Z',
'delta': 61,
'opened': u'2013-03-21T21:37:59Z',
'title': 'RTS List.elm: sum = L.foldl (+) 0 fails',
'url': u'https://github.com/elm/compiler/issues/123'},
{ 'closed': u'2013-03-24T04:16:34Z',
'delta': 1,
'opened': u'2013-03-23T14:59:31Z',
'title': 'Compile to single file',
'url': u'https://github.com/elm/compiler/issues/126'},
{ 'closed': u'2013-08-16T19:20:36Z',
'delta': 135,
'opened': u'2013-04-03T22:31:49Z',
'title': "Runtime says that a pattern match is non-exhaustive: that's not possible.",
'url': u'https://github.com/elm/compiler/issues/136'},
{ 'closed': u'2013-08-17T19:54:06Z',
'delta': 128,
'opened': u'2013-04-11T01:17:16Z',
'title': '`elm -s --output-directory` generates incorrect relative script src link in html',
'url': u'https://github.com/elm/compiler/issues/137'},
{ 'closed': u'2013-05-21T21:08:40Z',
'delta': 40,
'opened': u'2013-04-11T18:20:40Z',
'title': 'strange error with let expression',
'url': u'https://github.com/elm/compiler/issues/138'},
{ 'closed': u'2013-05-03T22:34:00Z',
'delta': 18,
'opened': u'2013-04-15T16:10:00Z',
'title': 'switchers',
'url': u'https://github.com/elm/compiler/issues/139'},
{ 'closed': u'2013-05-04T03:01:09Z',
'delta': 11,
'opened': u'2013-04-23T01:05:16Z',
'title': 'Pong game broken',
'url': u'https://github.com/elm/compiler/issues/141'},
{ 'closed': u'2013-05-04T02:55:18Z',
'delta': 1,
'opened': u'2013-05-03T06:31:09Z',
'title': 'Order of definitions matters for signals. Is this intended?',
'url': u'https://github.com/elm/compiler/issues/144'},
{ 'closed': u'2013-05-03T22:40:08Z',
'delta': 0,
'opened': u'2013-05-03T06:38:36Z',
'title': 'Unhelpful error message',
'url': u'https://github.com/elm/compiler/issues/145'},
{ 'closed': u'2013-08-08T23:12:44Z',
'delta': 96,
'opened': u'2013-05-04T18:43:03Z',
'title': 'Definitions should be order agnostic',
'url': u'https://github.com/elm/compiler/issues/146'},
{ 'closed': u'2013-05-05T00:30:31Z',
'delta': 1,
'opened': u'2013-05-04T18:49:44Z',
'title': 'Request: add list comprehensions',
'url': u'https://github.com/elm/compiler/issues/147'},
{ 'closed': u'2013-05-21T21:04:46Z',
'delta': 15,
'opened': u'2013-05-06T03:18:55Z',
'title': 'Int/Float is not part of Number supertype',
'url': u'https://github.com/elm/compiler/issues/148'},
{ 'closed': u'2013-05-10T18:28:53Z',
'delta': 0,
'opened': u'2013-05-10T04:51:16Z',
'title': 'Elm install woes with Cabal -- language-javascript-0.5.7 dependency',
'url': u'https://github.com/elm/compiler/issues/150'},
{ 'closed': u'2013-08-16T19:26:01Z',
'delta': 92,
'opened': u'2013-05-16T04:53:17Z',
'title': "Dev branch: docs.json isn't being built when running cabal install on Windows XP",
'url': u'https://github.com/elm/compiler/issues/159'},
{ 'closed': u'2013-09-22T15:11:41Z',
'delta': 124,
'opened': u'2013-05-21T21:03:08Z',
'title': 'Bug in Dict/Set library',
'url': u'https://github.com/elm/compiler/issues/160'},
{ 'closed': u'2013-05-28T14:03:51Z',
'delta': 2,
'opened': u'2013-05-26T17:22:23Z',
'title': 'Let declaration order messed up. Result: "Uncaught TypeError: undefined is not a function"',
'url': u'https://github.com/elm/compiler/issues/162'},
{ 'closed': u'2013-08-16T19:27:06Z',
'delta': 70,
'opened': u'2013-06-07T20:23:35Z',
'title': 'Javascript error on invalid Elm code',
'url': u'https://github.com/elm/compiler/issues/168'},
{ 'closed': u'2013-08-16T19:28:57Z',
'delta': 69,
'opened': u'2013-06-08T22:19:22Z',
'title': 'Multiline strings and Markdown function',
'url': u'https://github.com/elm/compiler/issues/169'},
{ 'closed': u'2013-06-10T12:35:24Z',
'delta': 0,
'opened': u'2013-06-10T05:32:10Z',
'title': 'build failure with current master (776ef7c)',
'url': u'https://github.com/elm/compiler/issues/172'},
{ 'closed': u'2013-06-15T18:30:52Z',
'delta': 0,
'opened': u'2013-06-15T16:11:56Z',
'title': 'poor performance parsing JSON',
'url': u'https://github.com/elm/compiler/issues/174'},
{ 'closed': u'2013-08-08T23:11:26Z',
'delta': 49,
'opened': u'2013-06-20T04:21:06Z',
'title': 'Nil data constructor bug',
'url': u'https://github.com/elm/compiler/issues/176'},
{ 'closed': u'2013-08-16T20:05:50Z',
'delta': 55,
'opened': u'2013-06-22T22:07:31Z',
'title': 'Cannot specify file paths for the compiler',
'url': u'https://github.com/elm/compiler/issues/177'},
{ 'closed': u'2013-08-16T10:06:07Z',
'delta': 54,
'opened': u'2013-06-23T14:20:40Z',
'title': 'windows bug, compiling from source with cabal',
'url': u'https://github.com/elm/compiler/issues/178'},
{ 'closed': u'2013-06-23T14:39:42Z',
'delta': 0,
'opened': u'2013-06-23T14:32:48Z',
'title': 'Automaton library bugs + fixes',
'url': u'https://github.com/elm/compiler/issues/179'},
{ 'closed': u'2013-08-08T23:23:37Z',
'delta': 40,
'opened': u'2013-06-29T22:56:20Z',
'title': 'Bug: Order of imports affects operator definitions',
'url': u'https://github.com/elm/compiler/issues/183'},
{ 'closed': u'2013-08-16T19:41:42Z',
'delta': 47,
'opened': u'2013-06-30T22:13:02Z',
'title': 'Invalid code on case with lists',
'url': u'https://github.com/elm/compiler/issues/185'},
{ 'closed': u'2013-08-28T10:04:34Z',
'delta': 57,
'opened': u'2013-07-02T04:33:53Z',
'title': "Keyboard.lastPressed doesn't report arrow keys being pressed on some browsers",
'url': u'https://github.com/elm/compiler/issues/187'},
{ 'closed': u'2013-07-08T04:53:55Z',
'delta': 0,
'opened': u'2013-07-08T02:52:23Z',
'title': 'Using Mouse.isDown with Input.dropBox gives wrong results',
'url': u'https://github.com/elm/compiler/issues/189'},
{ 'closed': u'2013-08-08T23:05:16Z',
'delta': 28,
'opened': u'2013-07-11T10:34:27Z',
'title': "Can't define record types with more than 9 fields",
'url': u'https://github.com/elm/compiler/issues/192'},
{ 'closed': u'2013-08-12T20:12:41Z',
'delta': 30,
'opened': u'2013-07-13T10:31:16Z',
'title': 'y axis flipped for some forms',
'url': u'https://github.com/elm/compiler/issues/193'},
{ 'closed': u'2013-08-08T22:53:04Z',
'delta': 22,
'opened': u'2013-07-17T18:26:39Z',
'title': "Elm still compiles if I don't include the module name before a module function",
'url': u'https://github.com/elm/compiler/issues/195'},
{ 'closed': u'2013-08-08T22:52:06Z',
'delta': 21,
'opened': u'2013-07-18T20:15:15Z',
'title': 'Type checker fails',
'url': u'https://github.com/elm/compiler/issues/196'},
{ 'closed': u'2013-08-08T22:49:59Z',
'delta': 19,
'opened': u'2013-07-20T22:50:01Z',
'title': "Name of constructor isn't checked",
'url': u'https://github.com/elm/compiler/issues/197'},
{ 'closed': u'2013-08-07T03:44:35Z',
'delta': 6,
'opened': u'2013-08-01T02:55:45Z',
'title': 'Name of ADT constructor differs in JS object and JS case statement',
'url': u'https://github.com/elm/compiler/issues/199'},
{ 'closed': u'2013-08-06T12:20:22Z',
'delta': 1,
'opened': u'2013-08-05T17:45:55Z',
'title': 'Compiler fails in Windows 7',
'url': u'https://github.com/elm/compiler/issues/200'},
{ 'closed': u'2013-08-07T09:03:37Z',
'delta': 1,
'opened': u'2013-08-06T12:49:27Z',
'title': 'Wrong layout in collage with groups',
'url': u'https://github.com/elm/compiler/issues/201'},
{ 'closed': u'2013-08-07T11:13:12Z',
'delta': 1,
'opened': u'2013-08-06T13:05:52Z',
'title': 'Error when creating collage with group and checkbox',
'url': u'https://github.com/elm/compiler/issues/202'},
{ 'closed': u'2013-08-08T23:17:30Z',
'delta': 1,
'opened': u'2013-08-07T01:37:58Z',
'title': 'Extended records not unifying with their "concrete instantiations"',
'url': u'https://github.com/elm/compiler/issues/203'},
{ 'closed': u'2013-08-08T18:11:29Z',
'delta': 1,
'opened': u'2013-08-07T13:39:33Z',
'title': 'multi-line strings + windows line endings in source = javascript syntax error',
'url': u'https://github.com/elm/compiler/issues/205'},
{ 'closed': u'2013-08-22T03:01:29Z',
'delta': 12,
'opened': u'2013-08-10T06:51:35Z',
'title': "elm-server doesn't build because Language.Elm.toHtml is no longer exported",
'url': u'https://github.com/elm/compiler/issues/208'},
{ 'closed': u'2013-08-14T01:10:29Z',
'delta': 1,
'opened': u'2013-08-13T11:31:52Z',
'title': 'Runtime error with automaton',
'url': u'https://github.com/elm/compiler/issues/209'},
{ 'closed': u'2013-08-14T03:19:19Z',
'delta': 0,
'opened': u'2013-08-14T01:21:40Z',
'title': 'Unable to construct tagged record type',
'url': u'https://github.com/elm/compiler/issues/212'},
{ 'closed': u'2013-08-22T03:00:47Z',
'delta': 8,
'opened': u'2013-08-14T05:25:13Z',
'title': 'Improve the compile error for syntax error when instantiating tagged record type',
'url': u'https://github.com/elm/compiler/issues/213'},
{ 'closed': u'2013-08-26T03:27:49Z',
'delta': 12,
'opened': u'2013-08-14T05:52:20Z',
'title': 'Using JavaScript Reserved Identifiers Crashes at Runtime',
'url': u'https://github.com/elm/compiler/issues/214'},
{ 'closed': u'2013-10-14T22:23:38Z',
'delta': 61,
'opened': u'2013-08-14T08:25:48Z',
'title': 'Compiler stack overflow when defining strange recursive function',
'url': u'https://github.com/elm/compiler/issues/215'},
{ 'closed': u'2013-08-22T03:05:11Z',
'delta': 7,
'opened': u'2013-08-15T01:40:16Z',
'title': 'Multiple Keyboard inputs seem to interfere, disabling each other',
'url': u'https://github.com/elm/compiler/issues/217'},
{ 'closed': u'2013-08-22T02:54:35Z',
'delta': 5,
'opened': u'2013-08-17T13:32:19Z',
'title': 'type of main unchecked',
'url': u'https://github.com/elm/compiler/issues/219'},
{ 'closed': u'2013-08-18T20:16:09Z',
'delta': 0,
'opened': u'2013-08-18T09:35:44Z',
'title': 'Error in let..in expression when returning a tagged record type',
'url': u'https://github.com/elm/compiler/issues/221'},
{ 'closed': u'2013-09-01T04:35:04Z',
'delta': 11,
'opened': u'2013-08-21T20:09:19Z',
'title': 'rotate 90, 180 and 270 degress does not work',
'url': u'https://github.com/elm/compiler/issues/222'},
{ 'closed': u'2013-08-22T19:22:12Z',
'delta': 0,
'opened': u'2013-08-22T05:08:16Z',
'title': 'Implcit synonym record constructors not imported?',
'url': u'https://github.com/elm/compiler/issues/223'},
{ 'closed': u'2013-08-24T21:18:35Z',
'delta': 0,
'opened': u'2013-08-24T09:47:46Z',
'title': "--print-types doesn't work when compiler compiled successfully before",
'url': u'https://github.com/elm/compiler/issues/225'},
{ 'closed': u'2013-08-24T21:14:38Z',
'delta': 0,
'opened': u'2013-08-24T12:03:00Z',
'title': 'Javascript keywords as variable names results in faulty generated code',
'url': u'https://github.com/elm/compiler/issues/226'},
{ 'closed': u'2013-09-02T08:18:45Z',
'delta': 5,
'opened': u'2013-08-28T04:28:54Z',
'title': 'midBottom element is being drawn at the top of the window while arrow key is held down',
'url': u'https://github.com/elm/compiler/issues/230'},
{ 'closed': u'2013-09-02T08:20:17Z',
'delta': 1,
'opened': u'2013-09-01T04:20:16Z',
'title': 'midTop getting reset to middle following midBottom',
'url': u'https://github.com/elm/compiler/issues/234'},
{ 'closed': u'2013-10-14T19:06:52Z',
'delta': 43,
'opened': u'2013-09-01T15:53:02Z',
'title': 'JS Syntax Error when using Case statement',
'url': u'https://github.com/elm/compiler/issues/237'},
{ 'closed': u'2013-09-08T20:03:22Z',
'delta': 0,
'opened': u'2013-09-08T18:05:08Z',
'title': "Qualified or specified import doesn't work.",
'url': u'https://github.com/elm/compiler/issues/241'},
{ 'closed': u'2013-09-22T15:07:45Z',
'delta': 14,
'opened': u'2013-09-08T18:27:46Z',
'title': 'unsafePerformSignal',
'url': u'https://github.com/elm/compiler/issues/242'},
{ 'closed': u'2013-10-14T22:21:01Z',
'delta': 31,
'opened': u'2013-09-13T11:08:21Z',
'title': 'Stack overflow on case match with recursion',
'url': u'https://github.com/elm/compiler/issues/256'},
{ 'closed': u'2013-09-22T20:00:18Z',
'delta': 8,
'opened': u'2013-09-14T18:31:37Z',
'title': 'Weird bug with Set',
'url': u'https://github.com/elm/compiler/issues/257'},
{ 'closed': u'2013-09-17T23:36:03Z',
'delta': 0,
'opened': u'2013-09-17T05:59:56Z',
'title': "Can't Write a Function of >=10 Arguments",
'url': u'https://github.com/elm/compiler/issues/258'},
{ 'closed': u'2013-10-14T22:13:23Z',
'delta': 25,
'opened': u'2013-09-19T04:55:36Z',
'title': ' TypeError: curr is undefined @ http://localhost:3000/Static/elm-runtime.js:6027',
'url': u'https://github.com/elm/compiler/issues/260'},
{ 'closed': u'2013-09-22T14:47:51Z',
'delta': 3,
'opened': u'2013-09-19T07:31:13Z',
'title': 'Modulo 0 Causes Infinite Recursion',
'url': u'https://github.com/elm/compiler/issues/262'},
{ 'closed': u'2013-10-14T21:10:26Z',
'delta': 24,
'opened': u'2013-09-20T02:16:35Z',
'title': 'elm and elm-server have incompatible dependencies',
'url': u'https://github.com/elm/compiler/issues/265'},
{ 'closed': u'2013-10-14T22:12:00Z',
'delta': 19,
'opened': u'2013-09-25T20:53:37Z',
'title': 'collage of forms as hyperlink does not always work',
'url': u'https://github.com/elm/compiler/issues/269'},
{ 'closed': u'2013-09-28T14:18:52Z',
'delta': 1,
'opened': u'2013-09-27T19:12:40Z',
'title': 'Installing Elm on Haskell Platform 2013.2.0.0',
'url': u'https://github.com/elm/compiler/issues/270'},
{ 'closed': u'2013-10-14T22:06:50Z',
'delta': 8,
'opened': u'2013-10-06T00:22:36Z',
'title': 'Pattern matching negative numbers in case statements',
'url': u'https://github.com/elm/compiler/issues/279'},
{ 'closed': u'2013-10-14T21:39:00Z',
'delta': 8,
'opened': u'2013-10-06T13:47:35Z',
'title': 'Compiler overflows stack',
'url': u'https://github.com/elm/compiler/issues/280'},
{ 'closed': u'2013-10-14T21:25:22Z',
'delta': 7,
'opened': u'2013-10-07T19:10:05Z',
'title': 'Add Elm Todo FRP to http://todomvc.com/',
'url': u'https://github.com/elm/compiler/issues/285'},
{ 'closed': u'2013-10-09T03:13:04Z',
'delta': 2,
'opened': u'2013-10-07T23:17:34Z',
'title': 'Pattern matching on empty list',
'url': u'https://github.com/elm/compiler/issues/286'},
{ 'closed': u'2013-10-14T21:23:30Z',
'delta': 5,
'opened': u'2013-10-09T02:41:42Z',
'title': 'Typechecking tuples of lists of Floats',
'url': u'https://github.com/elm/compiler/issues/287'},
{ 'closed': u'2013-10-12T15:17:59Z',
'delta': 2,
'opened': u'2013-10-10T01:14:59Z',
'title': 'asText split string',
'url': u'https://github.com/elm/compiler/issues/289'},
{ 'closed': u'2013-10-14T02:56:54Z',
'delta': 1,
'opened': u'2013-10-13T20:18:56Z',
'title': 'Mouse.position reports incorrect values in embedded widget',
'url': u'https://github.com/elm/compiler/issues/291'},
{ 'closed': u'2013-10-15T15:41:55Z',
'delta': 0,
'opened': u'2013-10-15T14:30:03Z',
'title': 'Uncaught ReferenceError: Order is not defined ',
'url': u'https://github.com/elm/compiler/issues/296'},
{ 'closed': u'2013-10-19T14:39:25Z',
'delta': 1,
'opened': u'2013-10-18T20:49:14Z',
'title': 'Non-type arguments to datatype value constructors',
'url': u'https://github.com/elm/compiler/issues/302'}],
'elixir': [ { 'closed': u'2011-02-18T21:03:27Z',
'delta': 0,
'opened': u'2011-02-18T15:28:56Z',
'title': 'If-statement in body causes warning message',
'url': u'https://github.com/elixir-lang/elixir/issues/1'},
{ 'closed': u'2011-02-20T08:36:48Z',
'delta': 1,
'opened': u'2011-02-19T15:41:43Z',
'title': '`make test` failed',
'url': u'https://github.com/elixir-lang/elixir/issues/2'},
{ 'closed': u'2011-02-28T18:04:34Z',
'delta': 0,
'opened': u'2011-02-28T17:46:58Z',
'title': 'Empty rescue block causes compile error',
'url': u'https://github.com/elixir-lang/elixir/issues/4'},
{ 'closed': u'2011-03-19T09:40:24Z',
'delta': 1,
'opened': u'2011-03-18T20:47:28Z',
'title': 'named args',
'url': u'https://github.com/elixir-lang/elixir/issues/14'},
{ 'closed': u'2011-03-23T09:37:58Z',
'delta': 0,
'opened': u'2011-03-23T09:36:15Z',
'title': 'make test failure',
'url': u'https://github.com/elixir-lang/elixir/issues/15'},
{ 'closed': u'2011-03-26T17:35:11Z',
'delta': 0,
'opened': u'2011-03-26T17:28:16Z',
'title': 'binary crash',
'url': u'https://github.com/elixir-lang/elixir/issues/17'},
{ 'closed': u'2011-04-12T08:58:11Z',
'delta': 0,
'opened': u'2011-04-12T08:49:48Z',
'title': 'Build fails',
'url': u'https://github.com/elixir-lang/elixir/issues/20'},
{ 'closed': u'2011-04-14T07:08:54Z',
'delta': 2,
'opened': u'2011-04-12T22:21:01Z',
'title': 'Test fails',
'url': u'https://github.com/elixir-lang/elixir/issues/21'},
{ 'closed': u'2011-05-25T08:03:00Z',
'delta': 9,
'opened': u'2011-05-16T18:34:11Z',
'title': 'File.read() output not safe for binary data in iex',
'url': u'https://github.com/elixir-lang/elixir/issues/23'},
{ 'closed': u'2011-06-18T12:50:00Z',
'delta': 17,
'opened': u'2011-06-01T23:11:47Z',
'title': 'make test fails with erlang R14B03',
'url': u'https://github.com/elixir-lang/elixir/issues/26'},
{ 'closed': u'2011-06-08T13:16:52Z',
'delta': 4,
'opened': u'2011-06-04T15:18:53Z',
'title': 'Chained list accessing fails to parse',
'url': u'https://github.com/elixir-lang/elixir/issues/28'},
{ 'closed': u'2011-12-22T06:12:03Z',
'delta': 201,
'opened': u'2011-06-04T16:49:56Z',
'title': "Tuple#[] and List#[] return 'nomethod when wrong argument type is given",
'url': u'https://github.com/elixir-lang/elixir/issues/29'},
{ 'closed': u'2011-06-29T11:09:45Z',
'delta': 0,
'opened': u'2011-06-29T07:55:05Z',
'title': 'cannot bind h to list head in iex',
'url': u'https://github.com/elixir-lang/elixir/issues/34'},
{ 'closed': u'2011-12-22T06:12:03Z',
'delta': 174,
'opened': u'2011-07-01T11:42:31Z',
'title': 'Multiline string interpolation does not work',
'url': u'https://github.com/elixir-lang/elixir/issues/35'},
{ 'closed': u'2011-09-13T14:19:14Z',
'delta': 0,
'opened': u'2011-09-13T14:14:11Z',
'title': 'Too much typing!!!',
'url': u'https://github.com/elixir-lang/elixir/issues/46'},
{ 'closed': u'2011-12-22T06:12:23Z',
'delta': 100,
'opened': u'2011-09-13T14:45:33Z',
'title': 'How reloading can work?',
'url': u'https://github.com/elixir-lang/elixir/issues/47'},
{ 'closed': u'2011-12-22T06:12:03Z',
'delta': 96,
'opened': u'2011-09-17T02:30:28Z',
'title': "exString::Behaviour:to_list doesn't exists",
'url': u'https://github.com/elixir-lang/elixir/issues/48'},
{ 'closed': u'2011-12-26T18:04:04Z',
'delta': 2,
'opened': u'2011-12-24T14:13:18Z',
'title': 'Rename namespace to module',
'url': u'https://github.com/elixir-lang/elixir/issues/56'},
{ 'closed': u'2011-12-26T08:49:55Z',
'delta': 2,
'opened': u'2011-12-24T14:30:15Z',
'title': 'Get rid of warnings',
'url': u'https://github.com/elixir-lang/elixir/issues/57'},
{ 'closed': u'2011-12-29T12:25:40Z',
'delta': 5,
'opened': u'2011-12-24T14:30:37Z',
'title': 'Re-implement REPL (aka IEX)',
'url': u'https://github.com/elixir-lang/elixir/issues/58'},
{ 'closed': u'2011-12-29T11:42:50Z',
'delta': 5,
'opened': u'2011-12-24T14:30:50Z',
'title': 'Re-implement ExUnit',
'url': u'https://github.com/elixir-lang/elixir/issues/59'},
{ 'closed': u'2012-03-27T08:17:38Z',
'delta': 92,
'opened': u'2011-12-26T08:49:45Z',
'title': 'Discuss and create an API for string modifiers, example %r()',
'url': u'https://github.com/elixir-lang/elixir/issues/60'},
{ 'closed': u'2012-01-02T12:59:34Z',
'delta': 7,
'opened': u'2011-12-26T08:51:59Z',
'title': 'Define elem/setelem as macros',
'url': u'https://github.com/elixir-lang/elixir/issues/61'},
{ 'closed': u'2011-12-30T20:25:19Z',
'delta': 4,
'opened': u'2011-12-26T08:52:46Z',
'title': 'Automatically import ordered dicts methods into main',
'url': u'https://github.com/elixir-lang/elixir/issues/62'},
{ 'closed': u'2011-12-27T11:54:56Z',
'delta': 1,
'opened': u'2011-12-26T08:53:05Z',
'title': 'Implement defrecord',
'url': u'https://github.com/elixir-lang/elixir/issues/63'},
{ 'closed': u'2011-12-31T19:40:18Z',
'delta': 5,
'opened': u'2011-12-26T08:53:16Z',
'title': 'Discuss and implement defprotocol',
'url': u'https://github.com/elixir-lang/elixir/issues/64'},
{ 'closed': u'2011-12-30T20:25:19Z',
'delta': 4,
'opened': u'2011-12-26T08:54:03Z',
'title': 'Discuss and implement module directives',
'url': u'https://github.com/elixir-lang/elixir/issues/65'},
{ 'closed': u'2012-01-04T09:40:18Z',
'delta': 8,
'opened': u'2011-12-27T07:34:17Z',
'title': 'Discuss and implement bin/list comprehensions',
'url': u'https://github.com/elixir-lang/elixir/issues/67'},
{ 'closed': u'2011-12-27T19:57:39Z',
'delta': 0,
'opened': u'2011-12-27T11:09:35Z',
'title': 'Implement __FILE__ and __LINE__',
'url': u'https://github.com/elixir-lang/elixir/issues/68'},
{ 'closed': u'2011-12-29T11:42:42Z',
'delta': 1,
'opened': u'2011-12-28T21:27:42Z',
'title': 'Default args do not work on first argument followed by required arg.',
'url': u'https://github.com/elixir-lang/elixir/issues/69'},
{ 'closed': u'2012-01-07T11:43:06Z',
'delta': 9,
'opened': u'2011-12-29T08:09:13Z',
'title': 'Allow data storage in modules with a compiled callback.',
'url': u'https://github.com/elixir-lang/elixir/issues/70'},
{ 'closed': u'2012-01-18T14:16:59Z',
'delta': 20,
'opened': u'2011-12-29T11:49:58Z',
'title': 'Improve docs and coverage for List and Orddict now that we have ExUnit',
'url': u'https://github.com/elixir-lang/elixir/issues/71'},
{ 'closed': u'2012-01-05T19:54:31Z',
'delta': 7,
'opened': u'2011-12-29T12:40:54Z',
'title': 'Bring old CLI tests back',
'url': u'https://github.com/elixir-lang/elixir/issues/72'},
{ 'closed': u'2011-12-30T20:25:19Z',
'delta': 1,
'opened': u'2011-12-29T14:05:22Z',
'title': 'Macros should not be allowed as local calls',
'url': u'https://github.com/elixir-lang/elixir/issues/73'},
{ 'closed': u'2012-03-09T07:47:11Z',
'delta': 70,
'opened': u'2011-12-30T21:57:56Z',
'title': 'Implement assertions for ExUnit',
'url': u'https://github.com/elixir-lang/elixir/issues/74'},
{ 'closed': u'2012-01-07T11:47:10Z',
'delta': 6,
'opened': u'2012-01-01T07:21:04Z',
'title': 'Figure out and create enumerable protocol',
'url': u'https://github.com/elixir-lang/elixir/issues/75'},
{ 'closed': u'2012-01-01T16:22:47Z',
'delta': 0,
'opened': u'2012-01-01T07:21:19Z',
'title': 'Check if we can have anonymous loops (a-la clojure)',
'url': u'https://github.com/elixir-lang/elixir/issues/76'},
{ 'closed': u'2012-01-03T16:07:16Z',
'delta': 2,
'opened': u'2012-01-01T07:21:33Z',
'title': 'Support partial application',
'url': u'https://github.com/elixir-lang/elixir/issues/77'},
{ 'closed': u'2012-01-04T14:18:21Z',
'delta': 3,
'opened': u'2012-01-01T07:21:55Z',
'title': 'Come up with a syntax for bitstrings',
'url': u'https://github.com/elixir-lang/elixir/issues/78'},
{ 'closed': u'2012-02-08T19:47:34Z',
'delta': 38,
'opened': u'2012-01-01T07:22:23Z',
'title': 'Support an operator for binary concatenation',
'url': u'https://github.com/elixir-lang/elixir/issues/79'},
{ 'closed': u'2012-01-03T16:07:20Z',
'delta': 2,
'opened': u'2012-01-01T07:23:25Z',
'title': 'Allow fn(:foo, :bar, 3) as an API to retrieve funs',
'url': u'https://github.com/elixir-lang/elixir/issues/80'},
{ 'closed': u'2012-01-03T09:36:37Z',
'delta': 2,
'opened': u'2012-01-01T09:38:49Z',
'title': 'Raise error if local conflicts with Erlang macro',
'url': u'https://github.com/elixir-lang/elixir/issues/81'},
{ 'closed': u'2012-01-03T07:28:57Z',
'delta': 2,
'opened': u'2012-01-01T09:39:04Z',
'title': 'Refactor invalid args/scope messages',
'url': u'https://github.com/elixir-lang/elixir/issues/82'},
{ 'closed': u'2012-01-02T12:27:44Z',
'delta': 1,
'opened': u'2012-01-01T16:23:10Z',
'title': 'Bring single assignment back with ^',
'url': u'https://github.com/elixir-lang/elixir/issues/83'},
{ 'closed': u'2012-11-03T08:16:36Z',
'delta': 307,
'opened': u'2012-01-01T16:23:29Z',
'title': 'Bring shadowed variables warnings in functions back',
'url': u'https://github.com/elixir-lang/elixir/issues/84'},
{ 'closed': u'2012-01-02T12:58:58Z',
'delta': 0,
'opened': u'2012-01-02T09:35:56Z',
'title': 'Write tests for Elixir::Formatter',
'url': u'https://github.com/elixir-lang/elixir/issues/85'},
{ 'closed': u'2012-01-03T08:12:58Z',
'delta': 1,
'opened': u'2012-01-02T12:25:59Z',
'title': 'Raise an error if trying to require a normal function (not a macro)',