X-Git-Url: http://git.cyclocoop.org/?p=velocampus%2Fweb%2Fwww.git;a=blobdiff_plain;f=www%2Fecrire%2Fmaj%2Fvieille_base%2F1813%2Finc_typebase.php;fp=www%2Fecrire%2Fmaj%2Fvieille_base%2F1813%2Finc_typebase.php;h=f73f0e8bb2354c6e9924dabf56488eb71bc07d1b;hp=0000000000000000000000000000000000000000;hb=80b4d3e85f78d402ed2e73f8f5d1bf4c19962eed;hpb=aaf970bf4cdaf76689ecc10609048e18d073820c diff --git a/www/ecrire/maj/vieille_base/1813/inc_typebase.php b/www/ecrire/maj/vieille_base/1813/inc_typebase.php new file mode 100644 index 0000000..f73f0e8 --- /dev/null +++ b/www/ecrire/maj/vieille_base/1813/inc_typebase.php @@ -0,0 +1,154 @@ + 1, + 'png' => 2, + 'gif' => 3, + + // Autres images (peuvent utiliser le tag ) + 'bmp' => 'BMP', + 'psd' => 'Photoshop', + 'tif' => 'TIFF' + ); + +// Multimedia (peuvent utiliser le tag ) + +$tables_sequences = array( + 'aiff' => 'AIFF', + 'asf' => 'Windows Media', + 'avi' => 'Windows Media', + 'mid' => 'Midi', + 'mng' => 'MNG', + 'mov' => 'QuickTime', + 'mp3' => 'MP3', + 'mpg' => 'MPEG', + 'ogg' => 'Ogg', + 'qt' => 'QuickTime', + 'ra' => 'RealAudio', + 'ram' => 'RealAudio', + 'rm' => 'RealAudio', + 'swf' => 'Flash', + 'wav' => 'WAV', + 'wmv' => 'Windows Media' + ); + +// Documents varies +$tables_documents = array( + 'ai' => 'Adobe Illustrator', + 'bz2' => 'BZip', + 'c' => 'C source', + 'css' => 'Cascading Style Sheet', + 'deb' => 'Debian', + 'doc' => 'Word', + 'djvu' => 'DjVu', + 'dvi' => 'LaTeX DVI', + 'eps' => 'PostScript', + 'gz' => 'GZ', + 'h' => 'C header', + 'html' => 'HTML', + 'pas' => 'Pascal', + 'pdf' => 'PDF', + 'pgn' => 'Portable Game Notation', + 'ppt' => 'PowerPoint', + 'ps' => 'PostScript', + 'rpm' => 'RedHat/Mandrake/SuSE', + 'rtf' => 'RTF', + 'sdd' => 'StarOffice', + 'sdw' => 'StarOffice', + 'sit' => 'Stuffit', + 'sxc' => 'OpenOffice Calc', + 'sxi' => 'OpenOffice Impress', + 'sxw' => 'OpenOffice', + 'tex' => 'LaTeX', + 'tgz' => 'TGZ', + 'txt' => 'texte', + 'xcf' => 'GIMP multi-layer', + 'xls' => 'Excel', + 'xml' => 'XML', + 'zip' => 'Zip' + ); + +$tables_mime = array( + // Images reconnues par PHP + 'jpg'=>'image/jpeg', + 'png'=>'image/png', + 'gif'=>'image/gif', + + // Autres images (peuvent utiliser le tag ) + 'bmp'=>'image/x-ms-bmp', // pas enregistre par IANA, variante: image/bmp + 'psd'=>'image/x-photoshop', // pas IANA + 'tif'=>'image/tiff', + + // Multimedia (peuvent utiliser le tag ) + 'aiff'=>'audio/x-aiff', + 'asf'=>'video/x-ms-asf', + 'avi'=>'video/x-msvideo', + 'mid'=>'audio/midi', + 'mng'=>'video/x-mng', + 'mov'=>'video/quicktime', + 'mp3'=>'audio/mpeg', + 'mpg'=>'video/mpeg', + 'ogg'=>'application/ogg', + 'qt' =>'video/quicktime', + 'ra' =>'audio/x-pn-realaudio', + 'ram'=>'audio/x-pn-realaudio', + 'rm' =>'audio/x-pn-realaudio', + 'swf'=>'application/x-shockwave-flash', + 'wav'=>'audio/x-wav', + 'wmv'=>'video/x-ms-wmv', + + // Documents varies + 'ai' =>'application/illustrator', + 'bz2'=>'application/x-bzip2', + 'c' =>'text/x-csrc', + 'css'=>'text/css', + 'deb'=>'application/x-debian-package', + 'doc'=>'application/msword', + 'djvu'=>'image/vnd.djvu', + 'dvi'=>'application/x-dvi', + 'eps'=>'application/postscript', + 'gz' =>'application/x-gzip', + 'h' =>'text/x-chdr', + 'html'=>'text/html', + 'pas'=>'text/x-pascal', + 'pdf'=>'application/pdf', + 'pgn' =>'application/x-chess-pgn', + 'ppt'=>'application/vnd.ms-powerpoint', + 'ps' =>'application/postscript', + 'rpm'=>'application/x-redhat-package-manager', + 'rtf'=>'application/rtf', + 'sdd'=>'application/vnd.stardivision.impress', + 'sdw'=>'application/vnd.stardivision.writer', + 'sit'=>'application/x-stuffit', + 'sxc'=>'application/vnd.sun.xml.calc', + 'sxi'=>'application/vnd.sun.xml.impress', + 'sxw'=>'application/vnd.sun.xml.writer', + 'tex'=>'text/x-tex', + 'tgz'=>'application/x-gtar', + 'txt'=>'text/plain', + 'xcf'=>'application/x-xcf', + 'xls'=>'application/vnd.ms-excel', + 'xml'=>'application/xml', + 'zip'=>'application/zip' + ); +?>