Name

mime_type — print file MIME type, based on file extension

DESCRIPTION

The filter takes a filename as input, determines file extension and returns the appropriate MIME type for it.

EXAMPLES

Example: Filter example

[filter mime_type]image.jpg[/filter]
Example in action:
              image/jpeg
            

NOTES

AVAILABILITY

mime_type is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: code/Filter/mime_type.filter
Lines: 17


# Copyright 2002-2007 Interchange Development Group and others
# Copyright 1996-2002 Red Hat, Inc.
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.  See the LICENSE file for details.
# 
# $Id: mime_type.filter,v 1.4 2007-03-30 23:40:45 pajamian Exp $

CodeDef mime_type Filter
CodeDef mime_type Description Find MIME type of filename
CodeDef mime_type Routine <<EOR
sub {
return Vend::Util::mime_type(shift);
}
EOR

AUTHORS

Interchange Development Group

SEE ALSO

MimeType(7ic)

DocBook! Interchange!