-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathissues.json
More file actions
1821 lines (1769 loc) · 85.2 KB
/
issues.json
File metadata and controls
1821 lines (1769 loc) · 85.2 KB
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
{
"total_count": 194,
"incomplete_results": false,
"items": [
{
"url": "https://api.github.com/repos/yaph/d3-geomap/issues/51",
"repository_url": "https://api.github.com/repos/yaph/d3-geomap",
"labels_url": "https://api.github.com/repos/yaph/d3-geomap/issues/51/labels{/name}",
"comments_url": "https://api.github.com/repos/yaph/d3-geomap/issues/51/comments",
"events_url": "https://api.github.com/repos/yaph/d3-geomap/issues/51/events",
"html_url": "https://github.com/yaph/d3-geomap/pull/51",
"id": 440900169,
"node_id": "MDExOlB1bGxSZXF1ZXN0Mjc2MzQ1Nzc3",
"number": 51,
"title": "feat: build standard d3-module for d3v4+ & update examples",
"user": {
"login": "dpraul",
"id": 931325,
"node_id": "MDQ6VXNlcjkzMTMyNQ==",
"avatar_url": "https://avatars0.githubusercontent.com/u/931325?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dpraul",
"html_url": "https://github.com/dpraul",
"followers_url": "https://api.github.com/users/dpraul/followers",
"following_url": "https://api.github.com/users/dpraul/following{/other_user}",
"gists_url": "https://api.github.com/users/dpraul/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dpraul/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dpraul/subscriptions",
"organizations_url": "https://api.github.com/users/dpraul/orgs",
"repos_url": "https://api.github.com/users/dpraul/repos",
"events_url": "https://api.github.com/users/dpraul/events{/privacy}",
"received_events_url": "https://api.github.com/users/dpraul/received_events",
"type": "User",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2019-05-06T21:22:25Z",
"updated_at": "2019-05-10T10:11:12Z",
"closed_at": null,
"author_association": "NONE",
"pull_request": {
"url": "https://api.github.com/repos/yaph/d3-geomap/pulls/51",
"html_url": "https://github.com/yaph/d3-geomap/pull/51",
"diff_url": "https://github.com/yaph/d3-geomap/pull/51.diff",
"patch_url": "https://github.com/yaph/d3-geomap/pull/51.patch"
},
"body": "With the release of version 4, `d3` moved over to a modular approach, wherein everything is a plugin that extends off the main `d3` module. In doing so, they setup [a standard approach to building `d3` modules](https://bost.ocks.org/mike/d3-plugin/). I originally recommended `webpack` for bundling source code, but the rest of the `d3` universe uses [rollup](https://rollupjs.org) with a standard configuration (example for [`d3-shape`](https://github.com/d3/d3-shape/blob/master/rollup.config.js)).\r\n\r\nSummarized, a standard d3-module for v4+ entails:\r\n - using the standard rollup config\r\n - filename outputs to `d3-geomap` (instead of `d3.geomap`)\r\n - requiring individual packages instead of d3's main package\r\n\r\nFor convenience, I've added the following:\r\n - use `rollup-plugin-babel` to transpile ES6\r\n - use `rollup-plugin-postcss` to compile sass\r\n - serve examples using `rollup-plugin-serve`\r\n - remove dependency on `d3-geo-projection` (user can load if needed - the default projection is available in `d3-geo`)\r\n - wrap CSS styles in `d3-geomap` class to not styles to global DOM, e.g. `<text>`\r\n\r\nI've made several other small changes around the edges that I am happy to explain if you're wondering why they were made.\r\n\r\nBelow are the breaking changes. Do note, the API does not need to be changed, but I think making each of the exports distinct calls really clears up usage.\r\n\r\nBREAKING CHANGES:\r\n - files outputs are now:\r\n - `dist/d3-geomap.js` and `dist/d3-geomap.min.js`\r\n - `dist/d3-geomap.css` and `dist/d3-geomap.min.css`\r\n - API is now `d3.geomap()`, `d3.choropleth()`, and `d3.colorbrewer()`\r\n - `d3-geomap` class must be added to map elements for default styling",
"score": 1.0
},
{
"url": "https://api.github.com/repos/yaph/d3-geomap/issues/49",
"repository_url": "https://api.github.com/repos/yaph/d3-geomap",
"labels_url": "https://api.github.com/repos/yaph/d3-geomap/issues/49/labels{/name}",
"comments_url": "https://api.github.com/repos/yaph/d3-geomap/issues/49/comments",
"events_url": "https://api.github.com/repos/yaph/d3-geomap/issues/49/events",
"html_url": "https://github.com/yaph/d3-geomap/issues/49",
"id": 420164634,
"node_id": "MDU6SXNzdWU0MjAxNjQ2MzQ=",
"number": 49,
"title": "No distributable provided for import/require",
"user": {
"login": "dpraul",
"id": 931325,
"node_id": "MDQ6VXNlcjkzMTMyNQ==",
"avatar_url": "https://avatars0.githubusercontent.com/u/931325?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dpraul",
"html_url": "https://github.com/dpraul",
"followers_url": "https://api.github.com/users/dpraul/followers",
"following_url": "https://api.github.com/users/dpraul/following{/other_user}",
"gists_url": "https://api.github.com/users/dpraul/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dpraul/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dpraul/subscriptions",
"organizations_url": "https://api.github.com/users/dpraul/orgs",
"repos_url": "https://api.github.com/users/dpraul/repos",
"events_url": "https://api.github.com/users/dpraul/events{/privacy}",
"received_events_url": "https://api.github.com/users/dpraul/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 92603628,
"node_id": "MDU6TGFiZWw5MjYwMzYyOA==",
"url": "https://api.github.com/repos/yaph/d3-geomap/labels/help%20wanted",
"name": "help wanted",
"color": "159818",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 6,
"created_at": "2019-03-12T19:23:50Z",
"updated_at": "2019-05-07T13:10:57Z",
"closed_at": null,
"author_association": "NONE",
"body": "Usually, a library delivered over npm provides a built version that another module can directly consume with `import` or `require`. This is usually done by pointing [`main` in `package.json`](https://docs.npmjs.com/files/package.json#main) to a file within the source bundle. If I'm understanding #44, this is the same problem they are facing - although `jsDelivr` is not a standard key in `package.json` so is not the proper solution.\r\n\r\nTo fix this, either (a) the distributable needs to be included in the source bundle uploaded to `npm`, (b) the package needs to be built by import/require instead of concatenation, or - ideally - (c) both!\r\n\r\n(a) is the easiest and requires the least restructuring, and the simplicity of this library means (b) probably isn't too far off as well. If you're looking for assistance, happy to make a PR (although it may seem drastic)",
"score": 1.0
},
{
"url": "https://api.github.com/repos/yaph/d3-geomap/issues/50",
"repository_url": "https://api.github.com/repos/yaph/d3-geomap",
"labels_url": "https://api.github.com/repos/yaph/d3-geomap/issues/50/labels{/name}",
"comments_url": "https://api.github.com/repos/yaph/d3-geomap/issues/50/comments",
"events_url": "https://api.github.com/repos/yaph/d3-geomap/issues/50/events",
"html_url": "https://github.com/yaph/d3-geomap/issues/50",
"id": 438614974,
"node_id": "MDU6SXNzdWU0Mzg2MTQ5NzQ=",
"number": 50,
"title": "RTL support for d3 geomap - choropleth",
"user": {
"login": "pavandixit93",
"id": 21095558,
"node_id": "MDQ6VXNlcjIxMDk1NTU4",
"avatar_url": "https://avatars1.githubusercontent.com/u/21095558?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/pavandixit93",
"html_url": "https://github.com/pavandixit93",
"followers_url": "https://api.github.com/users/pavandixit93/followers",
"following_url": "https://api.github.com/users/pavandixit93/following{/other_user}",
"gists_url": "https://api.github.com/users/pavandixit93/gists{/gist_id}",
"starred_url": "https://api.github.com/users/pavandixit93/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/pavandixit93/subscriptions",
"organizations_url": "https://api.github.com/users/pavandixit93/orgs",
"repos_url": "https://api.github.com/users/pavandixit93/repos",
"events_url": "https://api.github.com/users/pavandixit93/events{/privacy}",
"received_events_url": "https://api.github.com/users/pavandixit93/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 92603628,
"node_id": "MDU6TGFiZWw5MjYwMzYyOA==",
"url": "https://api.github.com/repos/yaph/d3-geomap/labels/help%20wanted",
"name": "help wanted",
"color": "159818",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2019-04-30T06:02:17Z",
"updated_at": "2019-05-04T06:36:24Z",
"closed_at": null,
"author_association": "NONE",
"body": "When i try to add dir=\"rtl\" in HTML tag, As per observation d3 geomap does not have RTL processing, Is there any RTL related config or how to add RTL support in D3 geomap library?",
"score": 1.0
},
{
"url": "https://api.github.com/repos/yaph/d3-geomap/issues/44",
"repository_url": "https://api.github.com/repos/yaph/d3-geomap",
"labels_url": "https://api.github.com/repos/yaph/d3-geomap/issues/44/labels{/name}",
"comments_url": "https://api.github.com/repos/yaph/d3-geomap/issues/44/comments",
"events_url": "https://api.github.com/repos/yaph/d3-geomap/issues/44/events",
"html_url": "https://github.com/yaph/d3-geomap/issues/44",
"id": 279903570,
"node_id": "MDU6SXNzdWUyNzk5MDM1NzA=",
"number": 44,
"title": "No default jsDelivr CDN file set",
"user": {
"login": "szafirov",
"id": 5066348,
"node_id": "MDQ6VXNlcjUwNjYzNDg=",
"avatar_url": "https://avatars2.githubusercontent.com/u/5066348?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/szafirov",
"html_url": "https://github.com/szafirov",
"followers_url": "https://api.github.com/users/szafirov/followers",
"following_url": "https://api.github.com/users/szafirov/following{/other_user}",
"gists_url": "https://api.github.com/users/szafirov/gists{/gist_id}",
"starred_url": "https://api.github.com/users/szafirov/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/szafirov/subscriptions",
"organizations_url": "https://api.github.com/users/szafirov/orgs",
"repos_url": "https://api.github.com/users/szafirov/repos",
"events_url": "https://api.github.com/users/szafirov/events{/privacy}",
"received_events_url": "https://api.github.com/users/szafirov/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 92603628,
"node_id": "MDU6TGFiZWw5MjYwMzYyOA==",
"url": "https://api.github.com/repos/yaph/d3-geomap/labels/help%20wanted",
"name": "help wanted",
"color": "159818",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 3,
"created_at": "2017-12-06T20:57:04Z",
"updated_at": "2019-05-04T06:36:23Z",
"closed_at": null,
"author_association": "NONE",
"body": "[This package](https://www.jsdelivr.com/package/npm/d3-geomap) doesn't have a [default file](https://www.jsdelivr.com/features#publishing-packages) set. You can set it via `jsdelivr`, `browser`, or `main` field in `package.json`",
"score": 1.0
},
{
"url": "https://api.github.com/repos/yaph/d3-geomap/issues/47",
"repository_url": "https://api.github.com/repos/yaph/d3-geomap",
"labels_url": "https://api.github.com/repos/yaph/d3-geomap/issues/47/labels{/name}",
"comments_url": "https://api.github.com/repos/yaph/d3-geomap/issues/47/comments",
"events_url": "https://api.github.com/repos/yaph/d3-geomap/issues/47/events",
"html_url": "https://github.com/yaph/d3-geomap/issues/47",
"id": 374534549,
"node_id": "MDU6SXNzdWUzNzQ1MzQ1NDk=",
"number": 47,
"title": "How to use this library with typescript or any other module loaders? ",
"user": {
"login": "vinayakpatil",
"id": 3096223,
"node_id": "MDQ6VXNlcjMwOTYyMjM=",
"avatar_url": "https://avatars0.githubusercontent.com/u/3096223?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/vinayakpatil",
"html_url": "https://github.com/vinayakpatil",
"followers_url": "https://api.github.com/users/vinayakpatil/followers",
"following_url": "https://api.github.com/users/vinayakpatil/following{/other_user}",
"gists_url": "https://api.github.com/users/vinayakpatil/gists{/gist_id}",
"starred_url": "https://api.github.com/users/vinayakpatil/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/vinayakpatil/subscriptions",
"organizations_url": "https://api.github.com/users/vinayakpatil/orgs",
"repos_url": "https://api.github.com/users/vinayakpatil/repos",
"events_url": "https://api.github.com/users/vinayakpatil/events{/privacy}",
"received_events_url": "https://api.github.com/users/vinayakpatil/received_events",
"type": "User",
"site_admin": false
},
"labels": [
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2018-10-26T20:22:28Z",
"updated_at": "2019-02-23T22:05:14Z",
"closed_at": "2019-02-23T22:05:14Z",
"author_association": "NONE",
"body": "Currently, its difficult to integrate this library with angular project. Neither this is compatible with module bundlers not there is a dist/build folder part of this repo. ",
"score": 1.0
},
{
"url": "https://api.github.com/repos/yaph/d3-geomap/issues/48",
"repository_url": "https://api.github.com/repos/yaph/d3-geomap",
"labels_url": "https://api.github.com/repos/yaph/d3-geomap/issues/48/labels{/name}",
"comments_url": "https://api.github.com/repos/yaph/d3-geomap/issues/48/comments",
"events_url": "https://api.github.com/repos/yaph/d3-geomap/issues/48/events",
"html_url": "https://github.com/yaph/d3-geomap/issues/48",
"id": 409232466,
"node_id": "MDU6SXNzdWU0MDkyMzI0NjY=",
"number": 48,
"title": "Custom marker support",
"user": {
"login": "vinayakpatil",
"id": 3096223,
"node_id": "MDQ6VXNlcjMwOTYyMjM=",
"avatar_url": "https://avatars0.githubusercontent.com/u/3096223?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/vinayakpatil",
"html_url": "https://github.com/vinayakpatil",
"followers_url": "https://api.github.com/users/vinayakpatil/followers",
"following_url": "https://api.github.com/users/vinayakpatil/following{/other_user}",
"gists_url": "https://api.github.com/users/vinayakpatil/gists{/gist_id}",
"starred_url": "https://api.github.com/users/vinayakpatil/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/vinayakpatil/subscriptions",
"organizations_url": "https://api.github.com/users/vinayakpatil/orgs",
"repos_url": "https://api.github.com/users/vinayakpatil/repos",
"events_url": "https://api.github.com/users/vinayakpatil/events{/privacy}",
"received_events_url": "https://api.github.com/users/vinayakpatil/received_events",
"type": "User",
"site_admin": false
},
"labels": [
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2019-02-12T10:42:43Z",
"updated_at": "2019-02-15T23:41:51Z",
"closed_at": "2019-02-15T23:41:51Z",
"author_association": "NONE",
"body": "\r\n\r\nIs there any way to visualize with custom country markers?",
"score": 1.0
},
{
"url": "https://api.github.com/repos/yaph/logya/issues/83",
"repository_url": "https://api.github.com/repos/yaph/logya",
"labels_url": "https://api.github.com/repos/yaph/logya/issues/83/labels{/name}",
"comments_url": "https://api.github.com/repos/yaph/logya/issues/83/comments",
"events_url": "https://api.github.com/repos/yaph/logya/issues/83/events",
"html_url": "https://github.com/yaph/logya/issues/83",
"id": 402492424,
"node_id": "MDU6SXNzdWU0MDI0OTI0MjQ=",
"number": 83,
"title": "Create an index database that is read and updated in serve mode",
"user": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": {
"url": "https://api.github.com/repos/yaph/logya/milestones/5",
"html_url": "https://github.com/yaph/logya/milestone/5",
"labels_url": "https://api.github.com/repos/yaph/logya/milestones/5/labels",
"id": 1107505,
"node_id": "MDk6TWlsZXN0b25lMTEwNzUwNQ==",
"number": 5,
"title": "Better Document Index",
"description": "",
"creator": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"open_issues": 5,
"closed_issues": 5,
"state": "open",
"created_at": "2015-05-12T20:31:55Z",
"updated_at": "2019-01-24T00:40:46Z",
"due_on": null,
"closed_at": null
},
"comments": 0,
"created_at": "2019-01-24T00:40:46Z",
"updated_at": "2019-01-24T00:40:46Z",
"closed_at": null,
"author_association": "OWNER",
"body": "When creating a site by sub-classing generate, indexes for pages not present in content are not generated.\r\n\r\nWhat a document index could look like:\r\n\r\n index = {\r\n '/about/': {'file': 'about.md'},\r\n '/dynamic-file/': {'doc': {'title': 'Document generated from different source.'}}\r\n }\r\n\r\nThe keys are the canonical document URLs without the host. For files existing in the ``content`` directory, only store the filename. For other data sources store the complete document.\r\n\r\nThis index is created in the ``generate`` step and read in ``serve`` mode.\r\n\r\n## Questions\r\n\r\n* Can it be avoided to call ``build_index()`` on every page request?\r\n* How will new ``content`` documents be added to the index in serve mode?",
"score": 1.0
},
{
"url": "https://api.github.com/repos/yaph/d3-geomap/issues/42",
"repository_url": "https://api.github.com/repos/yaph/d3-geomap",
"labels_url": "https://api.github.com/repos/yaph/d3-geomap/issues/42/labels{/name}",
"comments_url": "https://api.github.com/repos/yaph/d3-geomap/issues/42/comments",
"events_url": "https://api.github.com/repos/yaph/d3-geomap/issues/42/events",
"html_url": "https://github.com/yaph/d3-geomap/issues/42",
"id": 232054798,
"node_id": "MDU6SXNzdWUyMzIwNTQ3OTg=",
"number": 42,
"title": "Update docs with new draw worklfow",
"user": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"labels": [
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": {
"url": "https://api.github.com/repos/yaph/d3-geomap/milestones/1",
"html_url": "https://github.com/yaph/d3-geomap/milestone/1",
"labels_url": "https://api.github.com/repos/yaph/d3-geomap/milestones/1/labels",
"id": 2548765,
"node_id": "MDk6TWlsZXN0b25lMjU0ODc2NQ==",
"number": 1,
"title": "v2",
"description": null,
"creator": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"open_issues": 0,
"closed_issues": 3,
"state": "open",
"created_at": "2017-05-29T15:46:35Z",
"updated_at": "2018-10-19T22:42:10Z",
"due_on": null,
"closed_at": null
},
"comments": 1,
"created_at": "2017-05-29T15:46:15Z",
"updated_at": "2018-10-19T22:42:10Z",
"closed_at": "2018-10-19T22:42:10Z",
"author_association": "OWNER",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/yaph/d3-geomap/issues/28",
"repository_url": "https://api.github.com/repos/yaph/d3-geomap",
"labels_url": "https://api.github.com/repos/yaph/d3-geomap/issues/28/labels{/name}",
"comments_url": "https://api.github.com/repos/yaph/d3-geomap/issues/28/comments",
"events_url": "https://api.github.com/repos/yaph/d3-geomap/issues/28/events",
"html_url": "https://github.com/yaph/d3-geomap/issues/28",
"id": 46168454,
"node_id": "MDU6SXNzdWU0NjE2ODQ1NA==",
"number": 28,
"title": "Find a way to indicate disputed territories",
"user": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 92603627,
"node_id": "MDU6TGFiZWw5MjYwMzYyNw==",
"url": "https://api.github.com/repos/yaph/d3-geomap/labels/enhancement",
"name": "enhancement",
"color": "84b6eb",
"default": true
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2014-10-18T09:06:10Z",
"updated_at": "2018-10-19T20:34:42Z",
"closed_at": "2018-10-19T20:34:42Z",
"author_association": "OWNER",
"body": "http://en.wikipedia.org/wiki/List_of_states_with_limited_recognition\n\nUsing diagonal stripes as an SVG background pattern might work. Dashed borders would not work, because topojson eliminates redundancy of boundary lines.\n",
"score": 1.0
},
{
"url": "https://api.github.com/repos/yaph/d3-geomap/issues/43",
"repository_url": "https://api.github.com/repos/yaph/d3-geomap",
"labels_url": "https://api.github.com/repos/yaph/d3-geomap/issues/43/labels{/name}",
"comments_url": "https://api.github.com/repos/yaph/d3-geomap/issues/43/comments",
"events_url": "https://api.github.com/repos/yaph/d3-geomap/issues/43/events",
"html_url": "https://github.com/yaph/d3-geomap/issues/43",
"id": 232364309,
"node_id": "MDU6SXNzdWUyMzIzNjQzMDk=",
"number": 43,
"title": "v2.0.0alpha doesn't work on iOS",
"user": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 92603625,
"node_id": "MDU6TGFiZWw5MjYwMzYyNQ==",
"url": "https://api.github.com/repos/yaph/d3-geomap/labels/bug",
"name": "bug",
"color": "fc2929",
"default": true
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": {
"url": "https://api.github.com/repos/yaph/d3-geomap/milestones/1",
"html_url": "https://github.com/yaph/d3-geomap/milestone/1",
"labels_url": "https://api.github.com/repos/yaph/d3-geomap/milestones/1/labels",
"id": 2548765,
"node_id": "MDk6TWlsZXN0b25lMjU0ODc2NQ==",
"number": 1,
"title": "v2",
"description": null,
"creator": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"open_issues": 0,
"closed_issues": 3,
"state": "open",
"created_at": "2017-05-29T15:46:35Z",
"updated_at": "2018-10-19T22:42:10Z",
"due_on": null,
"closed_at": null
},
"comments": 2,
"created_at": "2017-05-30T19:58:51Z",
"updated_at": "2018-10-19T20:26:18Z",
"closed_at": "2018-10-19T20:26:18Z",
"author_association": "OWNER",
"body": "Remote debugging via https://jsconsole.com/ only produced `:0 Script error.` as output. Other debugging methods all seem to require OSX.",
"score": 1.0
},
{
"url": "https://api.github.com/repos/yaph/d3-geomap/issues/46",
"repository_url": "https://api.github.com/repos/yaph/d3-geomap",
"labels_url": "https://api.github.com/repos/yaph/d3-geomap/issues/46/labels{/name}",
"comments_url": "https://api.github.com/repos/yaph/d3-geomap/issues/46/comments",
"events_url": "https://api.github.com/repos/yaph/d3-geomap/issues/46/events",
"html_url": "https://github.com/yaph/d3-geomap/issues/46",
"id": 371946904,
"node_id": "MDU6SXNzdWUzNzE5NDY5MDQ=",
"number": 46,
"title": "Uncaught TypeError: d[self.properties.column].trim is not a function",
"user": {
"login": "jendamozna",
"id": 19552944,
"node_id": "MDQ6VXNlcjE5NTUyOTQ0",
"avatar_url": "https://avatars1.githubusercontent.com/u/19552944?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jendamozna",
"html_url": "https://github.com/jendamozna",
"followers_url": "https://api.github.com/users/jendamozna/followers",
"following_url": "https://api.github.com/users/jendamozna/following{/other_user}",
"gists_url": "https://api.github.com/users/jendamozna/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jendamozna/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jendamozna/subscriptions",
"organizations_url": "https://api.github.com/users/jendamozna/orgs",
"repos_url": "https://api.github.com/users/jendamozna/repos",
"events_url": "https://api.github.com/users/jendamozna/events{/privacy}",
"received_events_url": "https://api.github.com/users/jendamozna/received_events",
"type": "User",
"site_admin": false
},
"labels": [
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2018-10-19T12:58:55Z",
"updated_at": "2018-10-19T20:10:02Z",
"closed_at": "2018-10-19T20:10:02Z",
"author_association": "NONE",
"body": "when called with array:\r\n\r\n.datum([ {iso3: \"RUS\", Requests: 10}])\r\n\r\nThe trim() method cant be applied on integer:\r\nd3.geomap.js:491\r\nval = d[self.properties.column].trim();",
"score": 1.0
},
{
"url": "https://api.github.com/repos/yaph/geonamescache/issues/18",
"repository_url": "https://api.github.com/repos/yaph/geonamescache",
"labels_url": "https://api.github.com/repos/yaph/geonamescache/issues/18/labels{/name}",
"comments_url": "https://api.github.com/repos/yaph/geonamescache/issues/18/comments",
"events_url": "https://api.github.com/repos/yaph/geonamescache/issues/18/events",
"html_url": "https://github.com/yaph/geonamescache/issues/18",
"id": 264156864,
"node_id": "MDU6SXNzdWUyNjQxNTY4NjQ=",
"number": 18,
"title": "Update to latest geonames data",
"user": {
"login": "mcarans",
"id": 3799212,
"node_id": "MDQ6VXNlcjM3OTkyMTI=",
"avatar_url": "https://avatars3.githubusercontent.com/u/3799212?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mcarans",
"html_url": "https://github.com/mcarans",
"followers_url": "https://api.github.com/users/mcarans/followers",
"following_url": "https://api.github.com/users/mcarans/following{/other_user}",
"gists_url": "https://api.github.com/users/mcarans/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mcarans/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mcarans/subscriptions",
"organizations_url": "https://api.github.com/users/mcarans/orgs",
"repos_url": "https://api.github.com/users/mcarans/repos",
"events_url": "https://api.github.com/users/mcarans/events{/privacy}",
"received_events_url": "https://api.github.com/users/mcarans/received_events",
"type": "User",
"site_admin": false
},
"labels": [
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 4,
"created_at": "2017-10-10T09:24:22Z",
"updated_at": "2018-05-18T16:22:29Z",
"closed_at": "2018-05-18T16:22:29Z",
"author_association": "NONE",
"body": "Would it be possible to release an update on Pypi with latest geonames data?\r\n\r\nI tried to figure out how to update the JSON files but could not see where they come from on the geonames website.",
"score": 1.0
},
{
"url": "https://api.github.com/repos/yaph/d3-geomap/issues/45",
"repository_url": "https://api.github.com/repos/yaph/d3-geomap",
"labels_url": "https://api.github.com/repos/yaph/d3-geomap/issues/45/labels{/name}",
"comments_url": "https://api.github.com/repos/yaph/d3-geomap/issues/45/comments",
"events_url": "https://api.github.com/repos/yaph/d3-geomap/issues/45/events",
"html_url": "https://github.com/yaph/d3-geomap/issues/45",
"id": 300976571,
"node_id": "MDU6SXNzdWUzMDA5NzY1NzE=",
"number": 45,
"title": "onClick event in d3-geomap",
"user": {
"login": "srh-ocean1991",
"id": 3996056,
"node_id": "MDQ6VXNlcjM5OTYwNTY=",
"avatar_url": "https://avatars3.githubusercontent.com/u/3996056?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/srh-ocean1991",
"html_url": "https://github.com/srh-ocean1991",
"followers_url": "https://api.github.com/users/srh-ocean1991/followers",
"following_url": "https://api.github.com/users/srh-ocean1991/following{/other_user}",
"gists_url": "https://api.github.com/users/srh-ocean1991/gists{/gist_id}",
"starred_url": "https://api.github.com/users/srh-ocean1991/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/srh-ocean1991/subscriptions",
"organizations_url": "https://api.github.com/users/srh-ocean1991/orgs",
"repos_url": "https://api.github.com/users/srh-ocean1991/repos",
"events_url": "https://api.github.com/users/srh-ocean1991/events{/privacy}",
"received_events_url": "https://api.github.com/users/srh-ocean1991/received_events",
"type": "User",
"site_admin": false
},
"labels": [
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2018-02-28T10:48:06Z",
"updated_at": "2018-04-27T10:47:28Z",
"closed_at": "2018-04-27T10:47:28Z",
"author_association": "NONE",
"body": "\r\n0\r\ndown vote\r\nfavorite\r\nI'm trying to change onclick event in d3-geomap from zoom to another function. How can I do this ?\r\n\r\nThanks\r\n\r\nmy code is here :\r\n\r\n```\r\nvar map = d3.geomap.choropleth()\r\n .geofile('json/IRN2.json')\r\n .unitId('fips')\r\n .projection(function(){return d3.geo.albers().center([51,35]);})\r\n .column('point')\r\n .scale(2000)\r\n .rotate([-40, 0])\r\n .translate([1.25*width ,-200 ])\r\n .colors(['green','yellow' , 'pink' ,'red'])\r\n .domain([0, 20 , 50,100])\r\n //.clicked(function(){console.log(\"hiiiiiiiiiiiiiiii\");})\r\n .legend(true);\r\n\r\n\r\n d3.select('#map')\r\n .datum(mydata)\r\n .call(map.draw, map);\r\n```",
"score": 1.0
},
{
"url": "https://api.github.com/repos/yaph/twitter-tools/issues/1",
"repository_url": "https://api.github.com/repos/yaph/twitter-tools",
"labels_url": "https://api.github.com/repos/yaph/twitter-tools/issues/1/labels{/name}",
"comments_url": "https://api.github.com/repos/yaph/twitter-tools/issues/1/comments",
"events_url": "https://api.github.com/repos/yaph/twitter-tools/issues/1/events",
"html_url": "https://github.com/yaph/twitter-tools/issues/1",
"id": 46201072,
"node_id": "MDU6SXNzdWU0NjIwMTA3Mg==",
"number": 1,
"title": "Unify collect scripts into one useful tool, with configurable data store.",
"user": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"labels": [
],
"state": "closed",
"locked": true,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2014-10-19T09:37:50Z",
"updated_at": "2018-03-06T23:52:50Z",
"closed_at": "2018-03-06T23:52:50Z",
"author_association": "OWNER",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/yaph/geonamescache/issues/12",
"repository_url": "https://api.github.com/repos/yaph/geonamescache",
"labels_url": "https://api.github.com/repos/yaph/geonamescache/issues/12/labels{/name}",
"comments_url": "https://api.github.com/repos/yaph/geonamescache/issues/12/comments",
"events_url": "https://api.github.com/repos/yaph/geonamescache/issues/12/events",
"html_url": "https://github.com/yaph/geonamescache/issues/12",
"id": 163339364,
"node_id": "MDU6SXNzdWUxNjMzMzkzNjQ=",
"number": 12,
"title": "Python 3 support",
"user": {
"login": "dulrich15",
"id": 1817139,
"node_id": "MDQ6VXNlcjE4MTcxMzk=",
"avatar_url": "https://avatars2.githubusercontent.com/u/1817139?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dulrich15",
"html_url": "https://github.com/dulrich15",
"followers_url": "https://api.github.com/users/dulrich15/followers",
"following_url": "https://api.github.com/users/dulrich15/following{/other_user}",
"gists_url": "https://api.github.com/users/dulrich15/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dulrich15/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dulrich15/subscriptions",
"organizations_url": "https://api.github.com/users/dulrich15/orgs",
"repos_url": "https://api.github.com/users/dulrich15/repos",
"events_url": "https://api.github.com/users/dulrich15/events{/privacy}",
"received_events_url": "https://api.github.com/users/dulrich15/received_events",
"type": "User",
"site_admin": false
},
"labels": [
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 4,
"created_at": "2016-07-01T07:52:52Z",
"updated_at": "2017-12-01T10:46:14Z",
"closed_at": "2016-09-25T21:16:53Z",
"author_association": "NONE",
"body": "Getting a UnicodeDecodeError when trying to install with Python 3.5.\n\nThanks,\nDave\n",
"score": 1.0
},
{
"url": "https://api.github.com/repos/yaph/logya/issues/82",
"repository_url": "https://api.github.com/repos/yaph/logya",
"labels_url": "https://api.github.com/repos/yaph/logya/issues/82/labels{/name}",
"comments_url": "https://api.github.com/repos/yaph/logya/issues/82/comments",
"events_url": "https://api.github.com/repos/yaph/logya/issues/82/events",
"html_url": "https://github.com/yaph/logya/issues/82",
"id": 246138957,
"node_id": "MDU6SXNzdWUyNDYxMzg5NTc=",
"number": 82,
"title": "Don't format titles of indexes and rss feeds",
"user": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 57851987,
"node_id": "MDU6TGFiZWw1Nzg1MTk4Nw==",
"url": "https://api.github.com/repos/yaph/logya/labels/Backwards%20Incompatible",
"name": "Backwards Incompatible",
"color": "eb6420",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": {
"url": "https://api.github.com/repos/yaph/logya/milestones/5",
"html_url": "https://github.com/yaph/logya/milestone/5",
"labels_url": "https://api.github.com/repos/yaph/logya/milestones/5/labels",
"id": 1107505,
"node_id": "MDk6TWlsZXN0b25lMTEwNzUwNQ==",
"number": 5,
"title": "Better Document Index",
"description": "",
"creator": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"open_issues": 5,
"closed_issues": 5,
"state": "open",
"created_at": "2015-05-12T20:31:55Z",
"updated_at": "2019-01-24T00:40:46Z",
"due_on": null,
"closed_at": null
},
"comments": 0,
"created_at": "2017-07-27T19:05:37Z",
"updated_at": "2017-07-27T19:05:37Z",
"closed_at": null,
"author_association": "OWNER",
"body": "Leave it to the template to do the formatting.",
"score": 1.0
},
{
"url": "https://api.github.com/repos/yaph/d3-geomap/issues/41",
"repository_url": "https://api.github.com/repos/yaph/d3-geomap",
"labels_url": "https://api.github.com/repos/yaph/d3-geomap/issues/41/labels{/name}",
"comments_url": "https://api.github.com/repos/yaph/d3-geomap/issues/41/comments",
"events_url": "https://api.github.com/repos/yaph/d3-geomap/issues/41/events",
"html_url": "https://github.com/yaph/d3-geomap/issues/41",
"id": 232053089,
"node_id": "MDU6SXNzdWUyMzIwNTMwODk=",
"number": 41,
"title": "d3.geomap 2.0.0alpha: \"this is null\" in choropleth.draw in FireFox and iOS",
"user": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",