-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathciro-santilli-s-open-source-contributions.bigb
2456 lines (1954 loc) · 61.6 KB
/
ciro-santilli-s-open-source-contributions.bigb
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
= Ciro Santilli's open source contributions
{scope}
= Always out-of-date and rarely update list of open source contributions by Ciro Santilli
{synonym}
This is mostly stuff from before 2016 when Ciro was anxious to document his contributions to <Ciro Santilli's biography>[get a job].
Most of the projects here are also minor contributions, or Ciro later noticed that the projects were not useful enough to work on and that he was actually wasting his time.
= Size scale
{parent=Ciro Santilli's open source contributions}
Some of the contributions are subjectively self evaluated based on:
* How many significant lines changed (no indentation changes, moves, mass refactoring, trivial tests, etc.):
| 0
| only trivial changes
| 1
| \< 20
| 2
| \< 150
| 3
| > 150
* How hard it was to make it. 4 algorithmic lines are harder than 100 <web development>/documentation lines.
= Patches
{parent=Ciro Santilli's open source contributions}
= Merged by others
{parent=Patches}
Only patches which were reviewed by at least one person with push permission will be listed here.
This may also include patches which were rejected in favor of another patch, but strongly influenced the merged patch.
|| Date
|| Project
|| Size
|| Description
| 2024-09
| <python-bitcoin-blockchain-parser>
| 1
| https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/112[Update plyvel==1.5.1 to fix fatal error: longintrepr.h: No such file or directory build]
| 2024-02
| <btcdeb>
| 0
| https://github.com/bitcoin-core/btcdeb/pull/143[fix ‘runtime_error’ is not a member of ‘std’ build error]
| 2019-09
| <KaTeX>
| 1
| https://github.com/KaTeX/KaTeX/pull/2091[Create globalGroup option to place definitions in global scope]
| 2018-06
| raspi3-tutorial
| 0
| https://github.com/bztsrc/raspi3-tutorial/pull/34[Explain how to see UART1]
| 2018-05
| <Buildroot>
| 1
| https://github.com/buildroot/buildroot/commit/45719594d08024df97db55333f8ab3ba2b4fc23e[ltp-testsuite: add --with-open-posix-testsuite]
| 2018-03
| <Buildroot>
| 1
| https://github.com/buildroot/buildroot/commit/8a6e30efdeb9f31d51a92ed465373f4128f55e8a[qemu_x86_64_defconfig: fix kernel header version after bump to 4.15]
| 2017-11
| <Cocos2d>
| 1
| https://github.com/cocos2d/cocos2d-x-3rd-party-libs-bin/pull/304[Recreate libfmod.so.6 symlinks]
| 2017-10
| <Cocos2d>
| 1
| https://github.com/cocos2d/cocos2d-x-3rd-party-libs-src/pull/155#issuecomment-336760545[Make bullet use -fPIC]
| 2017-07
| https://github.com/KhronosGroup/OpenCL-Headers[OPenCL Headers]
| 0
| https://github.com/KhronosGroup/OpenCL-Headers/issues/18[C11 anonymous structs / unions should allow xyz notation for vector types]
| 2017-06
| <Linux insides>
| 0
| https://github.com/0xAX/linux-insides/pull/489[Mention Buildroot in addition to ivandaviov/minimal]
| 2017-06
| <opengl-tutorial.org>
| 0
| https://github.com/opengl-tutorials/ogl/pull/17[Use existing empty layout on feed.xml]
| 2017-04
| https://github.com/ssloy/tinyrenderer[Tiny Renderer]
| 0
| https://github.com/ssloy/tinyrenderer/pull/10[Add gitignore]
| 2017-02
| https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers[Vulkan Loader]
| 0
| https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers/pull/1536[Use nproc instead of ncpu]
| 2017-01
| https://github.com/boostorg/geometry[Boost Geometry]
| 1
| https://github.com/boostorg/geometry/issues/376[What is "QPoint::double" in doc/example_adapting_a_legacy_geometry_object_model.qbk ?]
| 2016-12
| <Freetype GL>
| 1
| https://github.com/rougier/freetype-gl/pull/144#event-905730810[GLFW Ubuntu package works on 16.10]
| 2016-11
| <honza vim-snippets>
| 1
| https://github.com/honza/vim-snippets/pull/816[Add C variable printf debug snippets]
| 2016-09
| https://bitbucket.org/osrf/gazebo[Gazebo]
| 1
| https://bitbucket.org/osrf/gazebo/pull-requests/2460/add-a-world-to-the-gui_overlay_plugin_time/diff[Add a world to the gui_overlay_plugin_time example]
| 2016-07
| https://github.com/googlesamples/android-vulkan-tutorials[Android Vulkan Tutorials]
| 1
| https://github.com/googlesamples/android-vulkan-tutorials/pull/12[Use android API 24]
| 2016-07
| https://github.com/ivandavidov/minimal[minimal linux live]
| 0
| https://github.com/ivandavidov/minimal/pull/30[Fix time sh instead of sh time]
| 2016-06
| <GHDL>
| 0
| https://github.com/tgingold/ghdl/pull/81[Typo severals -> several in Invoking doc]
| 2016-06
| <GHDL>
| 1
| https://github.com/tgingold/ghdl/pull/80[Document GCC backend needed to generate executables]
| 2016-06
| <GHDL>
| 0
| https://github.com/tgingold/ghdl/pull/79[Typo debugger -> debugged in BUILD.txt]
| 2016-06
| <GHDL>
| 0
| https://github.com/tgingold/ghdl/pull/77[Typo carray -> carry in full adder example]
| 2016-05
| https://github.com/wavexx/facedetect[facedetect]
| 1
| https://github.com/wavexx/facedetect/pull/7#event-675223551[Add example to extract faces with imagemagick]
| 2016-05
| <ebookFoundation free-programming-books>
| 0
| https://github.com/vhf/free-programming-books/pull/1940[Create data science section and add Kaggle to it]
| 2016-05
| <opengl-tutorial.org>
| 0
| https://github.com/opengl-tutorials/ogl/pull/18[Add empty line before triple quotes]
| 2016-05
| https://github.com/bulletphysics/bullet3[Bullet Physics]
| 1
| https://github.com/bulletphysics/bullet3/pull/612[Improve HelloWorld]
| 2016-04
| <Freetype GL>
| 1
| https://github.com/rougier/freetype-gl/pull/114[Find out how to compile on Ubuntu and document it]
| 2016-03
| <ranger (file manager)>
| 0
| https://github.com/hut/ranger/pull/506[gitignore install_log.txt generated by make install]
| 2016-03
| <ranger (file manager)>
| 1
| https://github.com/hut/ranger/pull/511[Add %confdir macro]
| 2016-03
| <ranger (file manager)>
| 1
| https://github.com/hut/ranger/pull/507[set_bookmark for directories other than the current]
| 2016-02
| <Jami (software)>
| 2
| https://tuleap.ring.cx/plugins/tracker/?aid=446[Create working Android video hardware decoding prototype]
| 2016-02
| <Jami (software)>
| 1
| https://github.com/savoirfairelinux/ring-project[Started the one command build which was later made official]
| 2016-01
| https://github.com/haoel/leetcode[leetcode]
| 1
| https://github.com/haoel/leetcode/pull/90[Java LRUCache with LinkedHashMap]
| 2015-12
| <ebookFoundation free-programming-books>
| 0
| https://github.com/vhf/free-programming-books/pull/1727[Add InterviewBit to problem sets]
| 2015-10
| <Linux insides>
| 0
| https://github.com/0xAX/linux-insides/pull/227[Recommend ivandaviov/minimal to generate initrd]
| 2015-08
| https://github.com/programble/bare-metal-tetris[bare-metal-tetris]
| 0
| https://github.com/programble/bare-metal-tetris/pull/2[make clean also removes tetris.iso]
| 2015-08
| https://github.com/RWTH-OS/eduOS[eduOS]
| 0
| https://github.com/RWTH-OS/eduOS/pull/7[README typos Binutils and NASM]
| 2015-08
| <GDB>
| 0
| https://sourceware.org/ml/gdb-patches/2015-07/msg00744.html[python: fix Linetable case to LineTable in docstrings and comments]
| 2015-07
| <GDB>
| 0
| https://sourceware.org/ml/gdb-patches/2015-08/msg00013.html[Remove outdated comment from call-rt-st.exp]
| 2015-07
| <GDB>
| 0
| https://sourceware.org/ml/gdb-patches/2015-08/msg00015.html[Fix broken CONTRIBUTE link to GNU insignificant changes]
| 2015-07
| <GDB>
| 1
| https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=commit;h=7b849db4f213d6734b4121ca5e5cab3341a5140c[py-linetable.c: Fix doc of LineTable.source_lines' return type]
| 2015-07
| https://en.wikipedia.org/wiki/GNU_Binutils[Binutils]
| 1
| https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=commit;h=7e3023528162de7760a0e7e487aa81bbf44cb6a9[Clarify case requirements for gas pseudo-ops]
| 2015-07
| https://github.com/aquynh/capstone[Capstone]
| 0
| https://github.com/aquynh/capstone/issues/419[Website typos at beyond_llvm]
| 2015-07
| https://github.com/xolox/vim-session[Vim Session]
| 1
| https://github.com/xolox/vim-session/pull/81[auto_save_to option added]
| 2015-05
| https://en.wikipedia.org/wiki/Netwide_Assembler[NASM]
| 0
| https://bugzilla.nasm.us/show_bug.cgi?id=3392310[doc: typo occationally]
| 2015-05
| <ebookFoundation free-programming-books>
| 0
| https://github.com/vhf/free-programming-books/pull/1468[Computer Science from the Bottom Up]
| 2015-05
| <ebookFoundation free-programming-books>
| 0
| https://github.com/vhf/free-programming-books/pull/1461[problem-sets: leetcode]
| 2015-05
| <ebookFoundation free-programming-books>
| 0
| https://github.com/vhf/free-programming-books/pull/1459[Papers we love]
| 2015-04
| https://en.wikipedia.org/wiki/AlternativeTo[alternativeTo]
| 0
| https://alternativeto.net/user/cirosantilli/added/[icanprove.com]
| 2015-04
| <ebookFoundation free-programming-books>
| 0
| https://github.com/vhf/free-programming-books/pull/1443[Knapsack Problems]
| 2015-04
| <ebookFoundation free-programming-books>
| 0
| https://github.com/vhf/free-programming-books/pull/1442[LSB]
| 2015-04
| <honza vim-snippets>
| 0
| https://github.com/honza/vim-snippets/pull/561[java: prinlna to print array]
| 2015-04
| <ebookFoundation free-programming-books>
| 0
| https://wcipeg.com[PEG Judge]
| 2015-03
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7912[Convert many JavaScript \# links to buttons]
| 2015-03
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8092[Factor permission check in issuable finder]
| 2015-03
| https://github.com/spring-projects/spring-integration-samples[Spring]
| 0
| https://github.com/spring-projects/spring-integration-samples/pull/130[Typo Gardle -> Gradle]
| 2015-02
| <Linux insides>
| 0
| https://github.com/0xAX/linux-insides[Make x86 paging reference title clearer]
| 2015-02
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlab-shell/pull/184[Ignore .bundle]
| 2015-02
| <ebookFoundation free-programming-books>
| 0
| https://github.com/vhf/free-programming-books/pull/1329[Problem sets: CareerCup]
| 2015-01
| <honza vim-snippets>
| 1
| https://github.com/honza/vim-snippets/pull/511[Fix false positive hyphen list item expansion]
| 2015-01
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7999[Append in place for strings and arrays]
| 2015-01
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7878[Remove unneeded password_confirmation from seed]
| 2015-01
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/8307[Typo in project API events comment]
| 2015-01
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7987[Replace match via get with get on routes]
| 2015-01
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/7925[Remove or prepend underscore _ to unused method arguments]
| 2015-01
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7905[Change always passing visible false tests]
| 2015-01
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7951[Make blob new and edit file editors more uniform]
| 2015-01
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8096[Replace regex methods by string ones]
| 2015-01
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8430[Simplify SSH fingerprint regexp extraction]
| 2015-01
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8520[Add tests for disabled blob edit button cases v2]
| 2014-12
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/8504[permission.md align table, rm double empty line]
| 2014-12
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/8324[Remove commit indicator from path on Commits tab]
| 2014-12
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/8230[Make protected branch perms explicit in doc]
| 2014-12
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/8497[doc workflow markdown style]
| 2014-12
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7989[Disallow POST to compare as it does not create objects]
| 2014-12
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/7782[Sort .gitignore]
| 2014-12
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7957[Remove unused Project#code function]
| 2014-12
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/8256[Remove unused has_gitlab_shell3? method]
| 2014-12
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7978[Add tests for tree edit routes]
| 2014-12
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7886[Disable / hide MR edit blob button if cannot edit]
| 2014-12
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/7882[Use blob local instead of instance]
| 2014-12
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7894[Fix dev user seed: ID was used twice]
| 2014-12
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/8466[Fix Rake tasks doc README: add top level h1]
| 2014-12
| https://github.com/ruby/ruby[Ruby]
| 0
| https://github.com/ruby/ruby/commit/512705e62d4929753845e449397cedeff0433f05[Typo close -> closes.]
| 2014-12
| <CommonMark>
| 1
| https://github.com/jgm/CommonMark/pull/246[Add tests for normalize outer whitespace removal]
| 2014-12
| <CommonMark>
| 1
| https://github.com/jgm/CommonMark/pull/249[spec_tests make --pattern affect --dump-tests]
| 2014-12
| <CommonMark>
| 1
| https://github.com/jgm/CommonMark/pull/247[Add --number option to run a single test by its id]
| 2014-12
| <CommonMark>
| 1
| https://github.com/jgm/CommonMark/pull/250[Don't raise exception on invalid UTF-8 output]
| 2014-12
| <CommonMark>
| 1
| https://github.com/jgm/CommonMark/pull/248[spec_tests add short options for common parameters]
| 2014-12
| <CommonMark>
| 0
| https://github.com/jgm/CommonMark/pull/240[Ignore pyc files]
| 2014-12
| <CommonMark>
| 1
| https://github.com/jgm/CommonMark/pull/240[Expose failure to normalize whitespaces]
| 2014-11
| <honza vim-snippets>
| 1
| https://github.com/honza/vim-snippets/pull/488[Markdown bold and italic]
| 2014-11
| <honza vim-snippets>
| 1
| https://github.com/honza/vim-snippets/pull/484[Markdown links URLs from the clipboard]
| 2014-11
| <honza vim-snippets>
| 1
| https://github.com/honza/vim-snippets/pull/483[Markdown autolinks]
| 2014-11
| <honza vim-snippets>
| 1
| https://github.com/honza/vim-snippets/pull/486[Let the short version of links not have title.]
| 2014-11
| <honza vim-snippets>
| 1
| https://github.com/honza/vim-snippets/pull/487[Fix markdown fenced code blocks.]
| 2014-11
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlab-shell/pull/193[Delete tags and branches that start with hyphen]
| 2014-11
| <GitLab>
| 3
| https://github.com/gitlabhq/gitlab-shell/pull/186[Restore hooks PATH before calling ruby]
| 2014-11
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8251[Factor regex error messages with spec API tests]
| 2014-11
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7944[Move new blob commit message textarea below editor]
| 2014-11
| https://github.com/bradfitz/gitbrute[gitbrute]
| 0
| https://github.com/bradfitz/gitbrute/pull/4[Usage]
| 2014-11
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8254[Factor GITLAB_SHELL_VERSION get method]
| 2014-11
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8168[Create dev fixture projects with fixed visibility]
| 2014-11
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8258[Factor using Repository#path_to_repo]
| 2014-11
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8094[Remove unused authenticate_user from project#show]
| 2014-11
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8233[Remove dead Event#new_branch? method]
| 2014-11
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8236[Don't output to stdout from lib non-interactive methods]
| 2014-11
| <GitLab>
| 2
| https://github.com/gitlabhq/gitlabhq/pull/7903[Fix version of test seed branches to specific revisions]
| 2014-11
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8234[Factor '0' * 40 blank ref constants]
| 2014-11
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7863[Transform remove blob link into button]
| 2014-11
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7516[Update default regex message to match regex]
| 2014-11
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/8222[Continue strings with backslash instead of append]
| 2014-11
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8182[Factor behaviors.scss constants]
| 2014-11
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/8241[Remove unneeded backslash: "/" == "/"]
| 2014-11
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8231[Fix push not allowed to protected branch if commit starts with 7 zeros]
| 2014-11
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8223[Use require spec_helper instead of relative path]
| 2014-11
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/8211[Fix doc rake import md style]
| 2014-11
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8213[Factor lib backend gitlab shell path]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8127[Run user select Js only where needed]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7866[Use button type=submit instead of input]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8120[Only run profile js on pages that need it]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8123[Better js -> URL projects map to reduce unneeded execution]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8005[Use Gitlab.config instead of Settings everywhere]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8155[Show nothing instead of unassigned on issues]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8125[Only run namespace select js when needed]
| 2014-10
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/8158[Merge File basename and dirname into split]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8159[Fix import.rake failed import if project name is also an existing namespace]
| 2014-10
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/8150[Remove unused variable user at lib/gitlab/markdown]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8088[Use argument list for sh instead of string]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8114[Only run avatar chooser Js on pages that need it]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8118[Remove whitespace link between user group avatars]
| 2014-10
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/8139[Fix doc raketasts import md style]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7994[Remove unneeded app/finders config.autoload path]
| 2014-10
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/8117[Improve grack auth hooks comment.]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8093[Remove unused admin/projects#repository method]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7961[Factor admin logs]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8029[Remove unused filter from ProjectsController]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8028[Remove unused dev_tools helper.]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8030[Factor authorize_push! and authorize_code_access!]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8087[Replace match with end_with: more readable, faster]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8102[Use @project on controllers, don't call method]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8101[Remove `param[:project_id]` at admin controller]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8097[DRY mentioned in magic note constant]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8113[Factor group forms]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8109[State on CONTRIBUTING that people should fix line style of touched lines]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/8110[Export all coffee classes with @]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7856[Fix missing flash on file edit error from web UI.]
| 2014-10
| https://github.com/jnicklas/capybara[Capybara]
| 0
| https://github.com/jnicklas/capybara/pull/1424[Fix History typo.]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7942[Make new and edit file submit more uniform]
| 2014-10
| <libgit2>
| 1
| https://github.com/libgit2/libgit2[Join typedef and struct definitions in single file]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7938[Factor dashboard helper methods]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7983[Factor issue and merge request services]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7981[Replace www.gitlab.com with about.gitlab.com]
| 2014-10
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/7991[Improve formatting of app/finders/README.md]
| 2014-10
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/7985[Remove outdated comment from commits_controller]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7963[Factor markup? gitlab_markdown? into new method]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7379[Remove unused title parameter]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7940[Make Spinach test names consistent]
| 2014-10
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlab-shell/pull/184[Ignore .bundle]
| 2014-10
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlab-shell/pull/183[Ignore tags file]
| 2014-10
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlab-shell/pull/182[Split one instance variable per line]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7919[Factor commit message textareas]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7948[Remove outdated comment on the project test seed]
| 2014-10
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/7947[Remove assignment without effect.]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7858[Add parenthesis to function def with arguments.]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7834[Remove test line without effect because no should.]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7922[Improve remove file commit message textarea placeholder]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7880[Replace :erb filter with plain HAML]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7881[Remove blame lines added leading whitespace]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7921[Improve new file commit message textarea placeholder.]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7920[Simplify custom MR good commit message hint]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7930[Move group feature step to match test location]
| 2014-10
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7904[Titleize blob action buttons.]
| 2014-09
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/7914[Remove statement without effect.]
| 2014-09
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/7913[Fix dev merge seed: update testme to gitlab-test.]
| 2014-09
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/7911[Remove trailing whitespace from views.]
| 2014-09
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7889[Remove def project from tests that inherit it.]
| 2014-09
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7873[Replace testme with gitlab-test.]
| 2014-09
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7897[Add predictable merge requests on dev seed.]
| 2014-09
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7895[Prevent email sending on admin dev seed.]
| 2014-09
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7898[Only show text wrap and diff notes for text in merge requests.]
| 2014-09
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7862[Add web UI file CRUD tests.]
| 2014-09
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7864[Remove type submit from button_tag since default.]
| 2014-09
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7877[Replace empty? nil? with blank?.]
| 2014-09
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlabhq/pull/7875[Typo indiciated -> indicated.]
| 2014-09
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7835[Remove unnecessary page. from tests.]
| 2014-09
| <GitLab>
| 1
| https://github.com/gitlabhq/gitlabhq/pull/7803[Remove ununsed CONTRIBUTING link on edit MR form.]
| 2014-09
| <GitLab>
| 1
| https://gitlab.com/gitlab-org/gitlab-development-kit/merge_requests/22[Add g++ dependency to ubuntu install.]
| 2014-09
| <GitLab>
| 0
| https://github.com/gitlabhq/gitlab_git/pull/44[Hound prefer single quotes.]
| 2014-09
| <libgit2>
| 0
| https://github.com/libgit2/libgit2/pull/2570[Remove unused buf variable from path/core test.]
| 2014-09