MESSAGE
DATE | 2003-05-14 |
FROM | Billy
|
SUBJECT | Subject: [hangout] NYLXS webserver suggestion: MIME [Was: funny flyer penguin rides GNU]
|
On Wed, May 14, 2003 at 11:20:46AM -0700, Selso DaSilva wrote: > > download NYLXS_FSI_general_flyer.sxw and > gnu_linux_logo.png at > http://www.nylxs.com/docs/edu_files/ > please give me your comments
If we're going to be sharing these files on the NYLXS website, we should teach it how to serve them.
Right now, it's serving sxw as Content-Type: text/plain. So it looks like garbage on my browser. It's not convenient. (It should be "application/vnd.sun.xml.writer", or octet-stream at least, so I can choose a viewer).
The MIMEtypes to use are:
http://framework.openoffice.org/documentation/mimetypes/mimetypes.html
Summarizing:
Since we're running:
Server: Apache/1.3.26 (Unix) mod_perl/1.27
The following snippet should be added to our httpd.conf by an appropriately licenced, certified, and bonded Web Monkey:
AddType application/vnd.sun.xml.writer *.sxw AddType application/vnd.sun.xml.writer.template *.stw AddType application/vnd.sun.xml.calc *.sxc AddType application/vnd.sun.xml.calc.template *.stc AddType application/vnd.sun.xml.draw *.sxd AddType application/vnd.sun.xml.draw.template *.std AddType application/vnd.sun.xml.impress *.sxi AddType application/vnd.sun.xml.impress.template *.sti AddType application/vnd.sun.xml.writer.global *.sxg AddType application/vnd.sun.xml.math *.sxm
____________________________ NYLXS: New Yorker Free Software Users Scene Fair Use - because it's either fair use or useless.... NYLXS is a trademark of NYLXS, Inc
|
|