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: 04fa5dfb0d3de696a30a62d8ea08932d7e204f40 (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
var iconText = 'file-text-o';
var iconCode = 'file-code-o';
var iconImage = 'picture-o';
var iconFont = 'font';

var filesText = [
    'txt',
	'pem'
];

var filesWeb = [ // web pages
];

var filesCode = [
	'html',
    'js',
    'css',
    'scss',
    'less',
    'map',
    'json',
    'yml',
    'xml',
    'jade',
    'md',
    'py',
    'sh',
    'svg',
	'cgi'
];

var filesImage = [
    'jpg',
    'jpeg',
    'png',
    'gif',
    'tiff',
    'ico'
];

var filesFont = [
    'otf',
    'eot',
    'ttf',
    'woff'
];