~kaozilon/totem/test

« back to all changes in this revision

Viewing changes to data/mime-type-include.sh

  • Committer: Bazaar Package Importer
  • Author(s): Sjoerd Simons, Josselin Mouette, Sjoerd Simons, Emilio Pozuelo Monfort
  • Date: 2009-04-19 17:28:51 UTC
  • mfrom: (1.2.52 upstream) (5.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090419172851-epoqimnq62akn294
Tags: 2.26.1-1
[ Josselin Mouette ]
* totem-plugins depends on python-gdbm. Closes: #523582.

[ Sjoerd Simons ]
* New upstream release (2.26.1)
* debian/patches/02_flv.patch: Dropped, fixed upstream
* debian/patches/04_tracker_build.patch: Dropped, fixed upstream
* debian/patches/01_fake_keypresses.patch: Updated and simplified
* debian/patches/70_bbc_plugin.patch: Updated
* debian/patches/90_autotools.patch: Updated

[ Emilio Pozuelo Monfort ]
* Recommend gnome-codec-install rather than gnome-app-install.
  Closes: #523052.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
        echo "/* generated with mime-types-include.sh in the totem module, don't edit or "
13
13
        echo "   commit in the nautilus module without filing a bug against totem */"
14
14
 
15
 
        echo "static char *audio_mime_types[] = {"
 
15
        echo "static const char *audio_mime_types[] = {"
16
16
        for i in $MIMETYPES ; do
17
17
                echo_mime;
18
18
        done
25
25
MIMETYPES=`grep -v ^# $1 | grep -v x-content/`
26
26
 
27
27
echo "/* generated with mime-types-include.sh, don't edit */"
28
 
echo "char *mime_types[] = {"
 
28
echo "const char *mime_types[] = {"
29
29
 
30
30
for i in $MIMETYPES ; do
31
31
        echo_mime;
35
35
 
36
36
get_audio_mimetypes $1;
37
37
 
38
 
echo "char *audio_mime_types[] = {"
 
38
echo "const char *audio_mime_types[] = {"
39
39
for i in $MIMETYPES ; do
40
40
        echo_mime;
41
41
done
44
44
 
45
45
get_video_mimetypes $1;
46
46
 
47
 
echo "char *video_mime_types[] = {"
 
47
echo "const char *video_mime_types[] = {"
48
48
for i in $MIMETYPES ; do
49
49
        echo_mime;
50
50
done