summaryrefslogtreecommitdiff
path: root/data/mime-type-include.sh
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2014-02-08 15:37:00 +0100
committerBastien Nocera <hadess@hadess.net>2014-02-09 00:44:50 +0100
commitdea38226c0f26afd2001d0d281e06f59b593c80b (patch)
tree96105c91c2bca4ba6ba269b41b997f6f2b2fb1f4 /data/mime-type-include.sh
parentda98b80e34341ea131cddd8ea597235c76cbfe72 (diff)
downloadtotem-dea38226c0f26afd2001d0d281e06f59b593c80b.tar.gz
data: Create a video mime-type list for nautilus
Instead of an audio one. The audio preview was removed from nautilus, but we need a video mime-types list to apply the film strip.
Diffstat (limited to 'data/mime-type-include.sh')
-rwxr-xr-xdata/mime-type-include.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/data/mime-type-include.sh b/data/mime-type-include.sh
index 27b84bbf8..a103688a6 100755
--- a/data/mime-type-include.sh
+++ b/data/mime-type-include.sh
@@ -7,12 +7,12 @@ echo_mime () {
}
if [ x"$1" = "x--nautilus" ] ; then
- get_audio_mimetypes $2;
+ get_video_mimetypes $2;
- echo "/* generated with mime-type-include.sh in the totem module, don't edit or "
+ echo "/* generated with mime-type-include.sh in the totem module, don't edit or"
echo " commit in the nautilus module without filing a bug against totem */"
- echo "static const char *audio_mime_types[] = {"
+ echo "static const char *video_mime_types[] = {"
for i in $MIMETYPES ; do
echo_mime;
done