Welcome to mirror list, hosted at ThFree Co, Russian Federation.

file-types.js « .autoindex - github.com/iglvzx/IGalvez.Autoindex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f705c185573d2d4967c842ca819addc7fcc1aeb (plain)
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
// file types array of objects
var fileTypes = [

    {
        type: "text",
        icon: "file-text-o",
        extensions: [
            'txt',
            'pem',
            'log'
        ]
    },

    {
        type: "code",
        icon: "file-code-o",
        extensions: [
            'html',
            'js',
            'css',
            'scss',
            'less',
            'map',
            'json',
            'yml',
            'xml',
            'jade',
            'md',
            'py',
            'sh',
            'svg',
            'cgi'
        ]
    },

    {
        type: "image",
        icon: "picture-o",
        extensions: [
            'bmp',
            'jpg',
            'jpeg',
            'png',
            'gif',
            'tiff',
            'ico'
        ]
    },

    {
        type: "audio",
        icon: "music",
        extensions: [
            'mp3',
            'wav',
            'wma',
            'ogg'
        ]
    },

    {
        type: "font",
        icon: "font",
        extensions: [
            'otf',
            'eot',
            'ttf',
            'woff',
            'woff2'
        ]
    },

    {
        type: "configuration",
        icon: "cog",
        extensions: [
            'ini',
            'conf',
            'cfg'
        ]
    }

];