-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheno.json
1174 lines (1174 loc) · 63.6 KB
/
eno.json
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
[
{
"Changes:": [
"- get_vault_credentials_from_path, generate_ssh_keypair, find_vagrantfile_dir\n",
"+ get_vault_credentials_from_path, generate_ssh_keypair, find_vagrantfile_dir, \\\n",
"+ register_values_in_vault\n",
"- vault_address, vault_token, vault_path = get_vault_credentials_from_path(vagrantfile_path)\n",
"-\n",
"- vault_client = hvac.Client(url=vault_address, token=vault_token)\n",
"- if vault_client.is_authenticated() and not vault_client.is_sealed():\n",
"- secrets = {}\n",
"- vault_secret_path = \"secret/{0}_{1}\".format(settings[\"project_name\"],\n",
"- settings[\"env\"])\n",
"- for param in SECRETS_PARAMS:\n",
"- secrets[param] = settings[param]\n",
"- settings[param] = \" \".join((\"{{\",\n",
"- \"lookup('vault', '{0}', '{1}', '{2}')\".format(vault_secret_path,\n",
"- param,\n",
"- vault_path),\n",
"- \"}}\"))\n",
"- vault_client.write(vault_secret_path, **secrets)\n",
"- else:\n",
"- raise Exception(\"Vault connection is down.\")\n",
"+ secrets = {}\n",
"+ for param in SECRETS_PARAMS:\n",
"+ secrets[param] = settings[param]\n",
"+ registered_settings = register_values_in_vault(vagrantfile_path,\n",
"+ \"secret/{0}_{1}\".format(settings[\"project_name\"],\n",
"+ settings[\"env\"]),\n",
"+ secrets)\n",
"+ for key in registered_settings:\n",
"+ settings[key] = registered_settings[key]\n",
"- url, token, path = get_vault_credentials_from_path(vagrantfile_dir)\n",
"- client = hvac.Client(url=url, token=token)\n",
"- try:\n",
"- if client.is_authenticated() and not client.is_sealed():\n",
"- unique_key = 'secret/git_keys_{}'.format(generate_printable_string(25, False))\n",
"- client.write(unique_key, private_key=private_key, public_key=public_key)\n",
"- settings['git_public_key'] = \" \".join([\"\\\\\\\"{{\",\n",
"- \"lookup('vault', '{0}', 'public_key', '{1}')\".format(unique_key,\n",
"- path),\n",
"- \"}}\\\\\\\"\"])\n",
"- settings['git_private_key'] = \" \".join([\"\\\\\\\"{{\",\n",
"- \"lookup('vault', '{0}', 'private_key', '{1}')\".format(unique_key,\n",
"- path),\n",
"- \"}}\\\\\\\"\"])\n",
"- print(\"Add this public key to your SSH deploy keys in Github:\\n{}\".format(public_key))\n",
"- else:\n",
"- raise Exception('Vault is unavailable!')\n",
"- except ConnectionError:\n",
"- print('Cannot connect to vault: Connection Error')\n",
"+ registered_settings = register_values_in_vault(vagrantfile_dir,\n",
"+ 'secret/git_keys_{}'.format(generate_printable_string(25,\n",
"+ False)),\n",
"+ {'public_key': public_key,\n",
"+ 'private_key': private_key},\n",
"+ quoted=True\n",
"+ )\n",
"+ settings['git_private_key'] = registered_settings['private_key']\n",
"+ settings['git_public_key'] = registered_settings['public_key']\n",
"+\n",
"- continue_process = raw_input('You already have `fabric_settings.py in this folder. Overwrite? (Y/N)')\n",
"+ continue_process = raw_input('You already have `fabric_settings.py` in this folder. Overwrite? (Y/N)')\n"
],
"Message:": "Code Review:\n\n- Add \"`\" to a print message\n- Fix indentation\n- Refactor some vault stuff in another method",
"Additions:": 22,
"Deletions:": 38,
"Commit Mistakes:": "https://github.com/yeti/yurt/commit/b855a680b7698650e45e32d248f1f4e79252f718",
"Commit Corrections:": "https://github.com/yeti/yurt/commit/d61937ab2da8cf1b9664389de6fa7e7dd53fc8dd"
},
{
"Changes:": [
"- optimal_kernel = umkl_descent(kernels, 0.5)\n",
"+ weights, objective_values = umkl_descent(kernels, 0.5)"
],
"Message:": "Small fix",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/diegoSQK/UMKL/commit/d9bfd15c14d916c600abbf4e60a6558a4ddd0371",
"Commit Corrections:": "https://github.com/diegoSQK/UMKL/commit/351842565389a6478f6929c36b992af432e241d0"
},
{
"Changes:": [
"- boxes = FieldUnit.objects.filter(harvest_date__year=datetime.now().year)\n",
"+ boxes = FieldUnit.objects.filter(harvest_date__year=datetime.now().year).filter(field=None)\n"
],
"Message:": "Production Summary, added Seconds processing",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/DustinHolden/Anthos/commit/56600d3746cd83341a7f5176c1327aa74ac3837e",
"Commit Corrections:": "https://github.com/DustinHolden/Anthos/commit/4a7074fab93b8d90233510f6a10bdced501de7c1"
},
{
"Changes:": [
"- n = reddy.connection.find_nas(host)\n",
"+ n = reddy.connection.find_ac(host)\n"
],
"Message:": "find_nas -> find_ac",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/stenote/radiusd/commit/f9395746377401aacfab46c2d1af92db948b70f1",
"Commit Corrections:": "https://github.com/stenote/radiusd/commit/b9ba440908166abb5925e14bc7fe1c66cc77db1b"
},
{
"Changes:": [
"- print '%s label mean cv accuracy: %.2f\\n' % (label_set, np.mean(scores))\n",
"+ print '%s label mean cv accuracy: %.4f\\n' % (label_set, np.mean(scores))\n"
],
"Message:": "fix some broken imports",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/cmward/text-scene/commit/1bb525dfa1fc5750b96fcc7f4ce3329811a45313",
"Commit Corrections:": "https://github.com/cmward/text-scene/commit/70b73b08dde9cc76384d876b1039523057f46ca9"
},
{
"Changes:": [
"- while backtrack < limit:\n",
"+ while backtrack <= limit:\n"
],
"Message:": "suite.py: must pass at least once through the backtrack loop\n\nChanging the default of newest to '0' meant that the combined\nloop which handles both backtrack and non-backtrack conditions\nwas never executing, leading to undefined variables.\n\nSigned-off-by: Dan Mick <[email protected]>",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/dmick/teuthology/commit/89c01c5c4cbcae75983aa096664701fb85565329",
"Commit Corrections:": "https://github.com/dmick/teuthology/commit/651f1fdd3e9d2ae660001678890536fe502a8a3f"
},
{
"Changes:": [
"- if a_value in ['', None, 'None']:\n",
"+ if a_value in ['', None, 'None', 'etldr_none', 'etldr_null']:\n"
],
"Message:": "[add etldr_null etldr_none]",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/SureDoo/3_general_Deming/commit/083c1b45336a344401c43685cb0e6839a76f0725",
"Commit Corrections:": "https://github.com/SureDoo/3_general_Deming/commit/267f9003bb6c18d42eff8ee35aef605afd695dac"
},
{
"Changes:": [
"- app.run(host='0.0.0.0')\n",
"+ app.run(host='0.0.0.0',port='80')"
],
"Message:": "port:80",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/li772091958/liyuntao.top/commit/f0104d790eddc85c1bacf0830ab234ee71f9cf82",
"Commit Corrections:": "https://github.com/li772091958/liyuntao.top/commit/8f8825382c6c46ff224c9cf839f3f0391b3833cc"
},
{
"Changes:": [
"- d = geopy_distance(box1.position, box2.position).meters\n",
"+ d = geopy_distance(box1.point, box2.point).meters\n"
],
"Message:": "Production Summary, added Seconds processing",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/DustinHolden/Anthos/commit/bfdd6bdd86d84ef6ac3109d23fc34e10e5c99e1d",
"Commit Corrections:": "https://github.com/DustinHolden/Anthos/commit/802f8ecac917e74c193edab50208c2b671cf0436"
},
{
"Changes:": [
"- p.add_argument(\"-r\", \"--regex\", help=\"regex of model file's name\", default=r'^wiki_titles_.*\\.model$')\n",
"+ p.add_argument(\"-r\", \"--regex\", help=\"regex of model file's name\", default=r'^.*_\\d+d\\.model$')\n"
],
"Message:": "small fix",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/thuzhf/history_analysis/commit/105ad97cfa70933035f6189b6ced1d5a902e9c42",
"Commit Corrections:": "https://github.com/thuzhf/history_analysis/commit/5028a3950984d89eb12241164f840941b5b43820"
},
{
"Changes:": [
"- return self.app.name+\" token created at \"+self.created\n",
"+ return self.app.name+\" token : \"+self.content\n"
],
"Message:": "\uc790\uc798\ud55c \ubcc0\uacbd",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/jmpark6846/django-fcm-push/commit/638e27d0662e190a58661d1bcf0696ca9748fd60",
"Commit Corrections:": "https://github.com/jmpark6846/django-fcm-push/commit/d0a01a025f558c2d34ec6277c0e5ceb2a2db0e60"
},
{
"Changes:": [
"- 'fixed_param_range': np.linspace(0.3, -0.3, nPoints),\\\n",
"+ 'fixed_param_range': np.linspace(0.2, -0.1, nPoints),\\\n"
],
"Message:": "\tmodified: ../params.py",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/gt-ros-pkg/hrl-assistive/commit/b9eb0e5026c912d36be082ce3e9f36341282b5ca",
"Commit Corrections:": "https://github.com/gt-ros-pkg/hrl-assistive/commit/31a1b3a6fa4637467692700b711b750d76d66231"
},
{
"Changes:": [
"- 'crm_rma_lot_mass_return',\n",
"+ 'crm_claim_rma',\n"
],
"Message:": "[IMP] Bye to crm_rma_lot_mass_return module: crm_rma_lot_mass_return module was joined with crm_claim_rma",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/vauxoo-dev/rma/commit/8812b884a81464d06868f1b7bae949b602c59b1d",
"Commit Corrections:": "https://github.com/vauxoo-dev/rma/commit/e78096cb9ad0b207d6a0863bc0811e569c927d18"
},
{
"Changes:": [
"- to configure, especially on virtual envoironments such as AWS.\n",
"+ to configure, especially on virtual environments such as AWS.\n",
"- - set(key, value) ... set the value to the curren system\n",
"+ - set(key, value) ... set the value to the current system\n",
"- It will be concatinated with single space.\n",
"+ It will be concatenated with single space.\n",
"- - /etc/timezone ... Debian/Ubnutu\n",
"+ - /etc/timezone ... Debian/Ubuntu\n"
],
"Message:": "Fix some typos",
"Additions:": 4,
"Deletions:": 4,
"Commit Mistakes:": "https://github.com/shotat/ansible-modules-extras/commit/ac8e3f18a3c0f8c936beee06cbf44831a52c0e09",
"Commit Corrections:": "https://github.com/shotat/ansible-modules-extras/commit/8bef15443a5bcfbdf329f20b2a9c9f9effa7d22d"
},
{
"Changes:": [
"- except TypeError:\n",
"+ except Exception:\n"
],
"Message:": "exceptional error in to_python def",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/philippWassibauer/django-activity-stream/commit/8381805b5060b38c08c0746d41c1b949a3d33ef9",
"Commit Corrections:": "https://github.com/philippWassibauer/django-activity-stream/commit/2fc41ccc948b20bedf3d6b1d1ffaebb0d6a3159e"
},
{
"Changes:": [
"- if scheme in ['property', 'land_transfer', 'holidays']:\n",
"+ if scheme in ['property', 'land_transfer', 'agreement_sale_purchase_real_estate']:\n"
],
"Message:": "agreement sale blah uses region",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/joshgagnon/working-days-api/commit/815421156fd83e69f3fdeb130122d6830b83500c",
"Commit Corrections:": "https://github.com/joshgagnon/working-days-api/commit/421006f6e937f4922cdc4d9902e9953ba431d839"
},
{
"Changes:": [
"-from .. import Events\n",
"- name = Events.add_event(link.text.replace(' ', ''))\n",
"+ name = catalog.add_event(link.text.replace(' ', ''))\n",
"- Events.journal_events()\n",
"+ catalog.journal_events()\n"
],
"Message:": "BUG: replaced old Events syntax from CCCP",
"Additions:": 2,
"Deletions:": 3,
"Commit Mistakes:": "https://github.com/astrocatalogs/sne/commit/d3954481844ef931ede8ff0a8c09139e529e70a5",
"Commit Corrections:": "https://github.com/astrocatalogs/sne/commit/6a7285e47f9c4c4f09a5a762788cfec2633e74b3"
},
{
"Changes:": [
"- bestz, bestkind, bestsig = event.get_best_redshift()\n",
"+ bestz, bestkind, bestsig, bestsrc = event.get_best_redshift()\n"
],
"Message:": "BUG: extra return value uncaught.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/astrocatalogs/sne/commit/468eb2bad693606dc061e08527810b74c814f001",
"Commit Corrections:": "https://github.com/astrocatalogs/sne/commit/fcb2922414223f91c280898176e1ff0f378b1bb7"
},
{
"Changes:": [
"- self.log.debug(\"Events.add_event()\")\n",
"+ self.log.debug(\"catalog.add_event()\")\n"
],
"Message:": "Merge branch 'lzkelley-restructure-import' of https://github.com/astrocatalogs/sne into lzkelley-restructure-import\n\n* 'lzkelley-restructure-import' of https://github.com/astrocatalogs/sne:\n BUG: replaced old Events calls",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/astrocatalogs/sne/commit/5c5c08a146f3c874f5d7c71573641bf4973aaccc",
"Commit Corrections:": "https://github.com/astrocatalogs/sne/commit/e8a820eed4b62bd0eb173f2a54f8187c8dd84cca"
},
{
"Changes:": [
"- while backtrack < limit:\n",
"+ while backtrack <= limit:\n"
],
"Message:": "suite.py: must pass at least once through the backtrack loop\n\nChanging the default of newest to '0' meant that the combined\nloop which handles both backtrack and non-backtrack conditions\nwas never executing, leading to undefined variables.\n\nSigned-off-by: Dan Mick <[email protected]>",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/ceph/teuthology/commit/3e7e0a357ed2407b14daaf1c65ebf5e6be460681",
"Commit Corrections:": "https://github.com/ceph/teuthology/commit/5dc130c08714053780b993fb7b4da871c7448f5d"
},
{
"Changes:": [
"- while backtrack < limit:\n",
"+ while backtrack <= limit:\n"
],
"Message:": "Merge pull request #888 from dmick/master\n\nsuite.py: must pass at least once through the backtrack loop",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/ceph/teuthology/commit/3e7e0a357ed2407b14daaf1c65ebf5e6be460681",
"Commit Corrections:": "https://github.com/ceph/teuthology/commit/f893e94398670a514f222505e6d0d8f43bee2b88"
},
{
"Changes:": [
"- return getattr(settings, 'GEOIP_PATH', os.path.join(BASE_DIR, DEFAULT_DATA_DIR))\n",
"+ return getattr(settings, 'GEOIP_PATH', os.path.join(BASE_DIR, DEFAULT_DATA_DIR))"
],
"Message:": "Adjust geoip2 db",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/mrbitsdcf/django-easygeoip/commit/e621efe2412d6372a0464688b281aab4ceb3548f",
"Commit Corrections:": "https://github.com/mrbitsdcf/django-easygeoip/commit/022626736dd21e328166fd31eea2186b8aac35c4"
},
{
"Changes:": [
"- # logging.info(res.content)\n",
"+ logging.info(res.content)\n"
],
"Message:": "Merge branch 'master' of github.com:caton-wang/godbless",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/caton-wang/godbless/commit/43026ecfc191da7ac2aab4f7489677d8a02f321d",
"Commit Corrections:": "https://github.com/caton-wang/godbless/commit/9bae568629082a91cf21d318adcd566d8895d0a7"
},
{
"Changes:": [
"- self.log.debug(\"Events.add_event()\")\n",
"+ self.log.debug(\"catalog.add_event()\")\n"
],
"Message:": "BUG: replaced old Events calls",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/astrocatalogs/sne/commit/6a7285e47f9c4c4f09a5a762788cfec2633e74b3",
"Commit Corrections:": "https://github.com/astrocatalogs/sne/commit/cb2a76bfb0a48b819859ba2d76521f4e2ea3fe65"
},
{
"Changes:": [
"-__version__ = '1.8.11.8'\n",
"+__version__ = '1.8.13.0'"
],
"Message:": "Use Django 1.8.13, bump to v1.8.13.0",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/aldryn/aldryn-django/commit/9da62a17c1cd0d387b9316a5a922f74448a08881",
"Commit Corrections:": "https://github.com/aldryn/aldryn-django/commit/96c0ca8b1873f82aaf0a00b979a9167a1f513e6f"
},
{
"Changes:": [
"-from flask.ext.moment import Moment\n",
"+from flask_moment import Moment\n"
],
"Message:": "Use flask_moment instead",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/nathancoleman/feedback/commit/2784ed5c0ce99cb5ddf5f2f8e77cc7cc2f64e05a",
"Commit Corrections:": "https://github.com/nathancoleman/feedback/commit/b96556c5550148177e420cf0bd712251bc7e92ae"
},
{
"Changes:": [
"-cellblender_id = '8096f717a46b220c4a1b529a791c0516ab30755e'\n",
"+cellblender_id = 'ac4fa56a993838ed34059a773fb20e6fd9c67ec3'"
],
"Message:": "Added a print statement to verify that the region loop isn't completing.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/mcellteam/cellblender/commit/ed851e3ba426c225250e9d3d80e58a9abff69f74",
"Commit Corrections:": "https://github.com/mcellteam/cellblender/commit/511069e8b0f455d105630e4cbc1b2e6849f75cef"
},
{
"Changes:": [
"- blocked = false\n"
],
"Message:": "typo",
"Additions:": 0,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/andrewbackes/autonoma/commit/c1facc156498668995324300e17ac1bb7a695cc1",
"Commit Corrections:": "https://github.com/andrewbackes/autonoma/commit/4414ff31845c75aacc89a89995b4c3308621921d"
},
{
"Changes:": [
"+ def get_current_task_str(self):\n",
"+ return self.current_task.current_task(self.args)\n",
"+\n"
],
"Message:": "Merge branch 'lzkelley-restructure-import' of https://github.com/astrocatalogs/sne into lzkelley-restructure-import\n\n* 'lzkelley-restructure-import' of https://github.com/astrocatalogs/sne:\n BUG: replaced old Events syntax from CCCP\n BUG: changed current_task to Task object Some of the other Task methods were being called so a string alone was not sufficient",
"Additions:": 3,
"Deletions:": 0,
"Commit Mistakes:": "https://github.com/astrocatalogs/sne/commit/cfda9b38a6977a23fd92c4bece2068dda13d7625",
"Commit Corrections:": "https://github.com/astrocatalogs/sne/commit/5c5c08a146f3c874f5d7c71573641bf4973aaccc"
},
{
"Changes:": [
"- full_name = df.ix[indexvalue][\"Full name\"]\n",
"+ full_name = df.ix[indexvalue][\"Short name lower case\"]\n"
],
"Message:": "Changed data loader",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/Valuehorizon/valuehorizon-countries/commit/a72f08e617387f3b3b0926c449a4cabb163a5628",
"Commit Corrections:": "https://github.com/Valuehorizon/valuehorizon-countries/commit/962d0e9413021e75954cfa9314fa41382bb57e81"
},
{
"Changes:": [
"- texto='Al usuario ' + str(user) + ' se le a cargado el servico ' + sm + ' con costo ' + str(round(costo_individual, 2))\n",
"+ texto='Al usuario ' + str(user) + ' se le a cargado el servicio ' + sm + ' con costo ' + str(round(costo_individual, 2))\n"
],
"Message:": "palabra",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/tecnoagropro/admincondominios/commit/df958d5c6e1518d9e2f33210c811df211c27f824",
"Commit Corrections:": "https://github.com/tecnoagropro/admincondominios/commit/096556a7c2a0218f689a496aa96bf7b7173a266a"
},
{
"Changes:": [
"-from evolutionary_strategy import Evo_Strategy\n",
"+from evolutionary_strategy import Evo_Strategy as Pokemon\n",
"-es = Evo_Strategy()\n",
"-es.evolve()\n",
"+pokemon = Pokemon()\n",
"+pokemon.evolve()"
],
"Message:": "changed run.py to pokemon syntax",
"Additions:": 3,
"Deletions:": 3,
"Commit Mistakes:": "https://github.com/rlfscin/bioinspirada/commit/256df7f8a343892deb40e33bd376df20c3568925",
"Commit Corrections:": "https://github.com/rlfscin/bioinspirada/commit/b8f7d0afbff77e1894e7e6a32b92bade7c235a41"
},
{
"Changes:": [
"+import pygame\n",
"-def updateScreen(logo, dvdSettings):\n",
"+def updateScreen(screen, dvdSettings, logo):\n"
],
"Message:": "This was a bug fixing commit, bring the program up to a functional stage\nwhere the screen is drawn and the logo is loaded and appears on the\nscreen correctly.\n\nTo do this I had to make a few small changes, such as changing the\nparameters in updateScreen, importing files where necessary and changing\nthe ! syntax to 'not'.\n\nI have also changed the background color to black to make it more\nauthentic.\n\nThe next commit will involve making the logo actually move around the\nscreen, which it currently fails to do.",
"Additions:": 2,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/AdamD2/dvd-waiting-screen/commit/44ff2eaa739ac73291260756e96a569d7e728789",
"Commit Corrections:": "https://github.com/AdamD2/dvd-waiting-screen/commit/2862ef78db7018fa8b84131102ada5cf1bc34296"
},
{
"Changes:": [
"- 'fixed_param_range': np.linspace(0.2, -0.1, nPoints),\\\n",
"+ 'fixed_param_range': np.linspace(0.15, -0.0, nPoints),\\\n"
],
"Message:": "\tmodified: ../params.py",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/gt-ros-pkg/hrl-assistive/commit/31a1b3a6fa4637467692700b711b750d76d66231",
"Commit Corrections:": "https://github.com/gt-ros-pkg/hrl-assistive/commit/eaa2c90e6873b3be97f44938fee2c38725d971a1"
},
{
"Changes:": [
"-from web_apps.auth_backend.utils import create_token, hash_password, verify_token, auth_required, send_mail, verify_password\n",
"+from toy_apps.flux_auth_backend.utils import create_token, hash_password, verify_token, auth_required, send_mail, verify_password\n",
"-# from web_apps.auth_backend.signals import preflight_response_signal\n",
"+# from toy_apps.flux_auth_backend.signals import preflight_response_signal\n"
],
"Message:": "Minor typos",
"Additions:": 2,
"Deletions:": 2,
"Commit Mistakes:": "https://github.com/acheronte/aiohttp_auth_backend/commit/91749dc159b6ab001ac319a3ea9a8fba59175762",
"Commit Corrections:": "https://github.com/acheronte/aiohttp_auth_backend/commit/0bf7498d9b6a5e9f4f22d16e8b285dd8b26ec4ca"
},
{
"Changes:": [
"- break\n",
"+ #break\n"
],
"Message:": "se omite break para que registre todos los mensajes",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/tecnoagropro/admincondominios/commit/ee93f5f2edb2c469f20c8c91aa30f6affa655caf",
"Commit Corrections:": "https://github.com/tecnoagropro/admincondominios/commit/8a779928b0b36e062c6fe0175e34f8aa92b36d31"
},
{
"Changes:": [
"-\tsucceso(id,'Se le ha creado una cuenta en el sistema para sus operaciones','U02')\n",
"+\tsucceso(id,'%(nombre)s se le ha creado una cuenta en el sistema para sus operaciones' % dict(nombre= str(modelo)) ,'U02') \n"
],
"Message:": "se le pasa el parametro nombre para personalizar",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/tecnoagropro/admincondominios/commit/7d7acfe20b5a15106891ae1c4541ad514f38e54c",
"Commit Corrections:": "https://github.com/tecnoagropro/admincondominios/commit/cec3b50179a3c96da26c49f40ce794fe261a6704"
},
{
"Changes:": [
"- 'cross-account', whitelist={'type': 'array', 'items': 'string'})\n",
"+ 'cross-account', whitelist={'type': 'array', 'items': {'type': 'string'}})\n"
],
"Message:": "fix iam access json schema (#244)",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/capitalone/cloud-custodian/commit/354f6f5bad7d611c2c4c09f515f6dfcaff674385",
"Commit Corrections:": "https://github.com/capitalone/cloud-custodian/commit/8b6e7fab7b81ee1488687ab4a2b00ea6f4914e64"
},
{
"Changes:": [
"-__version__ = \"0.4a16\"\n",
"+__version__ = \"0.4a17\"\n"
],
"Message:": "version 0.4a17",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/svenkreiss/databench/commit/2452a4ba56b4ebea120af7a1211ea62a31e3b624",
"Commit Corrections:": "https://github.com/svenkreiss/databench/commit/89978d575f01c73ddd270b81652d2b90cc4bd882"
},
{
"Changes:": [
"- fields = ['condominio','proveedor','otrosGastos','costo']\n",
"+ fields = ['condominio','proveedor','otrosGastos']\n"
],
"Message:": "se elimina campo costo por estar en otro modelo",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/tecnoagropro/admincondominios/commit/d3c57e60184a51c664a80cbdb523c6e769eba4eb",
"Commit Corrections:": "https://github.com/tecnoagropro/admincondominios/commit/db2968b86be83951e398410a70433ddec90ac24f"
},
{
"Changes:": [
"- if args.travis and ii > TRAVIS_QUERY_LIMIT:\n",
"+ if catalog.args.travis and ii > TRAVIS_QUERY_LIMIT:\n"
],
"Message:": "BUG: missing 'catalog.args'.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/astrocatalogs/sne/commit/e8a820eed4b62bd0eb173f2a54f8187c8dd84cca",
"Commit Corrections:": "https://github.com/astrocatalogs/sne/commit/2ff1fa7406bd6040761f363eb8c82ed425cc5edb"
},
{
"Changes:": [
"-ACORNError = Enum([\"NOT_ENOUGH_FILES\", \"ERROR\", \"SUCCESS\"])\n",
"+ACORNError = Enum([\"NOT_ENOUGH_FILES\", \"NO_CURRENT_DATA\", \"ERROR\", \"SUCCESS\"])\n"
],
"Message:": "Hourly files created with no valid current data are ignored and not pushed to S3.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/aodn/data-services/commit/2849e3f5b28ac86ee2da751e6b54608d9920bd59",
"Commit Corrections:": "https://github.com/aodn/data-services/commit/fae1f4edb8def9d962dc076f6774ac6052a005ee"
},
{
"Changes:": [
"-# $bin/spark-submit ./test/data_visualization.py\n",
"+# $bin/spark-submit ./samples/data_visualization.py\n"
],
"Message:": "Updated recommendations",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/xuberance137/spark/commit/f27d26369689ea56be0516e37e3fa619915f025f",
"Commit Corrections:": "https://github.com/xuberance137/spark/commit/53f7acf6fb25a1d90907c43a5bf5443959b0978c"
},
{
"Changes:": [
"-import subprocess\n",
"+\n"
],
"Message:": "Added blank line where needed, removed uncalled subprocess import",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/tsimonq2/snapcraft/commit/c778fbcf6a216750c2dbd9ca9a83fe838c3c52f1",
"Commit Corrections:": "https://github.com/tsimonq2/snapcraft/commit/d910924a396838835a9a423dfb12dd0472d31dcd"
},
{
"Changes:": [
"- package_dir={'': 'src'},\n"
],
"Message:": "minor changes",
"Additions:": 0,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/vikas-parashar/plonetheme.spot/commit/d2bcb2de43c8450e229cb76b08d0c9526ab2eea9",
"Commit Corrections:": "https://github.com/vikas-parashar/plonetheme.spot/commit/eb14a5413a5297f079756d317a0a4844f8770684"
},
{
"Changes:": [
"- log_error(e, retry_wait=QUERY_RETRY_WAIT, rollback=True)\n",
"+ log_error(e, retry_wait=QUERY_RETRY_WAIT,\n",
"+ rollback=True)\n"
],
"Message:": "style fixes my tox lint/flake8 missed",
"Additions:": 2,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/rhooper/home-assistant/commit/56ca9a0569b26bf430adae4b0c38b32f065f4815",
"Commit Corrections:": "https://github.com/rhooper/home-assistant/commit/85f0d8228286397e4208e3d42673794b8f5dac39"
},
{
"Changes:": [
"-_PAD = b\"_PAD\"\n",
"+_PAD = b\"_PAD\" # pad means add zero to un-used position \n"
],
"Message:": "daily update",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/mcguang/mcguang.github.io/commit/90e30ad8aa76b5fb5ebb273e5d1cbb0f3541e824",
"Commit Corrections:": "https://github.com/mcguang/mcguang.github.io/commit/f4931491ca84433b41033b640c11ae121db3adaf"
},
{
"Changes:": [
"- 'huobi', 'baogao']\n",
"+ 'huobi', 'baogao', 'xiehui']\n"
],
"Message:": "1. Remove 'category' From Wangjia Xinwen Spider.\n\n2. Add 'xiehui' Tab For Wangjia Xinwen Spider.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/merryChris/blotus/commit/c06219a4c04acc75aa376039a76010e9bf4b7d47",
"Commit Corrections:": "https://github.com/merryChris/blotus/commit/3117e300d8f5e9e74673d8adea5f5b294aca8621"
},
{
"Changes:": [
"-__version__ = \"1.1.1\"\n",
"+__version__ = \"1.1.2\"\n"
],
"Message:": "v1.1.2",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/LFPy/LFPy/commit/32b29ffca82c10830a0c3424aab3cd149c08935c",
"Commit Corrections:": "https://github.com/LFPy/LFPy/commit/13ca6987dc0a81a0f3a6c9671a5f71c1eba7d83b"
},
{
"Changes:": [
"- self.layoutChampsNonModifiables.addWidget(label)\n",
"+ # self.layoutChampsNonModifiables.addWidget(label)\n",
"+ print(self.listeDonnees)\n",
"+ self.listeLabel[indice].setText(str(text))\n",
"+ self.listeLabel[indice].show()\n"
],
"Message:": "correction bug AjoutEquipement.py\n\nCorrection de l'affichage qui etait decales pour les differents etats",
"Additions:": 4,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/ProjetPC2/SIMM2.0-DEV/commit/2de83362db58b402ba8d4f7fbf4359c28950f48c",
"Commit Corrections:": "https://github.com/ProjetPC2/SIMM2.0-DEV/commit/e5486aa9c9ea740b810088063755263a5358e4b4"
},
{
"Changes:": [
"- yield assert_allclose, expected[k], v, 3\n",
"+ assert_allclose(expected[k], v, atol=3)\n",
"- yield assert_allclose, expected[k], v, 3\n",
"+ assert_allclose(expected[k], v, atol=3)\n"
],
"Message:": "clean up rebase mistake",
"Additions:": 2,
"Deletions:": 2,
"Commit Mistakes:": "https://github.com/wholmgren/pvlib-python/commit/af7e4e42643c05797c1ad9088b50577a8b886763",
"Commit Corrections:": "https://github.com/wholmgren/pvlib-python/commit/1b2fa51a526a0e1946e563c35cb17ff22fd857ec"
},
{
"Changes:": [
"-__VERSION__ = '6.3.5-2'\n",
"+__VERSION__ = '6.3.5-3'"
],
"Message:": "Bump Version 6.3.5-3\n\nChangeLog:\n\n- Add misc files",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/mckelvin/python-ctp-deps/commit/2e5abfb601a4bce40fe9a961088cc175de2b06ca",
"Commit Corrections:": "https://github.com/mckelvin/python-ctp-deps/commit/b1da9ff1623141f82884f450d2ce92c1ea62f7eb"
},
{
"Changes:": [
"-\tif searchcount >0 and searchcount < 50:\n",
"+\tif searchcount >0 and searchcount < 10:\n"
],
"Message:": "value",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/zpeng2/elasticaGM/commit/b5f47e1d1270294764d327ff0ea96fbd743763e0",
"Commit Corrections:": "https://github.com/zpeng2/elasticaGM/commit/dc96aede36afb90cd5ca6197624ea897beb2d954"
},
{
"Changes:": [
"-<<<<<<< HEAD\n",
"-=======\n",
"-BLUE_CHROMA_HIGH = np.array([130, 100, 100])\n",
"->>>>>>> refs/remotes/origin/master"
],
"Message:": "syntax error",
"Additions:": 0,
"Deletions:": 4,
"Commit Mistakes:": "https://github.com/LachlanNXT/DroidRacing/commit/4de916f9dd90a7d0c714d387ffa71afac9894bbd",
"Commit Corrections:": "https://github.com/LachlanNXT/DroidRacing/commit/1e7559885a4ad5a218e7e977b3654fb16219615c"
},
{
"Changes:": [
"-\t\t\t\treturn self._attribute(self.asn.trans().pack()+self.speaker.pack()) + Aggregator4(self.asn,self.speaker).pack(negotiated)\n",
"+\t\t\t\treturn self._attribute(self.asn.trans()+self.speaker.pack()) + Aggregator4(self.asn,self.speaker).pack(negotiated)\n"
],
"Message:": "WIP",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/s2ugimot/exabgp/commit/1bae7ca0eb96e6cdc70b203f67d1129d95fcd806",
"Commit Corrections:": "https://github.com/s2ugimot/exabgp/commit/f4730d806c8f25a6edd0afce8fcf6ec2c84f1c62"
},
{
"Changes:": [
"- EXP_MONTH = [(x, \"%02d\" % x) for x in xrange(1, 13)]\n",
"- EXP_YEAR = [(x, x) for x in xrange(date.today().year,\n",
"- date.today().year + 15)]\n",
"+\n",
"+ _year = date.today().year\n",
"+ EXP_MONTH = [(x, \"{0:02d}\".format(x)) for x in range(1, 13)]\n",
"+ EXP_YEAR = [(x, str(x)) for x in range(_year, _year + 15)]\n"
],
"Message:": "Improve `EXP_MONTH` and `EXP_YEAR` options building\n\n- Use `range` instead of `xrange` for Python 3 compatibility. Even with\n Python 2, the used ranges are small enough to not worrying about.\n- Use `str.format` instead of the \"mod\" syntax.\n- Build years list with a string year as label.\n- Avoid calling `date.today` twice.",
"Additions:": 4,
"Deletions:": 3,
"Commit Mistakes:": "https://github.com/7ws/django-authorizenet/commit/35f7319cb18e46952971020b6437bea3c56d77d4",
"Commit Corrections:": "https://github.com/7ws/django-authorizenet/commit/a253dbd11a9df9b7cb16987711f68ba02fc9253a"
},
{
"Changes:": [
"- return try_render_template('repo/packages.html', repo_packages=packages,\n",
"+ return try_render_template('repo/packages.html', objs=packages,\n"
],
"Message:": "fix typo",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/Antergos/antbs/commit/fe0d633aeb21429c57d3a3888b65718653c1e719",
"Commit Corrections:": "https://github.com/Antergos/antbs/commit/191aff94581a501c924eb7ed8ebb37e530862760"
},
{
"Changes:": [
"- #self.assertFalse(any(version.values()))\n",
"+ self.assertFalse(any(version.values()))\n"
],
"Message:": "Remove unnecessarily-disabled sanity check\n\nThis was commented out for reasons having nothing to do with anything\nelse going on in 0c069dd. Uncommenting this sanity check so that we are\nnotified if we need to update our targets in the future.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/terminalmage/salt/commit/d235b1245be7bf77222377f88b831b6cb2a744ee",
"Commit Corrections:": "https://github.com/terminalmage/salt/commit/2437d4789faf1c7df16ac906cf34c1246541e8f5"
},
{
"Changes:": [
"- rotations (:class:numpy:`array`): Array of all rotations\n",
"+ rotations (:class:`numpy.array`): Array of all rotations\n",
"- rotations (:class:numpy:`array`): Array containing the rotations of\n",
"+ rotations (:class:`numpy.array`): Array containing the rotations of\n",
"- disp_sq (:class:numpy:`array`): Array containing the squared\n",
"+ disp_sq (:class:`numpy.array`): Array containing the squared\n",
"- rotations (class:numpy:`array`): Array of the rotations\n",
"+ rotations (class:`numpy.array`): Array of the rotations\n",
"- disp_sq (:class:numpy:`array`): Array containing the squared\n",
"+ disp_sq (:class:`numpy.array`): Array containing the squared\n",
"- rotations (class:numpy:`array`): Array of the rotations\n",
"+ rotations (class:`numpy.array`): Array of the rotations\n",
"- disp_sq (:class:numpy:`array`): Array containing the squared\n",
"+ disp_sq (:class:`numpy.array`): Array containing the squared\n",
"- rotations (class:numpy:`array`): Array of the rotations\n",
"+ rotations (class:`numpy.array`): Array of the rotations\n",
"- .. math:: \\gamma_2 &= \\frac{<\\Delta r \\Delta\\theta >^2 -\n",
"- <\\Delta r>^2<\\Delta \\theta>^2 }{<\\Delta r^2><\\Delta\\theta^2>}\n",
"+ .. math:: \\gamma_2 &= \\frac{\\langle\\Delta r \\Delta\\theta \\rangle^2 -\n",
"+ \\langle\\Delta r\\rangle^2\\langle\\Delta \\theta\\rangle^2\n",
"+ }{\\langle\\Delta r^2\\rangle\\langle\\Delta\\theta^2\\rangle}\n",
"- disp_sq (:class:numpy:`array`): Array containing the squared\n",
"+ disp_sq (:class:`numpy.array`): Array containing the squared\n",
"- rotations (class:numpy:`array`): Array of the rotations\n",
"+ rotations (class:`numpy.array`): Array of the rotations\n",
"- .. math:: \\gamma_2 &= \\frac{<\\Delta r \\Delta\\theta >^2 -\n",
"- <\\Delta r>^2<\\Delta \\theta>^2 }{<\\Delta r^2><\\Delta\\theta^2>}\n",
"+ .. math:: \\gamma_2 &= \\frac{\\langle\\Delta r \\Delta\\theta \\rangle^2 -\n",
"+ \\langle\\Delta r\\rangle^2\\langle\\Delta \\theta\\rangle^2\n",
"+ }{\\langle\\Delta r^2\\rangle\\langle\\Delta\\theta^2\\rangle}\n",
"- .. math:: Q = \\langle (\\Delta \\theta - \\langle \\Delta \\theta \\rangle)\n",
"- (\\Delta r - \\langle \\Delta r \\rangle) \\rangle\n",
"+ .. math:: Q = (\\Delta \\theta - \\langle \\Delta \\theta \\rangle)\n",
"+ (\\Delta r - \\langle \\Delta r \\rangle)\n",
"- disp_sq (:class:numpy:`array`): Array containing the squared\n",
"+ disp_sq (:class:`numpy.array`): Array containing the squared\n",
"- rotations (class:numpy:`array`): Array of the rotations\n",
"+ rotations (class:`numpy.array`): Array of the rotations\n",
"- :class:numpy:`array`: Array of corrrelated residuals\n",
"+ :class:`numpy.array`: Array of corrrelated residuals\n",
"- .. math:: Q = \\langle (\\Delta \\theta - \\langle \\Delta \\theta \\rangle)\n",
"- (\\Delta r - \\langle \\Delta r \\rangle) \\rangle\n",
"+ .. math:: Q = (\\Delta \\theta - \\langle \\Delta \\theta \\rangle)\n",
"+ (\\Delta r - \\langle \\Delta r \\rangle)\n",
"- system (system): Hoomd system object\n",
"+ system (:class:`hoomd.system`): Hoomd system object\n",
"- disp_sq (:class:numpy:`array`): Array containing the squared\n",
"+ disp_sq (:class:`numpy.array`): Array containing the squared\n",
"- rotations (class:numpy:`array`): Array of the rotations\n",
"+ rotations (class:`numpy.array`): Array of the rotations\n",
"- (float): The distance between rotations (i.e. the binning)\n",
"+ delta_rot (float): The distance between rotations (i.e. the binning)\n",
"- factor = ((rot_matrix * prob_matrix) * disp_matrix.transpose()) * \\\n",
"- delta_disp * delta_rot\n",
"+ factor = (((rot_matrix * prob_matrix) * disp_matrix.transpose()) *\n",
"+ delta_disp * delta_rot)\n",
"- param: input_xml Filename of the file containing the input configuration\n",
"- param: temp The target temperature at which to run the simulation\n",
"- param: press The target pressure at which to run the simulation\n",
"- param: rigid Boolean value indicating whether to integrate using rigid\n",
"- bodes.\n",
"+\n",
"+ Args:\n",
"+ input_xml (string): Filename of the file containing the input\n",
"+ configuration\n",
"+ temp (float): The target temperature at which to run the simulation\n",
"+ press (float): The target pressure at which to run the simulation\n",
"+ rigid (bool): Boolean value indicating whether to integrate using rigid\n",
"+ bodes.\n",
"- dyn.print_all(system.take_snapshot(rigid_bodies=True), \\\n",
"- timestep, \\\n",
"- outfile=basename+\"-dyn.dat\" \\\n",
"- )\n",
"- dyn.print_corr_dist(system.take_snapshot(rigid_bodies=True),\\\n",
"- timestep,\\\n",
"- outfile=basename+\"-corr.dat\"\n",
"- )\n",
"+ dyn.print_all(system, timestep, outfile=basename+\"-dyn.dat\")\n",
"+ dyn.print_corr_dist(system, timestep, outfile=basename+\"-corr.dat\")\n"
],
"Message:": "Minor Fixes - Typos and maths in docs\n\nEnsuring the documentation showing the functions is correct and\naccurate.",
"Additions:": 39,
"Deletions:": 40,
"Commit Mistakes:": "https://github.com/malramsay64/MD-Molecules-Hoomd/commit/adeae80f9a22cb9f81660cb5b6416ec42d9ef099",
"Commit Corrections:": "https://github.com/malramsay64/MD-Molecules-Hoomd/commit/2bb8eaa5ceff6a64452e7e94972539843300dba6"
},
{
"Changes:": [
"+ logo.update()\n"
],
"Message:": "Added vertical and horizontal decimal values in the logo class for movement and added lines to update the rect.centerx and rect.centery values based on these decimal values. I have also added a call to logo.update() in the main function and imported the math library into logo.py. With these changes, the logo moves, but it incorrectly moves off the screen in a vertical direction.",
"Additions:": 1,
"Deletions:": 0,
"Commit Mistakes:": "https://github.com/AdamD2/dvd-waiting-screen/commit/2862ef78db7018fa8b84131102ada5cf1bc34296",
"Commit Corrections:": "https://github.com/AdamD2/dvd-waiting-screen/commit/e43a088b05c7114e20cc7e5e6d6304b88f7813da"
},
{
"Changes:": [
"+# -*- coding: utf-8 -*-\n",
"+# Generated by Django 1.9.7 on 2016-06-28 02:01\n",
"+from __future__ import unicode_literals\n",
"+\n",
"+from django.db import migrations, models\n",
"+\n",
"+\n",
"+class Migration(migrations.Migration):\n",
"+\n",
"+ dependencies = [\n",
"+ ('quickfireQuestions', '0005_comment'),\n",
"+ ]\n",
"+\n",
"+ operations = [\n",
"+ migrations.AddField(\n",
"+ model_name='question',\n",
"+ name='isAnswered',\n",
"+ field=models.BooleanField(default=False),\n",
"+ ),\n",
"+ ]"
],
"Message:": "ADD \"created the open/closed buttons for the quickfire questions, and now the author of the question can also choose the correct answer and the question will be closed and the correct comment will be marked as Correct. also users are no longer able to to submit an answer once a question is closed.\"",
"Additions:": 20,
"Deletions:": 0,
"Commit Mistakes:": "https://github.com/Pujolsluis/quicktutors/commit/840a40016c6636ddabdab2a1f58601c0fad6e087",
"Commit Corrections:": "https://github.com/Pujolsluis/quicktutors/commit/ca5accf98ee512d57e92df6faa871a1e6a64d0f5"
},
{
"Changes:": [
"-import interface.views # noqa\n",
"+import interface.views # noqa"
],
"Message:": "#2153: __init__.py, adjust spacing and indentation",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/jeff1evesque/machine-learning/commit/19ece78501bcb71146ef31f8af443df884f32cef",
"Commit Corrections:": "https://github.com/jeff1evesque/machine-learning/commit/375293fbfb2b1c023b1f7485b0f650a6241af8c5"
},
{
"Changes:": [
"- warnings.warn(DeprecationWarning, \"The net module will be removed in the next release due to its general insecurity\")\r\n",
"+ warnings.warn(\"The net module will be removed in the next release due to its general insecurity\", DeprecationWarning)\r\n"
],
"Message:": "Correct warning syntax",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/gappleto97/p2p-project/commit/45eeedb0e081436161719f94f48d40f0577bbfd9",
"Commit Corrections:": "https://github.com/gappleto97/p2p-project/commit/9b822e45e5f4e60fbd0a02a616e122cedd0e2358"
},
{
"Changes:": [
"- if basedn is None:\n",
"- raise ldap.UNWILLING_TO_PERFORM('Invalid request to create. basedn cannot be None')\n",
"+\n",
"- elif properties.get(self._rdn_attribute, None) is not None:\n",
"- # Favour the value in the properties dictionary\n",
"- v = properties.get(self._rdn_attribute)\n",
"- if isinstance(v, list):\n",
"- rdn = ensure_str(v[0])\n",
"- else:\n",
"- rdn = ensure_str(v)\n",
"+ \n",
"+ # This change here, means we can pre-load a full dn to _dn, or we can\n",
"+ # accept based on the rdn\n",
"+ tdn = self._dn\n",
"+\n",
"+ if tdn is None:\n",
"+ if basedn is None:\n",
"+ raise ldap.UNWILLING_TO_PERFORM('Invalid request to create. basedn cannot be None')\n",
"+\n",
"+ if properties.get(self._rdn_attribute, None) is not None:\n",
"+ # Favour the value in the properties dictionary\n",
"+ v = properties.get(self._rdn_attribute)\n",
"+ if isinstance(v, list):\n",
"+ rdn = ensure_str(v[0])\n",
"+ else:\n",
"+ rdn = ensure_str(v)\n",
"- tdn = '%s=%s,%s' % (self._rdn_attribute, rdn, basedn)\n",
"+ tdn = '%s=%s,%s' % (self._rdn_attribute, rdn, basedn)\n",
"- def create(self, rdn, properties=None, basedn=None):\n",
"+ def create(self, rdn=None, properties=None, basedn=None):\n"
],
"Message:": "Ticket 48888 - Correction to create of dsldapobject\n\nBug Description: We did not allow properly setting of DN for singletons in\ncreate, or the many object case with the factor. This corrects that behaviour.\n\nFix Description: If _dn is set, use it, else use the RDn + BaseDN to create\nthe dn of the object to be created\n\nhttps://fedorahosted.org/389/ticket/48888\n\nAuthor: wibrown\n\nReview by: mreynolds (Thanks)",
"Additions:": 19,
"Deletions:": 11,
"Commit Mistakes:": "https://github.com/Firstyear/lib389/commit/24f7d8d45a2816c57ba979d36309a66b82c8b980",
"Commit Corrections:": "https://github.com/Firstyear/lib389/commit/a0092e9a8c2f1714699b1124aa541152fa22b590"
},
{
"Changes:": [
"- packages=['smarty', 'smarty/tests'],\n",
"+ packages=['smarty', 'smarty/tests', 'smarty/data'],\n"
],
"Message:": "Added parameterization of solvent mixtures to tests",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/open-forcefield-group/smarty/commit/fb1670cc396b0c49face7f29612ce9c947c5495e",
"Commit Corrections:": "https://github.com/open-forcefield-group/smarty/commit/ea67e5b0ae8896571ceeb52b83cf0b72d089118a"
},
{
"Changes:": [
"- if (datetime.datetime.now() - r.last_edit_time).days > 60:\n",
"- r.last_edit_time = 'style=\"background: red;\" | ' + r.last_edit_time.strftime(TIME_FORMAT_STRING)\n",
"+ old = (datetime.datetime.now() - r.last_edit_time).days > 60\n",
"+ r.last_edit_time = ('style=\"background: red;\" | ' if old else '') + r.last_edit_time.strftime(TIME_FORMAT_STRING)\n",
"- r.replies = unicode(section).count(u\"(UTC)\")\n",
"+ r.replies = unicode(section).count(u\"(UTC)\") - 1\n"
],
"Message:": "[botreq-status] Fix two formatting issues\n\nI wasn't counting replies correctly (the initial post doesn't count as a reply) and I wasn't formatting the last edit time outside the if block that was changed in this commit.",
"Additions:": 3,
"Deletions:": 3,
"Commit Mistakes:": "https://github.com/APerson241/APersonBot/commit/72a282a461edab462ace0729b0e56efcc69fd9e3",
"Commit Corrections:": "https://github.com/APerson241/APersonBot/commit/790d363b6693ba7daa6a774d95af17cb04f4c404"
},
{
"Changes:": [
"- print self.chromedirect\r\n"
],
"Message:": "Updates for python 3 syntax",
"Additions:": 0,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/jprince14/BingTool/commit/e16b36bd4618c79675216bf212d5219546d5aa50",
"Commit Corrections:": "https://github.com/jprince14/BingTool/commit/6fb1ab8c9952b6332a7f5f500b7363f9fccf9c82"
},
{
"Changes:": [
"+ if self.verbose:\n",
"+ log.setLevel(logging.DEBUG)\n",
"+ else:\n",
"+ log.setLevel(logging.INFO)\n",
"+\n",
"- self.log.info('SER_SERVERID_PROP not provided')\n",
"+ self.log.debug('SER_SERVERID_PROP not provided')\n",
"+ # The lack of this value basically rules it out in most cases\n",
"+ self.isLocal = False\n",
"+ self.host = None\n",
"+ self.ldapuri = None\n",
"+ self.sslport = None\n",
"+ self.port = None\n",
"+ elif args.get(SER_LDAP_URL, None) is not None:\n",
"+ self.ldapuri = args.get(SER_LDAP_URL)\n",
"+ if self.verbose:\n",
"+ self.log.info(\"Allocate %s with %s\" % (self.__class__, self.ldapuri))\n",
"- self.host = None\n",
"- self.log.info(\"Allocate %s with %s:%s\" % (self.__class__,\n",
"- self.host,\n",
"- (self.sslport or\n",
"- self.port)))\n",
"+ self.log.info(\"Allocate %s with %s:%s\" % (self.__class__, self.host, (self.sslport or self.port)))\n",
"+\n",
"- def open(self, saslmethod=None, certdir=None):\n",
"+ def open(self, saslmethod=None, certdir=None, starttls=False):\n",
"+ self.set_option(ldap.OPT_X_TLS_CACERTFILE, certdir)\n",
"+\n",
"+ if certdir or starttls:\n",
"- self.set_option(ldap.OPT_X_TLS_CACERTFILE, certdir)\n",
"- log.info(\"open(): bound as %s\" % self.whoami_s())\n",
"+ log.info(\"open(): bound as %s\" % self.binddn)\n",
"+ elif self.ldapuri:\n",
"+ return self.ldapuri\n"
],
"Message:": "Ticket 48884 - Bugfixes for mapped object and new connections\n\nBug Description: This patch corrects a number of behaviours around ldap\nconnections, and the mapped object type behaviour in certain conditions.\n(Rdn set through properties, rather than argument)\n\nFix Description: Fix handling of ldapurl, start_tls, and mapped_objects\nwhen the rdn is part of properties.\n\nhttps://fedorahosted.org/389/ticket/48884\n\nAuthor: wibrown\n\nReview by: nhosoi (Thanks)",
"Additions:": 25,
"Deletions:": 9,
"Commit Mistakes:": "https://github.com/Firstyear/lib389/commit/81d7eab894851020b3dd605a9dd4d462c813eef8",
"Commit Corrections:": "https://github.com/Firstyear/lib389/commit/cb09ca78c9129a43a3b33b26439d2c72f5f7c693"
},
{
"Changes:": [
"-], debug=True)\r\n",
"+], debug=False)\r"
],
"Message:": "Removing debug flags",
"Additions:": 1,
"Deletions:": 1,