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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
|
%%WWWDIR%%/.csscomb.json
%%WWWDIR%%/.flayignore
%%WWWDIR%%/.foreman
%%WWWDIR%%/.gitattributes
%%WWWDIR%%/.github/ISSUE_TEMPLATE.md
%%WWWDIR%%/.github/PULL_REQUEST_TEMPLATE.md
%%WWWDIR%%/.gitlab-ci.yml
%%WWWDIR%%/.mailmap
%%WWWDIR%%/.pkgr.yml
%%WWWDIR%%/.rspec
%%WWWDIR%%/.rubocop.yml
%%WWWDIR%%/.rubocop_todo.yml
%%WWWDIR%%/.ruby-version
%%WWWDIR%%/.scss-lint.yml
%%WWWDIR%%/.vagrant_enabled
%%WWWDIR%%/CHANGELOG
%%WWWDIR%%/CONTRIBUTING.md
%%WWWDIR%%/GITLAB_SHELL_VERSION
%%WWWDIR%%/GITLAB_WORKHORSE_VERSION
%%WWWDIR%%/Gemfile
%%WWWDIR%%/LICENSE
%%WWWDIR%%/MAINTENANCE.md
%%WWWDIR%%/PROCESS.md
%%WWWDIR%%/Procfile
%%WWWDIR%%/README.md
%%WWWDIR%%/Rakefile
%%WWWDIR%%/VERSION
%%WWWDIR%%/app/assets/fonts/OFL.txt
%%WWWDIR%%/app/assets/fonts/SourceSansPro-Black.ttf.woff
%%WWWDIR%%/app/assets/fonts/SourceSansPro-Black.ttf.woff2
%%WWWDIR%%/app/assets/fonts/SourceSansPro-BlackIt.ttf.woff
%%WWWDIR%%/app/assets/fonts/SourceSansPro-BlackIt.ttf.woff2
%%WWWDIR%%/app/assets/fonts/SourceSansPro-Bold.ttf.woff
%%WWWDIR%%/app/assets/fonts/SourceSansPro-Bold.ttf.woff2
%%WWWDIR%%/app/assets/fonts/SourceSansPro-BoldIt.ttf.woff
%%WWWDIR%%/app/assets/fonts/SourceSansPro-BoldIt.ttf.woff2
%%WWWDIR%%/app/assets/fonts/SourceSansPro-ExtraLight.ttf.woff
%%WWWDIR%%/app/assets/fonts/SourceSansPro-ExtraLight.ttf.woff2
%%WWWDIR%%/app/assets/fonts/SourceSansPro-ExtraLightIt.ttf.woff
%%WWWDIR%%/app/assets/fonts/SourceSansPro-ExtraLightIt.ttf.woff2
%%WWWDIR%%/app/assets/fonts/SourceSansPro-It.ttf.woff
%%WWWDIR%%/app/assets/fonts/SourceSansPro-It.ttf.woff2
%%WWWDIR%%/app/assets/fonts/SourceSansPro-Light.ttf.woff
%%WWWDIR%%/app/assets/fonts/SourceSansPro-Light.ttf.woff2
%%WWWDIR%%/app/assets/fonts/SourceSansPro-LightIt.ttf.woff
%%WWWDIR%%/app/assets/fonts/SourceSansPro-LightIt.ttf.woff2
%%WWWDIR%%/app/assets/fonts/SourceSansPro-Regular.ttf.woff
%%WWWDIR%%/app/assets/fonts/SourceSansPro-Regular.ttf.woff2
%%WWWDIR%%/app/assets/fonts/SourceSansPro-Semibold.ttf.woff
%%WWWDIR%%/app/assets/fonts/SourceSansPro-Semibold.ttf.woff2
%%WWWDIR%%/app/assets/fonts/SourceSansPro-SemiboldIt.ttf.woff
%%WWWDIR%%/app/assets/fonts/SourceSansPro-SemiboldIt.ttf.woff2
%%WWWDIR%%/app/assets/images/auth_buttons/azure_64.png
%%WWWDIR%%/app/assets/images/auth_buttons/bitbucket_64.png
%%WWWDIR%%/app/assets/images/auth_buttons/facebook_64.png
%%WWWDIR%%/app/assets/images/auth_buttons/github_64.png
%%WWWDIR%%/app/assets/images/auth_buttons/gitlab_64.png
%%WWWDIR%%/app/assets/images/auth_buttons/google_64.png
%%WWWDIR%%/app/assets/images/auth_buttons/twitter_64.png
%%WWWDIR%%/app/assets/images/dark-scheme-preview.png
%%WWWDIR%%/app/assets/images/emoji.png
%%WWWDIR%%/app/assets/images/emoji@2x.png
%%WWWDIR%%/app/assets/images/favicon.ico
%%WWWDIR%%/app/assets/images/gitlab_logo.png
%%WWWDIR%%/app/assets/images/gitorious-logo-black.png
%%WWWDIR%%/app/assets/images/gitorious-logo-blue.png
%%WWWDIR%%/app/assets/images/icon-link.png
%%WWWDIR%%/app/assets/images/koding-logo.svg
%%WWWDIR%%/app/assets/images/logo.svg
%%WWWDIR%%/app/assets/images/logo_wordmark.svg
%%WWWDIR%%/app/assets/images/mailers/gitlab_header_logo.png
%%WWWDIR%%/app/assets/images/mailers/gitlab_tanuki_2x.png
%%WWWDIR%%/app/assets/images/monokai-scheme-preview.png
%%WWWDIR%%/app/assets/images/msapplication-tile.png
%%WWWDIR%%/app/assets/images/no_avatar.png
%%WWWDIR%%/app/assets/images/no_group_avatar.png
%%WWWDIR%%/app/assets/images/onion_skin_sprites.gif
%%WWWDIR%%/app/assets/images/solarized-dark-scheme-preview.png
%%WWWDIR%%/app/assets/images/solarized-light-scheme-preview.png
%%WWWDIR%%/app/assets/images/swipemode_sprites.gif
%%WWWDIR%%/app/assets/images/touch-icon-ipad-retina.png
%%WWWDIR%%/app/assets/images/touch-icon-ipad.png
%%WWWDIR%%/app/assets/images/touch-icon-iphone-retina.png
%%WWWDIR%%/app/assets/images/touch-icon-iphone.png
%%WWWDIR%%/app/assets/images/white-scheme-preview.png
%%WWWDIR%%/app/assets/javascripts/LabelManager.js
%%WWWDIR%%/app/assets/javascripts/activities.js
%%WWWDIR%%/app/assets/javascripts/admin.js
%%WWWDIR%%/app/assets/javascripts/api.js
%%WWWDIR%%/app/assets/javascripts/application.js
%%WWWDIR%%/app/assets/javascripts/aside.js
%%WWWDIR%%/app/assets/javascripts/autosave.js
%%WWWDIR%%/app/assets/javascripts/awards_handler.js
%%WWWDIR%%/app/assets/javascripts/behaviors/autosize.js
%%WWWDIR%%/app/assets/javascripts/behaviors/details_behavior.js
%%WWWDIR%%/app/assets/javascripts/behaviors/quick_submit.js
%%WWWDIR%%/app/assets/javascripts/behaviors/requires_input.js
%%WWWDIR%%/app/assets/javascripts/behaviors/toggler_behavior.js
%%WWWDIR%%/app/assets/javascripts/blob/blob_ci_yaml.js
%%WWWDIR%%/app/assets/javascripts/blob/blob_file_dropzone.js
%%WWWDIR%%/app/assets/javascripts/blob/blob_gitignore_selector.js
%%WWWDIR%%/app/assets/javascripts/blob/blob_gitignore_selectors.js
%%WWWDIR%%/app/assets/javascripts/blob/blob_license_selector.js
%%WWWDIR%%/app/assets/javascripts/blob/blob_license_selectors.js
%%WWWDIR%%/app/assets/javascripts/blob/template_selector.js
%%WWWDIR%%/app/assets/javascripts/blob_edit/blob_edit_bundle.js
%%WWWDIR%%/app/assets/javascripts/blob_edit/edit_blob.js
%%WWWDIR%%/app/assets/javascripts/boards/boards_bundle.js.es6
%%WWWDIR%%/app/assets/javascripts/boards/components/board.js.es6
%%WWWDIR%%/app/assets/javascripts/boards/components/board_blank_state.js.es6
%%WWWDIR%%/app/assets/javascripts/boards/components/board_card.js.es6
%%WWWDIR%%/app/assets/javascripts/boards/components/board_delete.js.es6
%%WWWDIR%%/app/assets/javascripts/boards/components/board_list.js.es6
%%WWWDIR%%/app/assets/javascripts/boards/components/new_list_dropdown.js.es6
%%WWWDIR%%/app/assets/javascripts/boards/mixins/sortable_default_options.js.es6
%%WWWDIR%%/app/assets/javascripts/boards/models/issue.js.es6
%%WWWDIR%%/app/assets/javascripts/boards/models/label.js.es6
%%WWWDIR%%/app/assets/javascripts/boards/models/list.js.es6
%%WWWDIR%%/app/assets/javascripts/boards/models/user.js.es6
%%WWWDIR%%/app/assets/javascripts/boards/services/board_service.js.es6
%%WWWDIR%%/app/assets/javascripts/boards/stores/boards_store.js.es6
%%WWWDIR%%/app/assets/javascripts/boards/test_utils/simulate_drag.js
%%WWWDIR%%/app/assets/javascripts/boards/vue_resource_interceptor.js.es6
%%WWWDIR%%/app/assets/javascripts/breakpoints.js
%%WWWDIR%%/app/assets/javascripts/broadcast_message.js
%%WWWDIR%%/app/assets/javascripts/build.js
%%WWWDIR%%/app/assets/javascripts/build_artifacts.js
%%WWWDIR%%/app/assets/javascripts/commit.js
%%WWWDIR%%/app/assets/javascripts/commit/file.js
%%WWWDIR%%/app/assets/javascripts/commit/image-file.js
%%WWWDIR%%/app/assets/javascripts/commits.js
%%WWWDIR%%/app/assets/javascripts/compare.js
%%WWWDIR%%/app/assets/javascripts/compare_autocomplete.js
%%WWWDIR%%/app/assets/javascripts/confirm_danger_modal.js
%%WWWDIR%%/app/assets/javascripts/copy_to_clipboard.js
%%WWWDIR%%/app/assets/javascripts/create_label.js.es6
%%WWWDIR%%/app/assets/javascripts/diff.js
%%WWWDIR%%/app/assets/javascripts/diff_notes/components/comment_resolve_btn.js.es6
%%WWWDIR%%/app/assets/javascripts/diff_notes/components/jump_to_discussion.js.es6
%%WWWDIR%%/app/assets/javascripts/diff_notes/components/resolve_btn.js.es6
%%WWWDIR%%/app/assets/javascripts/diff_notes/components/resolve_count.js.es6
%%WWWDIR%%/app/assets/javascripts/diff_notes/components/resolve_discussion_btn.js.es6
%%WWWDIR%%/app/assets/javascripts/diff_notes/diff_notes_bundle.js.es6
%%WWWDIR%%/app/assets/javascripts/diff_notes/mixins/discussion.js.es6
%%WWWDIR%%/app/assets/javascripts/diff_notes/mixins/namespace.js.es6
%%WWWDIR%%/app/assets/javascripts/diff_notes/models/discussion.js.es6
%%WWWDIR%%/app/assets/javascripts/diff_notes/models/note.js.es6
%%WWWDIR%%/app/assets/javascripts/diff_notes/services/resolve.js.es6
%%WWWDIR%%/app/assets/javascripts/diff_notes/stores/comments.js.es6
%%WWWDIR%%/app/assets/javascripts/dispatcher.js
%%WWWDIR%%/app/assets/javascripts/dropzone_input.js
%%WWWDIR%%/app/assets/javascripts/due_date_select.js
%%WWWDIR%%/app/assets/javascripts/extensions/array.js
%%WWWDIR%%/app/assets/javascripts/extensions/jquery.js
%%WWWDIR%%/app/assets/javascripts/files_comment_button.js
%%WWWDIR%%/app/assets/javascripts/flash.js
%%WWWDIR%%/app/assets/javascripts/gfm_auto_complete.js.es6
%%WWWDIR%%/app/assets/javascripts/gl_dropdown.js
%%WWWDIR%%/app/assets/javascripts/gl_form.js
%%WWWDIR%%/app/assets/javascripts/graphs/graphs_bundle.js
%%WWWDIR%%/app/assets/javascripts/graphs/stat_graph.js
%%WWWDIR%%/app/assets/javascripts/graphs/stat_graph_contributors.js
%%WWWDIR%%/app/assets/javascripts/graphs/stat_graph_contributors_graph.js
%%WWWDIR%%/app/assets/javascripts/graphs/stat_graph_contributors_util.js
%%WWWDIR%%/app/assets/javascripts/group_avatar.js
%%WWWDIR%%/app/assets/javascripts/groups.js
%%WWWDIR%%/app/assets/javascripts/groups_select.js
%%WWWDIR%%/app/assets/javascripts/importer_status.js
%%WWWDIR%%/app/assets/javascripts/issuable.js
%%WWWDIR%%/app/assets/javascripts/issuable_context.js
%%WWWDIR%%/app/assets/javascripts/issuable_form.js
%%WWWDIR%%/app/assets/javascripts/issue.js
%%WWWDIR%%/app/assets/javascripts/issue_status_select.js
%%WWWDIR%%/app/assets/javascripts/issues-bulk-assignment.js
%%WWWDIR%%/app/assets/javascripts/labels.js
%%WWWDIR%%/app/assets/javascripts/labels_select.js
%%WWWDIR%%/app/assets/javascripts/layout_nav.js
%%WWWDIR%%/app/assets/javascripts/lib/ace.js
%%WWWDIR%%/app/assets/javascripts/lib/chart.js
%%WWWDIR%%/app/assets/javascripts/lib/cropper.js
%%WWWDIR%%/app/assets/javascripts/lib/d3.js
%%WWWDIR%%/app/assets/javascripts/lib/raphael.js
%%WWWDIR%%/app/assets/javascripts/lib/utils/animate.js
%%WWWDIR%%/app/assets/javascripts/lib/utils/common_utils.js
%%WWWDIR%%/app/assets/javascripts/lib/utils/datetime_utility.js
%%WWWDIR%%/app/assets/javascripts/lib/utils/emoji_aliases.js.coffee.erb
%%WWWDIR%%/app/assets/javascripts/lib/utils/jquery.timeago.js
%%WWWDIR%%/app/assets/javascripts/lib/utils/notify.js
%%WWWDIR%%/app/assets/javascripts/lib/utils/text_utility.js
%%WWWDIR%%/app/assets/javascripts/lib/utils/type_utility.js
%%WWWDIR%%/app/assets/javascripts/lib/utils/url_utility.js
%%WWWDIR%%/app/assets/javascripts/line_highlighter.js
%%WWWDIR%%/app/assets/javascripts/logo.js
%%WWWDIR%%/app/assets/javascripts/member_expiration_date.js
%%WWWDIR%%/app/assets/javascripts/merge_conflict_data_provider.js.es6
%%WWWDIR%%/app/assets/javascripts/merge_conflict_resolver.js.es6
%%WWWDIR%%/app/assets/javascripts/merge_request.js
%%WWWDIR%%/app/assets/javascripts/merge_request_tabs.js
%%WWWDIR%%/app/assets/javascripts/merge_request_widget.js
%%WWWDIR%%/app/assets/javascripts/merged_buttons.js
%%WWWDIR%%/app/assets/javascripts/milestone.js
%%WWWDIR%%/app/assets/javascripts/milestone_select.js
%%WWWDIR%%/app/assets/javascripts/namespace_select.js
%%WWWDIR%%/app/assets/javascripts/network/branch-graph.js
%%WWWDIR%%/app/assets/javascripts/network/network.js
%%WWWDIR%%/app/assets/javascripts/network/network_bundle.js
%%WWWDIR%%/app/assets/javascripts/new_branch_form.js
%%WWWDIR%%/app/assets/javascripts/new_commit_form.js
%%WWWDIR%%/app/assets/javascripts/notes.js
%%WWWDIR%%/app/assets/javascripts/notifications_dropdown.js
%%WWWDIR%%/app/assets/javascripts/notifications_form.js
%%WWWDIR%%/app/assets/javascripts/pager.js
%%WWWDIR%%/app/assets/javascripts/pipeline.js.es6
%%WWWDIR%%/app/assets/javascripts/preview_markdown.js
%%WWWDIR%%/app/assets/javascripts/profile/gl_crop.js
%%WWWDIR%%/app/assets/javascripts/profile/profile.js
%%WWWDIR%%/app/assets/javascripts/profile/profile_bundle.js
%%WWWDIR%%/app/assets/javascripts/project.js
%%WWWDIR%%/app/assets/javascripts/project_avatar.js
%%WWWDIR%%/app/assets/javascripts/project_find_file.js
%%WWWDIR%%/app/assets/javascripts/project_fork.js
%%WWWDIR%%/app/assets/javascripts/project_import.js
%%WWWDIR%%/app/assets/javascripts/project_members.js
%%WWWDIR%%/app/assets/javascripts/project_new.js
%%WWWDIR%%/app/assets/javascripts/project_select.js
%%WWWDIR%%/app/assets/javascripts/project_show.js
%%WWWDIR%%/app/assets/javascripts/projects_list.js
%%WWWDIR%%/app/assets/javascripts/protected_branch_access_dropdown.js.es6
%%WWWDIR%%/app/assets/javascripts/protected_branch_create.js.es6
%%WWWDIR%%/app/assets/javascripts/protected_branch_dropdown.js.es6
%%WWWDIR%%/app/assets/javascripts/protected_branch_edit.js.es6
%%WWWDIR%%/app/assets/javascripts/protected_branch_edit_list.js.es6
%%WWWDIR%%/app/assets/javascripts/right_sidebar.js
%%WWWDIR%%/app/assets/javascripts/search.js
%%WWWDIR%%/app/assets/javascripts/search_autocomplete.js
%%WWWDIR%%/app/assets/javascripts/shortcuts.js
%%WWWDIR%%/app/assets/javascripts/shortcuts_blob.js
%%WWWDIR%%/app/assets/javascripts/shortcuts_dashboard_navigation.js
%%WWWDIR%%/app/assets/javascripts/shortcuts_find_file.js
%%WWWDIR%%/app/assets/javascripts/shortcuts_issuable.js
%%WWWDIR%%/app/assets/javascripts/shortcuts_navigation.js
%%WWWDIR%%/app/assets/javascripts/shortcuts_network.js
%%WWWDIR%%/app/assets/javascripts/sidebar.js
%%WWWDIR%%/app/assets/javascripts/single_file_diff.js
%%WWWDIR%%/app/assets/javascripts/snippet/snippet_bundle.js
%%WWWDIR%%/app/assets/javascripts/star.js
%%WWWDIR%%/app/assets/javascripts/subscription.js
%%WWWDIR%%/app/assets/javascripts/subscription_select.js
%%WWWDIR%%/app/assets/javascripts/syntax_highlight.js
%%WWWDIR%%/app/assets/javascripts/templates/issuable_template_selector.js.es6
%%WWWDIR%%/app/assets/javascripts/templates/issuable_template_selectors.js.es6
%%WWWDIR%%/app/assets/javascripts/todos.js
%%WWWDIR%%/app/assets/javascripts/tree.js
%%WWWDIR%%/app/assets/javascripts/u2f/authenticate.js
%%WWWDIR%%/app/assets/javascripts/u2f/error.js
%%WWWDIR%%/app/assets/javascripts/u2f/register.js
%%WWWDIR%%/app/assets/javascripts/u2f/util.js
%%WWWDIR%%/app/assets/javascripts/user.js
%%WWWDIR%%/app/assets/javascripts/user_tabs.js
%%WWWDIR%%/app/assets/javascripts/users/calendar.js
%%WWWDIR%%/app/assets/javascripts/users/users_bundle.js
%%WWWDIR%%/app/assets/javascripts/users_select.js
%%WWWDIR%%/app/assets/javascripts/wikis.js
%%WWWDIR%%/app/assets/javascripts/zen_mode.js
%%WWWDIR%%/app/assets/stylesheets/application.scss
%%WWWDIR%%/app/assets/stylesheets/behaviors.scss
%%WWWDIR%%/app/assets/stylesheets/framework.scss
%%WWWDIR%%/app/assets/stylesheets/framework/animations.scss
%%WWWDIR%%/app/assets/stylesheets/framework/avatar.scss
%%WWWDIR%%/app/assets/stylesheets/framework/blank.scss
%%WWWDIR%%/app/assets/stylesheets/framework/blocks.scss
%%WWWDIR%%/app/assets/stylesheets/framework/buttons.scss
%%WWWDIR%%/app/assets/stylesheets/framework/calendar.scss
%%WWWDIR%%/app/assets/stylesheets/framework/callout.scss
%%WWWDIR%%/app/assets/stylesheets/framework/common.scss
%%WWWDIR%%/app/assets/stylesheets/framework/dropdowns.scss
%%WWWDIR%%/app/assets/stylesheets/framework/files.scss
%%WWWDIR%%/app/assets/stylesheets/framework/filters.scss
%%WWWDIR%%/app/assets/stylesheets/framework/flash.scss
%%WWWDIR%%/app/assets/stylesheets/framework/fonts.scss
%%WWWDIR%%/app/assets/stylesheets/framework/forms.scss
%%WWWDIR%%/app/assets/stylesheets/framework/gfm.scss
%%WWWDIR%%/app/assets/stylesheets/framework/gitlab-theme.scss
%%WWWDIR%%/app/assets/stylesheets/framework/header.scss
%%WWWDIR%%/app/assets/stylesheets/framework/highlight.scss
%%WWWDIR%%/app/assets/stylesheets/framework/issue_box.scss
%%WWWDIR%%/app/assets/stylesheets/framework/jquery.scss
%%WWWDIR%%/app/assets/stylesheets/framework/layout.scss
%%WWWDIR%%/app/assets/stylesheets/framework/lists.scss
%%WWWDIR%%/app/assets/stylesheets/framework/markdown_area.scss
%%WWWDIR%%/app/assets/stylesheets/framework/mixins.scss
%%WWWDIR%%/app/assets/stylesheets/framework/mobile.scss
%%WWWDIR%%/app/assets/stylesheets/framework/modal.scss
%%WWWDIR%%/app/assets/stylesheets/framework/nav.scss
%%WWWDIR%%/app/assets/stylesheets/framework/pagination.scss
%%WWWDIR%%/app/assets/stylesheets/framework/panels.scss
%%WWWDIR%%/app/assets/stylesheets/framework/progress.scss
%%WWWDIR%%/app/assets/stylesheets/framework/selects.scss
%%WWWDIR%%/app/assets/stylesheets/framework/sidebar.scss
%%WWWDIR%%/app/assets/stylesheets/framework/tables.scss
%%WWWDIR%%/app/assets/stylesheets/framework/timeline.scss
%%WWWDIR%%/app/assets/stylesheets/framework/tw_bootstrap.scss
%%WWWDIR%%/app/assets/stylesheets/framework/tw_bootstrap_variables.scss
%%WWWDIR%%/app/assets/stylesheets/framework/typography.scss
%%WWWDIR%%/app/assets/stylesheets/framework/variables.scss
%%WWWDIR%%/app/assets/stylesheets/framework/zen.scss
%%WWWDIR%%/app/assets/stylesheets/highlight/dark.scss
%%WWWDIR%%/app/assets/stylesheets/highlight/monokai.scss
%%WWWDIR%%/app/assets/stylesheets/highlight/solarized_dark.scss
%%WWWDIR%%/app/assets/stylesheets/highlight/solarized_light.scss
%%WWWDIR%%/app/assets/stylesheets/highlight/white.scss
%%WWWDIR%%/app/assets/stylesheets/mailers/devise.scss
%%WWWDIR%%/app/assets/stylesheets/mailers/repository_push_email.scss
%%WWWDIR%%/app/assets/stylesheets/notify.scss
%%WWWDIR%%/app/assets/stylesheets/pages/admin.scss
%%WWWDIR%%/app/assets/stylesheets/pages/appearances.scss
%%WWWDIR%%/app/assets/stylesheets/pages/awards.scss
%%WWWDIR%%/app/assets/stylesheets/pages/boards.scss
%%WWWDIR%%/app/assets/stylesheets/pages/builds.scss
%%WWWDIR%%/app/assets/stylesheets/pages/ci_projects.scss
%%WWWDIR%%/app/assets/stylesheets/pages/commit.scss
%%WWWDIR%%/app/assets/stylesheets/pages/commits.scss
%%WWWDIR%%/app/assets/stylesheets/pages/confirmation.scss
%%WWWDIR%%/app/assets/stylesheets/pages/dashboard.scss
%%WWWDIR%%/app/assets/stylesheets/pages/detail_page.scss
%%WWWDIR%%/app/assets/stylesheets/pages/diff.scss
%%WWWDIR%%/app/assets/stylesheets/pages/editor.scss
%%WWWDIR%%/app/assets/stylesheets/pages/emojis.scss
%%WWWDIR%%/app/assets/stylesheets/pages/environments.scss
%%WWWDIR%%/app/assets/stylesheets/pages/errors.scss
%%WWWDIR%%/app/assets/stylesheets/pages/events.scss
%%WWWDIR%%/app/assets/stylesheets/pages/explore.scss
%%WWWDIR%%/app/assets/stylesheets/pages/graph.scss
%%WWWDIR%%/app/assets/stylesheets/pages/groups.scss
%%WWWDIR%%/app/assets/stylesheets/pages/help.scss
%%WWWDIR%%/app/assets/stylesheets/pages/import.scss
%%WWWDIR%%/app/assets/stylesheets/pages/issuable.scss
%%WWWDIR%%/app/assets/stylesheets/pages/issues.scss
%%WWWDIR%%/app/assets/stylesheets/pages/labels.scss
%%WWWDIR%%/app/assets/stylesheets/pages/lint.scss
%%WWWDIR%%/app/assets/stylesheets/pages/login.scss
%%WWWDIR%%/app/assets/stylesheets/pages/merge_conflicts.scss
%%WWWDIR%%/app/assets/stylesheets/pages/merge_requests.scss
%%WWWDIR%%/app/assets/stylesheets/pages/milestone.scss
%%WWWDIR%%/app/assets/stylesheets/pages/note_form.scss
%%WWWDIR%%/app/assets/stylesheets/pages/notes.scss
%%WWWDIR%%/app/assets/stylesheets/pages/notifications.scss
%%WWWDIR%%/app/assets/stylesheets/pages/pipelines.scss
%%WWWDIR%%/app/assets/stylesheets/pages/profile.scss
%%WWWDIR%%/app/assets/stylesheets/pages/profiles/preferences.scss
%%WWWDIR%%/app/assets/stylesheets/pages/projects.scss
%%WWWDIR%%/app/assets/stylesheets/pages/runners.scss
%%WWWDIR%%/app/assets/stylesheets/pages/search.scss
%%WWWDIR%%/app/assets/stylesheets/pages/settings.scss
%%WWWDIR%%/app/assets/stylesheets/pages/sherlock.scss
%%WWWDIR%%/app/assets/stylesheets/pages/snippets.scss
%%WWWDIR%%/app/assets/stylesheets/pages/stat_graph.scss
%%WWWDIR%%/app/assets/stylesheets/pages/status.scss
%%WWWDIR%%/app/assets/stylesheets/pages/tags.scss
%%WWWDIR%%/app/assets/stylesheets/pages/todos.scss
%%WWWDIR%%/app/assets/stylesheets/pages/tree.scss
%%WWWDIR%%/app/assets/stylesheets/pages/ui_dev_kit.scss
%%WWWDIR%%/app/assets/stylesheets/pages/votes.scss
%%WWWDIR%%/app/assets/stylesheets/pages/wiki.scss
%%WWWDIR%%/app/assets/stylesheets/pages/xterm.scss
%%WWWDIR%%/app/assets/stylesheets/print.scss
%%WWWDIR%%/app/controllers/abuse_reports_controller.rb
%%WWWDIR%%/app/controllers/admin/abuse_reports_controller.rb
%%WWWDIR%%/app/controllers/admin/appearances_controller.rb
%%WWWDIR%%/app/controllers/admin/application_controller.rb
%%WWWDIR%%/app/controllers/admin/application_settings_controller.rb
%%WWWDIR%%/app/controllers/admin/applications_controller.rb
%%WWWDIR%%/app/controllers/admin/background_jobs_controller.rb
%%WWWDIR%%/app/controllers/admin/broadcast_messages_controller.rb
%%WWWDIR%%/app/controllers/admin/builds_controller.rb
%%WWWDIR%%/app/controllers/admin/dashboard_controller.rb
%%WWWDIR%%/app/controllers/admin/deploy_keys_controller.rb
%%WWWDIR%%/app/controllers/admin/groups_controller.rb
%%WWWDIR%%/app/controllers/admin/health_check_controller.rb
%%WWWDIR%%/app/controllers/admin/hooks_controller.rb
%%WWWDIR%%/app/controllers/admin/identities_controller.rb
%%WWWDIR%%/app/controllers/admin/impersonations_controller.rb
%%WWWDIR%%/app/controllers/admin/keys_controller.rb
%%WWWDIR%%/app/controllers/admin/labels_controller.rb
%%WWWDIR%%/app/controllers/admin/logs_controller.rb
%%WWWDIR%%/app/controllers/admin/projects_controller.rb
%%WWWDIR%%/app/controllers/admin/requests_profiles_controller.rb
%%WWWDIR%%/app/controllers/admin/runner_projects_controller.rb
%%WWWDIR%%/app/controllers/admin/runners_controller.rb
%%WWWDIR%%/app/controllers/admin/services_controller.rb
%%WWWDIR%%/app/controllers/admin/spam_logs_controller.rb
%%WWWDIR%%/app/controllers/admin/system_info_controller.rb
%%WWWDIR%%/app/controllers/admin/users_controller.rb
%%WWWDIR%%/app/controllers/application_controller.rb
%%WWWDIR%%/app/controllers/autocomplete_controller.rb
%%WWWDIR%%/app/controllers/ci/application_controller.rb
%%WWWDIR%%/app/controllers/ci/lints_controller.rb
%%WWWDIR%%/app/controllers/ci/projects_controller.rb
%%WWWDIR%%/app/controllers/concerns/authenticates_with_two_factor.rb
%%WWWDIR%%/app/controllers/concerns/continue_params.rb
%%WWWDIR%%/app/controllers/concerns/creates_commit.rb
%%WWWDIR%%/app/controllers/concerns/diff_for_path.rb
%%WWWDIR%%/app/controllers/concerns/filter_projects.rb
%%WWWDIR%%/app/controllers/concerns/global_milestones.rb
%%WWWDIR%%/app/controllers/concerns/issuable_actions.rb
%%WWWDIR%%/app/controllers/concerns/issuable_collections.rb
%%WWWDIR%%/app/controllers/concerns/issues_action.rb
%%WWWDIR%%/app/controllers/concerns/membership_actions.rb
%%WWWDIR%%/app/controllers/concerns/merge_requests_action.rb
%%WWWDIR%%/app/controllers/concerns/service_params.rb
%%WWWDIR%%/app/controllers/concerns/spammable_actions.rb
%%WWWDIR%%/app/controllers/concerns/toggle_award_emoji.rb
%%WWWDIR%%/app/controllers/concerns/toggle_subscription_action.rb
%%WWWDIR%%/app/controllers/confirmations_controller.rb
%%WWWDIR%%/app/controllers/dashboard/application_controller.rb
%%WWWDIR%%/app/controllers/dashboard/groups_controller.rb
%%WWWDIR%%/app/controllers/dashboard/labels_controller.rb
%%WWWDIR%%/app/controllers/dashboard/milestones_controller.rb
%%WWWDIR%%/app/controllers/dashboard/projects_controller.rb
%%WWWDIR%%/app/controllers/dashboard/snippets_controller.rb
%%WWWDIR%%/app/controllers/dashboard/todos_controller.rb
%%WWWDIR%%/app/controllers/dashboard_controller.rb
%%WWWDIR%%/app/controllers/emojis_controller.rb
%%WWWDIR%%/app/controllers/explore/application_controller.rb
%%WWWDIR%%/app/controllers/explore/groups_controller.rb
%%WWWDIR%%/app/controllers/explore/projects_controller.rb
%%WWWDIR%%/app/controllers/explore/snippets_controller.rb
%%WWWDIR%%/app/controllers/groups/application_controller.rb
%%WWWDIR%%/app/controllers/groups/avatars_controller.rb
%%WWWDIR%%/app/controllers/groups/group_members_controller.rb
%%WWWDIR%%/app/controllers/groups/milestones_controller.rb
%%WWWDIR%%/app/controllers/groups_controller.rb
%%WWWDIR%%/app/controllers/health_check_controller.rb
%%WWWDIR%%/app/controllers/help_controller.rb
%%WWWDIR%%/app/controllers/import/base_controller.rb
%%WWWDIR%%/app/controllers/import/bitbucket_controller.rb
%%WWWDIR%%/app/controllers/import/fogbugz_controller.rb
%%WWWDIR%%/app/controllers/import/github_controller.rb
%%WWWDIR%%/app/controllers/import/gitlab_controller.rb
%%WWWDIR%%/app/controllers/import/gitlab_projects_controller.rb
%%WWWDIR%%/app/controllers/import/google_code_controller.rb
%%WWWDIR%%/app/controllers/invites_controller.rb
%%WWWDIR%%/app/controllers/jwt_controller.rb
%%WWWDIR%%/app/controllers/koding_controller.rb
%%WWWDIR%%/app/controllers/namespaces_controller.rb
%%WWWDIR%%/app/controllers/notification_settings_controller.rb
%%WWWDIR%%/app/controllers/oauth/applications_controller.rb
%%WWWDIR%%/app/controllers/oauth/authorizations_controller.rb
%%WWWDIR%%/app/controllers/oauth/authorized_applications_controller.rb
%%WWWDIR%%/app/controllers/omniauth_callbacks_controller.rb
%%WWWDIR%%/app/controllers/passwords_controller.rb
%%WWWDIR%%/app/controllers/profiles/accounts_controller.rb
%%WWWDIR%%/app/controllers/profiles/application_controller.rb
%%WWWDIR%%/app/controllers/profiles/avatars_controller.rb
%%WWWDIR%%/app/controllers/profiles/emails_controller.rb
%%WWWDIR%%/app/controllers/profiles/keys_controller.rb
%%WWWDIR%%/app/controllers/profiles/notifications_controller.rb
%%WWWDIR%%/app/controllers/profiles/passwords_controller.rb
%%WWWDIR%%/app/controllers/profiles/personal_access_tokens_controller.rb
%%WWWDIR%%/app/controllers/profiles/preferences_controller.rb
%%WWWDIR%%/app/controllers/profiles/two_factor_auths_controller.rb
%%WWWDIR%%/app/controllers/profiles/u2f_registrations_controller.rb
%%WWWDIR%%/app/controllers/profiles_controller.rb
%%WWWDIR%%/app/controllers/projects/application_controller.rb
%%WWWDIR%%/app/controllers/projects/artifacts_controller.rb
%%WWWDIR%%/app/controllers/projects/avatars_controller.rb
%%WWWDIR%%/app/controllers/projects/badges_controller.rb
%%WWWDIR%%/app/controllers/projects/blame_controller.rb
%%WWWDIR%%/app/controllers/projects/blob_controller.rb
%%WWWDIR%%/app/controllers/projects/board_lists_controller.rb
%%WWWDIR%%/app/controllers/projects/boards/application_controller.rb
%%WWWDIR%%/app/controllers/projects/boards/issues_controller.rb
%%WWWDIR%%/app/controllers/projects/boards/lists_controller.rb
%%WWWDIR%%/app/controllers/projects/boards_controller.rb
%%WWWDIR%%/app/controllers/projects/branches_controller.rb
%%WWWDIR%%/app/controllers/projects/builds_controller.rb
%%WWWDIR%%/app/controllers/projects/commit_controller.rb
%%WWWDIR%%/app/controllers/projects/commits_controller.rb
%%WWWDIR%%/app/controllers/projects/compare_controller.rb
%%WWWDIR%%/app/controllers/projects/container_registry_controller.rb
%%WWWDIR%%/app/controllers/projects/deploy_keys_controller.rb
%%WWWDIR%%/app/controllers/projects/discussions_controller.rb
%%WWWDIR%%/app/controllers/projects/environments_controller.rb
%%WWWDIR%%/app/controllers/projects/find_file_controller.rb
%%WWWDIR%%/app/controllers/projects/forks_controller.rb
%%WWWDIR%%/app/controllers/projects/git_http_client_controller.rb
%%WWWDIR%%/app/controllers/projects/git_http_controller.rb
%%WWWDIR%%/app/controllers/projects/graphs_controller.rb
%%WWWDIR%%/app/controllers/projects/group_links_controller.rb
%%WWWDIR%%/app/controllers/projects/hooks_controller.rb
%%WWWDIR%%/app/controllers/projects/imports_controller.rb
%%WWWDIR%%/app/controllers/projects/issues_controller.rb
%%WWWDIR%%/app/controllers/projects/labels_controller.rb
%%WWWDIR%%/app/controllers/projects/lfs_api_controller.rb
%%WWWDIR%%/app/controllers/projects/lfs_storage_controller.rb
%%WWWDIR%%/app/controllers/projects/merge_requests_controller.rb
%%WWWDIR%%/app/controllers/projects/milestones_controller.rb
%%WWWDIR%%/app/controllers/projects/network_controller.rb
%%WWWDIR%%/app/controllers/projects/notes_controller.rb
%%WWWDIR%%/app/controllers/projects/pipelines_controller.rb
%%WWWDIR%%/app/controllers/projects/pipelines_settings_controller.rb
%%WWWDIR%%/app/controllers/projects/project_members_controller.rb
%%WWWDIR%%/app/controllers/projects/protected_branches_controller.rb
%%WWWDIR%%/app/controllers/projects/raw_controller.rb
%%WWWDIR%%/app/controllers/projects/refs_controller.rb
%%WWWDIR%%/app/controllers/projects/releases_controller.rb
%%WWWDIR%%/app/controllers/projects/repositories_controller.rb
%%WWWDIR%%/app/controllers/projects/runner_projects_controller.rb
%%WWWDIR%%/app/controllers/projects/runners_controller.rb
%%WWWDIR%%/app/controllers/projects/services_controller.rb
%%WWWDIR%%/app/controllers/projects/snippets_controller.rb
%%WWWDIR%%/app/controllers/projects/tags_controller.rb
%%WWWDIR%%/app/controllers/projects/templates_controller.rb
%%WWWDIR%%/app/controllers/projects/todos_controller.rb
%%WWWDIR%%/app/controllers/projects/tree_controller.rb
%%WWWDIR%%/app/controllers/projects/triggers_controller.rb
%%WWWDIR%%/app/controllers/projects/uploads_controller.rb
%%WWWDIR%%/app/controllers/projects/variables_controller.rb
%%WWWDIR%%/app/controllers/projects/wikis_controller.rb
%%WWWDIR%%/app/controllers/projects_controller.rb
%%WWWDIR%%/app/controllers/registrations_controller.rb
%%WWWDIR%%/app/controllers/root_controller.rb
%%WWWDIR%%/app/controllers/search_controller.rb
%%WWWDIR%%/app/controllers/sent_notifications_controller.rb
%%WWWDIR%%/app/controllers/sessions_controller.rb
%%WWWDIR%%/app/controllers/sherlock/application_controller.rb
%%WWWDIR%%/app/controllers/sherlock/file_samples_controller.rb
%%WWWDIR%%/app/controllers/sherlock/queries_controller.rb
%%WWWDIR%%/app/controllers/sherlock/transactions_controller.rb
%%WWWDIR%%/app/controllers/snippets_controller.rb
%%WWWDIR%%/app/controllers/uploads_controller.rb
%%WWWDIR%%/app/controllers/users_controller.rb
%%WWWDIR%%/app/finders/README.md
%%WWWDIR%%/app/finders/branches_finder.rb
%%WWWDIR%%/app/finders/contributed_projects_finder.rb
%%WWWDIR%%/app/finders/group_projects_finder.rb
%%WWWDIR%%/app/finders/groups_finder.rb
%%WWWDIR%%/app/finders/issuable_finder.rb
%%WWWDIR%%/app/finders/issues_finder.rb
%%WWWDIR%%/app/finders/joined_groups_finder.rb
%%WWWDIR%%/app/finders/merge_requests_finder.rb
%%WWWDIR%%/app/finders/milestones_finder.rb
%%WWWDIR%%/app/finders/move_to_project_finder.rb
%%WWWDIR%%/app/finders/notes_finder.rb
%%WWWDIR%%/app/finders/personal_projects_finder.rb
%%WWWDIR%%/app/finders/pipelines_finder.rb
%%WWWDIR%%/app/finders/projects_finder.rb
%%WWWDIR%%/app/finders/snippets_finder.rb
%%WWWDIR%%/app/finders/todos_finder.rb
%%WWWDIR%%/app/finders/trending_projects_finder.rb
%%WWWDIR%%/app/finders/union_finder.rb
%%WWWDIR%%/app/helpers/appearances_helper.rb
%%WWWDIR%%/app/helpers/application_helper.rb
%%WWWDIR%%/app/helpers/application_settings_helper.rb
%%WWWDIR%%/app/helpers/auth_helper.rb
%%WWWDIR%%/app/helpers/avatars_helper.rb
%%WWWDIR%%/app/helpers/blob_helper.rb
%%WWWDIR%%/app/helpers/branches_helper.rb
%%WWWDIR%%/app/helpers/broadcast_messages_helper.rb
%%WWWDIR%%/app/helpers/button_helper.rb
%%WWWDIR%%/app/helpers/ci_status_helper.rb
%%WWWDIR%%/app/helpers/commits_helper.rb
%%WWWDIR%%/app/helpers/compare_helper.rb
%%WWWDIR%%/app/helpers/dashboard_helper.rb
%%WWWDIR%%/app/helpers/diff_helper.rb
%%WWWDIR%%/app/helpers/dropdowns_helper.rb
%%WWWDIR%%/app/helpers/emails_helper.rb
%%WWWDIR%%/app/helpers/events_helper.rb
%%WWWDIR%%/app/helpers/explore_helper.rb
%%WWWDIR%%/app/helpers/external_wiki_helper.rb
%%WWWDIR%%/app/helpers/form_helper.rb
%%WWWDIR%%/app/helpers/git_helper.rb
%%WWWDIR%%/app/helpers/gitlab_markdown_helper.rb
%%WWWDIR%%/app/helpers/gitlab_routing_helper.rb
%%WWWDIR%%/app/helpers/graph_helper.rb
%%WWWDIR%%/app/helpers/groups_helper.rb
%%WWWDIR%%/app/helpers/icons_helper.rb
%%WWWDIR%%/app/helpers/import_helper.rb
%%WWWDIR%%/app/helpers/issuables_helper.rb
%%WWWDIR%%/app/helpers/issues_helper.rb
%%WWWDIR%%/app/helpers/javascript_helper.rb
%%WWWDIR%%/app/helpers/kerberos_spnego_helper.rb
%%WWWDIR%%/app/helpers/labels_helper.rb
%%WWWDIR%%/app/helpers/lfs_helper.rb
%%WWWDIR%%/app/helpers/members_helper.rb
%%WWWDIR%%/app/helpers/merge_requests_helper.rb
%%WWWDIR%%/app/helpers/milestones_helper.rb
%%WWWDIR%%/app/helpers/namespaces_helper.rb
%%WWWDIR%%/app/helpers/nav_helper.rb
%%WWWDIR%%/app/helpers/notes_helper.rb
%%WWWDIR%%/app/helpers/notifications_helper.rb
%%WWWDIR%%/app/helpers/page_layout_helper.rb
%%WWWDIR%%/app/helpers/preferences_helper.rb
%%WWWDIR%%/app/helpers/projects_helper.rb
%%WWWDIR%%/app/helpers/runners_helper.rb
%%WWWDIR%%/app/helpers/search_helper.rb
%%WWWDIR%%/app/helpers/selects_helper.rb
%%WWWDIR%%/app/helpers/services_helper.rb
%%WWWDIR%%/app/helpers/snippets_helper.rb
%%WWWDIR%%/app/helpers/sorting_helper.rb
%%WWWDIR%%/app/helpers/submodule_helper.rb
%%WWWDIR%%/app/helpers/tab_helper.rb
%%WWWDIR%%/app/helpers/tags_helper.rb
%%WWWDIR%%/app/helpers/time_helper.rb
%%WWWDIR%%/app/helpers/todos_helper.rb
%%WWWDIR%%/app/helpers/tree_helper.rb
%%WWWDIR%%/app/helpers/triggers_helper.rb
%%WWWDIR%%/app/helpers/u2f_helper.rb
%%WWWDIR%%/app/helpers/version_check_helper.rb
%%WWWDIR%%/app/helpers/visibility_level_helper.rb
%%WWWDIR%%/app/helpers/workhorse_helper.rb
%%WWWDIR%%/app/mailers/abuse_report_mailer.rb
%%WWWDIR%%/app/mailers/base_mailer.rb
%%WWWDIR%%/app/mailers/devise_mailer.rb
%%WWWDIR%%/app/mailers/email_rejection_mailer.rb
%%WWWDIR%%/app/mailers/emails/builds.rb
%%WWWDIR%%/app/mailers/emails/issues.rb
%%WWWDIR%%/app/mailers/emails/members.rb
%%WWWDIR%%/app/mailers/emails/merge_requests.rb
%%WWWDIR%%/app/mailers/emails/notes.rb
%%WWWDIR%%/app/mailers/emails/profile.rb
%%WWWDIR%%/app/mailers/emails/projects.rb
%%WWWDIR%%/app/mailers/notify.rb
%%WWWDIR%%/app/mailers/repository_check_mailer.rb
%%WWWDIR%%/app/models/ability.rb
%%WWWDIR%%/app/models/abuse_report.rb
%%WWWDIR%%/app/models/appearance.rb
%%WWWDIR%%/app/models/application_setting.rb
%%WWWDIR%%/app/models/audit_event.rb
%%WWWDIR%%/app/models/award_emoji.rb
%%WWWDIR%%/app/models/blob.rb
%%WWWDIR%%/app/models/board.rb
%%WWWDIR%%/app/models/broadcast_message.rb
%%WWWDIR%%/app/models/ci/build.rb
%%WWWDIR%%/app/models/ci/pipeline.rb
%%WWWDIR%%/app/models/ci/runner.rb
%%WWWDIR%%/app/models/ci/runner_project.rb
%%WWWDIR%%/app/models/ci/trigger.rb
%%WWWDIR%%/app/models/ci/trigger_request.rb
%%WWWDIR%%/app/models/ci/variable.rb
%%WWWDIR%%/app/models/commit.rb
%%WWWDIR%%/app/models/commit_range.rb
%%WWWDIR%%/app/models/commit_status.rb
%%WWWDIR%%/app/models/compare.rb
%%WWWDIR%%/app/models/concerns/access_requestable.rb
%%WWWDIR%%/app/models/concerns/awardable.rb
%%WWWDIR%%/app/models/concerns/case_sensitivity.rb
%%WWWDIR%%/app/models/concerns/expirable.rb
%%WWWDIR%%/app/models/concerns/faster_cache_keys.rb
%%WWWDIR%%/app/models/concerns/importable.rb
%%WWWDIR%%/app/models/concerns/internal_id.rb
%%WWWDIR%%/app/models/concerns/issuable.rb
%%WWWDIR%%/app/models/concerns/mentionable.rb
%%WWWDIR%%/app/models/concerns/milestoneish.rb
%%WWWDIR%%/app/models/concerns/note_on_diff.rb
%%WWWDIR%%/app/models/concerns/participable.rb
%%WWWDIR%%/app/models/concerns/protected_branch_access.rb
%%WWWDIR%%/app/models/concerns/referable.rb
%%WWWDIR%%/app/models/concerns/sortable.rb
%%WWWDIR%%/app/models/concerns/spammable.rb
%%WWWDIR%%/app/models/concerns/statuseable.rb
%%WWWDIR%%/app/models/concerns/strip_attribute.rb
%%WWWDIR%%/app/models/concerns/subscribable.rb
%%WWWDIR%%/app/models/concerns/taskable.rb
%%WWWDIR%%/app/models/concerns/token_authenticatable.rb
%%WWWDIR%%/app/models/deploy_key.rb
%%WWWDIR%%/app/models/deploy_keys_project.rb
%%WWWDIR%%/app/models/deployment.rb
%%WWWDIR%%/app/models/diff_note.rb
%%WWWDIR%%/app/models/discussion.rb
%%WWWDIR%%/app/models/email.rb
%%WWWDIR%%/app/models/environment.rb
%%WWWDIR%%/app/models/event.rb
%%WWWDIR%%/app/models/external_issue.rb
%%WWWDIR%%/app/models/forked_project_link.rb
%%WWWDIR%%/app/models/generic_commit_status.rb
%%WWWDIR%%/app/models/global_label.rb
%%WWWDIR%%/app/models/global_milestone.rb
%%WWWDIR%%/app/models/group.rb
%%WWWDIR%%/app/models/hooks/project_hook.rb
%%WWWDIR%%/app/models/hooks/service_hook.rb
%%WWWDIR%%/app/models/hooks/system_hook.rb
%%WWWDIR%%/app/models/hooks/web_hook.rb
%%WWWDIR%%/app/models/identity.rb
%%WWWDIR%%/app/models/issue.rb
%%WWWDIR%%/app/models/key.rb
%%WWWDIR%%/app/models/label.rb
%%WWWDIR%%/app/models/label_link.rb
%%WWWDIR%%/app/models/legacy_diff_note.rb
%%WWWDIR%%/app/models/lfs_object.rb
%%WWWDIR%%/app/models/lfs_objects_project.rb
%%WWWDIR%%/app/models/list.rb
%%WWWDIR%%/app/models/member.rb
%%WWWDIR%%/app/models/members/group_member.rb
%%WWWDIR%%/app/models/members/project_member.rb
%%WWWDIR%%/app/models/merge_request.rb
%%WWWDIR%%/app/models/merge_request_diff.rb
%%WWWDIR%%/app/models/milestone.rb
%%WWWDIR%%/app/models/namespace.rb
%%WWWDIR%%/app/models/network/commit.rb
%%WWWDIR%%/app/models/network/graph.rb
%%WWWDIR%%/app/models/note.rb
%%WWWDIR%%/app/models/notification_setting.rb
%%WWWDIR%%/app/models/oauth_access_token.rb
%%WWWDIR%%/app/models/personal_access_token.rb
%%WWWDIR%%/app/models/personal_snippet.rb
%%WWWDIR%%/app/models/project.rb
%%WWWDIR%%/app/models/project_group_link.rb
%%WWWDIR%%/app/models/project_import_data.rb
%%WWWDIR%%/app/models/project_services/asana_service.rb
%%WWWDIR%%/app/models/project_services/assembla_service.rb
%%WWWDIR%%/app/models/project_services/bamboo_service.rb
%%WWWDIR%%/app/models/project_services/bugzilla_service.rb
%%WWWDIR%%/app/models/project_services/buildkite_service.rb
%%WWWDIR%%/app/models/project_services/builds_email_service.rb
%%WWWDIR%%/app/models/project_services/campfire_service.rb
%%WWWDIR%%/app/models/project_services/ci_service.rb
%%WWWDIR%%/app/models/project_services/custom_issue_tracker_service.rb
%%WWWDIR%%/app/models/project_services/drone_ci_service.rb
%%WWWDIR%%/app/models/project_services/emails_on_push_service.rb
%%WWWDIR%%/app/models/project_services/external_wiki_service.rb
%%WWWDIR%%/app/models/project_services/flowdock_service.rb
%%WWWDIR%%/app/models/project_services/gemnasium_service.rb
%%WWWDIR%%/app/models/project_services/gitlab_ci_service.rb
%%WWWDIR%%/app/models/project_services/gitlab_issue_tracker_service.rb
%%WWWDIR%%/app/models/project_services/hipchat_service.rb
%%WWWDIR%%/app/models/project_services/irker_service.rb
%%WWWDIR%%/app/models/project_services/issue_tracker_service.rb
%%WWWDIR%%/app/models/project_services/jira_service.rb
%%WWWDIR%%/app/models/project_services/pivotaltracker_service.rb
%%WWWDIR%%/app/models/project_services/pushover_service.rb
%%WWWDIR%%/app/models/project_services/redmine_service.rb
%%WWWDIR%%/app/models/project_services/slack_service.rb
%%WWWDIR%%/app/models/project_services/slack_service/base_message.rb
%%WWWDIR%%/app/models/project_services/slack_service/build_message.rb
%%WWWDIR%%/app/models/project_services/slack_service/issue_message.rb
%%WWWDIR%%/app/models/project_services/slack_service/merge_message.rb
%%WWWDIR%%/app/models/project_services/slack_service/note_message.rb
%%WWWDIR%%/app/models/project_services/slack_service/push_message.rb
%%WWWDIR%%/app/models/project_services/slack_service/wiki_page_message.rb
%%WWWDIR%%/app/models/project_services/teamcity_service.rb
%%WWWDIR%%/app/models/project_snippet.rb
%%WWWDIR%%/app/models/project_team.rb
%%WWWDIR%%/app/models/project_wiki.rb
%%WWWDIR%%/app/models/protected_branch.rb
%%WWWDIR%%/app/models/protected_branch/merge_access_level.rb
%%WWWDIR%%/app/models/protected_branch/push_access_level.rb
%%WWWDIR%%/app/models/release.rb
%%WWWDIR%%/app/models/repository.rb
%%WWWDIR%%/app/models/security_event.rb
%%WWWDIR%%/app/models/sent_notification.rb
%%WWWDIR%%/app/models/service.rb
%%WWWDIR%%/app/models/snippet.rb
%%WWWDIR%%/app/models/spam_log.rb
%%WWWDIR%%/app/models/subscription.rb
%%WWWDIR%%/app/models/todo.rb
%%WWWDIR%%/app/models/tree.rb
%%WWWDIR%%/app/models/u2f_registration.rb
%%WWWDIR%%/app/models/user.rb
%%WWWDIR%%/app/models/user_agent_detail.rb
%%WWWDIR%%/app/models/users_star_project.rb
%%WWWDIR%%/app/models/wiki_page.rb
%%WWWDIR%%/app/services/akismet_service.rb
%%WWWDIR%%/app/services/audit_event_service.rb
%%WWWDIR%%/app/services/auth/container_registry_authentication_service.rb
%%WWWDIR%%/app/services/base_service.rb
%%WWWDIR%%/app/services/boards/base_service.rb
%%WWWDIR%%/app/services/boards/create_service.rb
%%WWWDIR%%/app/services/boards/issues/list_service.rb
%%WWWDIR%%/app/services/boards/issues/move_service.rb
%%WWWDIR%%/app/services/boards/lists/create_service.rb
%%WWWDIR%%/app/services/boards/lists/destroy_service.rb
%%WWWDIR%%/app/services/boards/lists/generate_service.rb
%%WWWDIR%%/app/services/boards/lists/move_service.rb
%%WWWDIR%%/app/services/ci/create_pipeline_builds_service.rb
%%WWWDIR%%/app/services/ci/create_pipeline_service.rb
%%WWWDIR%%/app/services/ci/create_trigger_request_service.rb
%%WWWDIR%%/app/services/ci/image_for_build_service.rb
%%WWWDIR%%/app/services/ci/process_pipeline_service.rb
%%WWWDIR%%/app/services/ci/register_build_service.rb
%%WWWDIR%%/app/services/ci/web_hook_service.rb
%%WWWDIR%%/app/services/commits/change_service.rb
%%WWWDIR%%/app/services/commits/cherry_pick_service.rb
%%WWWDIR%%/app/services/commits/revert_service.rb
%%WWWDIR%%/app/services/compare_service.rb
%%WWWDIR%%/app/services/create_branch_service.rb
%%WWWDIR%%/app/services/create_deployment_service.rb
%%WWWDIR%%/app/services/create_release_service.rb
%%WWWDIR%%/app/services/create_snippet_service.rb
%%WWWDIR%%/app/services/create_tag_service.rb
%%WWWDIR%%/app/services/delete_branch_service.rb
%%WWWDIR%%/app/services/delete_tag_service.rb
%%WWWDIR%%/app/services/delete_user_service.rb
%%WWWDIR%%/app/services/destroy_group_service.rb
%%WWWDIR%%/app/services/event_create_service.rb
%%WWWDIR%%/app/services/files/base_service.rb
%%WWWDIR%%/app/services/files/create_dir_service.rb
%%WWWDIR%%/app/services/files/create_service.rb
%%WWWDIR%%/app/services/files/delete_service.rb
%%WWWDIR%%/app/services/files/update_service.rb
%%WWWDIR%%/app/services/git_hooks_service.rb
%%WWWDIR%%/app/services/git_push_service.rb
%%WWWDIR%%/app/services/git_tag_push_service.rb
%%WWWDIR%%/app/services/gravatar_service.rb
%%WWWDIR%%/app/services/groups/base_service.rb
%%WWWDIR%%/app/services/groups/create_service.rb
%%WWWDIR%%/app/services/groups/update_service.rb
%%WWWDIR%%/app/services/ham_service.rb
%%WWWDIR%%/app/services/import_export_clean_up_service.rb
%%WWWDIR%%/app/services/issuable_base_service.rb
%%WWWDIR%%/app/services/issues/base_service.rb
%%WWWDIR%%/app/services/issues/bulk_update_service.rb
%%WWWDIR%%/app/services/issues/close_service.rb
%%WWWDIR%%/app/services/issues/create_service.rb
%%WWWDIR%%/app/services/issues/move_service.rb
%%WWWDIR%%/app/services/issues/reopen_service.rb
%%WWWDIR%%/app/services/issues/update_service.rb
%%WWWDIR%%/app/services/members/authorized_destroy_service.rb
%%WWWDIR%%/app/services/members/destroy_service.rb
%%WWWDIR%%/app/services/merge_requests/add_todo_when_build_fails_service.rb
%%WWWDIR%%/app/services/merge_requests/base_service.rb
%%WWWDIR%%/app/services/merge_requests/build_service.rb
%%WWWDIR%%/app/services/merge_requests/close_service.rb
%%WWWDIR%%/app/services/merge_requests/create_service.rb
%%WWWDIR%%/app/services/merge_requests/get_urls_service.rb
%%WWWDIR%%/app/services/merge_requests/merge_request_diff_cache_service.rb
%%WWWDIR%%/app/services/merge_requests/merge_service.rb
%%WWWDIR%%/app/services/merge_requests/merge_when_build_succeeds_service.rb
%%WWWDIR%%/app/services/merge_requests/post_merge_service.rb
%%WWWDIR%%/app/services/merge_requests/refresh_service.rb
%%WWWDIR%%/app/services/merge_requests/reopen_service.rb
%%WWWDIR%%/app/services/merge_requests/resolve_service.rb
%%WWWDIR%%/app/services/merge_requests/resolved_discussion_notification_service.rb
%%WWWDIR%%/app/services/merge_requests/update_service.rb
%%WWWDIR%%/app/services/milestones/base_service.rb
%%WWWDIR%%/app/services/milestones/close_service.rb
%%WWWDIR%%/app/services/milestones/create_service.rb
%%WWWDIR%%/app/services/milestones/destroy_service.rb
%%WWWDIR%%/app/services/milestones/reopen_service.rb
%%WWWDIR%%/app/services/milestones/update_service.rb
%%WWWDIR%%/app/services/notes/create_service.rb
%%WWWDIR%%/app/services/notes/delete_service.rb
%%WWWDIR%%/app/services/notes/diff_position_update_service.rb
%%WWWDIR%%/app/services/notes/post_process_service.rb
%%WWWDIR%%/app/services/notes/slash_commands_service.rb
%%WWWDIR%%/app/services/notes/update_service.rb
%%WWWDIR%%/app/services/notification_service.rb
%%WWWDIR%%/app/services/oauth2/access_token_validation_service.rb
%%WWWDIR%%/app/services/projects/autocomplete_service.rb
%%WWWDIR%%/app/services/projects/create_service.rb
%%WWWDIR%%/app/services/projects/destroy_service.rb
%%WWWDIR%%/app/services/projects/download_service.rb
%%WWWDIR%%/app/services/projects/enable_deploy_key_service.rb
%%WWWDIR%%/app/services/projects/fork_service.rb
%%WWWDIR%%/app/services/projects/housekeeping_service.rb
%%WWWDIR%%/app/services/projects/import_export/export_service.rb
%%WWWDIR%%/app/services/projects/import_service.rb
%%WWWDIR%%/app/services/projects/participants_service.rb
%%WWWDIR%%/app/services/projects/transfer_service.rb
%%WWWDIR%%/app/services/projects/unlink_fork_service.rb
%%WWWDIR%%/app/services/projects/update_service.rb
%%WWWDIR%%/app/services/projects/upload_service.rb
%%WWWDIR%%/app/services/protected_branches/create_service.rb
%%WWWDIR%%/app/services/protected_branches/update_service.rb
%%WWWDIR%%/app/services/repair_ldap_blocked_user_service.rb
%%WWWDIR%%/app/services/repository_archive_clean_up_service.rb
%%WWWDIR%%/app/services/search/global_service.rb
%%WWWDIR%%/app/services/search/project_service.rb
%%WWWDIR%%/app/services/search/snippet_service.rb
%%WWWDIR%%/app/services/slash_commands/interpret_service.rb
%%WWWDIR%%/app/services/spam_service.rb
%%WWWDIR%%/app/services/system_hooks_service.rb
%%WWWDIR%%/app/services/system_note_service.rb
%%WWWDIR%%/app/services/test_hook_service.rb
%%WWWDIR%%/app/services/todo_service.rb
%%WWWDIR%%/app/services/update_release_service.rb
%%WWWDIR%%/app/services/update_snippet_service.rb
%%WWWDIR%%/app/services/user_agent_detail_service.rb
%%WWWDIR%%/app/services/wiki_pages/base_service.rb
%%WWWDIR%%/app/services/wiki_pages/create_service.rb
%%WWWDIR%%/app/services/wiki_pages/update_service.rb
%%WWWDIR%%/app/uploaders/artifact_uploader.rb
%%WWWDIR%%/app/uploaders/attachment_uploader.rb
%%WWWDIR%%/app/uploaders/avatar_uploader.rb
%%WWWDIR%%/app/uploaders/file_uploader.rb
%%WWWDIR%%/app/uploaders/lfs_object_uploader.rb
%%WWWDIR%%/app/uploaders/uploader_helper.rb
%%WWWDIR%%/app/validators/addressable_url_validator.rb
%%WWWDIR%%/app/validators/color_validator.rb
%%WWWDIR%%/app/validators/email_validator.rb
%%WWWDIR%%/app/validators/line_code_validator.rb
%%WWWDIR%%/app/validators/namespace_name_validator.rb
%%WWWDIR%%/app/validators/namespace_validator.rb
%%WWWDIR%%/app/validators/url_validator.rb
%%WWWDIR%%/app/views/abuse_report_mailer/notify.html.haml
%%WWWDIR%%/app/views/abuse_report_mailer/notify.text.haml
%%WWWDIR%%/app/views/abuse_reports/new.html.haml
%%WWWDIR%%/app/views/admin/abuse_reports/_abuse_report.html.haml
%%WWWDIR%%/app/views/admin/abuse_reports/index.html.haml
%%WWWDIR%%/app/views/admin/appearances/_form.html.haml
%%WWWDIR%%/app/views/admin/appearances/preview.html.haml
%%WWWDIR%%/app/views/admin/appearances/show.html.haml
%%WWWDIR%%/app/views/admin/application_settings/_form.html.haml
%%WWWDIR%%/app/views/admin/application_settings/show.html.haml
%%WWWDIR%%/app/views/admin/applications/_delete_form.html.haml
%%WWWDIR%%/app/views/admin/applications/_form.html.haml
%%WWWDIR%%/app/views/admin/applications/edit.html.haml
%%WWWDIR%%/app/views/admin/applications/index.html.haml
%%WWWDIR%%/app/views/admin/applications/new.html.haml
%%WWWDIR%%/app/views/admin/applications/show.html.haml
%%WWWDIR%%/app/views/admin/background_jobs/_head.html.haml
%%WWWDIR%%/app/views/admin/background_jobs/show.html.haml
%%WWWDIR%%/app/views/admin/broadcast_messages/_form.html.haml
%%WWWDIR%%/app/views/admin/broadcast_messages/edit.html.haml
%%WWWDIR%%/app/views/admin/broadcast_messages/index.html.haml
%%WWWDIR%%/app/views/admin/broadcast_messages/preview.js.haml
%%WWWDIR%%/app/views/admin/builds/_build.html.haml
%%WWWDIR%%/app/views/admin/builds/index.html.haml
%%WWWDIR%%/app/views/admin/dashboard/_head.html.haml
%%WWWDIR%%/app/views/admin/dashboard/index.html.haml
%%WWWDIR%%/app/views/admin/deploy_keys/index.html.haml
%%WWWDIR%%/app/views/admin/deploy_keys/new.html.haml
%%WWWDIR%%/app/views/admin/groups/_form.html.haml
%%WWWDIR%%/app/views/admin/groups/_group.html.haml
%%WWWDIR%%/app/views/admin/groups/edit.html.haml
%%WWWDIR%%/app/views/admin/groups/index.html.haml
%%WWWDIR%%/app/views/admin/groups/new.html.haml
%%WWWDIR%%/app/views/admin/groups/show.html.haml
%%WWWDIR%%/app/views/admin/health_check/show.html.haml
%%WWWDIR%%/app/views/admin/hooks/index.html.haml
%%WWWDIR%%/app/views/admin/identities/_form.html.haml
%%WWWDIR%%/app/views/admin/identities/_identity.html.haml
%%WWWDIR%%/app/views/admin/identities/edit.html.haml
%%WWWDIR%%/app/views/admin/identities/index.html.haml
%%WWWDIR%%/app/views/admin/identities/new.html.haml
%%WWWDIR%%/app/views/admin/keys/show.html.haml
%%WWWDIR%%/app/views/admin/labels/_form.html.haml
%%WWWDIR%%/app/views/admin/labels/_label.html.haml
%%WWWDIR%%/app/views/admin/labels/destroy.js.haml
%%WWWDIR%%/app/views/admin/labels/edit.html.haml
%%WWWDIR%%/app/views/admin/labels/index.html.haml
%%WWWDIR%%/app/views/admin/labels/new.html.haml
%%WWWDIR%%/app/views/admin/logs/show.html.haml
%%WWWDIR%%/app/views/admin/projects/index.html.haml
%%WWWDIR%%/app/views/admin/projects/show.html.haml
%%WWWDIR%%/app/views/admin/requests_profiles/index.html.haml
%%WWWDIR%%/app/views/admin/runners/_runner.html.haml
%%WWWDIR%%/app/views/admin/runners/index.html.haml
%%WWWDIR%%/app/views/admin/runners/show.html.haml
%%WWWDIR%%/app/views/admin/runners/update.js.haml
%%WWWDIR%%/app/views/admin/services/_form.html.haml
%%WWWDIR%%/app/views/admin/services/edit.html.haml
%%WWWDIR%%/app/views/admin/services/index.html.haml
%%WWWDIR%%/app/views/admin/spam_logs/_spam_log.html.haml
%%WWWDIR%%/app/views/admin/spam_logs/index.html.haml
%%WWWDIR%%/app/views/admin/system_info/show.html.haml
%%WWWDIR%%/app/views/admin/users/_form.html.haml
%%WWWDIR%%/app/views/admin/users/_head.html.haml
%%WWWDIR%%/app/views/admin/users/_profile.html.haml
%%WWWDIR%%/app/views/admin/users/_projects.html.haml
%%WWWDIR%%/app/views/admin/users/_user.html.haml
%%WWWDIR%%/app/views/admin/users/edit.html.haml
%%WWWDIR%%/app/views/admin/users/groups.html.haml
%%WWWDIR%%/app/views/admin/users/index.html.haml
%%WWWDIR%%/app/views/admin/users/keys.html.haml
%%WWWDIR%%/app/views/admin/users/new.html.haml
%%WWWDIR%%/app/views/admin/users/projects.html.haml
%%WWWDIR%%/app/views/admin/users/show.html.haml
%%WWWDIR%%/app/views/award_emoji/_awards_block.html.haml
%%WWWDIR%%/app/views/ci/lints/_create.html.haml
%%WWWDIR%%/app/views/ci/lints/show.html.haml
%%WWWDIR%%/app/views/dashboard/_activities.html.haml
%%WWWDIR%%/app/views/dashboard/_activity_head.html.haml
%%WWWDIR%%/app/views/dashboard/_groups_head.html.haml
%%WWWDIR%%/app/views/dashboard/_projects_head.html.haml
%%WWWDIR%%/app/views/dashboard/_sidebar.html.haml
%%WWWDIR%%/app/views/dashboard/_snippets_head.html.haml
%%WWWDIR%%/app/views/dashboard/activity.html.haml
%%WWWDIR%%/app/views/dashboard/groups/index.html.haml
%%WWWDIR%%/app/views/dashboard/issues.atom.builder
%%WWWDIR%%/app/views/dashboard/issues.html.haml
%%WWWDIR%%/app/views/dashboard/merge_requests.html.haml
%%WWWDIR%%/app/views/dashboard/milestones/_milestone.html.haml
%%WWWDIR%%/app/views/dashboard/milestones/index.html.haml
%%WWWDIR%%/app/views/dashboard/milestones/show.html.haml
%%WWWDIR%%/app/views/dashboard/projects/_projects.html.haml
%%WWWDIR%%/app/views/dashboard/projects/_zero_authorized_projects.html.haml
%%WWWDIR%%/app/views/dashboard/projects/index.atom.builder
%%WWWDIR%%/app/views/dashboard/projects/index.html.haml
%%WWWDIR%%/app/views/dashboard/projects/starred.html.haml
%%WWWDIR%%/app/views/dashboard/snippets/index.html.haml
%%WWWDIR%%/app/views/dashboard/todos/_todo.html.haml
%%WWWDIR%%/app/views/dashboard/todos/index.html.haml
%%WWWDIR%%/app/views/devise/confirmations/almost_there.haml
%%WWWDIR%%/app/views/devise/confirmations/new.html.haml
%%WWWDIR%%/app/views/devise/mailer/confirmation_instructions.html.haml
%%WWWDIR%%/app/views/devise/mailer/confirmation_instructions.text.erb
%%WWWDIR%%/app/views/devise/mailer/password_change.html.haml
%%WWWDIR%%/app/views/devise/mailer/password_change.text.erb
%%WWWDIR%%/app/views/devise/mailer/reset_password_instructions.html.haml
%%WWWDIR%%/app/views/devise/mailer/reset_password_instructions.text.erb
%%WWWDIR%%/app/views/devise/mailer/unlock_instructions.html.haml
%%WWWDIR%%/app/views/devise/mailer/unlock_instructions.text.erb
%%WWWDIR%%/app/views/devise/passwords/edit.html.haml
%%WWWDIR%%/app/views/devise/passwords/new.html.haml
%%WWWDIR%%/app/views/devise/registrations/edit.html.erb
%%WWWDIR%%/app/views/devise/registrations/new.html.haml
%%WWWDIR%%/app/views/devise/sessions/_new_base.html.haml
%%WWWDIR%%/app/views/devise/sessions/_new_crowd.html.haml
%%WWWDIR%%/app/views/devise/sessions/_new_ldap.html.haml
%%WWWDIR%%/app/views/devise/sessions/new.html.haml
%%WWWDIR%%/app/views/devise/sessions/two_factor.html.haml
%%WWWDIR%%/app/views/devise/shared/_links.erb
%%WWWDIR%%/app/views/devise/shared/_omniauth_box.html.haml
%%WWWDIR%%/app/views/devise/shared/_sign_in_link.html.haml
%%WWWDIR%%/app/views/devise/shared/_signin_box.html.haml
%%WWWDIR%%/app/views/devise/shared/_signup_box.html.haml
%%WWWDIR%%/app/views/devise/unlocks/new.html.haml
%%WWWDIR%%/app/views/discussions/_diff_discussion.html.haml
%%WWWDIR%%/app/views/discussions/_diff_with_notes.html.haml
%%WWWDIR%%/app/views/discussions/_discussion.html.haml
%%WWWDIR%%/app/views/discussions/_headline.html.haml
%%WWWDIR%%/app/views/discussions/_jump_to_next.html.haml
%%WWWDIR%%/app/views/discussions/_notes.html.haml
%%WWWDIR%%/app/views/discussions/_parallel_diff_discussion.html.haml
%%WWWDIR%%/app/views/discussions/_resolve_all.html.haml
%%WWWDIR%%/app/views/doorkeeper/applications/_delete_form.html.haml
%%WWWDIR%%/app/views/doorkeeper/applications/_form.html.haml
%%WWWDIR%%/app/views/doorkeeper/applications/edit.html.haml
%%WWWDIR%%/app/views/doorkeeper/applications/index.html.haml
%%WWWDIR%%/app/views/doorkeeper/applications/new.html.haml
%%WWWDIR%%/app/views/doorkeeper/applications/show.html.haml
%%WWWDIR%%/app/views/doorkeeper/authorizations/error.html.haml
%%WWWDIR%%/app/views/doorkeeper/authorizations/new.html.haml
%%WWWDIR%%/app/views/doorkeeper/authorizations/show.html.haml
%%WWWDIR%%/app/views/doorkeeper/authorized_applications/_delete_form.html.haml
%%WWWDIR%%/app/views/doorkeeper/authorized_applications/index.html.haml
%%WWWDIR%%/app/views/email_rejection_mailer/rejection.html.haml
%%WWWDIR%%/app/views/email_rejection_mailer/rejection.text.haml
%%WWWDIR%%/app/views/emojis/index.html.haml
%%WWWDIR%%/app/views/errors/access_denied.html.haml
%%WWWDIR%%/app/views/errors/encoding.html.haml
%%WWWDIR%%/app/views/errors/git_not_found.html.haml
%%WWWDIR%%/app/views/errors/not_found.html.haml
%%WWWDIR%%/app/views/errors/omniauth_error.html.haml
%%WWWDIR%%/app/views/events/_commit.html.haml
%%WWWDIR%%/app/views/events/_event.atom.builder
%%WWWDIR%%/app/views/events/_event.html.haml
%%WWWDIR%%/app/views/events/_event_issue.atom.haml
%%WWWDIR%%/app/views/events/_event_last_push.html.haml
%%WWWDIR%%/app/views/events/_event_merge_request.atom.haml
%%WWWDIR%%/app/views/events/_event_note.atom.haml
%%WWWDIR%%/app/views/events/_event_push.atom.haml
%%WWWDIR%%/app/views/events/_event_scope.html.haml
%%WWWDIR%%/app/views/events/_events.html.haml
%%WWWDIR%%/app/views/events/event/_common.html.haml
%%WWWDIR%%/app/views/events/event/_created_project.html.haml
%%WWWDIR%%/app/views/events/event/_note.html.haml
%%WWWDIR%%/app/views/events/event/_push.html.haml
%%WWWDIR%%/app/views/explore/_head.html.haml
%%WWWDIR%%/app/views/explore/groups/index.html.haml
%%WWWDIR%%/app/views/explore/projects/_filter.html.haml
%%WWWDIR%%/app/views/explore/projects/_nav.html.haml
%%WWWDIR%%/app/views/explore/projects/_projects.html.haml
%%WWWDIR%%/app/views/explore/projects/index.html.haml
%%WWWDIR%%/app/views/explore/projects/starred.html.haml
%%WWWDIR%%/app/views/explore/projects/trending.html.haml
%%WWWDIR%%/app/views/explore/snippets/index.html.haml
%%WWWDIR%%/app/views/groups/_activities.html.haml
%%WWWDIR%%/app/views/groups/_projects.html.haml
%%WWWDIR%%/app/views/groups/_shared_projects.html.haml
%%WWWDIR%%/app/views/groups/activity.html.haml
%%WWWDIR%%/app/views/groups/edit.html.haml
%%WWWDIR%%/app/views/groups/group_members/_new_group_member.html.haml
%%WWWDIR%%/app/views/groups/group_members/index.html.haml
%%WWWDIR%%/app/views/groups/group_members/update.js.haml
%%WWWDIR%%/app/views/groups/issues.atom.builder
%%WWWDIR%%/app/views/groups/issues.html.haml
%%WWWDIR%%/app/views/groups/merge_requests.html.haml
%%WWWDIR%%/app/views/groups/milestones/_header_title.html.haml
%%WWWDIR%%/app/views/groups/milestones/_milestone.html.haml
%%WWWDIR%%/app/views/groups/milestones/index.html.haml
%%WWWDIR%%/app/views/groups/milestones/new.html.haml
%%WWWDIR%%/app/views/groups/milestones/show.html.haml
%%WWWDIR%%/app/views/groups/new.html.haml
%%WWWDIR%%/app/views/groups/projects.html.haml
%%WWWDIR%%/app/views/groups/show.atom.builder
%%WWWDIR%%/app/views/groups/show.html.haml
%%WWWDIR%%/app/views/help/_shortcuts.html.haml
%%WWWDIR%%/app/views/help/index.html.haml
%%WWWDIR%%/app/views/help/shortcuts.js.haml
%%WWWDIR%%/app/views/help/show.html.haml
%%WWWDIR%%/app/views/help/ui.html.haml
%%WWWDIR%%/app/views/import/base/create.js.haml
%%WWWDIR%%/app/views/import/base/unauthorized.js.haml
%%WWWDIR%%/app/views/import/bitbucket/deploy_key.js.haml
%%WWWDIR%%/app/views/import/bitbucket/status.html.haml
%%WWWDIR%%/app/views/import/fogbugz/new.html.haml
%%WWWDIR%%/app/views/import/fogbugz/new_user_map.html.haml
%%WWWDIR%%/app/views/import/fogbugz/status.html.haml
%%WWWDIR%%/app/views/import/github/new.html.haml
%%WWWDIR%%/app/views/import/github/status.html.haml
%%WWWDIR%%/app/views/import/gitlab/status.html.haml
%%WWWDIR%%/app/views/import/gitlab_projects/new.html.haml
%%WWWDIR%%/app/views/import/google_code/new.html.haml
%%WWWDIR%%/app/views/import/google_code/new_user_map.html.haml
%%WWWDIR%%/app/views/import/google_code/status.html.haml
%%WWWDIR%%/app/views/invites/show.html.haml
%%WWWDIR%%/app/views/issues/_issue.atom.builder
%%WWWDIR%%/app/views/kaminari/gitlab/_first_page.html.haml
%%WWWDIR%%/app/views/kaminari/gitlab/_gap.html.haml
%%WWWDIR%%/app/views/kaminari/gitlab/_last_page.html.haml
%%WWWDIR%%/app/views/kaminari/gitlab/_next_page.html.haml
%%WWWDIR%%/app/views/kaminari/gitlab/_page.html.haml
%%WWWDIR%%/app/views/kaminari/gitlab/_paginator.html.haml
%%WWWDIR%%/app/views/kaminari/gitlab/_prev_page.html.haml
%%WWWDIR%%/app/views/koding/index.html.haml
%%WWWDIR%%/app/views/layouts/_bootlint.haml
%%WWWDIR%%/app/views/layouts/_broadcast.html.haml
%%WWWDIR%%/app/views/layouts/_flash.html.haml
%%WWWDIR%%/app/views/layouts/_google_analytics.html.haml
%%WWWDIR%%/app/views/layouts/_head.html.haml
%%WWWDIR%%/app/views/layouts/_init_auto_complete.html.haml
%%WWWDIR%%/app/views/layouts/_page.html.haml
%%WWWDIR%%/app/views/layouts/_page_title.html.haml
%%WWWDIR%%/app/views/layouts/_piwik.html.haml
%%WWWDIR%%/app/views/layouts/_search.html.haml
%%WWWDIR%%/app/views/layouts/_user_styles.html.haml
%%WWWDIR%%/app/views/layouts/admin.html.haml
%%WWWDIR%%/app/views/layouts/application.html.haml
%%WWWDIR%%/app/views/layouts/dashboard.html.haml
%%WWWDIR%%/app/views/layouts/devise.html.haml
%%WWWDIR%%/app/views/layouts/devise_empty.html.haml
%%WWWDIR%%/app/views/layouts/devise_mailer.html.haml
%%WWWDIR%%/app/views/layouts/errors.html.haml
%%WWWDIR%%/app/views/layouts/explore.html.haml
%%WWWDIR%%/app/views/layouts/group.html.haml
%%WWWDIR%%/app/views/layouts/group_settings.html.haml
%%WWWDIR%%/app/views/layouts/header/_default.html.haml
%%WWWDIR%%/app/views/layouts/header/_empty.html.haml
%%WWWDIR%%/app/views/layouts/help.html.haml
%%WWWDIR%%/app/views/layouts/koding.html.haml
%%WWWDIR%%/app/views/layouts/nav/_admin.html.haml
%%WWWDIR%%/app/views/layouts/nav/_admin_settings.html.haml
%%WWWDIR%%/app/views/layouts/nav/_dashboard.html.haml
%%WWWDIR%%/app/views/layouts/nav/_explore.html.haml
%%WWWDIR%%/app/views/layouts/nav/_group.html.haml
%%WWWDIR%%/app/views/layouts/nav/_group_settings.html.haml
%%WWWDIR%%/app/views/layouts/nav/_profile.html.haml
%%WWWDIR%%/app/views/layouts/nav/_project.html.haml
%%WWWDIR%%/app/views/layouts/nav/_project_settings.html.haml
%%WWWDIR%%/app/views/layouts/notify.html.haml
%%WWWDIR%%/app/views/layouts/profile.html.haml
%%WWWDIR%%/app/views/layouts/project.html.haml
%%WWWDIR%%/app/views/layouts/project_settings.html.haml
%%WWWDIR%%/app/views/layouts/search.html.haml
%%WWWDIR%%/app/views/layouts/snippets.html.haml
%%WWWDIR%%/app/views/notify/_note_message.html.haml
%%WWWDIR%%/app/views/notify/_reassigned_issuable_email.html.haml
%%WWWDIR%%/app/views/notify/_reassigned_issuable_email.text.erb
%%WWWDIR%%/app/views/notify/_relabeled_issuable_email.html.haml
%%WWWDIR%%/app/views/notify/_relabeled_issuable_email.text.erb
%%WWWDIR%%/app/views/notify/build_fail_email.html.haml
%%WWWDIR%%/app/views/notify/build_fail_email.text.erb
%%WWWDIR%%/app/views/notify/build_success_email.html.haml
%%WWWDIR%%/app/views/notify/build_success_email.text.erb
%%WWWDIR%%/app/views/notify/closed_issue_email.html.haml
%%WWWDIR%%/app/views/notify/closed_issue_email.text.haml
%%WWWDIR%%/app/views/notify/closed_merge_request_email.html.haml
%%WWWDIR%%/app/views/notify/closed_merge_request_email.text.haml
%%WWWDIR%%/app/views/notify/issue_moved_email.html.haml
%%WWWDIR%%/app/views/notify/issue_moved_email.text.erb
%%WWWDIR%%/app/views/notify/issue_status_changed_email.html.haml
%%WWWDIR%%/app/views/notify/issue_status_changed_email.text.erb
%%WWWDIR%%/app/views/notify/member_access_denied_email.html.haml
%%WWWDIR%%/app/views/notify/member_access_denied_email.text.erb
%%WWWDIR%%/app/views/notify/member_access_granted_email.html.haml
%%WWWDIR%%/app/views/notify/member_access_granted_email.text.erb
%%WWWDIR%%/app/views/notify/member_access_requested_email.html.haml
%%WWWDIR%%/app/views/notify/member_access_requested_email.text.erb
%%WWWDIR%%/app/views/notify/member_invite_accepted_email.html.haml
%%WWWDIR%%/app/views/notify/member_invite_accepted_email.text.erb
%%WWWDIR%%/app/views/notify/member_invite_declined_email.html.haml
%%WWWDIR%%/app/views/notify/member_invite_declined_email.text.erb
%%WWWDIR%%/app/views/notify/member_invited_email.html.haml
%%WWWDIR%%/app/views/notify/member_invited_email.text.erb
%%WWWDIR%%/app/views/notify/merge_request_status_email.html.haml
%%WWWDIR%%/app/views/notify/merge_request_status_email.text.haml
%%WWWDIR%%/app/views/notify/merged_merge_request_email.html.haml
%%WWWDIR%%/app/views/notify/merged_merge_request_email.text.haml
%%WWWDIR%%/app/views/notify/new_email_email.html.haml
%%WWWDIR%%/app/views/notify/new_email_email.text.erb
%%WWWDIR%%/app/views/notify/new_issue_email.html.haml
%%WWWDIR%%/app/views/notify/new_issue_email.text.erb
%%WWWDIR%%/app/views/notify/new_mention_in_issue_email.html.haml
%%WWWDIR%%/app/views/notify/new_mention_in_issue_email.text.erb
%%WWWDIR%%/app/views/notify/new_mention_in_merge_request_email.html.haml
%%WWWDIR%%/app/views/notify/new_mention_in_merge_request_email.text.erb
%%WWWDIR%%/app/views/notify/new_merge_request_email.html.haml
%%WWWDIR%%/app/views/notify/new_merge_request_email.text.erb
%%WWWDIR%%/app/views/notify/new_ssh_key_email.html.haml
%%WWWDIR%%/app/views/notify/new_ssh_key_email.text.erb
%%WWWDIR%%/app/views/notify/new_user_email.html.haml
%%WWWDIR%%/app/views/notify/new_user_email.text.erb
%%WWWDIR%%/app/views/notify/note_commit_email.html.haml
%%WWWDIR%%/app/views/notify/note_commit_email.text.erb
%%WWWDIR%%/app/views/notify/note_issue_email.html.haml
%%WWWDIR%%/app/views/notify/note_issue_email.text.erb
%%WWWDIR%%/app/views/notify/note_merge_request_email.html.haml
%%WWWDIR%%/app/views/notify/note_merge_request_email.text.erb
%%WWWDIR%%/app/views/notify/note_snippet_email.html.haml
%%WWWDIR%%/app/views/notify/note_snippet_email.text.erb
%%WWWDIR%%/app/views/notify/project_was_exported_email.html.haml
%%WWWDIR%%/app/views/notify/project_was_exported_email.text.erb
%%WWWDIR%%/app/views/notify/project_was_moved_email.html.haml
%%WWWDIR%%/app/views/notify/project_was_moved_email.text.erb
%%WWWDIR%%/app/views/notify/project_was_not_exported_email.html.haml
%%WWWDIR%%/app/views/notify/project_was_not_exported_email.text.haml
%%WWWDIR%%/app/views/notify/reassigned_issue_email.html.haml
%%WWWDIR%%/app/views/notify/reassigned_issue_email.text.erb
%%WWWDIR%%/app/views/notify/reassigned_merge_request_email.html.haml
%%WWWDIR%%/app/views/notify/reassigned_merge_request_email.text.erb
%%WWWDIR%%/app/views/notify/relabeled_issue_email.html.haml
%%WWWDIR%%/app/views/notify/relabeled_issue_email.text.erb
%%WWWDIR%%/app/views/notify/relabeled_merge_request_email.html.haml
%%WWWDIR%%/app/views/notify/relabeled_merge_request_email.text.erb
%%WWWDIR%%/app/views/notify/repository_push_email.html.haml
%%WWWDIR%%/app/views/notify/repository_push_email.text.haml
%%WWWDIR%%/app/views/notify/resolved_all_discussions_email.html.haml
%%WWWDIR%%/app/views/notify/resolved_all_discussions_email.text.erb
%%WWWDIR%%/app/views/profiles/_event_table.html.haml
%%WWWDIR%%/app/views/profiles/_head.html.haml
%%WWWDIR%%/app/views/profiles/accounts/show.html.haml
%%WWWDIR%%/app/views/profiles/audit_log.html.haml
%%WWWDIR%%/app/views/profiles/emails/index.html.haml
%%WWWDIR%%/app/views/profiles/keys/_form.html.haml
%%WWWDIR%%/app/views/profiles/keys/_key.html.haml
%%WWWDIR%%/app/views/profiles/keys/_key_details.html.haml
%%WWWDIR%%/app/views/profiles/keys/_key_table.html.haml
%%WWWDIR%%/app/views/profiles/keys/index.html.haml
%%WWWDIR%%/app/views/profiles/keys/show.html.haml
%%WWWDIR%%/app/views/profiles/notifications/_group_settings.html.haml
%%WWWDIR%%/app/views/profiles/notifications/_project_settings.html.haml
%%WWWDIR%%/app/views/profiles/notifications/show.html.haml
%%WWWDIR%%/app/views/profiles/passwords/edit.html.haml
%%WWWDIR%%/app/views/profiles/passwords/new.html.haml
%%WWWDIR%%/app/views/profiles/personal_access_tokens/index.html.haml
%%WWWDIR%%/app/views/profiles/preferences/show.html.haml
%%WWWDIR%%/app/views/profiles/preferences/update.js.erb
%%WWWDIR%%/app/views/profiles/show.html.haml
%%WWWDIR%%/app/views/profiles/two_factor_auths/_codes.html.haml
%%WWWDIR%%/app/views/profiles/two_factor_auths/codes.html.haml
%%WWWDIR%%/app/views/profiles/two_factor_auths/create.html.haml
%%WWWDIR%%/app/views/profiles/two_factor_auths/show.html.haml
%%WWWDIR%%/app/views/profiles/update_username.js.haml
%%WWWDIR%%/app/views/projects/_activity.html.haml
%%WWWDIR%%/app/views/projects/_bitbucket_import_modal.html.haml
%%WWWDIR%%/app/views/projects/_commit_button.html.haml
%%WWWDIR%%/app/views/projects/_errors.html.haml
%%WWWDIR%%/app/views/projects/_files.html.haml
%%WWWDIR%%/app/views/projects/_find_file_link.html.haml
%%WWWDIR%%/app/views/projects/_gitlab_import_modal.html.haml
%%WWWDIR%%/app/views/projects/_home_panel.html.haml
%%WWWDIR%%/app/views/projects/_last_commit.html.haml
%%WWWDIR%%/app/views/projects/_last_push.html.haml
%%WWWDIR%%/app/views/projects/_md_preview.html.haml
%%WWWDIR%%/app/views/projects/_merge_request_settings.html.haml
%%WWWDIR%%/app/views/projects/_readme.html.haml
%%WWWDIR%%/app/views/projects/_zen.html.haml
%%WWWDIR%%/app/views/projects/activity.html.haml
%%WWWDIR%%/app/views/projects/artifacts/_tree_directory.html.haml
%%WWWDIR%%/app/views/projects/artifacts/_tree_file.html.haml
%%WWWDIR%%/app/views/projects/artifacts/browse.html.haml
%%WWWDIR%%/app/views/projects/badges/badge.svg.erb
%%WWWDIR%%/app/views/projects/blame/show.html.haml
%%WWWDIR%%/app/views/projects/blob/_actions.html.haml
%%WWWDIR%%/app/views/projects/blob/_blob.html.haml
%%WWWDIR%%/app/views/projects/blob/_download.html.haml
%%WWWDIR%%/app/views/projects/blob/_editor.html.haml
%%WWWDIR%%/app/views/projects/blob/_image.html.haml
%%WWWDIR%%/app/views/projects/blob/_new_dir.html.haml
%%WWWDIR%%/app/views/projects/blob/_remove.html.haml
%%WWWDIR%%/app/views/projects/blob/_text.html.haml
%%WWWDIR%%/app/views/projects/blob/_upload.html.haml
%%WWWDIR%%/app/views/projects/blob/diff.html.haml
%%WWWDIR%%/app/views/projects/blob/edit.html.haml
%%WWWDIR%%/app/views/projects/blob/new.html.haml
%%WWWDIR%%/app/views/projects/blob/preview.html.haml
%%WWWDIR%%/app/views/projects/blob/show.html.haml
%%WWWDIR%%/app/views/projects/boards/components/_blank_state.html.haml
%%WWWDIR%%/app/views/projects/boards/components/_board.html.haml
%%WWWDIR%%/app/views/projects/boards/components/_card.html.haml
%%WWWDIR%%/app/views/projects/boards/show.html.haml
%%WWWDIR%%/app/views/projects/branches/_branch.html.haml
%%WWWDIR%%/app/views/projects/branches/_commit.html.haml
%%WWWDIR%%/app/views/projects/branches/index.html.haml
%%WWWDIR%%/app/views/projects/branches/new.html.haml
%%WWWDIR%%/app/views/projects/builds/_header.html.haml
%%WWWDIR%%/app/views/projects/builds/_sidebar.html.haml
%%WWWDIR%%/app/views/projects/builds/_user.html.haml
%%WWWDIR%%/app/views/projects/builds/index.html.haml
%%WWWDIR%%/app/views/projects/builds/show.html.haml
%%WWWDIR%%/app/views/projects/buttons/_download.html.haml
%%WWWDIR%%/app/views/projects/buttons/_dropdown.html.haml
%%WWWDIR%%/app/views/projects/buttons/_fork.html.haml
%%WWWDIR%%/app/views/projects/buttons/_koding.html.haml
%%WWWDIR%%/app/views/projects/buttons/_star.html.haml
%%WWWDIR%%/app/views/projects/ci/builds/_build.html.haml
%%WWWDIR%%/app/views/projects/ci/builds/_build_pipeline.html.haml
%%WWWDIR%%/app/views/projects/ci/pipelines/_pipeline.html.haml
%%WWWDIR%%/app/views/projects/commit/_builds.html.haml
%%WWWDIR%%/app/views/projects/commit/_change.html.haml
%%WWWDIR%%/app/views/projects/commit/_ci_menu.html.haml
%%WWWDIR%%/app/views/projects/commit/_ci_stage.html.haml
%%WWWDIR%%/app/views/projects/commit/_commit_box.html.haml
%%WWWDIR%%/app/views/projects/commit/_pipeline.html.haml
%%WWWDIR%%/app/views/projects/commit/_pipelines_list.haml
%%WWWDIR%%/app/views/projects/commit/branches.html.haml
%%WWWDIR%%/app/views/projects/commit/builds.html.haml
%%WWWDIR%%/app/views/projects/commit/show.html.haml
%%WWWDIR%%/app/views/projects/commits/_commit.atom.builder
%%WWWDIR%%/app/views/projects/commits/_commit.html.haml
%%WWWDIR%%/app/views/projects/commits/_commit_list.html.haml
%%WWWDIR%%/app/views/projects/commits/_commits.html.haml
%%WWWDIR%%/app/views/projects/commits/_head.html.haml
%%WWWDIR%%/app/views/projects/commits/_inline_commit.html.haml
%%WWWDIR%%/app/views/projects/commits/show.atom.builder
%%WWWDIR%%/app/views/projects/commits/show.html.haml
%%WWWDIR%%/app/views/projects/compare/_form.html.haml
%%WWWDIR%%/app/views/projects/compare/_ref_dropdown.html.haml
%%WWWDIR%%/app/views/projects/compare/index.html.haml
%%WWWDIR%%/app/views/projects/compare/show.html.haml
%%WWWDIR%%/app/views/projects/container_registry/_tag.html.haml
%%WWWDIR%%/app/views/projects/container_registry/index.html.haml
%%WWWDIR%%/app/views/projects/deploy_keys/_deploy_key.html.haml
%%WWWDIR%%/app/views/projects/deploy_keys/_form.html.haml
%%WWWDIR%%/app/views/projects/deploy_keys/index.html.haml
%%WWWDIR%%/app/views/projects/deploy_keys/new.html.haml
%%WWWDIR%%/app/views/projects/deployments/_actions.haml
%%WWWDIR%%/app/views/projects/deployments/_commit.html.haml
%%WWWDIR%%/app/views/projects/deployments/_deployment.html.haml
%%WWWDIR%%/app/views/projects/diffs/_content.html.haml
%%WWWDIR%%/app/views/projects/diffs/_diffs.html.haml
%%WWWDIR%%/app/views/projects/diffs/_file.html.haml
%%WWWDIR%%/app/views/projects/diffs/_file_header.html.haml
%%WWWDIR%%/app/views/projects/diffs/_image.html.haml
%%WWWDIR%%/app/views/projects/diffs/_line.html.haml
%%WWWDIR%%/app/views/projects/diffs/_parallel_view.html.haml
%%WWWDIR%%/app/views/projects/diffs/_stats.html.haml
%%WWWDIR%%/app/views/projects/diffs/_text_file.html.haml
%%WWWDIR%%/app/views/projects/diffs/_warning.html.haml
%%WWWDIR%%/app/views/projects/edit.html.haml
%%WWWDIR%%/app/views/projects/empty.html.haml
%%WWWDIR%%/app/views/projects/environments/_environment.html.haml
%%WWWDIR%%/app/views/projects/environments/_form.html.haml
%%WWWDIR%%/app/views/projects/environments/_header_title.html.haml
%%WWWDIR%%/app/views/projects/environments/edit.html.haml
%%WWWDIR%%/app/views/projects/environments/index.html.haml
%%WWWDIR%%/app/views/projects/environments/new.html.haml
%%WWWDIR%%/app/views/projects/environments/show.html.haml
%%WWWDIR%%/app/views/projects/find_file/show.html.haml
%%WWWDIR%%/app/views/projects/forks/_projects.html.haml
%%WWWDIR%%/app/views/projects/forks/error.html.haml
%%WWWDIR%%/app/views/projects/forks/index.html.haml
%%WWWDIR%%/app/views/projects/forks/new.html.haml
%%WWWDIR%%/app/views/projects/generic_commit_statuses/_generic_commit_status.html.haml
%%WWWDIR%%/app/views/projects/generic_commit_statuses/_generic_commit_status_pipeline.html.haml
%%WWWDIR%%/app/views/projects/graphs/_head.html.haml
%%WWWDIR%%/app/views/projects/graphs/ci.html.haml
%%WWWDIR%%/app/views/projects/graphs/ci/_build_times.haml
%%WWWDIR%%/app/views/projects/graphs/ci/_builds.haml
%%WWWDIR%%/app/views/projects/graphs/ci/_overall.haml
%%WWWDIR%%/app/views/projects/graphs/commits.html.haml
%%WWWDIR%%/app/views/projects/graphs/languages.html.haml
%%WWWDIR%%/app/views/projects/graphs/show.html.haml
%%WWWDIR%%/app/views/projects/group_links/index.html.haml
%%WWWDIR%%/app/views/projects/hooks/_project_hook.html.haml
%%WWWDIR%%/app/views/projects/hooks/index.html.haml
%%WWWDIR%%/app/views/projects/imports/new.html.haml
%%WWWDIR%%/app/views/projects/imports/show.html.haml
%%WWWDIR%%/app/views/projects/issues/_closed_by_box.html.haml
%%WWWDIR%%/app/views/projects/issues/_discussion.html.haml
%%WWWDIR%%/app/views/projects/issues/_form.html.haml
%%WWWDIR%%/app/views/projects/issues/_head.html.haml
%%WWWDIR%%/app/views/projects/issues/_issue.html.haml
%%WWWDIR%%/app/views/projects/issues/_issue_by_email.html.haml
%%WWWDIR%%/app/views/projects/issues/_issues.html.haml
%%WWWDIR%%/app/views/projects/issues/_merge_requests.html.haml
%%WWWDIR%%/app/views/projects/issues/_new_branch.html.haml
%%WWWDIR%%/app/views/projects/issues/_related_branches.html.haml
%%WWWDIR%%/app/views/projects/issues/edit.html.haml
%%WWWDIR%%/app/views/projects/issues/index.atom.builder
%%WWWDIR%%/app/views/projects/issues/index.html.haml
%%WWWDIR%%/app/views/projects/issues/new.html.haml
%%WWWDIR%%/app/views/projects/issues/show.html.haml
%%WWWDIR%%/app/views/projects/labels/_form.html.haml
%%WWWDIR%%/app/views/projects/labels/_label.html.haml
%%WWWDIR%%/app/views/projects/labels/destroy.js.haml
%%WWWDIR%%/app/views/projects/labels/edit.html.haml
%%WWWDIR%%/app/views/projects/labels/index.html.haml
%%WWWDIR%%/app/views/projects/labels/new.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/_discussion.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/_form.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/_merge_request.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/_merge_requests.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/_new_compare.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/_new_submit.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/_show.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/branch_from.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/branch_to.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/cancel_merge_when_build_succeeds.js.haml
%%WWWDIR%%/app/views/projects/merge_requests/conflicts.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/conflicts/_commit_stats.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/conflicts/_inline_view.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/conflicts/_parallel_view.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/conflicts/_submit_form.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/diffs.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/dropdowns/_branch.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/dropdowns/_project.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/edit.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/index.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/invalid.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/merge.js.haml
%%WWWDIR%%/app/views/projects/merge_requests/new.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/show.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/show/_builds.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/show/_commits.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/show/_diffs.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/show/_how_to_merge.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/show/_mr_box.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/show/_mr_title.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/show/_pipelines.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/update_branches.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/_closed.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/_heading.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/_locked.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/_merged.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/_merged_buttons.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/_open.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/_show.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/open/_accept.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/open/_archived.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/open/_build_failed.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/open/_check.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/open/_conflicts.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/open/_merge_when_build_succeeds.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/open/_missing_branch.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/open/_not_allowed.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/open/_nothing.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/open/_reload.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/open/_sha_mismatch.html.haml
%%WWWDIR%%/app/views/projects/merge_requests/widget/open/_wip.html.haml
%%WWWDIR%%/app/views/projects/milestones/_form.html.haml
%%WWWDIR%%/app/views/projects/milestones/_milestone.html.haml
%%WWWDIR%%/app/views/projects/milestones/edit.html.haml
%%WWWDIR%%/app/views/projects/milestones/index.html.haml
%%WWWDIR%%/app/views/projects/milestones/new.html.haml
%%WWWDIR%%/app/views/projects/milestones/show.html.haml
%%WWWDIR%%/app/views/projects/milestones/update.js.haml
%%WWWDIR%%/app/views/projects/network/_head.html.haml
%%WWWDIR%%/app/views/projects/network/show.html.haml
%%WWWDIR%%/app/views/projects/network/show.json.erb
%%WWWDIR%%/app/views/projects/new.html.haml
%%WWWDIR%%/app/views/projects/no_repo.html.haml
%%WWWDIR%%/app/views/projects/notes/_edit_form.html.haml
%%WWWDIR%%/app/views/projects/notes/_form.html.haml
%%WWWDIR%%/app/views/projects/notes/_form_errors.html.haml
%%WWWDIR%%/app/views/projects/notes/_hints.html.haml
%%WWWDIR%%/app/views/projects/notes/_note.html.haml
%%WWWDIR%%/app/views/projects/notes/_notes.html.haml
%%WWWDIR%%/app/views/projects/notes/_notes_with_form.html.haml
%%WWWDIR%%/app/views/projects/pipelines/_head.html.haml
%%WWWDIR%%/app/views/projects/pipelines/_info.html.haml
%%WWWDIR%%/app/views/projects/pipelines/index.html.haml
%%WWWDIR%%/app/views/projects/pipelines/new.html.haml
%%WWWDIR%%/app/views/projects/pipelines/show.html.haml
%%WWWDIR%%/app/views/projects/pipelines_settings/_badge.html.haml
%%WWWDIR%%/app/views/projects/pipelines_settings/show.html.haml
%%WWWDIR%%/app/views/projects/project_members/_group_members.html.haml
%%WWWDIR%%/app/views/projects/project_members/_new_project_member.html.haml
%%WWWDIR%%/app/views/projects/project_members/_shared_group_members.html.haml
%%WWWDIR%%/app/views/projects/project_members/_team.html.haml
%%WWWDIR%%/app/views/projects/project_members/import.html.haml
%%WWWDIR%%/app/views/projects/project_members/index.html.haml
%%WWWDIR%%/app/views/projects/project_members/update.js.haml
%%WWWDIR%%/app/views/projects/protected_branches/_branches_list.html.haml
%%WWWDIR%%/app/views/projects/protected_branches/_create_protected_branch.html.haml
%%WWWDIR%%/app/views/projects/protected_branches/_dropdown.html.haml
%%WWWDIR%%/app/views/projects/protected_branches/_matching_branch.html.haml
%%WWWDIR%%/app/views/projects/protected_branches/_protected_branch.html.haml
%%WWWDIR%%/app/views/projects/protected_branches/_update_protected_branch.html.haml
%%WWWDIR%%/app/views/projects/protected_branches/index.html.haml
%%WWWDIR%%/app/views/projects/protected_branches/show.html.haml
%%WWWDIR%%/app/views/projects/refs/logs_tree.js.haml
%%WWWDIR%%/app/views/projects/releases/edit.html.haml
%%WWWDIR%%/app/views/projects/remove_fork.js.haml
%%WWWDIR%%/app/views/projects/repositories/_download_archive.html.haml
%%WWWDIR%%/app/views/projects/repositories/_feed.html.haml
%%WWWDIR%%/app/views/projects/runners/_form.html.haml
%%WWWDIR%%/app/views/projects/runners/_runner.html.haml
%%WWWDIR%%/app/views/projects/runners/_shared_runners.html.haml
%%WWWDIR%%/app/views/projects/runners/_specific_runners.html.haml
%%WWWDIR%%/app/views/projects/runners/edit.html.haml
%%WWWDIR%%/app/views/projects/runners/index.html.haml
%%WWWDIR%%/app/views/projects/runners/show.html.haml
%%WWWDIR%%/app/views/projects/services/_form.html.haml
%%WWWDIR%%/app/views/projects/services/edit.html.haml
%%WWWDIR%%/app/views/projects/services/index.html.haml
%%WWWDIR%%/app/views/projects/show.atom.builder
%%WWWDIR%%/app/views/projects/show.html.haml
%%WWWDIR%%/app/views/projects/snippets/_actions.html.haml
%%WWWDIR%%/app/views/projects/snippets/edit.html.haml
%%WWWDIR%%/app/views/projects/snippets/index.html.haml
%%WWWDIR%%/app/views/projects/snippets/new.html.haml
%%WWWDIR%%/app/views/projects/snippets/show.html.haml
%%WWWDIR%%/app/views/projects/tags/_download.html.haml
%%WWWDIR%%/app/views/projects/tags/_tag.html.haml
%%WWWDIR%%/app/views/projects/tags/destroy.js.haml
%%WWWDIR%%/app/views/projects/tags/index.html.haml
%%WWWDIR%%/app/views/projects/tags/new.html.haml
%%WWWDIR%%/app/views/projects/tags/show.html.haml
%%WWWDIR%%/app/views/projects/transfer.js.haml
%%WWWDIR%%/app/views/projects/tree/_blob_item.html.haml
%%WWWDIR%%/app/views/projects/tree/_readme.html.haml
%%WWWDIR%%/app/views/projects/tree/_spinner.html.haml
%%WWWDIR%%/app/views/projects/tree/_submodule_item.html.haml
%%WWWDIR%%/app/views/projects/tree/_tree_commit_column.html.haml
%%WWWDIR%%/app/views/projects/tree/_tree_content.html.haml
%%WWWDIR%%/app/views/projects/tree/_tree_header.html.haml
%%WWWDIR%%/app/views/projects/tree/_tree_item.html.haml
%%WWWDIR%%/app/views/projects/tree/_tree_row.html.haml
%%WWWDIR%%/app/views/projects/tree/show.html.haml
%%WWWDIR%%/app/views/projects/triggers/_trigger.html.haml
%%WWWDIR%%/app/views/projects/triggers/index.html.haml
%%WWWDIR%%/app/views/projects/update.js.haml
%%WWWDIR%%/app/views/projects/variables/_content.html.haml
%%WWWDIR%%/app/views/projects/variables/_form.html.haml
%%WWWDIR%%/app/views/projects/variables/_table.html.haml
%%WWWDIR%%/app/views/projects/variables/index.html.haml
%%WWWDIR%%/app/views/projects/variables/show.html.haml
%%WWWDIR%%/app/views/projects/wikis/_form.html.haml
%%WWWDIR%%/app/views/projects/wikis/_main_links.html.haml
%%WWWDIR%%/app/views/projects/wikis/_nav.html.haml
%%WWWDIR%%/app/views/projects/wikis/_new.html.haml
%%WWWDIR%%/app/views/projects/wikis/edit.html.haml
%%WWWDIR%%/app/views/projects/wikis/empty.html.haml
%%WWWDIR%%/app/views/projects/wikis/git_access.html.haml
%%WWWDIR%%/app/views/projects/wikis/history.html.haml
%%WWWDIR%%/app/views/projects/wikis/pages.html.haml
%%WWWDIR%%/app/views/projects/wikis/show.html.haml
%%WWWDIR%%/app/views/repository_check_mailer/notify.html.haml
%%WWWDIR%%/app/views/repository_check_mailer/notify.text.haml
%%WWWDIR%%/app/views/search/_category.html.haml
%%WWWDIR%%/app/views/search/_filter.html.haml
%%WWWDIR%%/app/views/search/_form.html.haml
%%WWWDIR%%/app/views/search/_results.html.haml
%%WWWDIR%%/app/views/search/results/_blob.html.haml
%%WWWDIR%%/app/views/search/results/_commit.html.haml
%%WWWDIR%%/app/views/search/results/_empty.html.haml
%%WWWDIR%%/app/views/search/results/_issue.html.haml
%%WWWDIR%%/app/views/search/results/_merge_request.html.haml
%%WWWDIR%%/app/views/search/results/_milestone.html.haml
%%WWWDIR%%/app/views/search/results/_note.html.haml
%%WWWDIR%%/app/views/search/results/_snippet_blob.html.haml
%%WWWDIR%%/app/views/search/results/_snippet_title.html.haml
%%WWWDIR%%/app/views/search/results/_wiki_blob.html.haml
%%WWWDIR%%/app/views/search/show.html.haml
%%WWWDIR%%/app/views/shared/_allow_request_access.html.haml
%%WWWDIR%%/app/views/shared/_choose_group_avatar_button.html.haml
%%WWWDIR%%/app/views/shared/_clone_panel.html.haml
%%WWWDIR%%/app/views/shared/_commit_message_container.html.haml
%%WWWDIR%%/app/views/shared/_confirm_modal.html.haml
%%WWWDIR%%/app/views/shared/_event_filter.html.haml
%%WWWDIR%%/app/views/shared/_field.html.haml
%%WWWDIR%%/app/views/shared/_file_highlight.html.haml
%%WWWDIR%%/app/views/shared/_group_form.html.haml
%%WWWDIR%%/app/views/shared/_group_tips.html.haml
%%WWWDIR%%/app/views/shared/_import_form.html.haml
%%WWWDIR%%/app/views/shared/_issues.html.haml
%%WWWDIR%%/app/views/shared/_label_row.html.haml
%%WWWDIR%%/app/views/shared/_labels_row.html.haml
%%WWWDIR%%/app/views/shared/_logo.svg
%%WWWDIR%%/app/views/shared/_merge_requests.html.haml
%%WWWDIR%%/app/views/shared/_milestone_expired.html.haml
%%WWWDIR%%/app/views/shared/_milestones_filter.html.haml
%%WWWDIR%%/app/views/shared/_new_commit_form.html.haml
%%WWWDIR%%/app/views/shared/_new_project_item_select.html.haml
%%WWWDIR%%/app/views/shared/_no_password.html.haml
%%WWWDIR%%/app/views/shared/_no_ssh.html.haml
%%WWWDIR%%/app/views/shared/_outdated_browser.html.haml
%%WWWDIR%%/app/views/shared/_project_limit.html.haml
%%WWWDIR%%/app/views/shared/_promo.html.haml
%%WWWDIR%%/app/views/shared/_ref_switcher.html.haml
%%WWWDIR%%/app/views/shared/_service_settings.html.haml
%%WWWDIR%%/app/views/shared/_show_aside.html.haml
%%WWWDIR%%/app/views/shared/_sort_dropdown.html.haml
%%WWWDIR%%/app/views/shared/_visibility_level.html.haml
%%WWWDIR%%/app/views/shared/_visibility_radios.html.haml
%%WWWDIR%%/app/views/shared/groups/_group.html.haml
%%WWWDIR%%/app/views/shared/groups/_list.html.haml
%%WWWDIR%%/app/views/shared/icons/_activity.svg
%%WWWDIR%%/app/views/shared/icons/_commits.svg
%%WWWDIR%%/app/views/shared/icons/_contributionanalytics.svg
%%WWWDIR%%/app/views/shared/icons/_files.svg
%%WWWDIR%%/app/views/shared/icons/_group.svg.erb
%%WWWDIR%%/app/views/shared/icons/_icon_commit.svg
%%WWWDIR%%/app/views/shared/icons/_icon_fork.svg
%%WWWDIR%%/app/views/shared/icons/_icon_play.svg
%%WWWDIR%%/app/views/shared/icons/_icon_status_cancel.svg
%%WWWDIR%%/app/views/shared/icons/_icon_status_failed.svg
%%WWWDIR%%/app/views/shared/icons/_icon_status_pending.svg
%%WWWDIR%%/app/views/shared/icons/_icon_status_running.svg
%%WWWDIR%%/app/views/shared/icons/_icon_status_success.svg
%%WWWDIR%%/app/views/shared/icons/_icon_status_warning.svg
%%WWWDIR%%/app/views/shared/icons/_icon_timer.svg
%%WWWDIR%%/app/views/shared/icons/_issues.svg.erb
%%WWWDIR%%/app/views/shared/icons/_members.svg
%%WWWDIR%%/app/views/shared/icons/_milestones.svg
%%WWWDIR%%/app/views/shared/icons/_mr.svg
%%WWWDIR%%/app/views/shared/icons/_next_discussion.svg
%%WWWDIR%%/app/views/shared/icons/_pipelines.svg
%%WWWDIR%%/app/views/shared/icons/_project.svg.erb
%%WWWDIR%%/app/views/shared/icons/_wiki.svg
%%WWWDIR%%/app/views/shared/issuable/_filter.html.haml
%%WWWDIR%%/app/views/shared/issuable/_form.html.haml
%%WWWDIR%%/app/views/shared/issuable/_label_dropdown.html.haml
%%WWWDIR%%/app/views/shared/issuable/_label_page_create.html.haml
%%WWWDIR%%/app/views/shared/issuable/_label_page_default.html.haml
%%WWWDIR%%/app/views/shared/issuable/_milestone_dropdown.html.haml
%%WWWDIR%%/app/views/shared/issuable/_nav.html.haml
%%WWWDIR%%/app/views/shared/issuable/_participants.html.haml
%%WWWDIR%%/app/views/shared/issuable/_search_form.html.haml
%%WWWDIR%%/app/views/shared/issuable/_sidebar.html.haml
%%WWWDIR%%/app/views/shared/members/_access_request_buttons.html.haml
%%WWWDIR%%/app/views/shared/members/_member.html.haml
%%WWWDIR%%/app/views/shared/members/_requests.html.haml
%%WWWDIR%%/app/views/shared/milestones/_issuable.html.haml
%%WWWDIR%%/app/views/shared/milestones/_issuables.html.haml
%%WWWDIR%%/app/views/shared/milestones/_issues_tab.html.haml
%%WWWDIR%%/app/views/shared/milestones/_labels_tab.html.haml
%%WWWDIR%%/app/views/shared/milestones/_merge_requests_tab.haml
%%WWWDIR%%/app/views/shared/milestones/_milestone.html.haml
%%WWWDIR%%/app/views/shared/milestones/_participants_tab.html.haml
%%WWWDIR%%/app/views/shared/milestones/_summary.html.haml
%%WWWDIR%%/app/views/shared/milestones/_tabs.html.haml
%%WWWDIR%%/app/views/shared/milestones/_top.html.haml
%%WWWDIR%%/app/views/shared/notifications/_button.html.haml
%%WWWDIR%%/app/views/shared/notifications/_custom_notifications.html.haml
%%WWWDIR%%/app/views/shared/notifications/_notification_dropdown.html.haml
%%WWWDIR%%/app/views/shared/projects/_dropdown.html.haml
%%WWWDIR%%/app/views/shared/projects/_list.html.haml
%%WWWDIR%%/app/views/shared/projects/_project.html.haml
%%WWWDIR%%/app/views/shared/snippets/_blob.html.haml
%%WWWDIR%%/app/views/shared/snippets/_form.html.haml
%%WWWDIR%%/app/views/shared/snippets/_header.html.haml
%%WWWDIR%%/app/views/shared/snippets/_snippet.html.haml
%%WWWDIR%%/app/views/shared/web_hooks/_form.html.haml
%%WWWDIR%%/app/views/sherlock/file_samples/show.html.haml
%%WWWDIR%%/app/views/sherlock/queries/_backtrace.html.haml
%%WWWDIR%%/app/views/sherlock/queries/_general.html.haml
%%WWWDIR%%/app/views/sherlock/queries/show.html.haml
%%WWWDIR%%/app/views/sherlock/transactions/_file_samples.html.haml
%%WWWDIR%%/app/views/sherlock/transactions/_general.html.haml
%%WWWDIR%%/app/views/sherlock/transactions/_queries.html.haml
%%WWWDIR%%/app/views/sherlock/transactions/index.html.haml
%%WWWDIR%%/app/views/sherlock/transactions/show.html.haml
%%WWWDIR%%/app/views/snippets/_actions.html.haml
%%WWWDIR%%/app/views/snippets/_snippets.html.haml
%%WWWDIR%%/app/views/snippets/edit.html.haml
%%WWWDIR%%/app/views/snippets/index.html.haml
%%WWWDIR%%/app/views/snippets/new.html.haml
%%WWWDIR%%/app/views/snippets/show.html.haml
%%WWWDIR%%/app/views/u2f/_authenticate.html.haml
%%WWWDIR%%/app/views/u2f/_register.html.haml
%%WWWDIR%%/app/views/users/_groups.html.haml
%%WWWDIR%%/app/views/users/calendar.html.haml
%%WWWDIR%%/app/views/users/calendar_activities.html.haml
%%WWWDIR%%/app/views/users/show.atom.builder
%%WWWDIR%%/app/views/users/show.html.haml
%%WWWDIR%%/app/workers/admin_email_worker.rb
%%WWWDIR%%/app/workers/build_email_worker.rb
%%WWWDIR%%/app/workers/delete_user_worker.rb
%%WWWDIR%%/app/workers/email_receiver_worker.rb
%%WWWDIR%%/app/workers/emails_on_push_worker.rb
%%WWWDIR%%/app/workers/expire_build_artifacts_worker.rb
%%WWWDIR%%/app/workers/git_garbage_collect_worker.rb
%%WWWDIR%%/app/workers/gitlab_shell_worker.rb
%%WWWDIR%%/app/workers/group_destroy_worker.rb
%%WWWDIR%%/app/workers/import_export_project_cleanup_worker.rb
%%WWWDIR%%/app/workers/irker_worker.rb
%%WWWDIR%%/app/workers/merge_worker.rb
%%WWWDIR%%/app/workers/new_note_worker.rb
%%WWWDIR%%/app/workers/post_receive.rb
%%WWWDIR%%/app/workers/project_cache_worker.rb
%%WWWDIR%%/app/workers/project_destroy_worker.rb
%%WWWDIR%%/app/workers/project_export_worker.rb
%%WWWDIR%%/app/workers/project_service_worker.rb
%%WWWDIR%%/app/workers/project_web_hook_worker.rb
%%WWWDIR%%/app/workers/remove_expired_group_links_worker.rb
%%WWWDIR%%/app/workers/remove_expired_members_worker.rb
%%WWWDIR%%/app/workers/repository_archive_cache_worker.rb
%%WWWDIR%%/app/workers/repository_check/batch_worker.rb
%%WWWDIR%%/app/workers/repository_check/clear_worker.rb
%%WWWDIR%%/app/workers/repository_check/single_repository_worker.rb
%%WWWDIR%%/app/workers/repository_fork_worker.rb
%%WWWDIR%%/app/workers/repository_import_worker.rb
%%WWWDIR%%/app/workers/requests_profiles_worker.rb
%%WWWDIR%%/app/workers/stuck_ci_builds_worker.rb
%%WWWDIR%%/app/workers/system_hook_worker.rb
@(git,,544) %%WWWDIR%%/bin/background_jobs
@(git,,544) %%WWWDIR%%/bin/bundle
@(git,,544) %%WWWDIR%%/bin/check
@(git,,544) %%WWWDIR%%/bin/ci/upgrade.rb
@(git,,544) %%WWWDIR%%/bin/daemon_with_pidfile
@(git,,544) %%WWWDIR%%/bin/mail_room
@(git,,544) %%WWWDIR%%/bin/parallel-rsync-repos
@(git,,544) %%WWWDIR%%/bin/pkgr_before_precompile.sh
@(git,,544) %%WWWDIR%%/bin/rails
@(git,,544) %%WWWDIR%%/bin/rake
@(git,,544) %%WWWDIR%%/bin/rspec
@(git,,544) %%WWWDIR%%/bin/setup
@(git,,544) %%WWWDIR%%/bin/spinach
@(git,,544) %%WWWDIR%%/bin/spring
@(git,,544) %%WWWDIR%%/bin/teaspoon
@(git,,544) %%WWWDIR%%/bin/upgrade.rb
@(git,,544) %%WWWDIR%%/bin/web
%%WWWDIR%%/changelogs/unreleased/markdown-xss-fix-option-2-1.yml
%%WWWDIR%%/config.ru
%%WWWDIR%%/config/application.rb
%%WWWDIR%%/config/aws.yml.example
%%WWWDIR%%/config/boot.rb
%%WWWDIR%%/config/database.yml.env
%%WWWDIR%%/config/database.yml.mysql
%%WWWDIR%%/config/database.yml.postgresql
%%WWWDIR%%/config/dependency_decisions.yml
%%WWWDIR%%/config/environment.rb
%%WWWDIR%%/config/environments/development.rb
%%WWWDIR%%/config/environments/production.rb
%%WWWDIR%%/config/environments/test.rb
%%WWWDIR%%/config/initializers/1_settings.rb
%%WWWDIR%%/config/initializers/2_app.rb
%%WWWDIR%%/config/initializers/4_ci_app.rb
%%WWWDIR%%/config/initializers/5_backend.rb
%%WWWDIR%%/config/initializers/6_validations.rb
%%WWWDIR%%/config/initializers/active_record_query_trace.rb
%%WWWDIR%%/config/initializers/attr_encrypted_no_db_connection.rb
%%WWWDIR%%/config/initializers/backtrace_silencers.rb
%%WWWDIR%%/config/initializers/bullet.rb
%%WWWDIR%%/config/initializers/carrierwave.rb
%%WWWDIR%%/config/initializers/chronic_duration.rb
%%WWWDIR%%/config/initializers/connection_fix.rb
%%WWWDIR%%/config/initializers/cookies_serializer.rb
%%WWWDIR%%/config/initializers/date_time_formats.rb
%%WWWDIR%%/config/initializers/default_url_options.rb
%%WWWDIR%%/config/initializers/devise.rb
%%WWWDIR%%/config/initializers/devise_password_length.rb.example
%%WWWDIR%%/config/initializers/disable_email_interceptor.rb
%%WWWDIR%%/config/initializers/doorkeeper.rb
%%WWWDIR%%/config/initializers/gitlab_shell_secret_token.rb
%%WWWDIR%%/config/initializers/go_get.rb
%%WWWDIR%%/config/initializers/gollum.rb
%%WWWDIR%%/config/initializers/hamlit.rb
%%WWWDIR%%/config/initializers/health_check.rb
%%WWWDIR%%/config/initializers/inflections.rb
%%WWWDIR%%/config/initializers/kaminari_config.rb
%%WWWDIR%%/config/initializers/metrics.rb
%%WWWDIR%%/config/initializers/mime_types.rb
%%WWWDIR%%/config/initializers/mysql_ignore_postgresql_options.rb
%%WWWDIR%%/config/initializers/omniauth.rb
%%WWWDIR%%/config/initializers/postgresql_limit_fix.rb
%%WWWDIR%%/config/initializers/postgresql_opclasses_support.rb
%%WWWDIR%%/config/initializers/premailer.rb
%%WWWDIR%%/config/initializers/public_key.rb
%%WWWDIR%%/config/initializers/rack_attack_git_basic_auth.rb
%%WWWDIR%%/config/initializers/rack_lineprof.rb
%%WWWDIR%%/config/initializers/relative_naming_ci_namespace.rb
%%WWWDIR%%/config/initializers/relative_url.rb.sample
%%WWWDIR%%/config/initializers/request_profiler.rb
%%WWWDIR%%/config/initializers/secret_token.rb
%%WWWDIR%%/config/initializers/sentry.rb
%%WWWDIR%%/config/initializers/session_store.rb
%%WWWDIR%%/config/initializers/sherlock.rb
%%WWWDIR%%/config/initializers/sidekiq.rb
%%WWWDIR%%/config/initializers/smtp_settings.rb.sample
%%WWWDIR%%/config/initializers/static_files.rb
%%WWWDIR%%/config/initializers/time_zone.rb
%%WWWDIR%%/config/initializers/trusted_proxies.rb
%%WWWDIR%%/config/initializers/wrap_parameters.rb
%%WWWDIR%%/config/license_finder.yml
%%WWWDIR%%/config/locales/devise.en.yml
%%WWWDIR%%/config/locales/doorkeeper.en.yml
%%WWWDIR%%/config/locales/en.yml
%%WWWDIR%%/config/locales/sherlock.en.yml
%%WWWDIR%%/config/mail_room.yml
%%WWWDIR%%/config/newrelic.yml
%%WWWDIR%%/config/routes.rb
%%WWWDIR%%/config/sidekiq.yml.example
%%WWWDIR%%/config/unicorn.rb.example.development
%%WWWDIR%%/db/fixtures/development/01_admin.rb
%%WWWDIR%%/db/fixtures/development/04_project.rb
%%WWWDIR%%/db/fixtures/development/05_users.rb
%%WWWDIR%%/db/fixtures/development/06_teams.rb
%%WWWDIR%%/db/fixtures/development/07_milestones.rb
%%WWWDIR%%/db/fixtures/development/09_issues.rb
%%WWWDIR%%/db/fixtures/development/10_merge_requests.rb
%%WWWDIR%%/db/fixtures/development/11_keys.rb
%%WWWDIR%%/db/fixtures/development/12_snippets.rb
%%WWWDIR%%/db/fixtures/development/13_comments.rb
%%WWWDIR%%/db/fixtures/development/14_builds.rb
%%WWWDIR%%/db/fixtures/development/15_award_emoji.rb
%%WWWDIR%%/db/fixtures/development/16_protected_branches.rb
%%WWWDIR%%/db/fixtures/production/001_admin.rb
%%WWWDIR%%/db/fixtures/test/001_repo.rb
%%WWWDIR%%/db/migrate/20121220064453_init_schema.rb
%%WWWDIR%%/db/migrate/20130102143055_rename_owner_to_creator_for_project.rb
%%WWWDIR%%/db/migrate/20130110172407_add_public_to_project.rb
%%WWWDIR%%/db/migrate/20130123114545_add_issues_tracker_to_project.rb
%%WWWDIR%%/db/migrate/20130125090214_add_user_permissions.rb
%%WWWDIR%%/db/migrate/20130131070232_remove_private_flag_from_project.rb
%%WWWDIR%%/db/migrate/20130206084024_add_description_to_namsespace.rb
%%WWWDIR%%/db/migrate/20130207104426_add_description_to_teams.rb
%%WWWDIR%%/db/migrate/20130211085435_add_issues_tracker_id_to_project.rb
%%WWWDIR%%/db/migrate/20130214154045_rename_state_to_merge_status_in_milestone.rb
%%WWWDIR%%/db/migrate/20130218140952_add_state_to_issue.rb
%%WWWDIR%%/db/migrate/20130218141038_add_state_to_merge_request.rb
%%WWWDIR%%/db/migrate/20130218141117_add_state_to_milestone.rb
%%WWWDIR%%/db/migrate/20130218141258_convert_closed_to_state_in_issue.rb
%%WWWDIR%%/db/migrate/20130218141327_convert_closed_to_state_in_merge_request.rb
%%WWWDIR%%/db/migrate/20130218141344_convert_closed_to_state_in_milestone.rb
%%WWWDIR%%/db/migrate/20130218141444_remove_merged_from_merge_request.rb
%%WWWDIR%%/db/migrate/20130218141507_remove_closed_from_issue.rb
%%WWWDIR%%/db/migrate/20130218141536_remove_closed_from_merge_request.rb
%%WWWDIR%%/db/migrate/20130218141554_remove_closed_from_milestone.rb
%%WWWDIR%%/db/migrate/20130220124204_add_new_merge_status_to_merge_request.rb
%%WWWDIR%%/db/migrate/20130220125544_convert_merge_status_in_merge_request.rb
%%WWWDIR%%/db/migrate/20130220125545_remove_merge_status_from_merge_request.rb
%%WWWDIR%%/db/migrate/20130220133245_rename_new_merge_status_to_merge_status_in_milestone.rb
%%WWWDIR%%/db/migrate/20130304104623_add_state_to_user.rb
%%WWWDIR%%/db/migrate/20130304104740_convert_blocked_to_state.rb
%%WWWDIR%%/db/migrate/20130304105317_remove_blocked_from_user.rb
%%WWWDIR%%/db/migrate/20130315124931_user_color_scheme.rb
%%WWWDIR%%/db/migrate/20130318212250_add_snippets_to_features.rb
%%WWWDIR%%/db/migrate/20130319214458_create_forked_project_links.rb
%%WWWDIR%%/db/migrate/20130323174317_add_private_to_snippets.rb
%%WWWDIR%%/db/migrate/20130324151736_add_type_to_snippets.rb
%%WWWDIR%%/db/migrate/20130324172327_change_project_id_to_null_in_snipepts.rb
%%WWWDIR%%/db/migrate/20130324203535_add_type_value_for_snippets.rb
%%WWWDIR%%/db/migrate/20130325173941_add_notification_level_to_user.rb
%%WWWDIR%%/db/migrate/20130326142630_add_index_to_users_authentication_token.rb
%%WWWDIR%%/db/migrate/20130403003950_add_last_activity_column_into_project.rb
%%WWWDIR%%/db/migrate/20130404164628_add_notification_level_to_user_project.rb
%%WWWDIR%%/db/migrate/20130410175022_remove_wiki_table.rb
%%WWWDIR%%/db/migrate/20130419190306_allow_merges_for_forks.rb
%%WWWDIR%%/db/migrate/20130506085413_add_type_to_key.rb
%%WWWDIR%%/db/migrate/20130506090604_create_deploy_keys_projects.rb
%%WWWDIR%%/db/migrate/20130506095501_remove_project_id_from_key.rb
%%WWWDIR%%/db/migrate/20130522141856_add_more_fields_to_service.rb
%%WWWDIR%%/db/migrate/20130528184641_add_system_to_notes.rb
%%WWWDIR%%/db/migrate/20130611210815_increase_snippet_text_column_size.rb
%%WWWDIR%%/db/migrate/20130613165816_add_password_expires_at_to_users.rb
%%WWWDIR%%/db/migrate/20130613173246_add_created_by_id_to_user.rb
%%WWWDIR%%/db/migrate/20130614132337_add_improted_to_project.rb
%%WWWDIR%%/db/migrate/20130617095603_create_users_groups.rb
%%WWWDIR%%/db/migrate/20130621195223_add_notification_level_to_user_group.rb
%%WWWDIR%%/db/migrate/20130622115340_add_more_db_index.rb
%%WWWDIR%%/db/migrate/20130624162710_add_fingerprint_to_key.rb
%%WWWDIR%%/db/migrate/20130711063759_create_project_group_links.rb
%%WWWDIR%%/db/migrate/20130804151314_add_st_diff_to_note.rb
%%WWWDIR%%/db/migrate/20130809124851_add_permission_check_to_user.rb
%%WWWDIR%%/db/migrate/20130812143708_add_import_url_to_project.rb
%%WWWDIR%%/db/migrate/20130819182730_add_internal_ids_to_issues_and_mr.rb
%%WWWDIR%%/db/migrate/20130820102832_add_access_to_project_group_link.rb
%%WWWDIR%%/db/migrate/20130821090530_remove_deprecated_tables.rb
%%WWWDIR%%/db/migrate/20130821090531_add_internal_ids_to_milestones.rb
%%WWWDIR%%/db/migrate/20130909132950_add_description_to_merge_request.rb
%%WWWDIR%%/db/migrate/20130926081215_change_owner_id_for_group.rb
%%WWWDIR%%/db/migrate/20131005191208_add_avatar_to_users.rb
%%WWWDIR%%/db/migrate/20131009115346_add_confirmable_to_users.rb
%%WWWDIR%%/db/migrate/20131106151520_remove_default_branch.rb
%%WWWDIR%%/db/migrate/20131112114325_create_broadcast_messages.rb
%%WWWDIR%%/db/migrate/20131112220935_add_visibility_level_to_projects.rb
%%WWWDIR%%/db/migrate/20131129154016_add_archived_to_projects.rb
%%WWWDIR%%/db/migrate/20131130165425_add_color_and_font_to_broadcast_messages.rb
%%WWWDIR%%/db/migrate/20131202192556_add_event_fields_for_web_hook.rb
%%WWWDIR%%/db/migrate/20131214224427_add_hide_no_ssh_key_to_users.rb
%%WWWDIR%%/db/migrate/20131217102743_add_recipients_to_service.rb
%%WWWDIR%%/db/migrate/20140116231608_add_website_url_to_users.rb
%%WWWDIR%%/db/migrate/20140122112253_create_merge_request_diffs.rb
%%WWWDIR%%/db/migrate/20140122114406_migrate_mr_diffs.rb
%%WWWDIR%%/db/migrate/20140122122549_remove_m_rdiff_fields.rb
%%WWWDIR%%/db/migrate/20140125162722_add_avatar_to_projects.rb
%%WWWDIR%%/db/migrate/20140127170938_add_group_avatars.rb
%%WWWDIR%%/db/migrate/20140209025651_create_emails.rb
%%WWWDIR%%/db/migrate/20140214102325_add_api_key_to_services.rb
%%WWWDIR%%/db/migrate/20140304005354_add_index_merge_request_diffs_on_merge_request_id.rb
%%WWWDIR%%/db/migrate/20140305193308_add_tag_push_hooks_to_project_hook.rb
%%WWWDIR%%/db/migrate/20140312145357_add_import_status_to_project.rb
%%WWWDIR%%/db/migrate/20140313092127_migrate_already_imported_projects.rb
%%WWWDIR%%/db/migrate/20140407135544_fix_namespaces.rb
%%WWWDIR%%/db/migrate/20140414131055_change_state_to_allow_empty_merge_request_diffs.rb
%%WWWDIR%%/db/migrate/20140415124820_limits_to_mysql.rb
%%WWWDIR%%/db/migrate/20140416074002_add_index_on_iid.rb
%%WWWDIR%%/db/migrate/20140416185734_index_on_current_sign_in_at.rb
%%WWWDIR%%/db/migrate/20140428105831_add_notes_index_updated_at.rb
%%WWWDIR%%/db/migrate/20140502115131_add_repo_size_to_db.rb
%%WWWDIR%%/db/migrate/20140502125220_migrate_repo_size.rb
%%WWWDIR%%/db/migrate/20140611135229_add_position_to_merge_request.rb
%%WWWDIR%%/db/migrate/20140625115202_create_users_star_projects.rb
%%WWWDIR%%/db/migrate/20140729134820_create_labels.rb
%%WWWDIR%%/db/migrate/20140729140420_create_label_links.rb
%%WWWDIR%%/db/migrate/20140729145339_migrate_project_tags.rb
%%WWWDIR%%/db/migrate/20140729152420_migrate_taggable_labels.rb
%%WWWDIR%%/db/migrate/20140730111702_add_index_to_labels.rb
%%WWWDIR%%/db/migrate/20140903115954_migrate_to_new_shell.rb
%%WWWDIR%%/db/migrate/20140907220153_serialize_service_properties.rb
%%WWWDIR%%/db/migrate/20140914113604_add_members_table.rb
%%WWWDIR%%/db/migrate/20140914145549_migrate_to_new_members_model.rb
%%WWWDIR%%/db/migrate/20140914173417_remove_old_member_tables.rb
%%WWWDIR%%/db/migrate/20141006143943_move_slack_service_to_webhook.rb
%%WWWDIR%%/db/migrate/20141007100818_add_visibility_level_to_snippet.rb
%%WWWDIR%%/db/migrate/20141118150935_add_audit_event.rb
%%WWWDIR%%/db/migrate/20141121133009_add_timestamps_to_members.rb
%%WWWDIR%%/db/migrate/20141121161704_add_identity_table.rb
%%WWWDIR%%/db/migrate/20141205134006_add_locked_at_to_merge_request.rb
%%WWWDIR%%/db/migrate/20141216155758_create_doorkeeper_tables.rb
%%WWWDIR%%/db/migrate/20141217125223_add_owner_to_application.rb
%%WWWDIR%%/db/migrate/20141223135007_add_import_data_to_project_table.rb
%%WWWDIR%%/db/migrate/20141226080412_add_developers_can_push_to_protected_branches.rb
%%WWWDIR%%/db/migrate/20150108073740_create_application_settings.rb
%%WWWDIR%%/db/migrate/20150116234544_add_home_page_url_for_application_settings.rb
%%WWWDIR%%/db/migrate/20150116234545_add_gitlab_access_token_to_user.rb
%%WWWDIR%%/db/migrate/20150125163100_add_default_branch_protection_setting.rb
%%WWWDIR%%/db/migrate/20150205211843_add_timestamps_to_identities.rb
%%WWWDIR%%/db/migrate/20150206181414_add_index_to_created_at.rb
%%WWWDIR%%/db/migrate/20150206222854_add_notification_email_to_user.rb
%%WWWDIR%%/db/migrate/20150209222013_add_missing_index.rb
%%WWWDIR%%/db/migrate/20150211172122_add_template_to_service.rb
%%WWWDIR%%/db/migrate/20150211174341_allow_null_in_services_project_id.rb
%%WWWDIR%%/db/migrate/20150213104043_add_twitter_sharing_enabled_to_application_settings.rb
%%WWWDIR%%/db/migrate/20150213114800_add_hide_no_password_to_user.rb
%%WWWDIR%%/db/migrate/20150213121042_add_password_automatically_set_to_user.rb
%%WWWDIR%%/db/migrate/20150217123345_add_bitbucket_access_token_and_secret_to_user.rb
%%WWWDIR%%/db/migrate/20150219004514_add_events_to_services.rb
%%WWWDIR%%/db/migrate/20150223022001_set_missing_last_activity_at.rb
%%WWWDIR%%/db/migrate/20150225065047_add_note_events_to_services.rb
%%WWWDIR%%/db/migrate/20150301014758_add_restricted_visibility_levels_to_application_settings.rb
%%WWWDIR%%/db/migrate/20150306023106_fix_namespace_duplication.rb
%%WWWDIR%%/db/migrate/20150306023112_add_unique_index_to_namespace.rb
%%WWWDIR%%/db/migrate/20150310194358_add_version_check_to_application_settings.rb
%%WWWDIR%%/db/migrate/20150313012111_create_subscriptions_table.rb
%%WWWDIR%%/db/migrate/20150320234437_add_location_to_user.rb
%%WWWDIR%%/db/migrate/20150324155957_set_incorrect_assignee_id_to_null.rb
%%WWWDIR%%/db/migrate/20150327122227_add_public_to_key.rb
%%WWWDIR%%/db/migrate/20150327150017_add_import_data_to_project.rb
%%WWWDIR%%/db/migrate/20150327223628_add_devise_two_factor_to_users.rb
%%WWWDIR%%/db/migrate/20150328132231_add_max_attachment_size_to_application_settings.rb
%%WWWDIR%%/db/migrate/20150331183602_add_devise_two_factor_backupable_to_users.rb
%%WWWDIR%%/db/migrate/20150406133311_add_invite_data_to_member.rb
%%WWWDIR%%/db/migrate/20150411000035_fix_identities.rb
%%WWWDIR%%/db/migrate/20150411180045_rename_buildbox_service.rb
%%WWWDIR%%/db/migrate/20150413192223_add_public_email_to_users.rb
%%WWWDIR%%/db/migrate/20150417121913_create_project_import_data.rb
%%WWWDIR%%/db/migrate/20150417122318_remove_import_data_from_project.rb
%%WWWDIR%%/db/migrate/20150421120000_remove_periods_at_ends_of_usernames.rb
%%WWWDIR%%/db/migrate/20150423033240_add_default_project_visibililty_to_application_settings.rb
%%WWWDIR%%/db/migrate/20150425164646_gitlab_change_collation_for_tag_names.acts_as_taggable_on_engine.rb
%%WWWDIR%%/db/migrate/20150425164647_remove_duplicate_tags.rb
%%WWWDIR%%/db/migrate/20150425164648_add_missing_unique_indices.acts_as_taggable_on_engine.rb
%%WWWDIR%%/db/migrate/20150425164649_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb
%%WWWDIR%%/db/migrate/20150425164650_add_missing_taggable_index.acts_as_taggable_on_engine.rb
%%WWWDIR%%/db/migrate/20150425164651_change_collation_for_tag_names.acts_as_taggable_on_engine.rb
%%WWWDIR%%/db/migrate/20150425173433_add_default_snippet_visibility_to_app_settings.rb
%%WWWDIR%%/db/migrate/20150429002313_remove_abandoned_group_members_records.rb
%%WWWDIR%%/db/migrate/20150502064022_add_restricted_signup_domains_to_application_settings.rb
%%WWWDIR%%/db/migrate/20150509180749_convert_legacy_reference_notes.rb
%%WWWDIR%%/db/migrate/20150516060434_add_note_events_to_web_hooks.rb
%%WWWDIR%%/db/migrate/20150529111607_add_user_oauth_applications_to_application_settings.rb
%%WWWDIR%%/db/migrate/20150529150354_add_after_sign_out_path_for_application_settings.rb
%%WWWDIR%%/db/migrate/20150609141121_add_session_expire_delay_for_application_settings.rb
%%WWWDIR%%/db/migrate/20150610065936_add_dashboard_to_users.rb
%%WWWDIR%%/db/migrate/20150620233230_add_default_otp_required_for_login_value.rb
%%WWWDIR%%/db/migrate/20150713160110_add_project_view_to_users.rb
%%WWWDIR%%/db/migrate/20150717130904_add_commits_count_to_project.rb
%%WWWDIR%%/db/migrate/20150730122406_add_updated_by_to_issuables_and_notes.rb
%%WWWDIR%%/db/migrate/20150806104937_create_abuse_reports.rb
%%WWWDIR%%/db/migrate/20150812080800_add_settings_import_sources.rb
%%WWWDIR%%/db/migrate/20150814065925_remove_oauth_tokens_from_users.rb
%%WWWDIR%%/db/migrate/20150817163600_deduplicate_user_identities.rb
%%WWWDIR%%/db/migrate/20150818213832_add_sent_notifications.rb
%%WWWDIR%%/db/migrate/20150824002011_add_enable_ssl_verification.rb
%%WWWDIR%%/db/migrate/20150826001931_add_ci_tables.rb
%%WWWDIR%%/db/migrate/20150902001023_add_template_to_label.rb
%%WWWDIR%%/db/migrate/20150914215247_add_ci_tags.rb
%%WWWDIR%%/db/migrate/20150915001905_enable_ssl_verification_by_default.rb
%%WWWDIR%%/db/migrate/20150916000405_enable_ssl_verification_for_web_hooks.rb
%%WWWDIR%%/db/migrate/20150916114643_add_help_page_text_to_application_settings.rb
%%WWWDIR%%/db/migrate/20150916145038_add_index_for_committed_at_and_id.rb
%%WWWDIR%%/db/migrate/20150918084513_add_ci_enabled_to_application_settings.rb
%%WWWDIR%%/db/migrate/20150918161719_remove_invalid_milestones_from_merge_requests.rb
%%WWWDIR%%/db/migrate/20150920010715_add_consumed_timestep_to_users.rb
%%WWWDIR%%/db/migrate/20150920161119_add_line_code_to_sent_notification.rb
%%WWWDIR%%/db/migrate/20150924125150_add_project_id_to_ci_commit.rb
%%WWWDIR%%/db/migrate/20150924125436_migrate_project_id_for_ci_commits.rb
%%WWWDIR%%/db/migrate/20150930001110_merge_request_error_field.rb
%%WWWDIR%%/db/migrate/20150930095736_add_null_to_name_for_ci_projects.rb
%%WWWDIR%%/db/migrate/20150930110012_add_group_share_lock.rb
%%WWWDIR%%/db/migrate/20151002112914_add_stage_idx_to_builds.rb
%%WWWDIR%%/db/migrate/20151002121400_add_index_for_builds.rb
%%WWWDIR%%/db/migrate/20151002122929_add_ref_and_tag_to_builds.rb
%%WWWDIR%%/db/migrate/20151002122943_migrate_ref_and_tag_to_build.rb
%%WWWDIR%%/db/migrate/20151005075649_add_user_id_to_build.rb
%%WWWDIR%%/db/migrate/20151005150751_add_layout_option_for_users.rb
%%WWWDIR%%/db/migrate/20151005162154_remove_ci_enabled_from_application_settings.rb
%%WWWDIR%%/db/migrate/20151007120511_namespaces_projects_path_lower_indexes.rb
%%WWWDIR%%/db/migrate/20151008110232_add_users_lower_username_email_indexes.rb
%%WWWDIR%%/db/migrate/20151008123042_add_type_and_description_to_builds.rb
%%WWWDIR%%/db/migrate/20151008130321_migrate_name_to_description_for_builds.rb
%%WWWDIR%%/db/migrate/20151008143519_add_admin_notification_email_setting.rb
%%WWWDIR%%/db/migrate/20151012173029_set_jira_service_api_url.rb
%%WWWDIR%%/db/migrate/20151013092124_add_artifacts_file_to_builds.rb
%%WWWDIR%%/db/migrate/20151016131433_add_ci_projects_gl_project_id_index.rb
%%WWWDIR%%/db/migrate/20151016195451_add_ci_builds_and_projects_indexes.rb
%%WWWDIR%%/db/migrate/20151016195706_add_notes_line_code_index.rb
%%WWWDIR%%/db/migrate/20151019111551_fix_build_tags.rb
%%WWWDIR%%/db/migrate/20151019111703_fail_build_without_names.rb
%%WWWDIR%%/db/migrate/20151020145526_add_services_template_index.rb
%%WWWDIR%%/db/migrate/20151020173516_ci_limits_to_mysql.rb
%%WWWDIR%%/db/migrate/20151020173906_add_ci_builds_index_for_status.rb
%%WWWDIR%%/db/migrate/20151023112551_fail_build_with_empty_name.rb
%%WWWDIR%%/db/migrate/20151023144219_remove_satellites.rb
%%WWWDIR%%/db/migrate/20151026182941_add_project_path_index.rb
%%WWWDIR%%/db/migrate/20151028152939_add_merge_when_build_succeeds_to_merge_request.rb
%%WWWDIR%%/db/migrate/20151103001141_add_public_to_group.rb
%%WWWDIR%%/db/migrate/20151103133339_add_shared_runners_setting.rb
%%WWWDIR%%/db/migrate/20151103134857_create_lfs_objects.rb
%%WWWDIR%%/db/migrate/20151103134958_create_lfs_objects_projects.rb
%%WWWDIR%%/db/migrate/20151104105513_add_file_to_lfs_objects.rb
%%WWWDIR%%/db/migrate/20151105094515_create_releases.rb
%%WWWDIR%%/db/migrate/20151106000015_add_is_award_to_notes.rb
%%WWWDIR%%/db/migrate/20151109100728_add_max_artifacts_size_to_application_settings.rb
%%WWWDIR%%/db/migrate/20151109134526_add_issues_state_index.rb
%%WWWDIR%%/db/migrate/20151109134916_add_projects_visibility_level_index.rb
%%WWWDIR%%/db/migrate/20151110125604_add_import_error_to_project.rb
%%WWWDIR%%/db/migrate/20151114113410_add_index_for_lfs_oid_and_size.rb
%%WWWDIR%%/db/migrate/20151116144118_add_unique_for_lfs_oid_index.rb
%%WWWDIR%%/db/migrate/20151118162244_add_projects_public_index.rb
%%WWWDIR%%/db/migrate/20151201203948_raise_hook_url_limit.rb
%%WWWDIR%%/db/migrate/20151203162133_add_hide_project_limit_to_users.rb
%%WWWDIR%%/db/migrate/20151203162134_add_build_events_to_services.rb
%%WWWDIR%%/db/migrate/20151209144329_migrate_ci_web_hooks.rb
%%WWWDIR%%/db/migrate/20151209145909_migrate_ci_emails.rb
%%WWWDIR%%/db/migrate/20151210030143_add_unlock_token_to_user.rb
%%WWWDIR%%/db/migrate/20151210072243_add_runners_registration_token_to_application_settings.rb
%%WWWDIR%%/db/migrate/20151210125232_migrate_ci_slack_service.rb
%%WWWDIR%%/db/migrate/20151210125927_migrate_ci_hip_chat_service.rb
%%WWWDIR%%/db/migrate/20151210125928_add_ci_to_project.rb
%%WWWDIR%%/db/migrate/20151210125929_add_project_id_to_ci.rb
%%WWWDIR%%/db/migrate/20151210125930_migrate_ci_to_project.rb
%%WWWDIR%%/db/migrate/20151210125931_add_index_to_ci_tables.rb
%%WWWDIR%%/db/migrate/20151210125932_drop_null_for_ci_tables.rb
%%WWWDIR%%/db/migrate/20151218154042_add_tfa_to_application_settings.rb
%%WWWDIR%%/db/migrate/20151221234414_add_tfa_additional_fields.rb
%%WWWDIR%%/db/migrate/20151224123230_rename_emojis.rb
%%WWWDIR%%/db/migrate/20151228111122_remove_public_from_namespace.rb
%%WWWDIR%%/db/migrate/20151228150906_influxdb_settings.rb
%%WWWDIR%%/db/migrate/20151228175719_add_recaptcha_to_application_settings.rb
%%WWWDIR%%/db/migrate/20151229102248_influxdb_udp_port_setting.rb
%%WWWDIR%%/db/migrate/20151229112614_influxdb_remote_database_setting.rb
%%WWWDIR%%/db/migrate/20151230132518_add_artifacts_metadata_to_ci_build.rb
%%WWWDIR%%/db/migrate/20151231152326_add_akismet_to_application_settings.rb
%%WWWDIR%%/db/migrate/20151231202530_remove_alert_type_from_broadcast_messages.rb
%%WWWDIR%%/db/migrate/20160106162223_add_index_milestones_title.rb
%%WWWDIR%%/db/migrate/20160106164438_remove_influxdb_credentials.rb
%%WWWDIR%%/db/migrate/20160109054846_create_spam_logs.rb
%%WWWDIR%%/db/migrate/20160113111034_add_metrics_sample_interval.rb
%%WWWDIR%%/db/migrate/20160118155830_add_sentry_to_application_settings.rb
%%WWWDIR%%/db/migrate/20160118232755_add_ip_blocking_settings_to_application_settings.rb
%%WWWDIR%%/db/migrate/20160119111158_add_services_category.rb
%%WWWDIR%%/db/migrate/20160119112418_add_services_default.rb
%%WWWDIR%%/db/migrate/20160119145451_add_ldap_email_to_users.rb
%%WWWDIR%%/db/migrate/20160120172143_add_base_commit_sha_to_merge_request_diffs.rb
%%WWWDIR%%/db/migrate/20160121030729_add_email_author_in_body_to_application_settings.rb
%%WWWDIR%%/db/migrate/20160122185421_add_pending_delete_to_project.rb
%%WWWDIR%%/db/migrate/20160128212447_remove_ip_blocking_settings_from_application_settings.rb
%%WWWDIR%%/db/migrate/20160128233227_change_lfs_objects_size_column.rb
%%WWWDIR%%/db/migrate/20160129135155_remove_dot_atom_path_ending_of_projects.rb
%%WWWDIR%%/db/migrate/20160129155512_add_merge_commit_sha_to_merge_requests.rb
%%WWWDIR%%/db/migrate/20160202091601_add_erasable_to_ci_build.rb
%%WWWDIR%%/db/migrate/20160202164642_add_allow_guest_to_access_builds_project.rb
%%WWWDIR%%/db/migrate/20160204144558_add_real_size_to_merge_request_diffs.rb
%%WWWDIR%%/db/migrate/20160209130428_add_index_to_snippet.rb
%%WWWDIR%%/db/migrate/20160212123307_create_tasks.rb
%%WWWDIR%%/db/migrate/20160217100506_add_description_to_label.rb
%%WWWDIR%%/db/migrate/20160217174422_add_note_to_tasks.rb
%%WWWDIR%%/db/migrate/20160220123949_rename_tasks_to_todos.rb
%%WWWDIR%%/db/migrate/20160222153918_create_appearances_ce.rb
%%WWWDIR%%/db/migrate/20160223192159_add_confidential_to_issues.rb
%%WWWDIR%%/db/migrate/20160225090018_add_delete_at_to_issues.rb
%%WWWDIR%%/db/migrate/20160225101956_add_delete_at_to_merge_requests.rb
%%WWWDIR%%/db/migrate/20160226114608_add_trigram_indexes_for_searching.rb
%%WWWDIR%%/db/migrate/20160227120001_add_event_field_for_web_hook.rb
%%WWWDIR%%/db/migrate/20160227120047_add_event_to_services.rb
%%WWWDIR%%/db/migrate/20160229193553_add_main_language_to_repository.rb
%%WWWDIR%%/db/migrate/20160301124843_add_visibility_level_to_groups.rb
%%WWWDIR%%/db/migrate/20160302151724_add_import_credentials_to_project_import_data.rb
%%WWWDIR%%/db/migrate/20160302152808_remove_wrong_import_url_from_projects.rb
%%WWWDIR%%/db/migrate/20160305220806_remove_expires_at_from_snippets.rb
%%WWWDIR%%/db/migrate/20160307221555_disallow_blank_line_code_on_note.rb
%%WWWDIR%%/db/migrate/20160308212903_add_default_group_visibility_to_application_settings.rb
%%WWWDIR%%/db/migrate/20160309140734_fix_todos.rb
%%WWWDIR%%/db/migrate/20160310124959_add_due_date_to_issues.rb
%%WWWDIR%%/db/migrate/20160310185910_add_external_flag_to_users.rb
%%WWWDIR%%/db/migrate/20160314094147_add_priority_to_label.rb
%%WWWDIR%%/db/migrate/20160314114439_add_requested_at_to_members.rb
%%WWWDIR%%/db/migrate/20160314143402_projects_add_pushes_since_gc.rb
%%WWWDIR%%/db/migrate/20160315135439_project_add_repository_check.rb
%%WWWDIR%%/db/migrate/20160316123110_ci_runners_token_index.rb
%%WWWDIR%%/db/migrate/20160316192622_change_target_id_to_null_on_todos.rb
%%WWWDIR%%/db/migrate/20160316204731_add_commit_id_to_todos.rb
%%WWWDIR%%/db/migrate/20160317092222_add_moved_to_to_issue.rb
%%WWWDIR%%/db/migrate/20160320204112_index_namespaces_on_visibility_level.rb
%%WWWDIR%%/db/migrate/20160324020319_remove_todos_for_deleted_issues.rb
%%WWWDIR%%/db/migrate/20160328112808_create_notification_settings.rb
%%WWWDIR%%/db/migrate/20160328115649_migrate_new_notification_setting.rb
%%WWWDIR%%/db/migrate/20160328121138_add_notification_setting_index.rb
%%WWWDIR%%/db/migrate/20160329144452_add_index_on_pending_delete_projects.rb
%%WWWDIR%%/db/migrate/20160331133914_remove_todos_for_deleted_merge_requests.rb
%%WWWDIR%%/db/migrate/20160331223143_remove_twitter_sharing_enabled_from_application_settings.rb
%%WWWDIR%%/db/migrate/20160407120251_add_images_enabled_for_project.rb
%%WWWDIR%%/db/migrate/20160412140240_add_repository_checks_enabled_setting.rb
%%WWWDIR%%/db/migrate/20160412173416_add_fields_to_ci_commit.rb
%%WWWDIR%%/db/migrate/20160412173417_update_ci_commit.rb
%%WWWDIR%%/db/migrate/20160412173418_add_ci_commit_indexes.rb
%%WWWDIR%%/db/migrate/20160413115152_add_token_to_web_hooks.rb
%%WWWDIR%%/db/migrate/20160415062917_create_personal_access_tokens.rb
%%WWWDIR%%/db/migrate/20160415133440_add_shared_runners_text_to_application_settings.rb
%%WWWDIR%%/db/migrate/20160416180807_add_award_emoji.rb
%%WWWDIR%%/db/migrate/20160416182152_convert_award_note_to_emoji_award.rb
%%WWWDIR%%/db/migrate/20160419120017_add_metrics_packet_size.rb
%%WWWDIR%%/db/migrate/20160419122101_add_only_allow_merge_if_build_succeeds_to_projects.rb
%%WWWDIR%%/db/migrate/20160421130527_disable_repository_checks.rb
%%WWWDIR%%/db/migrate/20160425045124_create_u2f_registrations.rb
%%WWWDIR%%/db/migrate/20160504091942_add_disabled_oauth_sign_in_sources_to_application_settings.rb
%%WWWDIR%%/db/migrate/20160504112519_add_run_untagged_to_ci_runner.rb
%%WWWDIR%%/db/migrate/20160508194200_remove_wall_enabled_from_projects.rb
%%WWWDIR%%/db/migrate/20160508202603_add_head_commit_id_to_merge_request_diffs.rb
%%WWWDIR%%/db/migrate/20160508215820_add_type_to_notes.rb
%%WWWDIR%%/db/migrate/20160508215920_add_positions_to_diff_notes.rb
%%WWWDIR%%/db/migrate/20160508221410_set_type_on_legacy_diff_notes.rb
%%WWWDIR%%/db/migrate/20160509091049_add_locked_to_ci_runner.rb
%%WWWDIR%%/db/migrate/20160509201028_add_health_check_access_token_to_application_settings.rb
%%WWWDIR%%/db/migrate/20160516174813_add_send_user_confirmation_email_to_application_settings.rb
%%WWWDIR%%/db/migrate/20160516224534_add_start_commit_id_to_merge_request_diffs.rb
%%WWWDIR%%/db/migrate/20160518200441_add_artifacts_expire_date_to_ci_builds.rb
%%WWWDIR%%/db/migrate/20160519203051_add_developers_can_merge_to_protected_branches.rb
%%WWWDIR%%/db/migrate/20160522215720_add_note_type_and_position_to_sent_notification.rb
%%WWWDIR%%/db/migrate/20160525205328_remove_main_language_from_projects.rb
%%WWWDIR%%/db/migrate/20160527020117_remove_notification_settings_for_deleted_projects.rb
%%WWWDIR%%/db/migrate/20160528043124_add_users_state_index.rb
%%WWWDIR%%/db/migrate/20160530150109_add_container_registry_token_expire_delay_to_application_settings.rb
%%WWWDIR%%/db/migrate/20160603075128_add_has_external_issue_tracker_to_projects.rb
%%WWWDIR%%/db/migrate/20160603180330_remove_duplicated_notification_settings.rb
%%WWWDIR%%/db/migrate/20160603182247_add_index_to_notification_settings.rb
%%WWWDIR%%/db/migrate/20160608155312_add_after_sign_up_text_to_application_settings.rb
%%WWWDIR%%/db/migrate/20160608195742_add_repository_storage_to_projects.rb
%%WWWDIR%%/db/migrate/20160608211215_add_user_default_external_to_application_settings.rb
%%WWWDIR%%/db/migrate/20160610140403_remove_notification_setting_not_null_constraints.rb
%%WWWDIR%%/db/migrate/20160610194713_remove_deprecated_issues_tracker_columns_from_projects.rb
%%WWWDIR%%/db/migrate/20160610201627_migrate_users_notification_level.rb
%%WWWDIR%%/db/migrate/20160610204157_add_deployments.rb
%%WWWDIR%%/db/migrate/20160610204158_add_environments.rb
%%WWWDIR%%/db/migrate/20160610211845_add_environment_to_builds.rb
%%WWWDIR%%/db/migrate/20160610301627_remove_notification_level_from_users.rb
%%WWWDIR%%/db/migrate/20160614182521_add_repository_storage_to_application_settings.rb
%%WWWDIR%%/db/migrate/20160615142710_add_index_on_requested_at_to_members.rb
%%WWWDIR%%/db/migrate/20160615173316_add_enabled_git_access_protocols_to_application_settings.rb
%%WWWDIR%%/db/migrate/20160615191922_set_missing_stage_on_ci_builds.rb
%%WWWDIR%%/db/migrate/20160616084004_change_project_of_environment.rb
%%WWWDIR%%/db/migrate/20160616102642_remove_duplicated_keys.rb
%%WWWDIR%%/db/migrate/20160616103005_remove_keys_fingerprint_index_if_exists.rb
%%WWWDIR%%/db/migrate/20160616103948_add_unique_index_to_keys_fingerprint.rb
%%WWWDIR%%/db/migrate/20160617301627_add_events_to_notification_settings.rb
%%WWWDIR%%/db/migrate/20160620115026_add_index_on_runners_locked.rb
%%WWWDIR%%/db/migrate/20160628085157_add_artifacts_size_to_ci_builds.rb
%%WWWDIR%%/db/migrate/20160629025435_add_column_in_progress_merge_commit_sha_to_merge_requests.rb
%%WWWDIR%%/db/migrate/20160703180340_add_index_on_award_emoji_user_and_name.rb
%%WWWDIR%%/db/migrate/20160705054938_add_protected_branches_push_access.rb
%%WWWDIR%%/db/migrate/20160705054952_add_protected_branches_merge_access.rb
%%WWWDIR%%/db/migrate/20160705055254_move_from_developers_can_merge_to_protected_branches_merge_access.rb
%%WWWDIR%%/db/migrate/20160705055308_move_from_developers_can_push_to_protected_branches_push_access.rb
%%WWWDIR%%/db/migrate/20160705055809_remove_developers_can_push_from_protected_branches.rb
%%WWWDIR%%/db/migrate/20160705055813_remove_developers_can_merge_from_protected_branches.rb
%%WWWDIR%%/db/migrate/20160705163108_remove_requesters_that_are_owners.rb
%%WWWDIR%%/db/migrate/20160712171823_remove_award_emojis_with_no_user.rb
%%WWWDIR%%/db/migrate/20160713205315_add_domain_blacklist_to_application_settings.rb
%%WWWDIR%%/db/migrate/20160715132507_add_user_id_to_pipeline.rb
%%WWWDIR%%/db/migrate/20160715134306_add_index_for_pipeline_user_id.rb
%%WWWDIR%%/db/migrate/20160715154212_add_request_access_enabled_to_projects.rb
%%WWWDIR%%/db/migrate/20160715204316_add_request_access_enabled_to_groups.rb
%%WWWDIR%%/db/migrate/20160715230841_rename_application_settings_restricted_signup_domains.rb
%%WWWDIR%%/db/migrate/20160716115710_add_when_and_yaml_variables_to_ci_builds.rb
%%WWWDIR%%/db/migrate/20160716115711_add_queued_at_to_ci_builds.rb
%%WWWDIR%%/db/migrate/20160718153603_add_has_external_wiki_to_projects.rb
%%WWWDIR%%/db/migrate/20160721081015_drop_and_readd_has_external_wiki_in_projects.rb
%%WWWDIR%%/db/migrate/20160722221922_nullify_blank_type_on_notes.rb
%%WWWDIR%%/db/migrate/20160724205507_add_resolved_to_notes.rb
%%WWWDIR%%/db/migrate/20160725083350_add_external_url_to_enviroments.rb
%%WWWDIR%%/db/migrate/20160727163552_create_user_agent_details.rb
%%WWWDIR%%/db/migrate/20160727191041_create_boards.rb
%%WWWDIR%%/db/migrate/20160727193336_create_lists.rb
%%WWWDIR%%/db/migrate/20160728081025_add_pipeline_events_to_web_hooks.rb
%%WWWDIR%%/db/migrate/20160728103734_add_pipeline_events_to_services.rb
%%WWWDIR%%/db/migrate/20160729173930_remove_project_id_from_spam_logs.rb
%%WWWDIR%%/db/migrate/20160801163421_add_expires_at_to_member.rb
%%WWWDIR%%/db/migrate/20160801163709_add_submitted_as_ham_to_spam_logs.rb
%%WWWDIR%%/db/migrate/20160802010328_remove_builds_enable_index_on_projects.rb
%%WWWDIR%%/db/migrate/20160803161903_add_unique_index_to_lists_label_id.rb
%%WWWDIR%%/db/migrate/20160804150737_add_timestamps_to_members_again.rb
%%WWWDIR%%/db/migrate/20160805041956_add_deleted_at_to_namespaces.rb
%%WWWDIR%%/db/migrate/20160810102349_remove_ci_runner_trigram_indexes.rb
%%WWWDIR%%/db/migrate/20160810142633_remove_redundant_indexes.rb
%%WWWDIR%%/db/migrate/20160816161312_add_column_name_to_u2f_registrations.rb
%%WWWDIR%%/db/migrate/20160817133006_add_koding_to_application_settings.rb
%%WWWDIR%%/db/migrate/20160817154936_add_discussion_ids_to_notes.rb
%%WWWDIR%%/db/migrate/20160818205718_add_expires_at_to_project_group_links.rb
%%WWWDIR%%/db/migrate/20160819221631_add_index_to_note_discussion_id.rb
%%WWWDIR%%/db/migrate/20160819221833_reset_diff_note_discussion_id_because_it_was_calculated_wrongly.rb
%%WWWDIR%%/db/migrate/20160830203109_add_confidential_issues_events_to_web_hooks.rb
%%WWWDIR%%/db/migrate/20160830211132_add_confidential_issues_events_to_services.rb
%%WWWDIR%%/db/migrate/20160901141443_set_confidential_issues_events_on_webhooks.rb
%%WWWDIR%%/db/migrate/20160902122721_drop_gitorious_field_from_application_settings.rb
%%WWWDIR%%/db/migrate/limits_to_mysql.rb
%%WWWDIR%%/db/schema.rb
%%WWWDIR%%/db/seeds.rb
%%WWWDIR%%/doc/README.md
%%WWWDIR%%/doc/administration/auth/README.md
%%WWWDIR%%/doc/administration/auth/ldap.md
%%WWWDIR%%/doc/administration/build_artifacts.md
%%WWWDIR%%/doc/administration/container_registry.md
%%WWWDIR%%/doc/administration/custom_hooks.md
%%WWWDIR%%/doc/administration/environment_variables.md
%%WWWDIR%%/doc/administration/high_availability/README.md
%%WWWDIR%%/doc/administration/high_availability/database.md
%%WWWDIR%%/doc/administration/high_availability/gitlab.md
%%WWWDIR%%/doc/administration/high_availability/load_balancer.md
%%WWWDIR%%/doc/administration/high_availability/nfs.md
%%WWWDIR%%/doc/administration/high_availability/redis.md
%%WWWDIR%%/doc/administration/housekeeping.md
%%WWWDIR%%/doc/administration/img/custom_hooks_error_msg.png
%%WWWDIR%%/doc/administration/img/high_availability/active-active-diagram.png
%%WWWDIR%%/doc/administration/img/high_availability/active-passive-diagram.png
%%WWWDIR%%/doc/administration/img/housekeeping_settings.png
%%WWWDIR%%/doc/administration/img/repository_storages_admin_ui.png
%%WWWDIR%%/doc/administration/integration/koding.md
%%WWWDIR%%/doc/administration/logs.md
%%WWWDIR%%/doc/administration/raketasks/project_import_export.md
%%WWWDIR%%/doc/administration/repository_checks.md
%%WWWDIR%%/doc/administration/repository_storages.md
%%WWWDIR%%/doc/administration/restart_gitlab.md
%%WWWDIR%%/doc/administration/troubleshooting/debug.md
%%WWWDIR%%/doc/administration/troubleshooting/gdb-stuck-ruby.txt
%%WWWDIR%%/doc/administration/troubleshooting/sidekiq.md
%%WWWDIR%%/doc/api/README.md
%%WWWDIR%%/doc/api/access_requests.md
%%WWWDIR%%/doc/api/award_emoji.md
%%WWWDIR%%/doc/api/branches.md
%%WWWDIR%%/doc/api/build_triggers.md
%%WWWDIR%%/doc/api/build_variables.md
%%WWWDIR%%/doc/api/builds.md
%%WWWDIR%%/doc/api/ci/README.md
%%WWWDIR%%/doc/api/ci/builds.md
%%WWWDIR%%/doc/api/ci/runners.md
%%WWWDIR%%/doc/api/commits.md
%%WWWDIR%%/doc/api/deploy_key_multiple_projects.md
%%WWWDIR%%/doc/api/deploy_keys.md
%%WWWDIR%%/doc/api/deployments.md
%%WWWDIR%%/doc/api/enviroments.md
%%WWWDIR%%/doc/api/groups.md
%%WWWDIR%%/doc/api/issues.md
%%WWWDIR%%/doc/api/keys.md
%%WWWDIR%%/doc/api/labels.md
%%WWWDIR%%/doc/api/licenses.md
%%WWWDIR%%/doc/api/members.md
%%WWWDIR%%/doc/api/merge_requests.md
%%WWWDIR%%/doc/api/milestones.md
%%WWWDIR%%/doc/api/namespaces.md
%%WWWDIR%%/doc/api/notes.md
%%WWWDIR%%/doc/api/oauth2.md
%%WWWDIR%%/doc/api/pipelines.md
%%WWWDIR%%/doc/api/project_snippets.md
%%WWWDIR%%/doc/api/projects.md
%%WWWDIR%%/doc/api/repositories.md
%%WWWDIR%%/doc/api/repository_files.md
%%WWWDIR%%/doc/api/runners.md
%%WWWDIR%%/doc/api/services.md
%%WWWDIR%%/doc/api/session.md
%%WWWDIR%%/doc/api/settings.md
%%WWWDIR%%/doc/api/sidekiq_metrics.md
%%WWWDIR%%/doc/api/system_hooks.md
%%WWWDIR%%/doc/api/tags.md
%%WWWDIR%%/doc/api/todos.md
%%WWWDIR%%/doc/api/users.md
%%WWWDIR%%/doc/ci/README.md
%%WWWDIR%%/doc/ci/api/README.md
%%WWWDIR%%/doc/ci/api/builds.md
%%WWWDIR%%/doc/ci/api/runners.md
%%WWWDIR%%/doc/ci/build_artifacts/README.md
%%WWWDIR%%/doc/ci/docker/README.md
%%WWWDIR%%/doc/ci/docker/using_docker_build.md
%%WWWDIR%%/doc/ci/docker/using_docker_images.md
%%WWWDIR%%/doc/ci/enable_or_disable_ci.md
%%WWWDIR%%/doc/ci/environments.md
%%WWWDIR%%/doc/ci/examples/README.md
%%WWWDIR%%/doc/ci/examples/deployment/README.md
%%WWWDIR%%/doc/ci/examples/php.md
%%WWWDIR%%/doc/ci/examples/test-and-deploy-python-application-to-heroku.md
%%WWWDIR%%/doc/ci/examples/test-and-deploy-ruby-application-to-heroku.md
%%WWWDIR%%/doc/ci/examples/test-clojure-application.md
%%WWWDIR%%/doc/ci/examples/test-scala-application.md
%%WWWDIR%%/doc/ci/img/builds_tab.png
%%WWWDIR%%/doc/ci/img/features_settings.png
%%WWWDIR%%/doc/ci/permissions/README.md
%%WWWDIR%%/doc/ci/pipelines.md
%%WWWDIR%%/doc/ci/quick_start/README.md
%%WWWDIR%%/doc/ci/quick_start/img/build_log.png
%%WWWDIR%%/doc/ci/quick_start/img/builds_status.png
%%WWWDIR%%/doc/ci/quick_start/img/new_commit.png
%%WWWDIR%%/doc/ci/quick_start/img/pipelines_status.png
%%WWWDIR%%/doc/ci/quick_start/img/runners_activated.png
%%WWWDIR%%/doc/ci/quick_start/img/single_commit_status_pending.png
%%WWWDIR%%/doc/ci/quick_start/img/status_pending.png
%%WWWDIR%%/doc/ci/runners/README.md
%%WWWDIR%%/doc/ci/runners/project_specific.png
%%WWWDIR%%/doc/ci/runners/shared_runner.png
%%WWWDIR%%/doc/ci/runners/shared_to_specific_admin.png
%%WWWDIR%%/doc/ci/services/README.md
%%WWWDIR%%/doc/ci/services/docker-services.md
%%WWWDIR%%/doc/ci/services/mysql.md
%%WWWDIR%%/doc/ci/services/postgres.md
%%WWWDIR%%/doc/ci/services/redis.md
%%WWWDIR%%/doc/ci/ssh_keys/README.md
%%WWWDIR%%/doc/ci/triggers/README.md
%%WWWDIR%%/doc/ci/triggers/img/builds_page.png
%%WWWDIR%%/doc/ci/triggers/img/trigger_single_build.png
%%WWWDIR%%/doc/ci/triggers/img/trigger_variables.png
%%WWWDIR%%/doc/ci/triggers/img/triggers_page.png
%%WWWDIR%%/doc/ci/variables/README.md
%%WWWDIR%%/doc/ci/yaml/README.md
%%WWWDIR%%/doc/container_registry/README.md
%%WWWDIR%%/doc/container_registry/img/container_registry.png
%%WWWDIR%%/doc/container_registry/img/mitmproxy-docker.png
%%WWWDIR%%/doc/container_registry/img/project_feature.png
%%WWWDIR%%/doc/container_registry/troubleshooting.md
%%WWWDIR%%/doc/customization/branded_login_page.md
%%WWWDIR%%/doc/customization/branded_login_page/appearance.png
%%WWWDIR%%/doc/customization/branded_login_page/custom_sign_in.png
%%WWWDIR%%/doc/customization/branded_login_page/default_login_page.png
%%WWWDIR%%/doc/customization/issue_closing.md
%%WWWDIR%%/doc/customization/libravatar.md
%%WWWDIR%%/doc/customization/welcome_message.md
%%WWWDIR%%/doc/development/README.md
%%WWWDIR%%/doc/development/adding_database_indexes.md
%%WWWDIR%%/doc/development/architecture.md
%%WWWDIR%%/doc/development/ci_setup.md
%%WWWDIR%%/doc/development/code_review.md
%%WWWDIR%%/doc/development/db_dump.md
%%WWWDIR%%/doc/development/doc_styleguide.md
%%WWWDIR%%/doc/development/gitlab_architecture_diagram.png
%%WWWDIR%%/doc/development/gitlab_diagram_overview.odg
%%WWWDIR%%/doc/development/gotchas.md
%%WWWDIR%%/doc/development/instrumentation.md
%%WWWDIR%%/doc/development/licensing.md
%%WWWDIR%%/doc/development/migration_style_guide.md
%%WWWDIR%%/doc/development/newlines_styleguide.md
%%WWWDIR%%/doc/development/omnibus.md
%%WWWDIR%%/doc/development/performance.md
%%WWWDIR%%/doc/development/profiling.md
%%WWWDIR%%/doc/development/rake_tasks.md
%%WWWDIR%%/doc/development/scss_styleguide.md
%%WWWDIR%%/doc/development/shared_files.md
%%WWWDIR%%/doc/development/shell_commands.md
%%WWWDIR%%/doc/development/sidekiq_debugging.md
%%WWWDIR%%/doc/development/sql.md
%%WWWDIR%%/doc/development/testing.md
%%WWWDIR%%/doc/development/ui_guide.md
%%WWWDIR%%/doc/development/what_requires_downtime.md
%%WWWDIR%%/doc/downgrade_ee_to_ce/README.md
%%WWWDIR%%/doc/gitlab-basics/README.md
%%WWWDIR%%/doc/gitlab-basics/add-file.md
%%WWWDIR%%/doc/gitlab-basics/add-image.md
%%WWWDIR%%/doc/gitlab-basics/add-merge-request.md
%%WWWDIR%%/doc/gitlab-basics/basic-git-commands.md
%%WWWDIR%%/doc/gitlab-basics/basicsimages/add_new_merge_request.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/add_sshkey.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/branch_info.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/branch_name.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/branches.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/button-create-mr.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/click-on-new-group.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/commit_changes.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/commit_message.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/commits.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/compare_branches.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/create_file.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/create_group.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/edit_file.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/file_located.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/file_name.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/find_file.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/find_group.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/fork.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/group_info.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/groups.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/https.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/image_file.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/issue_title.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/issues.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/key.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/merge_requests.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/new_issue.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/new_merge_request.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/new_project.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/newbranch.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/paste_sshkey.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/profile_settings.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/project_info.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/public_file_link.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/select-group.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/select-group2.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/select_branch.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/select_project.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/settings.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/shh_keys.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/submit_new_issue.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/title_description_mr.png
%%WWWDIR%%/doc/gitlab-basics/basicsimages/white_space.png
%%WWWDIR%%/doc/gitlab-basics/command-line-commands.md
%%WWWDIR%%/doc/gitlab-basics/create-branch.md
%%WWWDIR%%/doc/gitlab-basics/create-group.md
%%WWWDIR%%/doc/gitlab-basics/create-issue.md
%%WWWDIR%%/doc/gitlab-basics/create-project.md
%%WWWDIR%%/doc/gitlab-basics/create-your-ssh-keys.md
%%WWWDIR%%/doc/gitlab-basics/fork-project.md
%%WWWDIR%%/doc/gitlab-basics/start-using-git.md
%%WWWDIR%%/doc/hooks/custom_hooks.md
%%WWWDIR%%/doc/incoming_email/README.md
%%WWWDIR%%/doc/incoming_email/postfix.md
%%WWWDIR%%/doc/install/README.md
%%WWWDIR%%/doc/install/database_mysql.md
%%WWWDIR%%/doc/install/installation.md
%%WWWDIR%%/doc/install/redis.md
%%WWWDIR%%/doc/install/relative_url.md
%%WWWDIR%%/doc/install/requirements.md
%%WWWDIR%%/doc/install/structure.md
%%WWWDIR%%/doc/integration/README.md
%%WWWDIR%%/doc/integration/akismet.md
%%WWWDIR%%/doc/integration/auth0.md
%%WWWDIR%%/doc/integration/azure.md
%%WWWDIR%%/doc/integration/bitbucket.md
%%WWWDIR%%/doc/integration/cas.md
%%WWWDIR%%/doc/integration/crowd.md
%%WWWDIR%%/doc/integration/external-issue-tracker.md
%%WWWDIR%%/doc/integration/facebook.md
%%WWWDIR%%/doc/integration/github.md
%%WWWDIR%%/doc/integration/gitlab.md
%%WWWDIR%%/doc/integration/gmail_action_buttons_for_gitlab.md
%%WWWDIR%%/doc/integration/google.md
%%WWWDIR%%/doc/integration/img/akismet_settings.png
%%WWWDIR%%/doc/integration/img/enabled-oauth-sign-in-sources.png
%%WWWDIR%%/doc/integration/img/facebook_api_keys.png
%%WWWDIR%%/doc/integration/img/facebook_app_settings.png
%%WWWDIR%%/doc/integration/img/facebook_website_url.png
%%WWWDIR%%/doc/integration/img/github_app.png
%%WWWDIR%%/doc/integration/img/gitlab_app.png
%%WWWDIR%%/doc/integration/img/gmail_action_buttons_for_gitlab.png
%%WWWDIR%%/doc/integration/img/google_app.png
%%WWWDIR%%/doc/integration/img/oauth_provider_admin_application.png
%%WWWDIR%%/doc/integration/img/oauth_provider_application_form.png
%%WWWDIR%%/doc/integration/img/oauth_provider_application_id_secret.png
%%WWWDIR%%/doc/integration/img/oauth_provider_authorized_application.png
%%WWWDIR%%/doc/integration/img/oauth_provider_user_wide_applications.png
%%WWWDIR%%/doc/integration/img/spam_log.png
%%WWWDIR%%/doc/integration/img/submit_issue.png
%%WWWDIR%%/doc/integration/img/twitter_app_api_keys.png
%%WWWDIR%%/doc/integration/img/twitter_app_details.png
%%WWWDIR%%/doc/integration/jira.md
%%WWWDIR%%/doc/integration/ldap.md
%%WWWDIR%%/doc/integration/oauth_provider.md
%%WWWDIR%%/doc/integration/omniauth.md
%%WWWDIR%%/doc/integration/recaptcha.md
%%WWWDIR%%/doc/integration/saml.md
%%WWWDIR%%/doc/integration/shibboleth.md
%%WWWDIR%%/doc/integration/slack.md
%%WWWDIR%%/doc/integration/twitter.md
%%WWWDIR%%/doc/intro/README.md
%%WWWDIR%%/doc/legal/README.md
%%WWWDIR%%/doc/legal/corporate_contributor_license_agreement.md
%%WWWDIR%%/doc/legal/individual_contributor_license_agreement.md
%%WWWDIR%%/doc/logs/logs.md
%%WWWDIR%%/doc/markdown/markdown.md
%%WWWDIR%%/doc/migrate_ci_to_ce/README.md
%%WWWDIR%%/doc/monitoring/health_check.md
%%WWWDIR%%/doc/monitoring/img/health_check_token.png
%%WWWDIR%%/doc/monitoring/performance/gitlab_configuration.md
%%WWWDIR%%/doc/monitoring/performance/grafana_configuration.md
%%WWWDIR%%/doc/monitoring/performance/img/grafana_dashboard_dropdown.png
%%WWWDIR%%/doc/monitoring/performance/img/grafana_dashboard_import.png
%%WWWDIR%%/doc/monitoring/performance/img/grafana_data_source_configuration.png
%%WWWDIR%%/doc/monitoring/performance/img/grafana_data_source_empty.png
%%WWWDIR%%/doc/monitoring/performance/img/grafana_save_icon.png
%%WWWDIR%%/doc/monitoring/performance/img/metrics_gitlab_configuration_settings.png
%%WWWDIR%%/doc/monitoring/performance/influxdb_configuration.md
%%WWWDIR%%/doc/monitoring/performance/influxdb_schema.md
%%WWWDIR%%/doc/monitoring/performance/introduction.md
%%WWWDIR%%/doc/operations/README.md
%%WWWDIR%%/doc/operations/cleaning_up_redis_sessions.md
%%WWWDIR%%/doc/operations/moving_repositories.md
%%WWWDIR%%/doc/operations/sidekiq_memory_killer.md
%%WWWDIR%%/doc/operations/unicorn.md
%%WWWDIR%%/doc/permissions/permissions.md
%%WWWDIR%%/doc/profile/2fa.png
%%WWWDIR%%/doc/profile/2fa_auth.png
%%WWWDIR%%/doc/profile/2fa_u2f_authenticate.png
%%WWWDIR%%/doc/profile/2fa_u2f_register.png
%%WWWDIR%%/doc/profile/README.md
%%WWWDIR%%/doc/profile/preferences.md
%%WWWDIR%%/doc/profile/two_factor_authentication.md
%%WWWDIR%%/doc/project_services/bamboo.md
%%WWWDIR%%/doc/project_services/bugzilla.md
%%WWWDIR%%/doc/project_services/builds_emails.md
%%WWWDIR%%/doc/project_services/emails_on_push.md
%%WWWDIR%%/doc/project_services/hipchat.md
%%WWWDIR%%/doc/project_services/img/builds_emails_service.png
%%WWWDIR%%/doc/project_services/img/emails_on_push_service.png
%%WWWDIR%%/doc/project_services/img/jira_add_gitlab_commit_message.png
%%WWWDIR%%/doc/project_services/img/jira_add_user_to_group.png
%%WWWDIR%%/doc/project_services/img/jira_create_new_group.png
%%WWWDIR%%/doc/project_services/img/jira_create_new_group_name.png
%%WWWDIR%%/doc/project_services/img/jira_create_new_user.png
%%WWWDIR%%/doc/project_services/img/jira_group_access.png
%%WWWDIR%%/doc/project_services/img/jira_issue_closed.png
%%WWWDIR%%/doc/project_services/img/jira_issue_reference.png
%%WWWDIR%%/doc/project_services/img/jira_issues_workflow.png
%%WWWDIR%%/doc/project_services/img/jira_merge_request_close.png
%%WWWDIR%%/doc/project_services/img/jira_project_name.png
%%WWWDIR%%/doc/project_services/img/jira_reference_commit_message_in_jira_issue.png
%%WWWDIR%%/doc/project_services/img/jira_service.png
%%WWWDIR%%/doc/project_services/img/jira_service_close_issue.png
%%WWWDIR%%/doc/project_services/img/jira_service_page.png
%%WWWDIR%%/doc/project_services/img/jira_submit_gitlab_merge_request.png
%%WWWDIR%%/doc/project_services/img/jira_user_management_link.png
%%WWWDIR%%/doc/project_services/img/jira_workflow_screenshot.png
%%WWWDIR%%/doc/project_services/img/redmine_configuration.png
%%WWWDIR%%/doc/project_services/img/services_templates_redmine_example.png
%%WWWDIR%%/doc/project_services/img/slack_configuration.png
%%WWWDIR%%/doc/project_services/irker.md
%%WWWDIR%%/doc/project_services/jira.md
%%WWWDIR%%/doc/project_services/project_services.md
%%WWWDIR%%/doc/project_services/redmine.md
%%WWWDIR%%/doc/project_services/services_templates.md
%%WWWDIR%%/doc/project_services/slack.md
%%WWWDIR%%/doc/public_access/public_access.md
%%WWWDIR%%/doc/raketasks/README.md
%%WWWDIR%%/doc/raketasks/backup_hrz.png
%%WWWDIR%%/doc/raketasks/backup_restore.md
%%WWWDIR%%/doc/raketasks/check.md
%%WWWDIR%%/doc/raketasks/check_repos_output.png
%%WWWDIR%%/doc/raketasks/cleanup.md
%%WWWDIR%%/doc/raketasks/features.md
%%WWWDIR%%/doc/raketasks/import.md
%%WWWDIR%%/doc/raketasks/list_repos.md
%%WWWDIR%%/doc/raketasks/maintenance.md
%%WWWDIR%%/doc/raketasks/user_management.md
%%WWWDIR%%/doc/raketasks/web_hooks.md
%%WWWDIR%%/doc/security/README.md
%%WWWDIR%%/doc/security/crime_vulnerability.md
%%WWWDIR%%/doc/security/img/two_factor_authentication_settings.png
%%WWWDIR%%/doc/security/information_exclusivity.md
%%WWWDIR%%/doc/security/password_length_limits.md
%%WWWDIR%%/doc/security/rack_attack.md
%%WWWDIR%%/doc/security/reset_root_password.md
%%WWWDIR%%/doc/security/two_factor_authentication.md
%%WWWDIR%%/doc/security/user_email_confirmation.md
%%WWWDIR%%/doc/security/user_file_uploads.md
%%WWWDIR%%/doc/security/webhooks.md
%%WWWDIR%%/doc/ssh/README.md
%%WWWDIR%%/doc/system_hooks/system_hooks.md
%%WWWDIR%%/doc/update/2.6-to-3.0.md
%%WWWDIR%%/doc/update/2.9-to-3.0.md
%%WWWDIR%%/doc/update/3.0-to-3.1.md
%%WWWDIR%%/doc/update/3.1-to-4.0.md
%%WWWDIR%%/doc/update/4.0-to-4.1.md
%%WWWDIR%%/doc/update/4.1-to-4.2.md
%%WWWDIR%%/doc/update/4.2-to-5.0.md
%%WWWDIR%%/doc/update/5.0-to-5.1.md
%%WWWDIR%%/doc/update/5.1-to-5.2.md
%%WWWDIR%%/doc/update/5.1-to-5.4.md
%%WWWDIR%%/doc/update/5.1-to-6.0.md
%%WWWDIR%%/doc/update/5.2-to-5.3.md
%%WWWDIR%%/doc/update/5.3-to-5.4.md
%%WWWDIR%%/doc/update/5.4-to-6.0.md
%%WWWDIR%%/doc/update/6.0-to-6.1.md
%%WWWDIR%%/doc/update/6.1-to-6.2.md
%%WWWDIR%%/doc/update/6.2-to-6.3.md
%%WWWDIR%%/doc/update/6.3-to-6.4.md
%%WWWDIR%%/doc/update/6.4-to-6.5.md
%%WWWDIR%%/doc/update/6.5-to-6.6.md
%%WWWDIR%%/doc/update/6.6-to-6.7.md
%%WWWDIR%%/doc/update/6.7-to-6.8.md
%%WWWDIR%%/doc/update/6.8-to-6.9.md
%%WWWDIR%%/doc/update/6.9-to-7.0.md
%%WWWDIR%%/doc/update/6.x-or-7.x-to-7.14.md
%%WWWDIR%%/doc/update/7.0-to-7.1.md
%%WWWDIR%%/doc/update/7.1-to-7.2.md
%%WWWDIR%%/doc/update/7.10-to-7.11.md
%%WWWDIR%%/doc/update/7.11-to-7.12.md
%%WWWDIR%%/doc/update/7.12-to-7.13.md
%%WWWDIR%%/doc/update/7.13-to-7.14.md
%%WWWDIR%%/doc/update/7.14-to-8.0.md
%%WWWDIR%%/doc/update/7.2-to-7.3.md
%%WWWDIR%%/doc/update/7.3-to-7.4.md
%%WWWDIR%%/doc/update/7.4-to-7.5.md
%%WWWDIR%%/doc/update/7.5-to-7.6.md
%%WWWDIR%%/doc/update/7.6-to-7.7.md
%%WWWDIR%%/doc/update/7.7-to-7.8.md
%%WWWDIR%%/doc/update/7.8-to-7.9.md
%%WWWDIR%%/doc/update/7.9-to-7.10.md
%%WWWDIR%%/doc/update/8.0-to-8.1.md
%%WWWDIR%%/doc/update/8.1-to-8.2.md
%%WWWDIR%%/doc/update/8.10-to-8.11.md
%%WWWDIR%%/doc/update/8.2-to-8.3.md
%%WWWDIR%%/doc/update/8.3-to-8.4.md
%%WWWDIR%%/doc/update/8.4-to-8.5.md
%%WWWDIR%%/doc/update/8.5-to-8.6.md
%%WWWDIR%%/doc/update/8.6-to-8.7.md
%%WWWDIR%%/doc/update/8.7-to-8.8.md
%%WWWDIR%%/doc/update/8.8-to-8.9.md
%%WWWDIR%%/doc/update/8.9-to-8.10.md
%%WWWDIR%%/doc/update/README.md
%%WWWDIR%%/doc/update/mysql_to_postgresql.md
%%WWWDIR%%/doc/update/patch_versions.md
%%WWWDIR%%/doc/update/restore_after_failure.md
%%WWWDIR%%/doc/update/upgrader.md
%%WWWDIR%%/doc/user/admin_area/img/admin_labels.png
%%WWWDIR%%/doc/user/admin_area/labels.md
%%WWWDIR%%/doc/user/admin_area/settings/continuous_integration.md
%%WWWDIR%%/doc/user/admin_area/settings/img/access_restrictions.png
%%WWWDIR%%/doc/user/admin_area/settings/img/admin_area_maximum_artifacts_size.png
%%WWWDIR%%/doc/user/admin_area/settings/img/admin_area_settings_button.png
%%WWWDIR%%/doc/user/admin_area/settings/img/domain_blacklist.png
%%WWWDIR%%/doc/user/admin_area/settings/img/restricted_url.png
%%WWWDIR%%/doc/user/admin_area/settings/sign_up_restrictions.md
%%WWWDIR%%/doc/user/admin_area/settings/visibility_and_access_controls.md
%%WWWDIR%%/doc/user/img/markdown_logo.png
%%WWWDIR%%/doc/user/img/markdown_video.mp4
%%WWWDIR%%/doc/user/markdown.md
%%WWWDIR%%/doc/user/permissions.md
%%WWWDIR%%/doc/user/project/builds/artifacts.md
%%WWWDIR%%/doc/user/project/builds/img/build_artifacts_browser.png
%%WWWDIR%%/doc/user/project/builds/img/build_artifacts_browser_button.png
%%WWWDIR%%/doc/user/project/builds/img/build_artifacts_builds_page.png
%%WWWDIR%%/doc/user/project/builds/img/build_artifacts_pipelines_page.png
%%WWWDIR%%/doc/user/project/description_templates.md
%%WWWDIR%%/doc/user/project/highlighting.md
%%WWWDIR%%/doc/user/project/img/description_templates.png
%%WWWDIR%%/doc/user/project/img/issue_board.png
%%WWWDIR%%/doc/user/project/img/issue_board_add_list.png
%%WWWDIR%%/doc/user/project/img/issue_board_search_backlog.png
%%WWWDIR%%/doc/user/project/img/issue_board_system_notes.png
%%WWWDIR%%/doc/user/project/img/issue_board_welcome_message.png
%%WWWDIR%%/doc/user/project/img/koding_build-in-progress.png
%%WWWDIR%%/doc/user/project/img/koding_build-logs.png
%%WWWDIR%%/doc/user/project/img/koding_build-success.png
%%WWWDIR%%/doc/user/project/img/koding_commit-koding.yml.png
%%WWWDIR%%/doc/user/project/img/koding_different-stack-on-mr-try.png
%%WWWDIR%%/doc/user/project/img/koding_edit-on-ide.png
%%WWWDIR%%/doc/user/project/img/koding_enable-koding.png
%%WWWDIR%%/doc/user/project/img/koding_landing.png
%%WWWDIR%%/doc/user/project/img/koding_open-gitlab-from-koding.png
%%WWWDIR%%/doc/user/project/img/koding_run-in-ide.png
%%WWWDIR%%/doc/user/project/img/koding_run-mr-in-ide.png
%%WWWDIR%%/doc/user/project/img/koding_set-up-ide.png
%%WWWDIR%%/doc/user/project/img/koding_stack-import.png
%%WWWDIR%%/doc/user/project/img/koding_start-build.png
%%WWWDIR%%/doc/user/project/img/labels_assign_label_in_new_issue.png
%%WWWDIR%%/doc/user/project/img/labels_assign_label_sidebar.png
%%WWWDIR%%/doc/user/project/img/labels_assign_label_sidebar_saved.png
%%WWWDIR%%/doc/user/project/img/labels_default.png
%%WWWDIR%%/doc/user/project/img/labels_description_tooltip.png
%%WWWDIR%%/doc/user/project/img/labels_filter.png
%%WWWDIR%%/doc/user/project/img/labels_filter_by_priority.png
%%WWWDIR%%/doc/user/project/img/labels_generate.png
%%WWWDIR%%/doc/user/project/img/labels_new_label.png
%%WWWDIR%%/doc/user/project/img/labels_new_label_on_the_fly.png
%%WWWDIR%%/doc/user/project/img/labels_new_label_on_the_fly_create.png
%%WWWDIR%%/doc/user/project/img/labels_prioritize.png
%%WWWDIR%%/doc/user/project/img/labels_subscribe.png
%%WWWDIR%%/doc/user/project/img/project_settings_list.png
%%WWWDIR%%/doc/user/project/img/protected_branches_choose_branch.png
%%WWWDIR%%/doc/user/project/img/protected_branches_devs_can_push.png
%%WWWDIR%%/doc/user/project/img/protected_branches_error_ui.png
%%WWWDIR%%/doc/user/project/img/protected_branches_list.png
%%WWWDIR%%/doc/user/project/img/protected_branches_matches.png
%%WWWDIR%%/doc/user/project/img/protected_branches_page.png
%%WWWDIR%%/doc/user/project/issue_board.md
%%WWWDIR%%/doc/user/project/koding.md
%%WWWDIR%%/doc/user/project/labels.md
%%WWWDIR%%/doc/user/project/merge_requests/img/conflict_section.png
%%WWWDIR%%/doc/user/project/merge_requests/img/discussion_view.png
%%WWWDIR%%/doc/user/project/merge_requests/img/discussions_resolved.png
%%WWWDIR%%/doc/user/project/merge_requests/img/merge_request_widget.png
%%WWWDIR%%/doc/user/project/merge_requests/img/resolve_comment_button.png
%%WWWDIR%%/doc/user/project/merge_requests/img/resolve_discussion_button.png
%%WWWDIR%%/doc/user/project/merge_requests/merge_request_discussion_resolution.md
%%WWWDIR%%/doc/user/project/merge_requests/resolve_conflicts.md
%%WWWDIR%%/doc/user/project/protected_branches.md
%%WWWDIR%%/doc/user/project/settings/img/import_export_download_export.png
%%WWWDIR%%/doc/user/project/settings/img/import_export_export_button.png
%%WWWDIR%%/doc/user/project/settings/img/import_export_mail_link.png
%%WWWDIR%%/doc/user/project/settings/img/import_export_new_project.png
%%WWWDIR%%/doc/user/project/settings/img/import_export_select_file.png
%%WWWDIR%%/doc/user/project/settings/img/settings_edit_button.png
%%WWWDIR%%/doc/user/project/settings/import_export.md
%%WWWDIR%%/doc/user/project/slash_commands.md
%%WWWDIR%%/doc/web_hooks/ssl.png
%%WWWDIR%%/doc/web_hooks/web_hooks.md
%%WWWDIR%%/doc/workflow/README.md
%%WWWDIR%%/doc/workflow/add-user/add-user.md
%%WWWDIR%%/doc/workflow/add-user/img/access_requests_management.png
%%WWWDIR%%/doc/workflow/add-user/img/add_new_user_to_project_settings.png
%%WWWDIR%%/doc/workflow/add-user/img/add_user_email_accept.png
%%WWWDIR%%/doc/workflow/add-user/img/add_user_email_ready.png
%%WWWDIR%%/doc/workflow/add-user/img/add_user_email_search.png
%%WWWDIR%%/doc/workflow/add-user/img/add_user_give_permissions.png
%%WWWDIR%%/doc/workflow/add-user/img/add_user_import_members_from_another_project.png
%%WWWDIR%%/doc/workflow/add-user/img/add_user_imported_members.png
%%WWWDIR%%/doc/workflow/add-user/img/add_user_list_members.png
%%WWWDIR%%/doc/workflow/add-user/img/add_user_members_menu.png
%%WWWDIR%%/doc/workflow/add-user/img/add_user_search_people.png
%%WWWDIR%%/doc/workflow/add-user/img/request_access_button.png
%%WWWDIR%%/doc/workflow/add-user/img/withdraw_access_request_button.png
%%WWWDIR%%/doc/workflow/authorization_for_merge_requests.md
%%WWWDIR%%/doc/workflow/award_emoji.md
%%WWWDIR%%/doc/workflow/award_emoji.png
%%WWWDIR%%/doc/workflow/cherry_pick_changes.md
%%WWWDIR%%/doc/workflow/ci_mr.png
%%WWWDIR%%/doc/workflow/close_issue_mr.png
%%WWWDIR%%/doc/workflow/environment_branches.png
%%WWWDIR%%/doc/workflow/file_finder.md
%%WWWDIR%%/doc/workflow/forking/branch_select.png
%%WWWDIR%%/doc/workflow/forking/merge_request.png
%%WWWDIR%%/doc/workflow/forking_workflow.md
%%WWWDIR%%/doc/workflow/four_stages.png
%%WWWDIR%%/doc/workflow/git_pull.png
%%WWWDIR%%/doc/workflow/gitdashflow.png
%%WWWDIR%%/doc/workflow/github_flow.png
%%WWWDIR%%/doc/workflow/gitlab_flow.md
%%WWWDIR%%/doc/workflow/gitlab_flow.png
%%WWWDIR%%/doc/workflow/good_commit.png
%%WWWDIR%%/doc/workflow/groups.md
%%WWWDIR%%/doc/workflow/groups/access_requests_management.png
%%WWWDIR%%/doc/workflow/groups/add_member_to_group.png
%%WWWDIR%%/doc/workflow/groups/group_dashboard.png
%%WWWDIR%%/doc/workflow/groups/group_with_two_projects.png
%%WWWDIR%%/doc/workflow/groups/max_access_level.png
%%WWWDIR%%/doc/workflow/groups/new_group_button.png
%%WWWDIR%%/doc/workflow/groups/new_group_form.png
%%WWWDIR%%/doc/workflow/groups/other_group_sees_shared_project.png
%%WWWDIR%%/doc/workflow/groups/override_access_level.png
%%WWWDIR%%/doc/workflow/groups/project_members_via_group.png
%%WWWDIR%%/doc/workflow/groups/request_access_button.png
%%WWWDIR%%/doc/workflow/groups/share_project_with_groups.png
%%WWWDIR%%/doc/workflow/groups/transfer_project.png
%%WWWDIR%%/doc/workflow/groups/withdraw_access_request_button.png
%%WWWDIR%%/doc/workflow/img/award_emoji_comment_awarded.png
%%WWWDIR%%/doc/workflow/img/award_emoji_comment_picker.png
%%WWWDIR%%/doc/workflow/img/award_emoji_select.png
%%WWWDIR%%/doc/workflow/img/award_emoji_votes_least_popular.png
%%WWWDIR%%/doc/workflow/img/award_emoji_votes_most_popular.png
%%WWWDIR%%/doc/workflow/img/award_emoji_votes_sort_options.png
%%WWWDIR%%/doc/workflow/img/cherry_pick_changes_commit.png
%%WWWDIR%%/doc/workflow/img/cherry_pick_changes_commit_modal.png
%%WWWDIR%%/doc/workflow/img/cherry_pick_changes_mr.png
%%WWWDIR%%/doc/workflow/img/cherry_pick_changes_mr_modal.png
%%WWWDIR%%/doc/workflow/img/file_finder_find_button.png
%%WWWDIR%%/doc/workflow/img/file_finder_find_file.png
%%WWWDIR%%/doc/workflow/img/forking_workflow_choose_namespace.png
%%WWWDIR%%/doc/workflow/img/forking_workflow_fork_button.png
%%WWWDIR%%/doc/workflow/img/forking_workflow_path_taken_error.png
%%WWWDIR%%/doc/workflow/img/new_branch_from_issue.png
%%WWWDIR%%/doc/workflow/img/revert_changes_commit.png
%%WWWDIR%%/doc/workflow/img/revert_changes_commit_modal.png
%%WWWDIR%%/doc/workflow/img/revert_changes_mr.png
%%WWWDIR%%/doc/workflow/img/revert_changes_mr_modal.png
%%WWWDIR%%/doc/workflow/img/todo_list_item.png
%%WWWDIR%%/doc/workflow/img/todos_add_todo_sidebar.png
%%WWWDIR%%/doc/workflow/img/todos_icon.png
%%WWWDIR%%/doc/workflow/img/todos_index.png
%%WWWDIR%%/doc/workflow/img/todos_mark_done_sidebar.png
%%WWWDIR%%/doc/workflow/img/web_editor_new_branch_dropdown.png
%%WWWDIR%%/doc/workflow/img/web_editor_new_branch_page.png
%%WWWDIR%%/doc/workflow/img/web_editor_new_directory_dialog.png
%%WWWDIR%%/doc/workflow/img/web_editor_new_directory_dropdown.png
%%WWWDIR%%/doc/workflow/img/web_editor_new_file_dropdown.png
%%WWWDIR%%/doc/workflow/img/web_editor_new_file_editor.png
%%WWWDIR%%/doc/workflow/img/web_editor_new_push_widget.png
%%WWWDIR%%/doc/workflow/img/web_editor_new_tag_dropdown.png
%%WWWDIR%%/doc/workflow/img/web_editor_new_tag_page.png
%%WWWDIR%%/doc/workflow/img/web_editor_start_new_merge_request.png
%%WWWDIR%%/doc/workflow/img/web_editor_upload_file_dialog.png
%%WWWDIR%%/doc/workflow/img/web_editor_upload_file_dropdown.png
%%WWWDIR%%/doc/workflow/importing/README.md
%%WWWDIR%%/doc/workflow/importing/bitbucket_importer/bitbucket_import_grant_access.png
%%WWWDIR%%/doc/workflow/importing/bitbucket_importer/bitbucket_import_new_project.png
%%WWWDIR%%/doc/workflow/importing/bitbucket_importer/bitbucket_import_select_bitbucket.png
%%WWWDIR%%/doc/workflow/importing/bitbucket_importer/bitbucket_import_select_project.png
%%WWWDIR%%/doc/workflow/importing/fogbugz_importer/fogbugz_import_finished.png
%%WWWDIR%%/doc/workflow/importing/fogbugz_importer/fogbugz_import_login.png
%%WWWDIR%%/doc/workflow/importing/fogbugz_importer/fogbugz_import_select_fogbogz.png
%%WWWDIR%%/doc/workflow/importing/fogbugz_importer/fogbugz_import_select_project.png
%%WWWDIR%%/doc/workflow/importing/fogbugz_importer/fogbugz_import_user_map.png
%%WWWDIR%%/doc/workflow/importing/gitlab_importer/importer.png
%%WWWDIR%%/doc/workflow/importing/gitlab_importer/new_project_page.png
%%WWWDIR%%/doc/workflow/importing/img/import_projects_from_github_importer.png
%%WWWDIR%%/doc/workflow/importing/img/import_projects_from_github_new_project_page.png
%%WWWDIR%%/doc/workflow/importing/import_projects_from_bitbucket.md
%%WWWDIR%%/doc/workflow/importing/import_projects_from_fogbugz.md
%%WWWDIR%%/doc/workflow/importing/import_projects_from_github.md
%%WWWDIR%%/doc/workflow/importing/import_projects_from_gitlab_com.md
%%WWWDIR%%/doc/workflow/importing/migrating_from_svn.md
%%WWWDIR%%/doc/workflow/labels.md
%%WWWDIR%%/doc/workflow/lfs/lfs_administration.md
%%WWWDIR%%/doc/workflow/lfs/manage_large_binaries_with_git_lfs.md
%%WWWDIR%%/doc/workflow/merge_commits.png
%%WWWDIR%%/doc/workflow/merge_request.png
%%WWWDIR%%/doc/workflow/merge_requests.md
%%WWWDIR%%/doc/workflow/merge_requests/commit_compare.png
%%WWWDIR%%/doc/workflow/merge_requests/merge_request_diff.png
%%WWWDIR%%/doc/workflow/merge_requests/merge_request_diff_without_whitespace.png
%%WWWDIR%%/doc/workflow/merge_requests/only_allow_merge_if_build_succeeds.png
%%WWWDIR%%/doc/workflow/merge_when_build_succeeds.md
%%WWWDIR%%/doc/workflow/merge_when_build_succeeds/enable.png
%%WWWDIR%%/doc/workflow/merge_when_build_succeeds/status.png
%%WWWDIR%%/doc/workflow/messy_flow.png
%%WWWDIR%%/doc/workflow/milestones.md
%%WWWDIR%%/doc/workflow/milestones/form.png
%%WWWDIR%%/doc/workflow/milestones/group_form.png
%%WWWDIR%%/doc/workflow/mr_inline_comments.png
%%WWWDIR%%/doc/workflow/notifications.md
%%WWWDIR%%/doc/workflow/notifications/settings.png
%%WWWDIR%%/doc/workflow/production_branch.png
%%WWWDIR%%/doc/workflow/project_features.md
%%WWWDIR%%/doc/workflow/protected_branches.md
%%WWWDIR%%/doc/workflow/rebase.png
%%WWWDIR%%/doc/workflow/release_branches.png
%%WWWDIR%%/doc/workflow/releases.md
%%WWWDIR%%/doc/workflow/releases/new_tag.png
%%WWWDIR%%/doc/workflow/releases/tags.png
%%WWWDIR%%/doc/workflow/remove_checkbox.png
%%WWWDIR%%/doc/workflow/revert_changes.md
%%WWWDIR%%/doc/workflow/share_projects_with_other_groups.md
%%WWWDIR%%/doc/workflow/share_with_group.md
%%WWWDIR%%/doc/workflow/share_with_group.png
%%WWWDIR%%/doc/workflow/shortcuts.md
%%WWWDIR%%/doc/workflow/timezone.md
%%WWWDIR%%/doc/workflow/todos.md
%%WWWDIR%%/doc/workflow/web_editor.md
%%WWWDIR%%/doc/workflow/wip_merge_requests.md
%%WWWDIR%%/doc/workflow/wip_merge_requests/blocked_accept_button.png
%%WWWDIR%%/doc/workflow/wip_merge_requests/mark_as_wip.png
%%WWWDIR%%/doc/workflow/wip_merge_requests/unmark_as_wip.png
%%WWWDIR%%/doc/workflow/workflow.md
%%WWWDIR%%/doc_styleguide.md
%%WWWDIR%%/docker-compose.yml
%%WWWDIR%%/docker/README.md
%%WWWDIR%%/features/abuse_report.feature
%%WWWDIR%%/features/admin/abuse_report.feature
%%WWWDIR%%/features/admin/active_tab.feature
%%WWWDIR%%/features/admin/appearance.feature
%%WWWDIR%%/features/admin/applications.feature
%%WWWDIR%%/features/admin/broadcast_messages.feature
%%WWWDIR%%/features/admin/deploy_keys.feature
%%WWWDIR%%/features/admin/groups.feature
%%WWWDIR%%/features/admin/hooks.feature
%%WWWDIR%%/features/admin/labels.feature
%%WWWDIR%%/features/admin/logs.feature
%%WWWDIR%%/features/admin/projects.feature
%%WWWDIR%%/features/admin/settings.feature
%%WWWDIR%%/features/admin/spam_logs.feature
%%WWWDIR%%/features/admin/users.feature
%%WWWDIR%%/features/dashboard/active_tab.feature
%%WWWDIR%%/features/dashboard/archived_projects.feature
%%WWWDIR%%/features/dashboard/dashboard.feature
%%WWWDIR%%/features/dashboard/event_filters.feature
%%WWWDIR%%/features/dashboard/group.feature
%%WWWDIR%%/features/dashboard/help.feature
%%WWWDIR%%/features/dashboard/issues.feature
%%WWWDIR%%/features/dashboard/merge_requests.feature
%%WWWDIR%%/features/dashboard/new_project.feature
%%WWWDIR%%/features/dashboard/shortcuts.feature
%%WWWDIR%%/features/dashboard/starred_projects.feature
%%WWWDIR%%/features/dashboard/todos.feature
%%WWWDIR%%/features/explore/groups.feature
%%WWWDIR%%/features/explore/projects.feature
%%WWWDIR%%/features/group/members.feature
%%WWWDIR%%/features/group/milestones.feature
%%WWWDIR%%/features/groups.feature
%%WWWDIR%%/features/invites.feature
%%WWWDIR%%/features/profile/active_tab.feature
%%WWWDIR%%/features/profile/emails.feature
%%WWWDIR%%/features/profile/notifications.feature
%%WWWDIR%%/features/profile/profile.feature
%%WWWDIR%%/features/profile/ssh_keys.feature
%%WWWDIR%%/features/project/active_tab.feature
%%WWWDIR%%/features/project/archived.feature
%%WWWDIR%%/features/project/badges/build.feature
%%WWWDIR%%/features/project/builds/artifacts.feature
%%WWWDIR%%/features/project/builds/permissions.feature
%%WWWDIR%%/features/project/builds/summary.feature
%%WWWDIR%%/features/project/commits/branches.feature
%%WWWDIR%%/features/project/commits/comments.feature
%%WWWDIR%%/features/project/commits/commits.feature
%%WWWDIR%%/features/project/commits/diff_comments.feature
%%WWWDIR%%/features/project/commits/revert.feature
%%WWWDIR%%/features/project/commits/user_lookup.feature
%%WWWDIR%%/features/project/create.feature
%%WWWDIR%%/features/project/deploy_keys.feature
%%WWWDIR%%/features/project/find_file.feature
%%WWWDIR%%/features/project/fork.feature
%%WWWDIR%%/features/project/forked_merge_requests.feature
%%WWWDIR%%/features/project/graph.feature
%%WWWDIR%%/features/project/group_links.feature
%%WWWDIR%%/features/project/hooks.feature
%%WWWDIR%%/features/project/issues/award_emoji.feature
%%WWWDIR%%/features/project/issues/filter_labels.feature
%%WWWDIR%%/features/project/issues/issues.feature
%%WWWDIR%%/features/project/issues/labels.feature
%%WWWDIR%%/features/project/issues/milestones.feature
%%WWWDIR%%/features/project/issues/references.feature
%%WWWDIR%%/features/project/labels.feature
%%WWWDIR%%/features/project/merge_requests.feature
%%WWWDIR%%/features/project/merge_requests/accept.feature
%%WWWDIR%%/features/project/merge_requests/references.feature
%%WWWDIR%%/features/project/merge_requests/revert.feature
%%WWWDIR%%/features/project/milestone.feature
%%WWWDIR%%/features/project/network_graph.feature
%%WWWDIR%%/features/project/project.feature
%%WWWDIR%%/features/project/redirects.feature
%%WWWDIR%%/features/project/service.feature
%%WWWDIR%%/features/project/shortcuts.feature
%%WWWDIR%%/features/project/snippets.feature
%%WWWDIR%%/features/project/source/browse_files.feature
%%WWWDIR%%/features/project/source/git_blame.feature
%%WWWDIR%%/features/project/source/markdown_render.feature
%%WWWDIR%%/features/project/source/search_code.feature
%%WWWDIR%%/features/project/star.feature
%%WWWDIR%%/features/project/team_management.feature
%%WWWDIR%%/features/project/wiki.feature
%%WWWDIR%%/features/search.feature
%%WWWDIR%%/features/snippet_search.feature
%%WWWDIR%%/features/snippets/discover.feature
%%WWWDIR%%/features/snippets/public_snippets.feature
%%WWWDIR%%/features/snippets/snippets.feature
%%WWWDIR%%/features/snippets/user.feature
%%WWWDIR%%/features/steps/abuse_reports.rb
%%WWWDIR%%/features/steps/admin/abuse_reports.rb
%%WWWDIR%%/features/steps/admin/active_tab.rb
%%WWWDIR%%/features/steps/admin/appearance.rb
%%WWWDIR%%/features/steps/admin/applications.rb
%%WWWDIR%%/features/steps/admin/broadcast_messages.rb
%%WWWDIR%%/features/steps/admin/deploy_keys.rb
%%WWWDIR%%/features/steps/admin/groups.rb
%%WWWDIR%%/features/steps/admin/hooks.rb
%%WWWDIR%%/features/steps/admin/labels.rb
%%WWWDIR%%/features/steps/admin/logs.rb
%%WWWDIR%%/features/steps/admin/projects.rb
%%WWWDIR%%/features/steps/admin/settings.rb
%%WWWDIR%%/features/steps/admin/spam_logs.rb
%%WWWDIR%%/features/steps/admin/users.rb
%%WWWDIR%%/features/steps/dashboard/active_tab.rb
%%WWWDIR%%/features/steps/dashboard/archived_projects.rb
%%WWWDIR%%/features/steps/dashboard/dashboard.rb
%%WWWDIR%%/features/steps/dashboard/event_filters.rb
%%WWWDIR%%/features/steps/dashboard/group.rb
%%WWWDIR%%/features/steps/dashboard/help.rb
%%WWWDIR%%/features/steps/dashboard/issues.rb
%%WWWDIR%%/features/steps/dashboard/merge_requests.rb
%%WWWDIR%%/features/steps/dashboard/new_project.rb
%%WWWDIR%%/features/steps/dashboard/shortcuts.rb
%%WWWDIR%%/features/steps/dashboard/starred_projects.rb
%%WWWDIR%%/features/steps/dashboard/todos.rb
%%WWWDIR%%/features/steps/explore/groups.rb
%%WWWDIR%%/features/steps/explore/projects.rb
%%WWWDIR%%/features/steps/group/members.rb
%%WWWDIR%%/features/steps/group/milestones.rb
%%WWWDIR%%/features/steps/groups.rb
%%WWWDIR%%/features/steps/invites.rb
%%WWWDIR%%/features/steps/profile/active_tab.rb
%%WWWDIR%%/features/steps/profile/emails.rb
%%WWWDIR%%/features/steps/profile/notifications.rb
%%WWWDIR%%/features/steps/profile/profile.rb
%%WWWDIR%%/features/steps/profile/ssh_keys.rb
%%WWWDIR%%/features/steps/project/active_tab.rb
%%WWWDIR%%/features/steps/project/archived.rb
%%WWWDIR%%/features/steps/project/badges/build.rb
%%WWWDIR%%/features/steps/project/builds/artifacts.rb
%%WWWDIR%%/features/steps/project/builds/permissions.rb
%%WWWDIR%%/features/steps/project/builds/summary.rb
%%WWWDIR%%/features/steps/project/commits/branches.rb
%%WWWDIR%%/features/steps/project/commits/comments.rb
%%WWWDIR%%/features/steps/project/commits/commits.rb
%%WWWDIR%%/features/steps/project/commits/diff_comments.rb
%%WWWDIR%%/features/steps/project/commits/revert.rb
%%WWWDIR%%/features/steps/project/commits/user_lookup.rb
%%WWWDIR%%/features/steps/project/create.rb
%%WWWDIR%%/features/steps/project/deploy_keys.rb
%%WWWDIR%%/features/steps/project/fork.rb
%%WWWDIR%%/features/steps/project/forked_merge_requests.rb
%%WWWDIR%%/features/steps/project/graph.rb
%%WWWDIR%%/features/steps/project/hooks.rb
%%WWWDIR%%/features/steps/project/issues/award_emoji.rb
%%WWWDIR%%/features/steps/project/issues/filter_labels.rb
%%WWWDIR%%/features/steps/project/issues/issues.rb
%%WWWDIR%%/features/steps/project/issues/labels.rb
%%WWWDIR%%/features/steps/project/issues/milestones.rb
%%WWWDIR%%/features/steps/project/issues/references.rb
%%WWWDIR%%/features/steps/project/labels.rb
%%WWWDIR%%/features/steps/project/merge_requests.rb
%%WWWDIR%%/features/steps/project/merge_requests/acceptance.rb
%%WWWDIR%%/features/steps/project/merge_requests/references.rb
%%WWWDIR%%/features/steps/project/merge_requests/revert.rb
%%WWWDIR%%/features/steps/project/network_graph.rb
%%WWWDIR%%/features/steps/project/project.rb
%%WWWDIR%%/features/steps/project/project_find_file.rb
%%WWWDIR%%/features/steps/project/project_group_links.rb
%%WWWDIR%%/features/steps/project/project_milestone.rb
%%WWWDIR%%/features/steps/project/project_shortcuts.rb
%%WWWDIR%%/features/steps/project/redirects.rb
%%WWWDIR%%/features/steps/project/services.rb
%%WWWDIR%%/features/steps/project/snippets.rb
%%WWWDIR%%/features/steps/project/source/browse_files.rb
%%WWWDIR%%/features/steps/project/source/git_blame.rb
%%WWWDIR%%/features/steps/project/source/markdown_render.rb
%%WWWDIR%%/features/steps/project/source/search_code.rb
%%WWWDIR%%/features/steps/project/star.rb
%%WWWDIR%%/features/steps/project/team_management.rb
%%WWWDIR%%/features/steps/project/wiki.rb
%%WWWDIR%%/features/steps/search.rb
%%WWWDIR%%/features/steps/shared/active_tab.rb
%%WWWDIR%%/features/steps/shared/admin.rb
%%WWWDIR%%/features/steps/shared/authentication.rb
%%WWWDIR%%/features/steps/shared/builds.rb
%%WWWDIR%%/features/steps/shared/diff_note.rb
%%WWWDIR%%/features/steps/shared/group.rb
%%WWWDIR%%/features/steps/shared/issuable.rb
%%WWWDIR%%/features/steps/shared/markdown.rb
%%WWWDIR%%/features/steps/shared/note.rb
%%WWWDIR%%/features/steps/shared/paths.rb
%%WWWDIR%%/features/steps/shared/project.rb
%%WWWDIR%%/features/steps/shared/project_tab.rb
%%WWWDIR%%/features/steps/shared/search.rb
%%WWWDIR%%/features/steps/shared/shortcuts.rb
%%WWWDIR%%/features/steps/shared/sidebar_active_tab.rb
%%WWWDIR%%/features/steps/shared/snippet.rb
%%WWWDIR%%/features/steps/shared/user.rb
%%WWWDIR%%/features/steps/snippet_search.rb
%%WWWDIR%%/features/steps/snippets/discover.rb
%%WWWDIR%%/features/steps/snippets/public_snippets.rb
%%WWWDIR%%/features/steps/snippets/snippets.rb
%%WWWDIR%%/features/steps/snippets/user.rb
%%WWWDIR%%/features/steps/user.rb
%%WWWDIR%%/features/support/capybara.rb
%%WWWDIR%%/features/support/db_cleaner.rb
%%WWWDIR%%/features/support/env.rb
%%WWWDIR%%/features/support/rerun.rb
%%WWWDIR%%/features/support/wait_for_ajax.rb
%%WWWDIR%%/features/user.feature
%%WWWDIR%%/fixtures/emojis/aliases.json
%%WWWDIR%%/fixtures/emojis/digests.json
%%WWWDIR%%/fixtures/emojis/generate_aliases.rb
%%WWWDIR%%/fixtures/emojis/index.json
%%WWWDIR%%/generator_templates/active_record/migration/create_table_migration.rb
%%WWWDIR%%/generator_templates/active_record/migration/migration.rb
%%WWWDIR%%/lib/api/access_requests.rb
%%WWWDIR%%/lib/api/api.rb
%%WWWDIR%%/lib/api/api_guard.rb
%%WWWDIR%%/lib/api/award_emoji.rb
%%WWWDIR%%/lib/api/branches.rb
%%WWWDIR%%/lib/api/builds.rb
%%WWWDIR%%/lib/api/commit_statuses.rb
%%WWWDIR%%/lib/api/commits.rb
%%WWWDIR%%/lib/api/deploy_keys.rb
%%WWWDIR%%/lib/api/deployments.rb
%%WWWDIR%%/lib/api/entities.rb
%%WWWDIR%%/lib/api/environments.rb
%%WWWDIR%%/lib/api/files.rb
%%WWWDIR%%/lib/api/groups.rb
%%WWWDIR%%/lib/api/helpers.rb
%%WWWDIR%%/lib/api/helpers/members_helpers.rb
%%WWWDIR%%/lib/api/internal.rb
%%WWWDIR%%/lib/api/issues.rb
%%WWWDIR%%/lib/api/keys.rb
%%WWWDIR%%/lib/api/labels.rb
%%WWWDIR%%/lib/api/license_templates.rb
%%WWWDIR%%/lib/api/members.rb
%%WWWDIR%%/lib/api/merge_requests.rb
%%WWWDIR%%/lib/api/milestones.rb
%%WWWDIR%%/lib/api/namespaces.rb
%%WWWDIR%%/lib/api/notes.rb
%%WWWDIR%%/lib/api/pipelines.rb
%%WWWDIR%%/lib/api/project_hooks.rb
%%WWWDIR%%/lib/api/project_snippets.rb
%%WWWDIR%%/lib/api/projects.rb
%%WWWDIR%%/lib/api/repositories.rb
%%WWWDIR%%/lib/api/runners.rb
%%WWWDIR%%/lib/api/services.rb
%%WWWDIR%%/lib/api/session.rb
%%WWWDIR%%/lib/api/settings.rb
%%WWWDIR%%/lib/api/sidekiq_metrics.rb
%%WWWDIR%%/lib/api/subscriptions.rb
%%WWWDIR%%/lib/api/system_hooks.rb
%%WWWDIR%%/lib/api/tags.rb
%%WWWDIR%%/lib/api/templates.rb
%%WWWDIR%%/lib/api/todos.rb
%%WWWDIR%%/lib/api/triggers.rb
%%WWWDIR%%/lib/api/users.rb
%%WWWDIR%%/lib/api/variables.rb
%%WWWDIR%%/lib/backup/artifacts.rb
%%WWWDIR%%/lib/backup/builds.rb
%%WWWDIR%%/lib/backup/database.rb
%%WWWDIR%%/lib/backup/files.rb
%%WWWDIR%%/lib/backup/lfs.rb
%%WWWDIR%%/lib/backup/manager.rb
%%WWWDIR%%/lib/backup/registry.rb
%%WWWDIR%%/lib/backup/repository.rb
%%WWWDIR%%/lib/backup/uploads.rb
%%WWWDIR%%/lib/banzai.rb
%%WWWDIR%%/lib/banzai/cross_project_reference.rb
%%WWWDIR%%/lib/banzai/filter.rb
%%WWWDIR%%/lib/banzai/filter/abstract_reference_filter.rb
%%WWWDIR%%/lib/banzai/filter/autolink_filter.rb
%%WWWDIR%%/lib/banzai/filter/blockquote_fence_filter.rb
%%WWWDIR%%/lib/banzai/filter/commit_range_reference_filter.rb
%%WWWDIR%%/lib/banzai/filter/commit_reference_filter.rb
%%WWWDIR%%/lib/banzai/filter/emoji_filter.rb
%%WWWDIR%%/lib/banzai/filter/external_issue_reference_filter.rb
%%WWWDIR%%/lib/banzai/filter/external_link_filter.rb
%%WWWDIR%%/lib/banzai/filter/gollum_tags_filter.rb
%%WWWDIR%%/lib/banzai/filter/image_link_filter.rb
%%WWWDIR%%/lib/banzai/filter/inline_diff_filter.rb
%%WWWDIR%%/lib/banzai/filter/issue_reference_filter.rb
%%WWWDIR%%/lib/banzai/filter/label_reference_filter.rb
%%WWWDIR%%/lib/banzai/filter/markdown_filter.rb
%%WWWDIR%%/lib/banzai/filter/merge_request_reference_filter.rb
%%WWWDIR%%/lib/banzai/filter/milestone_reference_filter.rb
%%WWWDIR%%/lib/banzai/filter/redactor_filter.rb
%%WWWDIR%%/lib/banzai/filter/reference_filter.rb
%%WWWDIR%%/lib/banzai/filter/relative_link_filter.rb
%%WWWDIR%%/lib/banzai/filter/sanitization_filter.rb
%%WWWDIR%%/lib/banzai/filter/snippet_reference_filter.rb
%%WWWDIR%%/lib/banzai/filter/syntax_highlight_filter.rb
%%WWWDIR%%/lib/banzai/filter/table_of_contents_filter.rb
%%WWWDIR%%/lib/banzai/filter/task_list_filter.rb
%%WWWDIR%%/lib/banzai/filter/upload_link_filter.rb
%%WWWDIR%%/lib/banzai/filter/user_reference_filter.rb
%%WWWDIR%%/lib/banzai/filter/video_link_filter.rb
%%WWWDIR%%/lib/banzai/filter/wiki_link_filter.rb
%%WWWDIR%%/lib/banzai/filter/wiki_link_filter/rewriter.rb
%%WWWDIR%%/lib/banzai/filter/yaml_front_matter_filter.rb
%%WWWDIR%%/lib/banzai/filter_array.rb
%%WWWDIR%%/lib/banzai/note_renderer.rb
%%WWWDIR%%/lib/banzai/object_renderer.rb
%%WWWDIR%%/lib/banzai/pipeline.rb
%%WWWDIR%%/lib/banzai/pipeline/atom_pipeline.rb
%%WWWDIR%%/lib/banzai/pipeline/base_pipeline.rb
%%WWWDIR%%/lib/banzai/pipeline/broadcast_message_pipeline.rb
%%WWWDIR%%/lib/banzai/pipeline/combined_pipeline.rb
%%WWWDIR%%/lib/banzai/pipeline/description_pipeline.rb
%%WWWDIR%%/lib/banzai/pipeline/email_pipeline.rb
%%WWWDIR%%/lib/banzai/pipeline/full_pipeline.rb
%%WWWDIR%%/lib/banzai/pipeline/gfm_pipeline.rb
%%WWWDIR%%/lib/banzai/pipeline/note_pipeline.rb
%%WWWDIR%%/lib/banzai/pipeline/plain_markdown_pipeline.rb
%%WWWDIR%%/lib/banzai/pipeline/post_process_pipeline.rb
%%WWWDIR%%/lib/banzai/pipeline/pre_process_pipeline.rb
%%WWWDIR%%/lib/banzai/pipeline/relative_link_pipeline.rb
%%WWWDIR%%/lib/banzai/pipeline/single_line_pipeline.rb
%%WWWDIR%%/lib/banzai/pipeline/wiki_pipeline.rb
%%WWWDIR%%/lib/banzai/querying.rb
%%WWWDIR%%/lib/banzai/redactor.rb
%%WWWDIR%%/lib/banzai/reference_extractor.rb
%%WWWDIR%%/lib/banzai/reference_parser.rb
%%WWWDIR%%/lib/banzai/reference_parser/base_parser.rb
%%WWWDIR%%/lib/banzai/reference_parser/commit_parser.rb
%%WWWDIR%%/lib/banzai/reference_parser/commit_range_parser.rb
%%WWWDIR%%/lib/banzai/reference_parser/external_issue_parser.rb
%%WWWDIR%%/lib/banzai/reference_parser/issue_parser.rb
%%WWWDIR%%/lib/banzai/reference_parser/label_parser.rb
%%WWWDIR%%/lib/banzai/reference_parser/merge_request_parser.rb
%%WWWDIR%%/lib/banzai/reference_parser/milestone_parser.rb
%%WWWDIR%%/lib/banzai/reference_parser/snippet_parser.rb
%%WWWDIR%%/lib/banzai/reference_parser/user_parser.rb
%%WWWDIR%%/lib/banzai/renderer.rb
%%WWWDIR%%/lib/ci/ansi2html.rb
%%WWWDIR%%/lib/ci/api/api.rb
%%WWWDIR%%/lib/ci/api/builds.rb
%%WWWDIR%%/lib/ci/api/entities.rb
%%WWWDIR%%/lib/ci/api/helpers.rb
%%WWWDIR%%/lib/ci/api/runners.rb
%%WWWDIR%%/lib/ci/api/triggers.rb
%%WWWDIR%%/lib/ci/charts.rb
%%WWWDIR%%/lib/ci/gitlab_ci_yaml_processor.rb
%%WWWDIR%%/lib/ci/model.rb
%%WWWDIR%%/lib/ci/version_info.rb
%%WWWDIR%%/lib/container_registry/blob.rb
%%WWWDIR%%/lib/container_registry/client.rb
%%WWWDIR%%/lib/container_registry/config.rb
%%WWWDIR%%/lib/container_registry/registry.rb
%%WWWDIR%%/lib/container_registry/repository.rb
%%WWWDIR%%/lib/container_registry/tag.rb
%%WWWDIR%%/lib/disable_email_interceptor.rb
%%WWWDIR%%/lib/event_filter.rb
%%WWWDIR%%/lib/extracts_path.rb
%%WWWDIR%%/lib/file_size_validator.rb
%%WWWDIR%%/lib/file_streamer.rb
%%WWWDIR%%/lib/gitlab.rb
%%WWWDIR%%/lib/gitlab/access.rb
%%WWWDIR%%/lib/gitlab/app_logger.rb
%%WWWDIR%%/lib/gitlab/asciidoc.rb
%%WWWDIR%%/lib/gitlab/auth.rb
%%WWWDIR%%/lib/gitlab/auth/ip_rate_limiter.rb
%%WWWDIR%%/lib/gitlab/award_emoji.rb
%%WWWDIR%%/lib/gitlab/backend/shell.rb
%%WWWDIR%%/lib/gitlab/backend/shell_adapter.rb
%%WWWDIR%%/lib/gitlab/badge/base.rb
%%WWWDIR%%/lib/gitlab/badge/build/metadata.rb
%%WWWDIR%%/lib/gitlab/badge/build/status.rb
%%WWWDIR%%/lib/gitlab/badge/build/template.rb
%%WWWDIR%%/lib/gitlab/badge/coverage/metadata.rb
%%WWWDIR%%/lib/gitlab/badge/coverage/report.rb
%%WWWDIR%%/lib/gitlab/badge/coverage/template.rb
%%WWWDIR%%/lib/gitlab/badge/metadata.rb
%%WWWDIR%%/lib/gitlab/badge/template.rb
%%WWWDIR%%/lib/gitlab/bitbucket_import.rb
%%WWWDIR%%/lib/gitlab/bitbucket_import/client.rb
%%WWWDIR%%/lib/gitlab/bitbucket_import/importer.rb
%%WWWDIR%%/lib/gitlab/bitbucket_import/key_adder.rb
%%WWWDIR%%/lib/gitlab/bitbucket_import/key_deleter.rb
%%WWWDIR%%/lib/gitlab/bitbucket_import/project_creator.rb
%%WWWDIR%%/lib/gitlab/blame.rb
%%WWWDIR%%/lib/gitlab/changes_list.rb
%%WWWDIR%%/lib/gitlab/checks/change_access.rb
%%WWWDIR%%/lib/gitlab/checks/force_push.rb
%%WWWDIR%%/lib/gitlab/checks/matching_merge_request.rb
%%WWWDIR%%/lib/gitlab/ci/build/artifacts/metadata.rb
%%WWWDIR%%/lib/gitlab/ci/build/artifacts/metadata/entry.rb
%%WWWDIR%%/lib/gitlab/ci/config.rb
%%WWWDIR%%/lib/gitlab/ci/config/loader.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/artifacts.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/attributable.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/boolean.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/cache.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/commands.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/configurable.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/entry.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/factory.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/global.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/hidden.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/image.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/job.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/jobs.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/key.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/legacy_validation_helpers.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/null.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/paths.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/script.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/services.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/stage.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/stages.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/trigger.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/undefined.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/validatable.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/validator.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/validators.rb
%%WWWDIR%%/lib/gitlab/ci/config/node/variables.rb
%%WWWDIR%%/lib/gitlab/closing_issue_extractor.rb
%%WWWDIR%%/lib/gitlab/color_schemes.rb
%%WWWDIR%%/lib/gitlab/config_helper.rb
%%WWWDIR%%/lib/gitlab/conflict/file.rb
%%WWWDIR%%/lib/gitlab/conflict/file_collection.rb
%%WWWDIR%%/lib/gitlab/conflict/parser.rb
%%WWWDIR%%/lib/gitlab/contributions_calendar.rb
%%WWWDIR%%/lib/gitlab/contributor.rb
%%WWWDIR%%/lib/gitlab/current_settings.rb
%%WWWDIR%%/lib/gitlab/data_builder/build.rb
%%WWWDIR%%/lib/gitlab/data_builder/note.rb
%%WWWDIR%%/lib/gitlab/data_builder/pipeline.rb
%%WWWDIR%%/lib/gitlab/data_builder/push.rb
%%WWWDIR%%/lib/gitlab/database.rb
%%WWWDIR%%/lib/gitlab/database/migration_helpers.rb
%%WWWDIR%%/lib/gitlab/devise_failure.rb
%%WWWDIR%%/lib/gitlab/diff/diff_refs.rb
%%WWWDIR%%/lib/gitlab/diff/file.rb
%%WWWDIR%%/lib/gitlab/diff/file_collection/base.rb
%%WWWDIR%%/lib/gitlab/diff/file_collection/commit.rb
%%WWWDIR%%/lib/gitlab/diff/file_collection/compare.rb
%%WWWDIR%%/lib/gitlab/diff/file_collection/merge_request.rb
%%WWWDIR%%/lib/gitlab/diff/highlight.rb
%%WWWDIR%%/lib/gitlab/diff/inline_diff.rb
%%WWWDIR%%/lib/gitlab/diff/inline_diff_marker.rb
%%WWWDIR%%/lib/gitlab/diff/line.rb
%%WWWDIR%%/lib/gitlab/diff/line_code.rb
%%WWWDIR%%/lib/gitlab/diff/line_mapper.rb
%%WWWDIR%%/lib/gitlab/diff/parallel_diff.rb
%%WWWDIR%%/lib/gitlab/diff/parser.rb
%%WWWDIR%%/lib/gitlab/diff/position.rb
%%WWWDIR%%/lib/gitlab/diff/position_tracer.rb
%%WWWDIR%%/lib/gitlab/downtime_check.rb
%%WWWDIR%%/lib/gitlab/downtime_check/message.rb
%%WWWDIR%%/lib/gitlab/email/attachment_uploader.rb
%%WWWDIR%%/lib/gitlab/email/handler.rb
%%WWWDIR%%/lib/gitlab/email/handler/base_handler.rb
%%WWWDIR%%/lib/gitlab/email/handler/create_issue_handler.rb
%%WWWDIR%%/lib/gitlab/email/handler/create_note_handler.rb
%%WWWDIR%%/lib/gitlab/email/message/repository_push.rb
%%WWWDIR%%/lib/gitlab/email/receiver.rb
%%WWWDIR%%/lib/gitlab/email/reply_parser.rb
%%WWWDIR%%/lib/gitlab/emoji.rb
%%WWWDIR%%/lib/gitlab/exclusive_lease.rb
%%WWWDIR%%/lib/gitlab/fogbugz_import/client.rb
%%WWWDIR%%/lib/gitlab/fogbugz_import/importer.rb
%%WWWDIR%%/lib/gitlab/fogbugz_import/project_creator.rb
%%WWWDIR%%/lib/gitlab/fogbugz_import/repository.rb
%%WWWDIR%%/lib/gitlab/gfm/reference_rewriter.rb
%%WWWDIR%%/lib/gitlab/gfm/uploads_rewriter.rb
%%WWWDIR%%/lib/gitlab/git.rb
%%WWWDIR%%/lib/gitlab/git/hook.rb
%%WWWDIR%%/lib/gitlab/git_access.rb
%%WWWDIR%%/lib/gitlab/git_access_status.rb
%%WWWDIR%%/lib/gitlab/git_access_wiki.rb
%%WWWDIR%%/lib/gitlab/git_logger.rb
%%WWWDIR%%/lib/gitlab/git_post_receive.rb
%%WWWDIR%%/lib/gitlab/git_ref_validator.rb
%%WWWDIR%%/lib/gitlab/github_import/base_formatter.rb
%%WWWDIR%%/lib/gitlab/github_import/branch_formatter.rb
%%WWWDIR%%/lib/gitlab/github_import/client.rb
%%WWWDIR%%/lib/gitlab/github_import/comment_formatter.rb
%%WWWDIR%%/lib/gitlab/github_import/importer.rb
%%WWWDIR%%/lib/gitlab/github_import/issue_formatter.rb
%%WWWDIR%%/lib/gitlab/github_import/label_formatter.rb
%%WWWDIR%%/lib/gitlab/github_import/milestone_formatter.rb
%%WWWDIR%%/lib/gitlab/github_import/project_creator.rb
%%WWWDIR%%/lib/gitlab/github_import/pull_request_formatter.rb
%%WWWDIR%%/lib/gitlab/github_import/wiki_formatter.rb
%%WWWDIR%%/lib/gitlab/gitlab_import/client.rb
%%WWWDIR%%/lib/gitlab/gitlab_import/importer.rb
%%WWWDIR%%/lib/gitlab/gitlab_import/project_creator.rb
%%WWWDIR%%/lib/gitlab/gl_id.rb
%%WWWDIR%%/lib/gitlab/gon_helper.rb
%%WWWDIR%%/lib/gitlab/google_code_import/client.rb
%%WWWDIR%%/lib/gitlab/google_code_import/importer.rb
%%WWWDIR%%/lib/gitlab/google_code_import/project_creator.rb
%%WWWDIR%%/lib/gitlab/google_code_import/repository.rb
%%WWWDIR%%/lib/gitlab/graphs/commits.rb
%%WWWDIR%%/lib/gitlab/highlight.rb
%%WWWDIR%%/lib/gitlab/identifier.rb
%%WWWDIR%%/lib/gitlab/import_export.rb
%%WWWDIR%%/lib/gitlab/import_export/attributes_finder.rb
%%WWWDIR%%/lib/gitlab/import_export/avatar_restorer.rb
%%WWWDIR%%/lib/gitlab/import_export/avatar_saver.rb
%%WWWDIR%%/lib/gitlab/import_export/command_line_util.rb
%%WWWDIR%%/lib/gitlab/import_export/error.rb
%%WWWDIR%%/lib/gitlab/import_export/file_importer.rb
%%WWWDIR%%/lib/gitlab/import_export/import_export.yml
%%WWWDIR%%/lib/gitlab/import_export/importer.rb
%%WWWDIR%%/lib/gitlab/import_export/json_hash_builder.rb
%%WWWDIR%%/lib/gitlab/import_export/members_mapper.rb
%%WWWDIR%%/lib/gitlab/import_export/project_creator.rb
%%WWWDIR%%/lib/gitlab/import_export/project_tree_restorer.rb
%%WWWDIR%%/lib/gitlab/import_export/project_tree_saver.rb
%%WWWDIR%%/lib/gitlab/import_export/reader.rb
%%WWWDIR%%/lib/gitlab/import_export/relation_factory.rb
%%WWWDIR%%/lib/gitlab/import_export/repo_restorer.rb
%%WWWDIR%%/lib/gitlab/import_export/repo_saver.rb
%%WWWDIR%%/lib/gitlab/import_export/saver.rb
%%WWWDIR%%/lib/gitlab/import_export/shared.rb
%%WWWDIR%%/lib/gitlab/import_export/uploads_restorer.rb
%%WWWDIR%%/lib/gitlab/import_export/uploads_saver.rb
%%WWWDIR%%/lib/gitlab/import_export/version_checker.rb
%%WWWDIR%%/lib/gitlab/import_export/version_saver.rb
%%WWWDIR%%/lib/gitlab/import_export/wiki_repo_saver.rb
%%WWWDIR%%/lib/gitlab/import_formatter.rb
%%WWWDIR%%/lib/gitlab/import_sources.rb
%%WWWDIR%%/lib/gitlab/incoming_email.rb
%%WWWDIR%%/lib/gitlab/issues_labels.rb
%%WWWDIR%%/lib/gitlab/key_fingerprint.rb
%%WWWDIR%%/lib/gitlab/lazy.rb
%%WWWDIR%%/lib/gitlab/ldap/access.rb
%%WWWDIR%%/lib/gitlab/ldap/adapter.rb
%%WWWDIR%%/lib/gitlab/ldap/auth_hash.rb
%%WWWDIR%%/lib/gitlab/ldap/authentication.rb
%%WWWDIR%%/lib/gitlab/ldap/config.rb
%%WWWDIR%%/lib/gitlab/ldap/person.rb
%%WWWDIR%%/lib/gitlab/ldap/user.rb
%%WWWDIR%%/lib/gitlab/logger.rb
%%WWWDIR%%/lib/gitlab/mail_room.rb
%%WWWDIR%%/lib/gitlab/markdown/pipeline.rb
%%WWWDIR%%/lib/gitlab/markup_helper.rb
%%WWWDIR%%/lib/gitlab/metrics.rb
%%WWWDIR%%/lib/gitlab/metrics/delta.rb
%%WWWDIR%%/lib/gitlab/metrics/instrumentation.rb
%%WWWDIR%%/lib/gitlab/metrics/method_call.rb
%%WWWDIR%%/lib/gitlab/metrics/metric.rb
%%WWWDIR%%/lib/gitlab/metrics/rack_middleware.rb
%%WWWDIR%%/lib/gitlab/metrics/sampler.rb
%%WWWDIR%%/lib/gitlab/metrics/sidekiq_middleware.rb
%%WWWDIR%%/lib/gitlab/metrics/subscribers/action_view.rb
%%WWWDIR%%/lib/gitlab/metrics/subscribers/active_record.rb
%%WWWDIR%%/lib/gitlab/metrics/subscribers/rails_cache.rb
%%WWWDIR%%/lib/gitlab/metrics/system.rb
%%WWWDIR%%/lib/gitlab/metrics/transaction.rb
%%WWWDIR%%/lib/gitlab/middleware/go.rb
%%WWWDIR%%/lib/gitlab/middleware/rails_queue_duration.rb
%%WWWDIR%%/lib/gitlab/middleware/static.rb
%%WWWDIR%%/lib/gitlab/o_auth/auth_hash.rb
%%WWWDIR%%/lib/gitlab/o_auth/provider.rb
%%WWWDIR%%/lib/gitlab/o_auth/session.rb
%%WWWDIR%%/lib/gitlab/o_auth/user.rb
%%WWWDIR%%/lib/gitlab/other_markup.rb
%%WWWDIR%%/lib/gitlab/popen.rb
%%WWWDIR%%/lib/gitlab/production_logger.rb
%%WWWDIR%%/lib/gitlab/project_search_results.rb
%%WWWDIR%%/lib/gitlab/protocol_access.rb
%%WWWDIR%%/lib/gitlab/recaptcha.rb
%%WWWDIR%%/lib/gitlab/redis.rb
%%WWWDIR%%/lib/gitlab/reference_extractor.rb
%%WWWDIR%%/lib/gitlab/regex.rb
%%WWWDIR%%/lib/gitlab/repository_check_logger.rb
%%WWWDIR%%/lib/gitlab/request_profiler.rb
%%WWWDIR%%/lib/gitlab/request_profiler/middleware.rb
%%WWWDIR%%/lib/gitlab/request_profiler/profile.rb
%%WWWDIR%%/lib/gitlab/routing.rb
%%WWWDIR%%/lib/gitlab/saml/auth_hash.rb
%%WWWDIR%%/lib/gitlab/saml/config.rb
%%WWWDIR%%/lib/gitlab/saml/user.rb
%%WWWDIR%%/lib/gitlab/sanitizers/svg.rb
%%WWWDIR%%/lib/gitlab/sanitizers/svg/whitelist.rb
%%WWWDIR%%/lib/gitlab/search_results.rb
%%WWWDIR%%/lib/gitlab/seeder.rb
%%WWWDIR%%/lib/gitlab/sherlock.rb
%%WWWDIR%%/lib/gitlab/sherlock/collection.rb
%%WWWDIR%%/lib/gitlab/sherlock/file_sample.rb
%%WWWDIR%%/lib/gitlab/sherlock/line_profiler.rb
%%WWWDIR%%/lib/gitlab/sherlock/line_sample.rb
%%WWWDIR%%/lib/gitlab/sherlock/location.rb
%%WWWDIR%%/lib/gitlab/sherlock/middleware.rb
%%WWWDIR%%/lib/gitlab/sherlock/query.rb
%%WWWDIR%%/lib/gitlab/sherlock/transaction.rb
%%WWWDIR%%/lib/gitlab/sidekiq_logger.rb
%%WWWDIR%%/lib/gitlab/sidekiq_middleware/arguments_logger.rb
%%WWWDIR%%/lib/gitlab/sidekiq_middleware/memory_killer.rb
%%WWWDIR%%/lib/gitlab/sidekiq_middleware/request_store_middleware.rb
%%WWWDIR%%/lib/gitlab/slash_commands/command_definition.rb
%%WWWDIR%%/lib/gitlab/slash_commands/dsl.rb
%%WWWDIR%%/lib/gitlab/slash_commands/extractor.rb
%%WWWDIR%%/lib/gitlab/snippet_search_results.rb
%%WWWDIR%%/lib/gitlab/sql/union.rb
%%WWWDIR%%/lib/gitlab/template/base_template.rb
%%WWWDIR%%/lib/gitlab/template/finders/base_template_finder.rb
%%WWWDIR%%/lib/gitlab/template/finders/global_template_finder.rb
%%WWWDIR%%/lib/gitlab/template/finders/repo_template_finder.rb
%%WWWDIR%%/lib/gitlab/template/gitignore_template.rb
%%WWWDIR%%/lib/gitlab/template/gitlab_ci_yml_template.rb
%%WWWDIR%%/lib/gitlab/template/issue_template.rb
%%WWWDIR%%/lib/gitlab/template/merge_request_template.rb
%%WWWDIR%%/lib/gitlab/themes.rb
%%WWWDIR%%/lib/gitlab/timeless.rb
%%WWWDIR%%/lib/gitlab/upgrader.rb
%%WWWDIR%%/lib/gitlab/uploads_transfer.rb
%%WWWDIR%%/lib/gitlab/url_builder.rb
%%WWWDIR%%/lib/gitlab/url_sanitizer.rb
%%WWWDIR%%/lib/gitlab/user_access.rb
%%WWWDIR%%/lib/gitlab/utils.rb
%%WWWDIR%%/lib/gitlab/version_info.rb
%%WWWDIR%%/lib/gitlab/visibility_level.rb
%%WWWDIR%%/lib/gitlab/workhorse.rb
%%WWWDIR%%/lib/gt_one_coercion.rb
%%WWWDIR%%/lib/json_web_token/rsa_token.rb
%%WWWDIR%%/lib/json_web_token/token.rb
%%WWWDIR%%/lib/omni_auth/request_forgery_protection.rb
%%WWWDIR%%/lib/repository_cache.rb
%%WWWDIR%%/lib/rouge/formatters/html_gitlab.rb
%%WWWDIR%%/lib/static_model.rb
%%WWWDIR%%/lib/support/deploy/deploy.sh
%%WWWDIR%%/lib/support/init.d/gitlab
%%WWWDIR%%/lib/support/init.d/gitlab.default.example
%%WWWDIR%%/lib/support/logrotate/gitlab
%%WWWDIR%%/lib/support/nginx/registry-ssl
%%WWWDIR%%/lib/tasks/brakeman.rake
%%WWWDIR%%/lib/tasks/cache.rake
%%WWWDIR%%/lib/tasks/ci/cleanup.rake
%%WWWDIR%%/lib/tasks/dev.rake
%%WWWDIR%%/lib/tasks/downtime_check.rake
%%WWWDIR%%/lib/tasks/flay.rake
%%WWWDIR%%/lib/tasks/flog.rake
%%WWWDIR%%/lib/tasks/gemojione.rake
%%WWWDIR%%/lib/tasks/gitlab/backup.rake
%%WWWDIR%%/lib/tasks/gitlab/bulk_add_permission.rake
%%WWWDIR%%/lib/tasks/gitlab/check.rake
%%WWWDIR%%/lib/tasks/gitlab/cleanup.rake
%%WWWDIR%%/lib/tasks/gitlab/db.rake
%%WWWDIR%%/lib/tasks/gitlab/generate_docs.rake
%%WWWDIR%%/lib/tasks/gitlab/git.rake
%%WWWDIR%%/lib/tasks/gitlab/import.rake
%%WWWDIR%%/lib/tasks/gitlab/import_export.rake
%%WWWDIR%%/lib/tasks/gitlab/info.rake
%%WWWDIR%%/lib/tasks/gitlab/list_repos.rake
%%WWWDIR%%/lib/tasks/gitlab/setup.rake
%%WWWDIR%%/lib/tasks/gitlab/shell.rake
%%WWWDIR%%/lib/tasks/gitlab/sidekiq.rake
%%WWWDIR%%/lib/tasks/gitlab/task_helpers.rake
%%WWWDIR%%/lib/tasks/gitlab/test.rake
%%WWWDIR%%/lib/tasks/gitlab/track_deployment.rake
%%WWWDIR%%/lib/tasks/gitlab/two_factor.rake
%%WWWDIR%%/lib/tasks/gitlab/update_commit_count.rake
%%WWWDIR%%/lib/tasks/gitlab/update_templates.rake
%%WWWDIR%%/lib/tasks/gitlab/web_hook.rake
%%WWWDIR%%/lib/tasks/grape.rake
%%WWWDIR%%/lib/tasks/migrate/add_limits_mysql.rake
%%WWWDIR%%/lib/tasks/migrate/migrate_iids.rake
%%WWWDIR%%/lib/tasks/migrate/setup_postgresql.rake
%%WWWDIR%%/lib/tasks/rubocop.rake
%%WWWDIR%%/lib/tasks/scss-lint.rake
%%WWWDIR%%/lib/tasks/services.rake
%%WWWDIR%%/lib/tasks/setup.rake
%%WWWDIR%%/lib/tasks/sidekiq.rake
%%WWWDIR%%/lib/tasks/spec.rake
%%WWWDIR%%/lib/tasks/spinach.rake
%%WWWDIR%%/lib/tasks/test.rake
%%WWWDIR%%/lib/unfold_form.rb
%%WWWDIR%%/lib/uploaded_file.rb
%%WWWDIR%%/lib/version_check.rb
%%WWWDIR%%/public/404.html
%%WWWDIR%%/public/422.html
%%WWWDIR%%/public/500.html
%%WWWDIR%%/public/502.html
%%WWWDIR%%/public/503.html
%%WWWDIR%%/public/apple-touch-icon-precomposed.png
%%WWWDIR%%/public/apple-touch-icon.png
%%WWWDIR%%/public/ci/build-canceled.svg
%%WWWDIR%%/public/ci/build-failed.svg
%%WWWDIR%%/public/ci/build-pending.svg
%%WWWDIR%%/public/ci/build-running.svg
%%WWWDIR%%/public/ci/build-skipped.svg
%%WWWDIR%%/public/ci/build-success.svg
%%WWWDIR%%/public/ci/build-unknown.svg
%%WWWDIR%%/public/ci/favicon.ico
%%WWWDIR%%/public/deploy.html
%%WWWDIR%%/public/favicon.ico
%%WWWDIR%%/public/robots.txt
%%WWWDIR%%/rubocop/cop/migration/add_index.rb
%%WWWDIR%%/rubocop/cop/migration/column_with_default.rb
%%WWWDIR%%/rubocop/migration_helpers.rb
%%WWWDIR%%/rubocop/rubocop.rb
%%WWWDIR%%/scripts/lint-doc.sh
%%WWWDIR%%/scripts/merge-reports
%%WWWDIR%%/scripts/merge-simplecov
%%WWWDIR%%/scripts/notify_slack.sh
%%WWWDIR%%/scripts/prepare_build.sh
%%WWWDIR%%/spec/config/mail_room_spec.rb
%%WWWDIR%%/spec/controllers/abuse_reports_controller_spec.rb
%%WWWDIR%%/spec/controllers/admin/groups_controller_spec.rb
%%WWWDIR%%/spec/controllers/admin/identities_controller_spec.rb
%%WWWDIR%%/spec/controllers/admin/impersonations_controller_spec.rb
%%WWWDIR%%/spec/controllers/admin/projects_controller_spec.rb
%%WWWDIR%%/spec/controllers/admin/spam_logs_controller_spec.rb
%%WWWDIR%%/spec/controllers/admin/users_controller_spec.rb
%%WWWDIR%%/spec/controllers/application_controller_spec.rb
%%WWWDIR%%/spec/controllers/autocomplete_controller_spec.rb
%%WWWDIR%%/spec/controllers/blob_controller_spec.rb
%%WWWDIR%%/spec/controllers/ci/projects_controller_spec.rb
%%WWWDIR%%/spec/controllers/groups/avatars_controller_spec.rb
%%WWWDIR%%/spec/controllers/groups/group_members_controller_spec.rb
%%WWWDIR%%/spec/controllers/groups/milestones_controller_spec.rb
%%WWWDIR%%/spec/controllers/groups_controller_spec.rb
%%WWWDIR%%/spec/controllers/health_check_controller_spec.rb
%%WWWDIR%%/spec/controllers/help_controller_spec.rb
%%WWWDIR%%/spec/controllers/import/bitbucket_controller_spec.rb
%%WWWDIR%%/spec/controllers/import/fogbugz_controller_spec.rb
%%WWWDIR%%/spec/controllers/import/github_controller_spec.rb
%%WWWDIR%%/spec/controllers/import/gitlab_controller_spec.rb
%%WWWDIR%%/spec/controllers/import/google_code_controller_spec.rb
%%WWWDIR%%/spec/controllers/invites_controller_spec.rb
%%WWWDIR%%/spec/controllers/namespaces_controller_spec.rb
%%WWWDIR%%/spec/controllers/notification_settings_controller_spec.rb
%%WWWDIR%%/spec/controllers/oauth/applications_controller_spec.rb
%%WWWDIR%%/spec/controllers/profiles/accounts_controller_spec.rb
%%WWWDIR%%/spec/controllers/profiles/avatars_controller_spec.rb
%%WWWDIR%%/spec/controllers/profiles/keys_controller_spec.rb
%%WWWDIR%%/spec/controllers/profiles/preferences_controller_spec.rb
%%WWWDIR%%/spec/controllers/profiles/two_factor_auths_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/avatars_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/blame_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/blob_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/boards/issues_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/boards/lists_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/boards_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/branches_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/commit_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/commits_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/compare_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/discussions_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/environments_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/find_file_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/forks_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/group_links_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/imports_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/issues_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/labels_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/merge_requests_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/milestones_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/notes_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/project_members_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/protected_branches_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/raw_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/refs_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/repositories_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/services_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/snippets_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/tags_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/templates_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/todo_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/tree_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects/uploads_controller_spec.rb
%%WWWDIR%%/spec/controllers/projects_controller_spec.rb
%%WWWDIR%%/spec/controllers/registrations_controller_spec.rb
%%WWWDIR%%/spec/controllers/root_controller_spec.rb
%%WWWDIR%%/spec/controllers/sent_notifications_controller_spec.rb
%%WWWDIR%%/spec/controllers/sessions_controller_spec.rb
%%WWWDIR%%/spec/controllers/snippets_controller_spec.rb
%%WWWDIR%%/spec/controllers/uploads_controller_spec.rb
%%WWWDIR%%/spec/controllers/users_controller_spec.rb
%%WWWDIR%%/spec/factories/abuse_reports.rb
%%WWWDIR%%/spec/factories/appearances.rb
%%WWWDIR%%/spec/factories/award_emoji.rb
%%WWWDIR%%/spec/factories/boards.rb
%%WWWDIR%%/spec/factories/broadcast_messages.rb
%%WWWDIR%%/spec/factories/ci/builds.rb
%%WWWDIR%%/spec/factories/ci/pipelines.rb
%%WWWDIR%%/spec/factories/ci/runner_projects.rb
%%WWWDIR%%/spec/factories/ci/runners.rb
%%WWWDIR%%/spec/factories/ci/trigger_requests.rb
%%WWWDIR%%/spec/factories/ci/triggers.rb
%%WWWDIR%%/spec/factories/ci/variables.rb
%%WWWDIR%%/spec/factories/commit_statuses.rb
%%WWWDIR%%/spec/factories/commits.rb
%%WWWDIR%%/spec/factories/deploy_keys_projects.rb
%%WWWDIR%%/spec/factories/deployments.rb
%%WWWDIR%%/spec/factories/emails.rb
%%WWWDIR%%/spec/factories/environments.rb
%%WWWDIR%%/spec/factories/events.rb
%%WWWDIR%%/spec/factories/file_uploader.rb
%%WWWDIR%%/spec/factories/forked_project_links.rb
%%WWWDIR%%/spec/factories/group_members.rb
%%WWWDIR%%/spec/factories/groups.rb
%%WWWDIR%%/spec/factories/identities.rb
%%WWWDIR%%/spec/factories/issues.rb
%%WWWDIR%%/spec/factories/keys.rb
%%WWWDIR%%/spec/factories/label_links.rb
%%WWWDIR%%/spec/factories/labels.rb
%%WWWDIR%%/spec/factories/lfs_objects.rb
%%WWWDIR%%/spec/factories/lfs_objects_projects.rb
%%WWWDIR%%/spec/factories/lists.rb
%%WWWDIR%%/spec/factories/merge_requests.rb
%%WWWDIR%%/spec/factories/milestones.rb
%%WWWDIR%%/spec/factories/namespaces.rb
%%WWWDIR%%/spec/factories/notes.rb
%%WWWDIR%%/spec/factories/notification_settings.rb
%%WWWDIR%%/spec/factories/oauth_access_tokens.rb
%%WWWDIR%%/spec/factories/oauth_applications.rb
%%WWWDIR%%/spec/factories/personal_access_tokens.rb
%%WWWDIR%%/spec/factories/personal_snippets.rb
%%WWWDIR%%/spec/factories/project_group_links.rb
%%WWWDIR%%/spec/factories/project_hooks.rb
%%WWWDIR%%/spec/factories/project_members.rb
%%WWWDIR%%/spec/factories/project_snippets.rb
%%WWWDIR%%/spec/factories/project_wikis.rb
%%WWWDIR%%/spec/factories/projects.rb
%%WWWDIR%%/spec/factories/protected_branches.rb
%%WWWDIR%%/spec/factories/releases.rb
%%WWWDIR%%/spec/factories/sent_notifications.rb
%%WWWDIR%%/spec/factories/service_hooks.rb
%%WWWDIR%%/spec/factories/services.rb
%%WWWDIR%%/spec/factories/snippets.rb
%%WWWDIR%%/spec/factories/spam_logs.rb
%%WWWDIR%%/spec/factories/system_hooks.rb
%%WWWDIR%%/spec/factories/todos.rb
%%WWWDIR%%/spec/factories/u2f_registrations.rb
%%WWWDIR%%/spec/factories/user_agent_details.rb
%%WWWDIR%%/spec/factories/users.rb
%%WWWDIR%%/spec/factories/wiki_pages.rb
%%WWWDIR%%/spec/factories_spec.rb
%%WWWDIR%%/spec/features/admin/admin_abuse_reports_spec.rb
%%WWWDIR%%/spec/features/admin/admin_builds_spec.rb
%%WWWDIR%%/spec/features/admin/admin_disables_git_access_protocol_spec.rb
%%WWWDIR%%/spec/features/admin/admin_disables_two_factor_spec.rb
%%WWWDIR%%/spec/features/admin/admin_health_check_spec.rb
%%WWWDIR%%/spec/features/admin/admin_hooks_spec.rb
%%WWWDIR%%/spec/features/admin/admin_projects_spec.rb
%%WWWDIR%%/spec/features/admin/admin_runners_spec.rb
%%WWWDIR%%/spec/features/admin/admin_system_info_spec.rb
%%WWWDIR%%/spec/features/admin/admin_users_spec.rb
%%WWWDIR%%/spec/features/admin/admin_uses_repository_checks_spec.rb
%%WWWDIR%%/spec/features/atom/dashboard_issues_spec.rb
%%WWWDIR%%/spec/features/atom/dashboard_spec.rb
%%WWWDIR%%/spec/features/atom/issues_spec.rb
%%WWWDIR%%/spec/features/atom/users_spec.rb
%%WWWDIR%%/spec/features/boards/boards_spec.rb
%%WWWDIR%%/spec/features/builds_spec.rb
%%WWWDIR%%/spec/features/ci_lint_spec.rb
%%WWWDIR%%/spec/features/commits_spec.rb
%%WWWDIR%%/spec/features/compare_spec.rb
%%WWWDIR%%/spec/features/container_registry_spec.rb
%%WWWDIR%%/spec/features/dashboard/datetime_on_tooltips_spec.rb
%%WWWDIR%%/spec/features/dashboard/label_filter_spec.rb
%%WWWDIR%%/spec/features/dashboard/user_filters_projects_spec.rb
%%WWWDIR%%/spec/features/dashboard_issues_spec.rb
%%WWWDIR%%/spec/features/dashboard_milestones_spec.rb
%%WWWDIR%%/spec/features/environments_spec.rb
%%WWWDIR%%/spec/features/expand_collapse_diffs_spec.rb
%%WWWDIR%%/spec/features/gitlab_flavored_markdown_spec.rb
%%WWWDIR%%/spec/features/groups/members/last_owner_cannot_leave_group_spec.rb
%%WWWDIR%%/spec/features/groups/members/member_cannot_request_access_to_his_project_spec.rb
%%WWWDIR%%/spec/features/groups/members/member_leaves_group_spec.rb
%%WWWDIR%%/spec/features/groups/members/owner_manages_access_requests_spec.rb
%%WWWDIR%%/spec/features/groups/members/user_requests_access_spec.rb
%%WWWDIR%%/spec/features/groups_spec.rb
%%WWWDIR%%/spec/features/help_pages_spec.rb
%%WWWDIR%%/spec/features/issuables/default_sort_order_spec.rb
%%WWWDIR%%/spec/features/issues/award_emoji_spec.rb
%%WWWDIR%%/spec/features/issues/award_spec.rb
%%WWWDIR%%/spec/features/issues/bulk_assignment_labels_spec.rb
%%WWWDIR%%/spec/features/issues/filter_by_labels_spec.rb
%%WWWDIR%%/spec/features/issues/filter_by_milestone_spec.rb
%%WWWDIR%%/spec/features/issues/filter_issues_spec.rb
%%WWWDIR%%/spec/features/issues/issue_sidebar_spec.rb
%%WWWDIR%%/spec/features/issues/move_spec.rb
%%WWWDIR%%/spec/features/issues/new_branch_button_spec.rb
%%WWWDIR%%/spec/features/issues/note_polling_spec.rb
%%WWWDIR%%/spec/features/issues/todo_spec.rb
%%WWWDIR%%/spec/features/issues/update_issues_spec.rb
%%WWWDIR%%/spec/features/issues/user_uses_slash_commands_spec.rb
%%WWWDIR%%/spec/features/issues_spec.rb
%%WWWDIR%%/spec/features/login_spec.rb
%%WWWDIR%%/spec/features/markdown_spec.rb
%%WWWDIR%%/spec/features/merge_requests/award_spec.rb
%%WWWDIR%%/spec/features/merge_requests/cherry_pick_spec.rb
%%WWWDIR%%/spec/features/merge_requests/conflicts_spec.rb
%%WWWDIR%%/spec/features/merge_requests/create_new_mr_spec.rb
%%WWWDIR%%/spec/features/merge_requests/created_from_fork_spec.rb
%%WWWDIR%%/spec/features/merge_requests/diff_notes_resolve_spec.rb
%%WWWDIR%%/spec/features/merge_requests/diff_notes_spec.rb
%%WWWDIR%%/spec/features/merge_requests/diffs_spec.rb
%%WWWDIR%%/spec/features/merge_requests/edit_mr_spec.rb
%%WWWDIR%%/spec/features/merge_requests/filter_by_milestone_spec.rb
%%WWWDIR%%/spec/features/merge_requests/merge_when_build_succeeds_spec.rb
%%WWWDIR%%/spec/features/merge_requests/only_allow_merge_if_build_succeeds.rb
%%WWWDIR%%/spec/features/merge_requests/pipelines_spec.rb
%%WWWDIR%%/spec/features/merge_requests/toggle_whitespace_changes.rb
%%WWWDIR%%/spec/features/merge_requests/user_lists_merge_requests_spec.rb
%%WWWDIR%%/spec/features/merge_requests/user_uses_slash_commands_spec.rb
%%WWWDIR%%/spec/features/milestone_spec.rb
%%WWWDIR%%/spec/features/notes_on_merge_requests_spec.rb
%%WWWDIR%%/spec/features/participants_autocomplete_spec.rb
%%WWWDIR%%/spec/features/password_reset_spec.rb
%%WWWDIR%%/spec/features/pipelines_settings_spec.rb
%%WWWDIR%%/spec/features/profile_spec.rb
%%WWWDIR%%/spec/features/profiles/keys_spec.rb
%%WWWDIR%%/spec/features/profiles/oauth_applications_spec.rb
%%WWWDIR%%/spec/features/profiles/password_spec.rb
%%WWWDIR%%/spec/features/profiles/personal_access_tokens_spec.rb
%%WWWDIR%%/spec/features/profiles/preferences_spec.rb
%%WWWDIR%%/spec/features/projects/badges/coverage_spec.rb
%%WWWDIR%%/spec/features/projects/badges/list_spec.rb
%%WWWDIR%%/spec/features/projects/branches_spec.rb
%%WWWDIR%%/spec/features/projects/commit/builds_spec.rb
%%WWWDIR%%/spec/features/projects/commits/cherry_pick_spec.rb
%%WWWDIR%%/spec/features/projects/developer_views_empty_project_instructions_spec.rb
%%WWWDIR%%/spec/features/projects/files/editing_a_file_spec.rb
%%WWWDIR%%/spec/features/projects/files/files_sort_submodules_with_folders_spec.rb
%%WWWDIR%%/spec/features/projects/files/gitignore_dropdown_spec.rb
%%WWWDIR%%/spec/features/projects/files/gitlab_ci_yml_dropdown_spec.rb
%%WWWDIR%%/spec/features/projects/files/project_owner_creates_license_file_spec.rb
%%WWWDIR%%/spec/features/projects/files/project_owner_sees_link_to_create_license_file_in_empty_project_spec.rb
%%WWWDIR%%/spec/features/projects/group_links_spec.rb
%%WWWDIR%%/spec/features/projects/import_export/import_file_spec.rb
%%WWWDIR%%/spec/features/projects/import_export/test_project_export.tar.gz
%%WWWDIR%%/spec/features/projects/issuable_templates_spec.rb
%%WWWDIR%%/spec/features/projects/issues/list_spec.rb
%%WWWDIR%%/spec/features/projects/labels/issues_sorted_by_priority_spec.rb
%%WWWDIR%%/spec/features/projects/labels/update_prioritization_spec.rb
%%WWWDIR%%/spec/features/projects/members/anonymous_user_sees_members_spec.rb
%%WWWDIR%%/spec/features/projects/members/group_member_cannot_leave_group_project_spec.rb
%%WWWDIR%%/spec/features/projects/members/group_member_cannot_request_access_to_his_group_project_spec.rb
%%WWWDIR%%/spec/features/projects/members/group_requester_cannot_request_access_to_project_spec.rb
%%WWWDIR%%/spec/features/projects/members/master_adds_member_with_expiration_date_spec.rb
%%WWWDIR%%/spec/features/projects/members/master_manages_access_requests_spec.rb
%%WWWDIR%%/spec/features/projects/members/member_cannot_request_access_to_his_project_spec.rb
%%WWWDIR%%/spec/features/projects/members/member_leaves_project_spec.rb
%%WWWDIR%%/spec/features/projects/members/owner_cannot_leave_project_spec.rb
%%WWWDIR%%/spec/features/projects/members/owner_cannot_request_access_to_his_project_spec.rb
%%WWWDIR%%/spec/features/projects/members/user_requests_access_spec.rb
%%WWWDIR%%/spec/features/projects/merge_requests/list_spec.rb
%%WWWDIR%%/spec/features/projects/pipelines_spec.rb
%%WWWDIR%%/spec/features/projects/project_settings_spec.rb
%%WWWDIR%%/spec/features/projects/ref_switcher_spec.rb
%%WWWDIR%%/spec/features/projects/shortcuts_spec.rb
%%WWWDIR%%/spec/features/projects/slack_service/slack_service_spec.rb
%%WWWDIR%%/spec/features/projects/wiki/markdown_preview_spec.rb
%%WWWDIR%%/spec/features/projects/wiki/user_creates_wiki_page_spec.rb
%%WWWDIR%%/spec/features/projects/wiki/user_updates_wiki_page_spec.rb
%%WWWDIR%%/spec/features/projects_spec.rb
%%WWWDIR%%/spec/features/protected_branches/access_control_ce_spec.rb
%%WWWDIR%%/spec/features/protected_branches_spec.rb
%%WWWDIR%%/spec/features/runners_spec.rb
%%WWWDIR%%/spec/features/search_spec.rb
%%WWWDIR%%/spec/features/security/admin_access_spec.rb
%%WWWDIR%%/spec/features/security/dashboard_access_spec.rb
%%WWWDIR%%/spec/features/security/group/internal_access_spec.rb
%%WWWDIR%%/spec/features/security/group/private_access_spec.rb
%%WWWDIR%%/spec/features/security/group/public_access_spec.rb
%%WWWDIR%%/spec/features/security/profile_access_spec.rb
%%WWWDIR%%/spec/features/security/project/internal_access_spec.rb
%%WWWDIR%%/spec/features/security/project/private_access_spec.rb
%%WWWDIR%%/spec/features/security/project/public_access_spec.rb
%%WWWDIR%%/spec/features/security/project/snippet/internal_access_spec.rb
%%WWWDIR%%/spec/features/security/project/snippet/private_access_spec.rb
%%WWWDIR%%/spec/features/security/project/snippet/public_access_spec.rb
%%WWWDIR%%/spec/features/signup_spec.rb
%%WWWDIR%%/spec/features/tags/master_creates_tag_spec.rb
%%WWWDIR%%/spec/features/tags/master_deletes_tag_spec.rb
%%WWWDIR%%/spec/features/tags/master_updates_tag_spec.rb
%%WWWDIR%%/spec/features/tags/master_views_tags_spec.rb
%%WWWDIR%%/spec/features/task_lists_spec.rb
%%WWWDIR%%/spec/features/todos/target_state_spec.rb
%%WWWDIR%%/spec/features/todos/todos_sorting_spec.rb
%%WWWDIR%%/spec/features/todos/todos_spec.rb
%%WWWDIR%%/spec/features/triggers_spec.rb
%%WWWDIR%%/spec/features/u2f_spec.rb
%%WWWDIR%%/spec/features/users_spec.rb
%%WWWDIR%%/spec/features/variables_spec.rb
%%WWWDIR%%/spec/finders/branches_finder_spec.rb
%%WWWDIR%%/spec/finders/contributed_projects_finder_spec.rb
%%WWWDIR%%/spec/finders/group_projects_finder_spec.rb
%%WWWDIR%%/spec/finders/groups_finder_spec.rb
%%WWWDIR%%/spec/finders/issues_finder_spec.rb
%%WWWDIR%%/spec/finders/joined_groups_finder_spec.rb
%%WWWDIR%%/spec/finders/merge_requests_finder_spec.rb
%%WWWDIR%%/spec/finders/move_to_project_finder_spec.rb
%%WWWDIR%%/spec/finders/notes_finder_spec.rb
%%WWWDIR%%/spec/finders/personal_projects_finder_spec.rb
%%WWWDIR%%/spec/finders/projects_finder_spec.rb
%%WWWDIR%%/spec/finders/snippets_finder_spec.rb
%%WWWDIR%%/spec/finders/todos_finder_spec.rb
%%WWWDIR%%/spec/finders/trending_projects_finder_spec.rb
%%WWWDIR%%/spec/fixtures/GoogleCodeProjectHosting.json
%%WWWDIR%%/spec/fixtures/api/schemas/issue.json
%%WWWDIR%%/spec/fixtures/api/schemas/issues.json
%%WWWDIR%%/spec/fixtures/api/schemas/list.json
%%WWWDIR%%/spec/fixtures/api/schemas/lists.json
%%WWWDIR%%/spec/fixtures/banana_sample.gif
%%WWWDIR%%/spec/fixtures/blockquote_fence_after.md
%%WWWDIR%%/spec/fixtures/blockquote_fence_before.md
%%WWWDIR%%/spec/fixtures/ci_build_artifacts.zip
%%WWWDIR%%/spec/fixtures/ci_build_artifacts_metadata.gz
%%WWWDIR%%/spec/fixtures/config/redis_new_format_host.yml
%%WWWDIR%%/spec/fixtures/config/redis_new_format_socket.yml
%%WWWDIR%%/spec/fixtures/config/redis_old_format_host.yml
%%WWWDIR%%/spec/fixtures/config/redis_old_format_socket.yml
%%WWWDIR%%/spec/fixtures/container_registry/config_blob.json
%%WWWDIR%%/spec/fixtures/container_registry/tag_manifest.json
%%WWWDIR%%/spec/fixtures/container_registry/tag_manifest_1.json
%%WWWDIR%%/spec/fixtures/dk.png
%%WWWDIR%%/spec/fixtures/doc_sample.txt
%%WWWDIR%%/spec/fixtures/domain_blacklist.txt
%%WWWDIR%%/spec/fixtures/emails/android_gmail.eml
%%WWWDIR%%/spec/fixtures/emails/attachment.eml
%%WWWDIR%%/spec/fixtures/emails/auto_reply.eml
%%WWWDIR%%/spec/fixtures/emails/commands_in_reply.eml
%%WWWDIR%%/spec/fixtures/emails/commands_only_reply.eml
%%WWWDIR%%/spec/fixtures/emails/dutch.eml
%%WWWDIR%%/spec/fixtures/emails/gmail_web.eml
%%WWWDIR%%/spec/fixtures/emails/html_paragraphs.eml
%%WWWDIR%%/spec/fixtures/emails/inline_reply.eml
%%WWWDIR%%/spec/fixtures/emails/ios_default.eml
%%WWWDIR%%/spec/fixtures/emails/newlines.eml
%%WWWDIR%%/spec/fixtures/emails/no_content_reply.eml
%%WWWDIR%%/spec/fixtures/emails/on_wrote.eml
%%WWWDIR%%/spec/fixtures/emails/outlook.eml
%%WWWDIR%%/spec/fixtures/emails/paragraphs.eml
%%WWWDIR%%/spec/fixtures/emails/plaintext_only.eml
%%WWWDIR%%/spec/fixtures/emails/reply_without_subaddressing_and_key_inside_references.eml
%%WWWDIR%%/spec/fixtures/emails/valid_new_issue.eml
%%WWWDIR%%/spec/fixtures/emails/valid_new_issue_empty.eml
%%WWWDIR%%/spec/fixtures/emails/valid_reply.eml
%%WWWDIR%%/spec/fixtures/emails/windows_8_metro.eml
%%WWWDIR%%/spec/fixtures/emails/wrong_authentication_token.eml
%%WWWDIR%%/spec/fixtures/emails/wrong_mail_key.eml
%%WWWDIR%%/spec/fixtures/logo_sample.svg
%%WWWDIR%%/spec/fixtures/mail_room_disabled.yml
%%WWWDIR%%/spec/fixtures/mail_room_enabled.yml
%%WWWDIR%%/spec/fixtures/markdown.md.erb
%%WWWDIR%%/spec/fixtures/project_services/campfire/rooms.json
%%WWWDIR%%/spec/fixtures/project_services/campfire/rooms2.json
%%WWWDIR%%/spec/fixtures/rails_sample.jpg
%%WWWDIR%%/spec/fixtures/sanitized.svg
%%WWWDIR%%/spec/fixtures/unsanitized.svg
%%WWWDIR%%/spec/fixtures/video_sample.mp4
%%WWWDIR%%/spec/helpers/application_helper_spec.rb
%%WWWDIR%%/spec/helpers/auth_helper_spec.rb
%%WWWDIR%%/spec/helpers/blob_helper_spec.rb
%%WWWDIR%%/spec/helpers/broadcast_messages_helper_spec.rb
%%WWWDIR%%/spec/helpers/ci_status_helper_spec.rb
%%WWWDIR%%/spec/helpers/commits_helper_spec.rb
%%WWWDIR%%/spec/helpers/diff_helper_spec.rb
%%WWWDIR%%/spec/helpers/emails_helper_spec.rb
%%WWWDIR%%/spec/helpers/events_helper_spec.rb
%%WWWDIR%%/spec/helpers/form_helper_spec.rb
%%WWWDIR%%/spec/helpers/gitlab_markdown_helper_spec.rb
%%WWWDIR%%/spec/helpers/gitlab_routing_helper_spec.rb
%%WWWDIR%%/spec/helpers/graph_helper_spec.rb
%%WWWDIR%%/spec/helpers/groups_helper_spec.rb
%%WWWDIR%%/spec/helpers/icons_helper_spec.rb
%%WWWDIR%%/spec/helpers/import_helper_spec.rb
%%WWWDIR%%/spec/helpers/issuables_helper_spec.rb
%%WWWDIR%%/spec/helpers/issues_helper_spec.rb
%%WWWDIR%%/spec/helpers/labels_helper_spec.rb
%%WWWDIR%%/spec/helpers/members_helper_spec.rb
%%WWWDIR%%/spec/helpers/merge_requests_helper_spec.rb
%%WWWDIR%%/spec/helpers/nav_helper_spec.rb
%%WWWDIR%%/spec/helpers/notes_helper_spec.rb
%%WWWDIR%%/spec/helpers/notifications_helper_spec.rb
%%WWWDIR%%/spec/helpers/page_layout_helper_spec.rb
%%WWWDIR%%/spec/helpers/preferences_helper_spec.rb
%%WWWDIR%%/spec/helpers/projects_helper_spec.rb
%%WWWDIR%%/spec/helpers/runners_helper_spec.rb
%%WWWDIR%%/spec/helpers/search_helper_spec.rb
%%WWWDIR%%/spec/helpers/submodule_helper_spec.rb
%%WWWDIR%%/spec/helpers/tab_helper_spec.rb
%%WWWDIR%%/spec/helpers/time_helper_spec.rb
%%WWWDIR%%/spec/helpers/tree_helper_spec.rb
%%WWWDIR%%/spec/helpers/visibility_level_helper_spec.rb
%%WWWDIR%%/spec/initializers/6_validations_spec.rb
%%WWWDIR%%/spec/initializers/secret_token_spec.rb
%%WWWDIR%%/spec/initializers/settings_spec.rb
%%WWWDIR%%/spec/initializers/trusted_proxies_spec.rb
%%WWWDIR%%/spec/javascripts/application_spec.js
%%WWWDIR%%/spec/javascripts/awards_handler_spec.js
%%WWWDIR%%/spec/javascripts/behaviors/autosize_spec.js
%%WWWDIR%%/spec/javascripts/behaviors/quick_submit_spec.js
%%WWWDIR%%/spec/javascripts/behaviors/requires_input_spec.js
%%WWWDIR%%/spec/javascripts/boards/boards_store_spec.js.es6
%%WWWDIR%%/spec/javascripts/boards/issue_spec.js.es6
%%WWWDIR%%/spec/javascripts/boards/list_spec.js.es6
%%WWWDIR%%/spec/javascripts/boards/mock_data.js.es6
%%WWWDIR%%/spec/javascripts/datetime_utility_spec.js.coffee
%%WWWDIR%%/spec/javascripts/diff_comments_store_spec.js.es6
%%WWWDIR%%/spec/javascripts/extensions/array_spec.js
%%WWWDIR%%/spec/javascripts/extensions/jquery_spec.js
%%WWWDIR%%/spec/javascripts/fixtures/application.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/awards_handler.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/behaviors/quick_submit.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/behaviors/requires_input.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/emoji_menu.js
%%WWWDIR%%/spec/javascripts/fixtures/gl_dropdown.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/issuable.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/issue_note.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/issue_sidebar_label.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/issues_show.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/line_highlighter.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/merge_request_tabs.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/merge_requests_show.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/new_branch.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/project_title.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/projects.json
%%WWWDIR%%/spec/javascripts/fixtures/right_sidebar.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/search_autocomplete.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/u2f/authenticate.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/u2f/register.html.haml
%%WWWDIR%%/spec/javascripts/fixtures/zen_mode.html.haml
%%WWWDIR%%/spec/javascripts/gl_dropdown_spec.js.es6
%%WWWDIR%%/spec/javascripts/graphs/stat_graph_contributors_graph_spec.js
%%WWWDIR%%/spec/javascripts/graphs/stat_graph_contributors_util_spec.js
%%WWWDIR%%/spec/javascripts/graphs/stat_graph_spec.js
%%WWWDIR%%/spec/javascripts/issue_spec.js
%%WWWDIR%%/spec/javascripts/labels_issue_sidebar_spec.js.es6
%%WWWDIR%%/spec/javascripts/line_highlighter_spec.js
%%WWWDIR%%/spec/javascripts/merge_request_spec.js
%%WWWDIR%%/spec/javascripts/merge_request_tabs_spec.js
%%WWWDIR%%/spec/javascripts/merge_request_widget_spec.js
%%WWWDIR%%/spec/javascripts/new_branch_spec.js
%%WWWDIR%%/spec/javascripts/notes_spec.js
%%WWWDIR%%/spec/javascripts/project_title_spec.js
%%WWWDIR%%/spec/javascripts/right_sidebar_spec.js
%%WWWDIR%%/spec/javascripts/search_autocomplete_spec.js
%%WWWDIR%%/spec/javascripts/shortcuts_issuable_spec.js
%%WWWDIR%%/spec/javascripts/spec_helper.js
%%WWWDIR%%/spec/javascripts/syntax_highlight_spec.js
%%WWWDIR%%/spec/javascripts/u2f/authenticate_spec.js
%%WWWDIR%%/spec/javascripts/u2f/mock_u2f_device.js
%%WWWDIR%%/spec/javascripts/u2f/register_spec.js
%%WWWDIR%%/spec/javascripts/zen_mode_spec.js
%%WWWDIR%%/spec/lib/banzai/cross_project_reference_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/abstract_link_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/autolink_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/blockquote_fence_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/commit_range_reference_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/commit_reference_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/emoji_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/external_issue_reference_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/external_link_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/gollum_tags_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/image_link_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/inline_diff_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/issue_reference_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/label_reference_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/merge_request_reference_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/milestone_reference_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/redactor_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/reference_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/relative_link_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/sanitization_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/snippet_reference_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/syntax_highlight_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/table_of_contents_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/task_list_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/upload_link_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/user_reference_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/video_link_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/wiki_link_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter/yaml_front_matter_filter_spec.rb
%%WWWDIR%%/spec/lib/banzai/filter_array_spec.rb
%%WWWDIR%%/spec/lib/banzai/note_renderer_spec.rb
%%WWWDIR%%/spec/lib/banzai/object_renderer_spec.rb
%%WWWDIR%%/spec/lib/banzai/pipeline/description_pipeline_spec.rb
%%WWWDIR%%/spec/lib/banzai/pipeline/wiki_pipeline_spec.rb
%%WWWDIR%%/spec/lib/banzai/querying_spec.rb
%%WWWDIR%%/spec/lib/banzai/redactor_spec.rb
%%WWWDIR%%/spec/lib/banzai/reference_parser/base_parser_spec.rb
%%WWWDIR%%/spec/lib/banzai/reference_parser/commit_parser_spec.rb
%%WWWDIR%%/spec/lib/banzai/reference_parser/commit_range_parser_spec.rb
%%WWWDIR%%/spec/lib/banzai/reference_parser/external_issue_parser_spec.rb
%%WWWDIR%%/spec/lib/banzai/reference_parser/issue_parser_spec.rb
%%WWWDIR%%/spec/lib/banzai/reference_parser/label_parser_spec.rb
%%WWWDIR%%/spec/lib/banzai/reference_parser/merge_request_parser_spec.rb
%%WWWDIR%%/spec/lib/banzai/reference_parser/milestone_parser_spec.rb
%%WWWDIR%%/spec/lib/banzai/reference_parser/snippet_parser_spec.rb
%%WWWDIR%%/spec/lib/banzai/reference_parser/user_parser_spec.rb
%%WWWDIR%%/spec/lib/ci/ansi2html_spec.rb
%%WWWDIR%%/spec/lib/ci/charts_spec.rb
%%WWWDIR%%/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
%%WWWDIR%%/spec/lib/container_registry/blob_spec.rb
%%WWWDIR%%/spec/lib/container_registry/registry_spec.rb
%%WWWDIR%%/spec/lib/container_registry/repository_spec.rb
%%WWWDIR%%/spec/lib/container_registry/tag_spec.rb
%%WWWDIR%%/spec/lib/disable_email_interceptor_spec.rb
%%WWWDIR%%/spec/lib/extracts_path_spec.rb
%%WWWDIR%%/spec/lib/file_size_validator_spec.rb
%%WWWDIR%%/spec/lib/git_ref_validator_spec.rb
%%WWWDIR%%/spec/lib/gitlab/asciidoc_spec.rb
%%WWWDIR%%/spec/lib/gitlab/auth_spec.rb
%%WWWDIR%%/spec/lib/gitlab/award_emoji_spec.rb
%%WWWDIR%%/spec/lib/gitlab/backend/shell_spec.rb
%%WWWDIR%%/spec/lib/gitlab/badge/build/metadata_spec.rb
%%WWWDIR%%/spec/lib/gitlab/badge/build/status_spec.rb
%%WWWDIR%%/spec/lib/gitlab/badge/build/template_spec.rb
%%WWWDIR%%/spec/lib/gitlab/badge/coverage/metadata_spec.rb
%%WWWDIR%%/spec/lib/gitlab/badge/coverage/report_spec.rb
%%WWWDIR%%/spec/lib/gitlab/badge/coverage/template_spec.rb
%%WWWDIR%%/spec/lib/gitlab/badge/shared/metadata.rb
%%WWWDIR%%/spec/lib/gitlab/bitbucket_import/client_spec.rb
%%WWWDIR%%/spec/lib/gitlab/bitbucket_import/importer_spec.rb
%%WWWDIR%%/spec/lib/gitlab/bitbucket_import/project_creator_spec.rb
%%WWWDIR%%/spec/lib/gitlab/blame_spec.rb
%%WWWDIR%%/spec/lib/gitlab/changes_list_spec.rb
%%WWWDIR%%/spec/lib/gitlab/checks/change_access_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/build/artifacts/metadata/entry_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/build/artifacts/metadata_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/loader_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/artifacts_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/attributable_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/boolean_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/cache_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/commands_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/configurable_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/factory_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/global_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/hidden_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/image_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/job_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/jobs_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/key_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/null_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/paths_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/script_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/services_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/stage_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/stages_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/trigger_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/undefined_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/validatable_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/validator_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config/node/variables_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ci/config_spec.rb
%%WWWDIR%%/spec/lib/gitlab/closing_issue_extractor_spec.rb
%%WWWDIR%%/spec/lib/gitlab/color_schemes_spec.rb
%%WWWDIR%%/spec/lib/gitlab/conflict/file_collection_spec.rb
%%WWWDIR%%/spec/lib/gitlab/conflict/file_spec.rb
%%WWWDIR%%/spec/lib/gitlab/conflict/parser_spec.rb
%%WWWDIR%%/spec/lib/gitlab/current_settings_spec.rb
%%WWWDIR%%/spec/lib/gitlab/data_builder/build_spec.rb
%%WWWDIR%%/spec/lib/gitlab/data_builder/note_spec.rb
%%WWWDIR%%/spec/lib/gitlab/data_builder/pipeline_spec.rb
%%WWWDIR%%/spec/lib/gitlab/data_builder/push_spec.rb
%%WWWDIR%%/spec/lib/gitlab/database/migration_helpers_spec.rb
%%WWWDIR%%/spec/lib/gitlab/database_spec.rb
%%WWWDIR%%/spec/lib/gitlab/diff/file_spec.rb
%%WWWDIR%%/spec/lib/gitlab/diff/highlight_spec.rb
%%WWWDIR%%/spec/lib/gitlab/diff/inline_diff_marker_spec.rb
%%WWWDIR%%/spec/lib/gitlab/diff/inline_diff_spec.rb
%%WWWDIR%%/spec/lib/gitlab/diff/line_mapper_spec.rb
%%WWWDIR%%/spec/lib/gitlab/diff/parallel_diff_spec.rb
%%WWWDIR%%/spec/lib/gitlab/diff/parser_spec.rb
%%WWWDIR%%/spec/lib/gitlab/diff/position_spec.rb
%%WWWDIR%%/spec/lib/gitlab/diff/position_tracer_spec.rb
%%WWWDIR%%/spec/lib/gitlab/downtime_check/message_spec.rb
%%WWWDIR%%/spec/lib/gitlab/downtime_check_spec.rb
%%WWWDIR%%/spec/lib/gitlab/email/attachment_uploader_spec.rb
%%WWWDIR%%/spec/lib/gitlab/email/email_shared_blocks.rb
%%WWWDIR%%/spec/lib/gitlab/email/handler/create_issue_handler_spec.rb
%%WWWDIR%%/spec/lib/gitlab/email/handler/create_note_handler_spec.rb
%%WWWDIR%%/spec/lib/gitlab/email/message/repository_push_spec.rb
%%WWWDIR%%/spec/lib/gitlab/email/receiver_spec.rb
%%WWWDIR%%/spec/lib/gitlab/email/reply_parser_spec.rb
%%WWWDIR%%/spec/lib/gitlab/exclusive_lease_spec.rb
%%WWWDIR%%/spec/lib/gitlab/fogbugz_import/client_spec.rb
%%WWWDIR%%/spec/lib/gitlab/gfm/reference_rewriter_spec.rb
%%WWWDIR%%/spec/lib/gitlab/gfm/uploads_rewriter_spec.rb
%%WWWDIR%%/spec/lib/gitlab/git/hook_spec.rb
%%WWWDIR%%/spec/lib/gitlab/git_access_spec.rb
%%WWWDIR%%/spec/lib/gitlab/git_access_wiki_spec.rb
%%WWWDIR%%/spec/lib/gitlab/github_import/branch_formatter_spec.rb
%%WWWDIR%%/spec/lib/gitlab/github_import/client_spec.rb
%%WWWDIR%%/spec/lib/gitlab/github_import/comment_formatter_spec.rb
%%WWWDIR%%/spec/lib/gitlab/github_import/importer_spec.rb
%%WWWDIR%%/spec/lib/gitlab/github_import/issue_formatter_spec.rb
%%WWWDIR%%/spec/lib/gitlab/github_import/label_formatter_spec.rb
%%WWWDIR%%/spec/lib/gitlab/github_import/milestone_formatter_spec.rb
%%WWWDIR%%/spec/lib/gitlab/github_import/project_creator_spec.rb
%%WWWDIR%%/spec/lib/gitlab/github_import/pull_request_formatter_spec.rb
%%WWWDIR%%/spec/lib/gitlab/github_import/wiki_formatter_spec.rb
%%WWWDIR%%/spec/lib/gitlab/gitlab_import/client_spec.rb
%%WWWDIR%%/spec/lib/gitlab/gitlab_import/importer_spec.rb
%%WWWDIR%%/spec/lib/gitlab/gitlab_import/project_creator_spec.rb
%%WWWDIR%%/spec/lib/gitlab/google_code_import/client_spec.rb
%%WWWDIR%%/spec/lib/gitlab/google_code_import/importer_spec.rb
%%WWWDIR%%/spec/lib/gitlab/google_code_import/project_creator_spec.rb
%%WWWDIR%%/spec/lib/gitlab/graphs/commits_spec.rb
%%WWWDIR%%/spec/lib/gitlab/highlight_spec.rb
%%WWWDIR%%/spec/lib/gitlab/import_export/avatar_restorer_spec.rb
%%WWWDIR%%/spec/lib/gitlab/import_export/avatar_saver_spec.rb
%%WWWDIR%%/spec/lib/gitlab/import_export/file_importer_spec.rb
%%WWWDIR%%/spec/lib/gitlab/import_export/import_export_spec.rb
%%WWWDIR%%/spec/lib/gitlab/import_export/members_mapper_spec.rb
%%WWWDIR%%/spec/lib/gitlab/import_export/project.json
%%WWWDIR%%/spec/lib/gitlab/import_export/project_tree_restorer_spec.rb
%%WWWDIR%%/spec/lib/gitlab/import_export/project_tree_saver_spec.rb
%%WWWDIR%%/spec/lib/gitlab/import_export/reader_spec.rb
%%WWWDIR%%/spec/lib/gitlab/import_export/repo_bundler_spec.rb
%%WWWDIR%%/spec/lib/gitlab/import_export/version_checker_spec.rb
%%WWWDIR%%/spec/lib/gitlab/import_export/wiki_repo_bundler_spec.rb
%%WWWDIR%%/spec/lib/gitlab/incoming_email_spec.rb
%%WWWDIR%%/spec/lib/gitlab/key_fingerprint_spec.rb
%%WWWDIR%%/spec/lib/gitlab/lazy_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ldap/access_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ldap/adapter_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ldap/auth_hash_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ldap/authentication_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ldap/config_spec.rb
%%WWWDIR%%/spec/lib/gitlab/ldap/user_spec.rb
%%WWWDIR%%/spec/lib/gitlab/markup_helper_spec.rb
%%WWWDIR%%/spec/lib/gitlab/metrics/delta_spec.rb
%%WWWDIR%%/spec/lib/gitlab/metrics/instrumentation_spec.rb
%%WWWDIR%%/spec/lib/gitlab/metrics/method_call_spec.rb
%%WWWDIR%%/spec/lib/gitlab/metrics/metric_spec.rb
%%WWWDIR%%/spec/lib/gitlab/metrics/rack_middleware_spec.rb
%%WWWDIR%%/spec/lib/gitlab/metrics/sampler_spec.rb
%%WWWDIR%%/spec/lib/gitlab/metrics/sidekiq_middleware_spec.rb
%%WWWDIR%%/spec/lib/gitlab/metrics/subscribers/action_view_spec.rb
%%WWWDIR%%/spec/lib/gitlab/metrics/subscribers/active_record_spec.rb
%%WWWDIR%%/spec/lib/gitlab/metrics/subscribers/rails_cache_spec.rb
%%WWWDIR%%/spec/lib/gitlab/metrics/system_spec.rb
%%WWWDIR%%/spec/lib/gitlab/metrics/transaction_spec.rb
%%WWWDIR%%/spec/lib/gitlab/metrics_spec.rb
%%WWWDIR%%/spec/lib/gitlab/middleware/go_spec.rb
%%WWWDIR%%/spec/lib/gitlab/middleware/rails_queue_duration_spec.rb
%%WWWDIR%%/spec/lib/gitlab/o_auth/auth_hash_spec.rb
%%WWWDIR%%/spec/lib/gitlab/o_auth/user_spec.rb
%%WWWDIR%%/spec/lib/gitlab/popen_spec.rb
%%WWWDIR%%/spec/lib/gitlab/project_search_results_spec.rb
%%WWWDIR%%/spec/lib/gitlab/redis_spec.rb
%%WWWDIR%%/spec/lib/gitlab/reference_extractor_spec.rb
%%WWWDIR%%/spec/lib/gitlab/regex_spec.rb
%%WWWDIR%%/spec/lib/gitlab/saml/user_spec.rb
%%WWWDIR%%/spec/lib/gitlab/sanitizers/svg_spec.rb
%%WWWDIR%%/spec/lib/gitlab/search_results_spec.rb
%%WWWDIR%%/spec/lib/gitlab/sherlock/collection_spec.rb
%%WWWDIR%%/spec/lib/gitlab/sherlock/file_sample_spec.rb
%%WWWDIR%%/spec/lib/gitlab/sherlock/line_profiler_spec.rb
%%WWWDIR%%/spec/lib/gitlab/sherlock/line_sample_spec.rb
%%WWWDIR%%/spec/lib/gitlab/sherlock/location_spec.rb
%%WWWDIR%%/spec/lib/gitlab/sherlock/middleware_spec.rb
%%WWWDIR%%/spec/lib/gitlab/sherlock/query_spec.rb
%%WWWDIR%%/spec/lib/gitlab/sherlock/transaction_spec.rb
%%WWWDIR%%/spec/lib/gitlab/slash_commands/command_definition_spec.rb
%%WWWDIR%%/spec/lib/gitlab/slash_commands/dsl_spec.rb
%%WWWDIR%%/spec/lib/gitlab/slash_commands/extractor_spec.rb
%%WWWDIR%%/spec/lib/gitlab/snippet_search_results_spec.rb
%%WWWDIR%%/spec/lib/gitlab/sql/union_spec.rb
%%WWWDIR%%/spec/lib/gitlab/template/gitignore_template_spec.rb
%%WWWDIR%%/spec/lib/gitlab/template/gitlab_ci_yml_template_spec.rb
%%WWWDIR%%/spec/lib/gitlab/template/issue_template_spec.rb
%%WWWDIR%%/spec/lib/gitlab/template/merge_request_template_spec.rb
%%WWWDIR%%/spec/lib/gitlab/themes_spec.rb
%%WWWDIR%%/spec/lib/gitlab/upgrader_spec.rb
%%WWWDIR%%/spec/lib/gitlab/uploads_transfer_spec.rb
%%WWWDIR%%/spec/lib/gitlab/url_builder_spec.rb
%%WWWDIR%%/spec/lib/gitlab/url_sanitizer_spec.rb
%%WWWDIR%%/spec/lib/gitlab/user_access_spec.rb
%%WWWDIR%%/spec/lib/gitlab/version_info_spec.rb
%%WWWDIR%%/spec/lib/gitlab/workhorse_spec.rb
%%WWWDIR%%/spec/lib/gitlab_spec.rb
%%WWWDIR%%/spec/lib/json_web_token/rsa_token_spec.rb
%%WWWDIR%%/spec/lib/json_web_token/token_spec.rb
%%WWWDIR%%/spec/lib/repository_cache_spec.rb
%%WWWDIR%%/spec/mailers/abuse_report_mailer_spec.rb
%%WWWDIR%%/spec/mailers/emails/builds_spec.rb
%%WWWDIR%%/spec/mailers/emails/merge_requests_spec.rb
%%WWWDIR%%/spec/mailers/emails/profile_spec.rb
%%WWWDIR%%/spec/mailers/notify_spec.rb
%%WWWDIR%%/spec/mailers/previews/devise_mailer_preview.rb
%%WWWDIR%%/spec/mailers/repository_check_mailer_spec.rb
%%WWWDIR%%/spec/mailers/shared/notify.rb
%%WWWDIR%%/spec/models/ability_spec.rb
%%WWWDIR%%/spec/models/abuse_report_spec.rb
%%WWWDIR%%/spec/models/appearance_spec.rb
%%WWWDIR%%/spec/models/application_setting_spec.rb
%%WWWDIR%%/spec/models/award_emoji_spec.rb
%%WWWDIR%%/spec/models/blob_spec.rb
%%WWWDIR%%/spec/models/board_spec.rb
%%WWWDIR%%/spec/models/broadcast_message_spec.rb
%%WWWDIR%%/spec/models/build_spec.rb
%%WWWDIR%%/spec/models/ci/build_spec.rb
%%WWWDIR%%/spec/models/ci/pipeline_spec.rb
%%WWWDIR%%/spec/models/ci/runner_spec.rb
%%WWWDIR%%/spec/models/ci/trigger_spec.rb
%%WWWDIR%%/spec/models/ci/variable_spec.rb
%%WWWDIR%%/spec/models/commit_range_spec.rb
%%WWWDIR%%/spec/models/commit_spec.rb
%%WWWDIR%%/spec/models/commit_status_spec.rb
%%WWWDIR%%/spec/models/compare_spec.rb
%%WWWDIR%%/spec/models/concerns/access_requestable_spec.rb
%%WWWDIR%%/spec/models/concerns/awardable_spec.rb
%%WWWDIR%%/spec/models/concerns/case_sensitivity_spec.rb
%%WWWDIR%%/spec/models/concerns/faster_cache_keys_spec.rb
%%WWWDIR%%/spec/models/concerns/issuable_spec.rb
%%WWWDIR%%/spec/models/concerns/mentionable_spec.rb
%%WWWDIR%%/spec/models/concerns/milestoneish_spec.rb
%%WWWDIR%%/spec/models/concerns/participable_spec.rb
%%WWWDIR%%/spec/models/concerns/spammable_spec.rb
%%WWWDIR%%/spec/models/concerns/statuseable_spec.rb
%%WWWDIR%%/spec/models/concerns/strip_attribute_spec.rb
%%WWWDIR%%/spec/models/concerns/subscribable_spec.rb
%%WWWDIR%%/spec/models/concerns/token_authenticatable_spec.rb
%%WWWDIR%%/spec/models/deploy_key_spec.rb
%%WWWDIR%%/spec/models/deploy_keys_project_spec.rb
%%WWWDIR%%/spec/models/deployment_spec.rb
%%WWWDIR%%/spec/models/diff_note_spec.rb
%%WWWDIR%%/spec/models/discussion_spec.rb
%%WWWDIR%%/spec/models/email_spec.rb
%%WWWDIR%%/spec/models/environment_spec.rb
%%WWWDIR%%/spec/models/event_spec.rb
%%WWWDIR%%/spec/models/external_issue_spec.rb
%%WWWDIR%%/spec/models/forked_project_link_spec.rb
%%WWWDIR%%/spec/models/generic_commit_status_spec.rb
%%WWWDIR%%/spec/models/global_milestone_spec.rb
%%WWWDIR%%/spec/models/group_spec.rb
%%WWWDIR%%/spec/models/hooks/project_hook_spec.rb
%%WWWDIR%%/spec/models/hooks/service_hook_spec.rb
%%WWWDIR%%/spec/models/hooks/system_hook_spec.rb
%%WWWDIR%%/spec/models/hooks/web_hook_spec.rb
%%WWWDIR%%/spec/models/identity_spec.rb
%%WWWDIR%%/spec/models/issue_spec.rb
%%WWWDIR%%/spec/models/key_spec.rb
%%WWWDIR%%/spec/models/label_link_spec.rb
%%WWWDIR%%/spec/models/label_spec.rb
%%WWWDIR%%/spec/models/legacy_diff_note_spec.rb
%%WWWDIR%%/spec/models/list_spec.rb
%%WWWDIR%%/spec/models/member_spec.rb
%%WWWDIR%%/spec/models/members/group_member_spec.rb
%%WWWDIR%%/spec/models/members/project_member_spec.rb
%%WWWDIR%%/spec/models/merge_request_diff_spec.rb
%%WWWDIR%%/spec/models/merge_request_spec.rb
%%WWWDIR%%/spec/models/milestone_spec.rb
%%WWWDIR%%/spec/models/namespace_spec.rb
%%WWWDIR%%/spec/models/network/graph_spec.rb
%%WWWDIR%%/spec/models/note_spec.rb
%%WWWDIR%%/spec/models/notification_setting_spec.rb
%%WWWDIR%%/spec/models/personal_access_token_spec.rb
%%WWWDIR%%/spec/models/project_group_link_spec.rb
%%WWWDIR%%/spec/models/project_security_spec.rb
%%WWWDIR%%/spec/models/project_services/asana_service_spec.rb
%%WWWDIR%%/spec/models/project_services/assembla_service_spec.rb
%%WWWDIR%%/spec/models/project_services/bamboo_service_spec.rb
%%WWWDIR%%/spec/models/project_services/bugzilla_service_spec.rb
%%WWWDIR%%/spec/models/project_services/buildkite_service_spec.rb
%%WWWDIR%%/spec/models/project_services/builds_email_service_spec.rb
%%WWWDIR%%/spec/models/project_services/campfire_service_spec.rb
%%WWWDIR%%/spec/models/project_services/custom_issue_tracker_service_spec.rb
%%WWWDIR%%/spec/models/project_services/drone_ci_service_spec.rb
%%WWWDIR%%/spec/models/project_services/emails_on_push_service_spec.rb
%%WWWDIR%%/spec/models/project_services/external_wiki_service_spec.rb
%%WWWDIR%%/spec/models/project_services/flowdock_service_spec.rb
%%WWWDIR%%/spec/models/project_services/gemnasium_service_spec.rb
%%WWWDIR%%/spec/models/project_services/gitlab_issue_tracker_service_spec.rb
%%WWWDIR%%/spec/models/project_services/hipchat_service_spec.rb
%%WWWDIR%%/spec/models/project_services/irker_service_spec.rb
%%WWWDIR%%/spec/models/project_services/jira_service_spec.rb
%%WWWDIR%%/spec/models/project_services/pivotaltracker_service_spec.rb
%%WWWDIR%%/spec/models/project_services/pushover_service_spec.rb
%%WWWDIR%%/spec/models/project_services/redmine_service_spec.rb
%%WWWDIR%%/spec/models/project_services/slack_service/build_message_spec.rb
%%WWWDIR%%/spec/models/project_services/slack_service/issue_message_spec.rb
%%WWWDIR%%/spec/models/project_services/slack_service/merge_message_spec.rb
%%WWWDIR%%/spec/models/project_services/slack_service/note_message_spec.rb
%%WWWDIR%%/spec/models/project_services/slack_service/push_message_spec.rb
%%WWWDIR%%/spec/models/project_services/slack_service/wiki_page_message_spec.rb
%%WWWDIR%%/spec/models/project_services/slack_service_spec.rb
%%WWWDIR%%/spec/models/project_services/teamcity_service_spec.rb
%%WWWDIR%%/spec/models/project_snippet_spec.rb
%%WWWDIR%%/spec/models/project_spec.rb
%%WWWDIR%%/spec/models/project_team_spec.rb
%%WWWDIR%%/spec/models/project_wiki_spec.rb
%%WWWDIR%%/spec/models/protected_branch_spec.rb
%%WWWDIR%%/spec/models/release_spec.rb
%%WWWDIR%%/spec/models/repository_spec.rb
%%WWWDIR%%/spec/models/service_spec.rb
%%WWWDIR%%/spec/models/snippet_spec.rb
%%WWWDIR%%/spec/models/spam_log_spec.rb
%%WWWDIR%%/spec/models/todo_spec.rb
%%WWWDIR%%/spec/models/tree_spec.rb
%%WWWDIR%%/spec/models/user_agent_detail_spec.rb
%%WWWDIR%%/spec/models/user_spec.rb
%%WWWDIR%%/spec/models/wiki_page_spec.rb
%%WWWDIR%%/spec/rails_helper.rb
%%WWWDIR%%/spec/requests/api/access_requests_spec.rb
%%WWWDIR%%/spec/requests/api/api_helpers_spec.rb
%%WWWDIR%%/spec/requests/api/award_emoji_spec.rb
%%WWWDIR%%/spec/requests/api/branches_spec.rb
%%WWWDIR%%/spec/requests/api/builds_spec.rb
%%WWWDIR%%/spec/requests/api/commit_statuses_spec.rb
%%WWWDIR%%/spec/requests/api/commits_spec.rb
%%WWWDIR%%/spec/requests/api/deploy_keys_spec.rb
%%WWWDIR%%/spec/requests/api/deployments_spec.rb
%%WWWDIR%%/spec/requests/api/doorkeeper_access_spec.rb
%%WWWDIR%%/spec/requests/api/environments_spec.rb
%%WWWDIR%%/spec/requests/api/files_spec.rb
%%WWWDIR%%/spec/requests/api/fork_spec.rb
%%WWWDIR%%/spec/requests/api/groups_spec.rb
%%WWWDIR%%/spec/requests/api/internal_spec.rb
%%WWWDIR%%/spec/requests/api/issues_spec.rb
%%WWWDIR%%/spec/requests/api/keys_spec.rb
%%WWWDIR%%/spec/requests/api/labels_spec.rb
%%WWWDIR%%/spec/requests/api/license_templates_spec.rb
%%WWWDIR%%/spec/requests/api/members_spec.rb
%%WWWDIR%%/spec/requests/api/merge_requests_spec.rb
%%WWWDIR%%/spec/requests/api/milestones_spec.rb
%%WWWDIR%%/spec/requests/api/namespaces_spec.rb
%%WWWDIR%%/spec/requests/api/notes_spec.rb
%%WWWDIR%%/spec/requests/api/oauth_tokens_spec.rb
%%WWWDIR%%/spec/requests/api/pipelines_spec.rb
%%WWWDIR%%/spec/requests/api/project_hooks_spec.rb
%%WWWDIR%%/spec/requests/api/project_snippets_spec.rb
%%WWWDIR%%/spec/requests/api/projects_spec.rb
%%WWWDIR%%/spec/requests/api/repositories_spec.rb
%%WWWDIR%%/spec/requests/api/runners_spec.rb
%%WWWDIR%%/spec/requests/api/services_spec.rb
%%WWWDIR%%/spec/requests/api/session_spec.rb
%%WWWDIR%%/spec/requests/api/settings_spec.rb
%%WWWDIR%%/spec/requests/api/sidekiq_metrics_spec.rb
%%WWWDIR%%/spec/requests/api/system_hooks_spec.rb
%%WWWDIR%%/spec/requests/api/tags_spec.rb
%%WWWDIR%%/spec/requests/api/templates_spec.rb
%%WWWDIR%%/spec/requests/api/todos_spec.rb
%%WWWDIR%%/spec/requests/api/triggers_spec.rb
%%WWWDIR%%/spec/requests/api/users_spec.rb
%%WWWDIR%%/spec/requests/api/variables_spec.rb
%%WWWDIR%%/spec/requests/ci/api/builds_spec.rb
%%WWWDIR%%/spec/requests/ci/api/runners_spec.rb
%%WWWDIR%%/spec/requests/ci/api/triggers_spec.rb
%%WWWDIR%%/spec/requests/git_http_spec.rb
%%WWWDIR%%/spec/requests/jwt_controller_spec.rb
%%WWWDIR%%/spec/requests/lfs_http_spec.rb
%%WWWDIR%%/spec/routing/admin_routing_spec.rb
%%WWWDIR%%/spec/routing/notifications_routing_spec.rb
%%WWWDIR%%/spec/routing/project_routing_spec.rb
%%WWWDIR%%/spec/routing/routing_spec.rb
%%WWWDIR%%/spec/services/auth/container_registry_authentication_service_spec.rb
%%WWWDIR%%/spec/services/boards/create_service_spec.rb
%%WWWDIR%%/spec/services/boards/issues/list_service_spec.rb
%%WWWDIR%%/spec/services/boards/issues/move_service_spec.rb
%%WWWDIR%%/spec/services/boards/lists/create_service_spec.rb
%%WWWDIR%%/spec/services/boards/lists/destroy_service_spec.rb
%%WWWDIR%%/spec/services/boards/lists/generate_service_spec.rb
%%WWWDIR%%/spec/services/boards/lists/move_service_spec.rb
%%WWWDIR%%/spec/services/ci/create_pipeline_service_spec.rb
%%WWWDIR%%/spec/services/ci/create_trigger_request_service_spec.rb
%%WWWDIR%%/spec/services/ci/image_for_build_service_spec.rb
%%WWWDIR%%/spec/services/ci/process_pipeline_service_spec.rb
%%WWWDIR%%/spec/services/ci/register_build_service_spec.rb
%%WWWDIR%%/spec/services/create_deployment_service_spec.rb
%%WWWDIR%%/spec/services/create_release_service_spec.rb
%%WWWDIR%%/spec/services/create_snippet_service_spec.rb
%%WWWDIR%%/spec/services/create_tag_service_spec.rb
%%WWWDIR%%/spec/services/delete_tag_service_spec.rb
%%WWWDIR%%/spec/services/delete_user_service_spec.rb
%%WWWDIR%%/spec/services/destroy_group_service_spec.rb
%%WWWDIR%%/spec/services/event_create_service_spec.rb
%%WWWDIR%%/spec/services/files/update_service_spec.rb
%%WWWDIR%%/spec/services/git_hooks_service_spec.rb
%%WWWDIR%%/spec/services/git_push_service_spec.rb
%%WWWDIR%%/spec/services/git_tag_push_service_spec.rb
%%WWWDIR%%/spec/services/groups/create_service_spec.rb
%%WWWDIR%%/spec/services/groups/update_service_spec.rb
%%WWWDIR%%/spec/services/import_export_clean_up_service_spec.rb
%%WWWDIR%%/spec/services/issues/bulk_update_service_spec.rb
%%WWWDIR%%/spec/services/issues/close_service_spec.rb
%%WWWDIR%%/spec/services/issues/create_service_spec.rb
%%WWWDIR%%/spec/services/issues/move_service_spec.rb
%%WWWDIR%%/spec/services/issues/reopen_service_spec.rb
%%WWWDIR%%/spec/services/issues/update_service_spec.rb
%%WWWDIR%%/spec/services/members/destroy_service_spec.rb
%%WWWDIR%%/spec/services/merge_requests/add_todo_when_build_fails_service_spec.rb
%%WWWDIR%%/spec/services/merge_requests/build_service_spec.rb
%%WWWDIR%%/spec/services/merge_requests/close_service_spec.rb
%%WWWDIR%%/spec/services/merge_requests/create_service_spec.rb
%%WWWDIR%%/spec/services/merge_requests/get_urls_service_spec.rb
%%WWWDIR%%/spec/services/merge_requests/merge_request_diff_cache_service_spec.rb
%%WWWDIR%%/spec/services/merge_requests/merge_service_spec.rb
%%WWWDIR%%/spec/services/merge_requests/merge_when_build_succeeds_service_spec.rb
%%WWWDIR%%/spec/services/merge_requests/refresh_service_spec.rb
%%WWWDIR%%/spec/services/merge_requests/reopen_service_spec.rb
%%WWWDIR%%/spec/services/merge_requests/resolve_service_spec.rb
%%WWWDIR%%/spec/services/merge_requests/resolved_discussion_notification_service.rb
%%WWWDIR%%/spec/services/merge_requests/update_service_spec.rb
%%WWWDIR%%/spec/services/milestones/close_service_spec.rb
%%WWWDIR%%/spec/services/milestones/create_service_spec.rb
%%WWWDIR%%/spec/services/notes/create_service_spec.rb
%%WWWDIR%%/spec/services/notes/delete_service_spec.rb
%%WWWDIR%%/spec/services/notes/diff_position_update_service_spec.rb
%%WWWDIR%%/spec/services/notes/post_process_service_spec.rb
%%WWWDIR%%/spec/services/notes/slash_commands_service_spec.rb
%%WWWDIR%%/spec/services/notes/update_service_spec.rb
%%WWWDIR%%/spec/services/notification_service_spec.rb
%%WWWDIR%%/spec/services/projects/autocomplete_service_spec.rb
%%WWWDIR%%/spec/services/projects/create_service_spec.rb
%%WWWDIR%%/spec/services/projects/destroy_service_spec.rb
%%WWWDIR%%/spec/services/projects/download_service_spec.rb
%%WWWDIR%%/spec/services/projects/enable_deploy_key_service_spec.rb
%%WWWDIR%%/spec/services/projects/fork_service_spec.rb
%%WWWDIR%%/spec/services/projects/housekeeping_service_spec.rb
%%WWWDIR%%/spec/services/projects/import_service_spec.rb
%%WWWDIR%%/spec/services/projects/transfer_service_spec.rb
%%WWWDIR%%/spec/services/projects/unlink_fork_service_spec.rb
%%WWWDIR%%/spec/services/projects/update_service_spec.rb
%%WWWDIR%%/spec/services/projects/upload_service_spec.rb
%%WWWDIR%%/spec/services/repair_ldap_blocked_user_service_spec.rb
%%WWWDIR%%/spec/services/repository_archive_clean_up_service_spec.rb
%%WWWDIR%%/spec/services/search/snippet_service_spec.rb
%%WWWDIR%%/spec/services/search_service_spec.rb
%%WWWDIR%%/spec/services/slash_commands/interpret_service_spec.rb
%%WWWDIR%%/spec/services/system_hooks_service_spec.rb
%%WWWDIR%%/spec/services/system_note_service_spec.rb
%%WWWDIR%%/spec/services/test_hook_service_spec.rb
%%WWWDIR%%/spec/services/todo_service_spec.rb
%%WWWDIR%%/spec/services/update_release_service_spec.rb
%%WWWDIR%%/spec/services/update_snippet_service_spec.rb
%%WWWDIR%%/spec/simplecov_env.rb
%%WWWDIR%%/spec/spec_helper.rb
%%WWWDIR%%/spec/support/api/members_shared_examples.rb
%%WWWDIR%%/spec/support/api/pagination_shared_examples.rb
%%WWWDIR%%/spec/support/api/schema_matcher.rb
%%WWWDIR%%/spec/support/api_helpers.rb
%%WWWDIR%%/spec/support/capybara.rb
%%WWWDIR%%/spec/support/capybara_helpers.rb
%%WWWDIR%%/spec/support/carrierwave.rb
%%WWWDIR%%/spec/support/db_cleaner.rb
%%WWWDIR%%/spec/support/email_format_shared_examples.rb
%%WWWDIR%%/spec/support/email_helpers.rb
%%WWWDIR%%/spec/support/factory_girl.rb
%%WWWDIR%%/spec/support/fake_u2f_device.rb
%%WWWDIR%%/spec/support/filter_spec_helper.rb
%%WWWDIR%%/spec/support/fixture_helpers.rb
%%WWWDIR%%/spec/support/gitlab_stubs/gitlab_ci.yml
%%WWWDIR%%/spec/support/gitlab_stubs/project_8.json
%%WWWDIR%%/spec/support/gitlab_stubs/project_8_hooks.json
%%WWWDIR%%/spec/support/gitlab_stubs/projects.json
%%WWWDIR%%/spec/support/gitlab_stubs/session.json
%%WWWDIR%%/spec/support/gitlab_stubs/user.json
%%WWWDIR%%/spec/support/import_export/common_util.rb
%%WWWDIR%%/spec/support/import_export/import_export.yml
%%WWWDIR%%/spec/support/import_spec_helper.rb
%%WWWDIR%%/spec/support/issuable_create_service_slash_commands_shared_examples.rb
%%WWWDIR%%/spec/support/issuable_slash_commands_shared_examples.rb
%%WWWDIR%%/spec/support/issue_helpers.rb
%%WWWDIR%%/spec/support/issue_tracker_service_shared_example.rb
%%WWWDIR%%/spec/support/jira_service_helper.rb
%%WWWDIR%%/spec/support/login_helpers.rb
%%WWWDIR%%/spec/support/markdown_feature.rb
%%WWWDIR%%/spec/support/matchers/access_matchers.rb
%%WWWDIR%%/spec/support/matchers/include_module.rb
%%WWWDIR%%/spec/support/matchers/is_within.rb
%%WWWDIR%%/spec/support/matchers/markdown_matchers.rb
%%WWWDIR%%/spec/support/mentionable_shared_examples.rb
%%WWWDIR%%/spec/support/merge_request_helpers.rb
%%WWWDIR%%/spec/support/omni_auth.rb
%%WWWDIR%%/spec/support/project_hook_data_shared_example.rb
%%WWWDIR%%/spec/support/reference_parser_helpers.rb
%%WWWDIR%%/spec/support/repo_helpers.rb
%%WWWDIR%%/spec/support/select2_helper.rb
%%WWWDIR%%/spec/support/services_shared_context.rb
%%WWWDIR%%/spec/support/setup_builds_storage.rb
%%WWWDIR%%/spec/support/slash_commands_helpers.rb
%%WWWDIR%%/spec/support/stub_configuration.rb
%%WWWDIR%%/spec/support/stub_gitlab_calls.rb
%%WWWDIR%%/spec/support/stub_gitlab_data.rb
%%WWWDIR%%/spec/support/taskable_shared_examples.rb
%%WWWDIR%%/spec/support/test_env.rb
%%WWWDIR%%/spec/support/updating_mentions_shared_examples.rb
%%WWWDIR%%/spec/support/wait_for_ajax.rb
%%WWWDIR%%/spec/support/webmock.rb
%%WWWDIR%%/spec/support/workhorse_helpers.rb
%%WWWDIR%%/spec/tasks/gitlab/backup_rake_spec.rb
%%WWWDIR%%/spec/tasks/gitlab/db_rake_spec.rb
%%WWWDIR%%/spec/tasks/gitlab/mail_google_schema_whitelisting.rb
%%WWWDIR%%/spec/teaspoon_env.rb
%%WWWDIR%%/spec/uploaders/file_uploader_spec.rb
%%WWWDIR%%/spec/views/admin/dashboard/index.html.haml_spec.rb
%%WWWDIR%%/spec/views/ci/lints/show.html.haml_spec.rb
%%WWWDIR%%/spec/views/devise/shared/_signin_box.html.haml_spec.rb
%%WWWDIR%%/spec/views/help/index.html.haml_spec.rb
%%WWWDIR%%/spec/views/layouts/_head.html.haml_spec.rb
%%WWWDIR%%/spec/views/projects/builds/show.html.haml_spec.rb
%%WWWDIR%%/spec/views/projects/issues/_related_branches.html.haml_spec.rb
%%WWWDIR%%/spec/views/projects/merge_requests/_heading.html.haml_spec.rb
%%WWWDIR%%/spec/views/projects/tree/show.html.haml_spec.rb
%%WWWDIR%%/spec/workers/build_email_worker_spec.rb
%%WWWDIR%%/spec/workers/delete_user_worker_spec.rb
%%WWWDIR%%/spec/workers/email_receiver_worker_spec.rb
%%WWWDIR%%/spec/workers/emails_on_push_worker_spec.rb
%%WWWDIR%%/spec/workers/expire_build_artifacts_worker_spec.rb
%%WWWDIR%%/spec/workers/git_garbage_collect_worker_spec.rb
%%WWWDIR%%/spec/workers/group_destroy_worker_spec.rb
%%WWWDIR%%/spec/workers/merge_worker_spec.rb
%%WWWDIR%%/spec/workers/post_receive_spec.rb
%%WWWDIR%%/spec/workers/project_cache_worker_spec.rb
%%WWWDIR%%/spec/workers/project_destroy_worker_spec.rb
%%WWWDIR%%/spec/workers/remove_expired_group_links_worker_spec.rb
%%WWWDIR%%/spec/workers/remove_expired_members_worker_spec.rb
%%WWWDIR%%/spec/workers/repository_check/batch_worker_spec.rb
%%WWWDIR%%/spec/workers/repository_check/clear_worker_spec.rb
%%WWWDIR%%/spec/workers/repository_check/single_repository_worker_spec.rb
%%WWWDIR%%/spec/workers/repository_fork_worker_spec.rb
%%WWWDIR%%/spec/workers/repository_import_worker_spec.rb
%%WWWDIR%%/spec/workers/stuck_ci_builds_worker_spec.rb
%%WWWDIR%%/vendor/assets/javascripts/Chart.js
%%WWWDIR%%/vendor/assets/javascripts/Sortable.js
%%WWWDIR%%/vendor/assets/javascripts/autosize.js
%%WWWDIR%%/vendor/assets/javascripts/clipboard.js
%%WWWDIR%%/vendor/assets/javascripts/cropper.js
%%WWWDIR%%/vendor/assets/javascripts/date.format.js
%%WWWDIR%%/vendor/assets/javascripts/fuzzaldrin-plus.js
%%WWWDIR%%/vendor/assets/javascripts/g.bar.js
%%WWWDIR%%/vendor/assets/javascripts/g.raphael.js
%%WWWDIR%%/vendor/assets/javascripts/jquery.ba-resize.js
%%WWWDIR%%/vendor/assets/javascripts/jquery.cookie.js
%%WWWDIR%%/vendor/assets/javascripts/jquery.endless-scroll.js
%%WWWDIR%%/vendor/assets/javascripts/jquery.highlight.js
%%WWWDIR%%/vendor/assets/javascripts/jquery.nicescroll.js
%%WWWDIR%%/vendor/assets/javascripts/jquery.scrollTo.js
%%WWWDIR%%/vendor/assets/javascripts/jquery.waitforimages.js
%%WWWDIR%%/vendor/assets/javascripts/latinise.js
%%WWWDIR%%/vendor/assets/javascripts/raphael.js
%%WWWDIR%%/vendor/assets/javascripts/task_list.js
%%WWWDIR%%/vendor/assets/javascripts/u2f.js
%%WWWDIR%%/vendor/assets/javascripts/vue-resource.full.js
%%WWWDIR%%/vendor/assets/javascripts/vue-resource.js.erb
%%WWWDIR%%/vendor/assets/javascripts/vue-resource.min.js
%%WWWDIR%%/vendor/assets/javascripts/vue.full.js
%%WWWDIR%%/vendor/assets/javascripts/vue.js.erb
%%WWWDIR%%/vendor/assets/javascripts/vue.min.js
%%WWWDIR%%/vendor/assets/stylesheets/cropper.css
%%WWWDIR%%/vendor/gitignore/Global/README.md
%%WWWDIR%%/vendor/gitignore/LICENSE
%%WWWDIR%%/vendor/gitlab-ci-yml/C++.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Docker.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Elixir.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Grails.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/LICENSE
%%WWWDIR%%/vendor/gitlab-ci-yml/LaTeX.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Maven.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Nodejs.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Pages/Brunch.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Pages/Doxygen.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Pages/HTML.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Pages/Harp.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Pages/Hexo.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Pages/Hugo.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Pages/Hyde.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Pages/JBake.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Pages/Jekyll.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Pages/Lektor.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Pages/Metalsmith.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Pages/Middleman.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Pages/Nanoc.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Pages/Octopress.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Pages/Pelican.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Ruby.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Rust.gitlab-ci.yml
%%WWWDIR%%/vendor/gitlab-ci-yml/Scala.gitlab-ci.yml
@owner git
@group www
@dir(git,git) %%WWWDIR%%/
@dir %%WWWDIR%%/app/assets/images/auth_buttons/
@dir(git,git,554) %%WWWDIR%%/bin
@dir %%WWWDIR%%/config
@dir %%WWWDIR%%/builds
@dir %%WWWDIR%%/lib/assets
@dir %%WWWDIR%%/lib/ci/assets
@dir %%WWWDIR%%/log
@dir %%WWWDIR%%/public
@dir %%WWWDIR%%/public/assets
@dir %%WWWDIR%%/shared/artifacts/tmp/cache
@dir %%WWWDIR%%/shared/artifacts/tmp/uploads
@dir %%WWWDIR%%/shared/lfs-objects
@dir %%WWWDIR%%/shared/registry
@dir %%WWWDIR%%/tmp
@dir %%WWWDIR%%/tmp/cache
@dir %%WWWDIR%%/tmp/pids
@dir %%WWWDIR%%/tmp/sessions
@dir %%WWWDIR%%/tmp/sockets
@dir %%WWWDIR%%/vendor/gitignore/Global
@owner root
@group wheel
@dir /home
@dir(git,git,) /home/git
@dir(,git,2770) /home/git/repositories
@sample %%WWWDIR%%/config/gitlab.yml.sample
@sample %%WWWDIR%%/config/unicorn.rb.sample
@sample %%WWWDIR%%/config/resque.yml.sample
@sample %%WWWDIR%%/config/secrets.yml.sample
@sample %%WWWDIR%%/config/initializers/rack_attack.rb.sample
@sample %%WWWDIR%%/config/database.yml.sample
@sample %%WWWDIR%%/lib/support/nginx/gitlab.sample
@sample %%WWWDIR%%/lib/support/nginx/gitlab-ssl.sample
|