diff options
author | Bastien Nocera <hadess@hadess.net> | 2003-06-11 00:47:23 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@src.gnome.org> | 2003-06-11 00:47:23 +0000 |
commit | 2d36f09279ae23e296738600f725d262a855c5c6 (patch) | |
tree | b16c537804c4b0d6c22ffb7fa1e2d31f4ecea544 /data | |
parent | 4d35ed0fcb879598dbd9bed3d5683a5587a9f12c (diff) | |
download | totem-2d36f09279ae23e296738600f725d262a855c5c6.tar.gz |
try to thumbnail Real Video files added a FIXME
2003-06-11 Bastien Nocera <hadess@hadess.net>
* data/schemas.sh: try to thumbnail Real Video files
* src/totem.c: (totem_action_error_try_download): added a FIXME
Diffstat (limited to 'data')
-rwxr-xr-x | data/schemas.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data/schemas.sh b/data/schemas.sh index 863fdf030..5feaa7182 100755 --- a/data/schemas.sh +++ b/data/schemas.sh @@ -28,6 +28,7 @@ schema() } MIMETYPES=`cat $1 | grep -v short_list_application_ids_for_ | grep "\/" | grep -v audio | grep -v "application/x-flac"` +MIMETYPES="$MIMETYPES audio/x-pn-realaudio" echo "<gconfschemafile>"; echo " <schemalist>"; @@ -46,7 +47,7 @@ for i in $MIMETYPES ; do schema; done -MIMETYPES=`cat $1 | grep -v short_list_application_ids_for_ | grep "\/" | grep audio` +MIMETYPES=`cat $1 | grep -v short_list_application_ids_for_ | grep "\/" | grep audio | grep -v "audio/x-pn-realaudio"` for i in $MIMETYPES ; do DIR=`echo $i | sed 's,/,@,'` |