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
| $fileIcons = array(
"application/x-compress" => "compressed.gif",
"application/x-gzip" => "compressed.gif",
"application/zip" => "compressed.gif",
"application/x-compress" => "compressed.gif",
"application/x-zip-compressed" => "compressed.gif",
"text/calendar" => "txt.gif",
"text/css" => "layout.gif",
"text/enriched" => "text.gif",
"text/html" => "htm.gif",
"text/plain" => "txt.gif",
"text/prs.lines.tag" => "txt.gif",
"text/rfc822-headers" => "txt.gif",
"text/richtext" => "txt.gif",
"text/rtf" => "txt.gif",
"text/sgml" => "txt.gif",
"text/tab-separated-values" => "txt.gif",
"image/bmp" => "jpg.gif",
"image/cgm" => "jpg.gif",
"image/g3fax" => "jpg.gif",
"image/gif" => "gif.gif",
"image/ief" => "jpg.gif",
"image/jpeg" => "jpg.gif",
"image/pjpeg" => "jpg.gif",
"image/naplps" => "jpg.gif",
"image/png" => "jpg.gif",
"image/prs.btif" => "jpg.gif",
"image/prs.pti" => "jpg.gif",
"image/tiff" => "jpg.gif",
"image/vnd.cns.inf2" => "jpg.gif",
"image/vnd.dwg" => "jpg.gif",
"image/vnd.dxf" => "jpg.gif",
"image/vnd.fastbidsheet" => "jpg.gif",
"image/vnd.fpx" => "jpg.gif",
"image/vnd.mix" => "jpg.gif",
"image/vnd.net-fpx" => "jpg.gif",
"image/vnd.svf" => "jpg.gif",
"image/vnd.wap.wbmp" => "jpg.gif",
"image/vnd.xiff" => "jpg.gif",
"image/x-cmu-raster" => "jpg.gif",
"image/x-icon" => "jpg.gif",
"image/x-portable-anymap" => "jpg.gif",
"image/x-portable-bitmap" => "jpg.gif",
"image/x-portable-graymap" => "jpg.gif",
"image/x-portable-pixmap" => "jpg.gif",
"image/x-rgb" => "jpg.gif",
"image/x-xbitmap" => "jpg.gif",
"image/x-xpixmap" => "jpg.gif",
"image/x-xwindowdump" => "jpg.gif",
"audio/wav" => "sound2.gif",
"audio/32kadpcm" => "sound2.gif",
"audio/basic" => "sound2.gif",
"audio/l16" => "sound2.gif",
"audio/midi" => "sound2.gif",
"audio/mpeg" => "sound2.gif",
"audio/vnd.cns.anp1" => "sound2.gif",
"audio/vnd.cns.inf1" => "sound2.gif",
"audio/vnd.digital-winds" => "sound2.gif",
"audio/vnd.lucent.voice" => "sound2.gif",
"audio/vnd.nortel.vbk" => "sound2.gif",
"audio/vnd.octel.sbc" => "sound2.gif",
"audio/vnd.qcelp" => "sound2.gif",
"audio/vnd.rhetorex.32kadpcm" => "sound2.gif",
"audio/vnd.vmx.cvsd" => "sound2.gif",
"audio/x-aiff" => "sound2.gif",
"audio/x-pn-realaudio" => "sound2.gif",
"audio/x-pn-realaudio-plugin" => "sound2.gif",
"audio/x-realaudio" => "sound2.gif",
"audio/x-wav" => "sound2.gif",
"application/octet-stream" => "ms_office.gif",
"application/x-dvi" => "dvi.gif",
"application/pdf" => "pdf.gif",
"application/postscript" => "ps.gif",
"application/x-gtar" => "tar.gif",
"application/x-tar" => "tar.gif",
"application/x-ustar" => "tar.gif",
"application/x-latex" => "tex.gif",
"application/x-tex" => "tex.gif",
"application/x-texinfo" => "tex.gif",
"application/msword" => "doc.gif",
"application/vnd.ms-excel" => "xls.gif",
"application/vnd.ms-powerpoint" => "ppt.gif",
"audio/midi" => "sound2.gif",
"audio/x-pn-realaudio" => "sound1.gif",
"audio/x-pn-realaudio-plugin" => "sound1.gif",
"audio/x-realaudio" => "sound1.gif",
"audio/x-wav" => "sound1.gif",
"audio/mpeg" => "movie.gif",
"video/mpeg" => "movie.gif",
"video/quicktime" => "movie.gif",
"video/x-msvideo" => "movie.gif",
"video/x-sgi-movie" => "movie.gif",
"application/x-shockwave-flash" => "swf.gif",
); |