Whoops, forgot to put "." before some of the suffixes.
[mmh] / etc / mhn.defaults.sh
1 #!/bin/sh
2 #
3 # mhn.defaults.sh -- create extra profile file for MIME handling
4 #
5 # USAGE: mhn.defaults.sh [ search-path [ search-prog ]]
6
7 # If a search path is passed to the script, we
8 # use that, else we use a default search path.
9 if [ -n "$1" ]; then
10     SEARCHPATH=$1
11 else
12     SEARCHPATH="$PATH:/usr/demo/SOUND"
13 fi
14
15 # If a search program is passed to the script, we
16 # use that, else we use a default search program.
17 if [ -n "$2" ]; then
18     SEARCHPROG=$2
19 else
20     SEARCHPROG="mhn.find.sh"
21 fi
22
23 # put output into a temporary file, so we
24 # can sort it before output.
25 TMP=/tmp/nmh_temp.$$
26 trap "rm -f $TMP" 0 1 2 3 13 15
27
28 echo "mhstore-store-text: %m%P.txt" >> $TMP
29 echo "mhstore-store-text/richtext: %m%P.rt" >> $TMP
30 echo "mhstore-store-video/mpeg: %m%P.mpg" >> $TMP
31 echo "mhstore-store-application/PostScript: %m%P.ps" >> $TMP
32
33 PGM="`$SEARCHPROG $SEARCHPATH xwud`"
34 if [ ! -z "$PGM" ]; then
35     XWUD="$PGM" X11DIR="`echo $PGM | awk -F/ '{ for(i=2;i<NF;i++)printf "/%s", $i;}'`"/
36 else
37     XWUD= X11DIR=
38 fi
39
40 PGM="`$SEARCHPROG $SEARCHPATH pbmtoxwd`"
41 if [ ! -z "$PGM" ]; then
42     PBM="$PGM" PBMDIR="`echo $PGM | awk -F/ '{ for(i=2;i<NF;i++)printf "/%s", $i;}'`"/
43 else
44     PBM= PBMDIR=
45 fi
46
47 PGM="`$SEARCHPROG $SEARCHPATH xv`"
48 if [ ! -z "$PGM" ]; then
49     echo "mhshow-show-image: %p$PGM -geometry =-0+0 '%f'" >> $TMP
50 elif [ ! -z $"PBM" -a ! -z "$XWUD" ]; then
51     echo "mhshow-show-image/gif: %p${PBMDIR}giftoppm | ${PBMDIR}ppmtopgm | ${PBMDIR}pgmtopbm | ${PBMDIR}pbmtoxwd | $XWUD -geometry =-0+0" >> $TMP
52     echo "mhshow-show-image/x-pbm: %p${PBMDIR}pbmtoxwd | $XWUD -geometry =-0+0" >> $TMP
53     echo "mhshow-show-image/x-pgm: %p${PBMDIR}pgmtopbm | ${PBMDIR}pbmtoxwd | $XWUD -geometry =-0+0" >> $TMP
54     echo "mhshow-show-image/x-ppm: %p${PBMDIR}ppmtopgm | ${PBMDIR}pgmtopbm | ${PBMDIR}pbmtoxwd | $XWUD -geometry =-0+0" >> $TMP
55     echo "mhshow-show-image/x-xwd: %p$XWUD -geometry =-0+0" >> $TMP
56
57     PGM="`$SEARCHPROG $SEARCHPATH djpeg`"
58     if [ ! -z "$PGM" ]; then
59         echo "mhshow-show-image/jpeg: %p$PGM -Pg | ${PBMDIR}ppmtopgm | ${PBMDIR}pgmtopbm | ${PBMDIR}pbmtoxwd | $XWUD -geometry =-0+0" >> $TMP
60     fi
61 fi
62
63 if [ -f "/dev/audioIU" ]; then
64     PGM="`$SEARCHPROG $SEARCHPATH recorder`"
65     if [ ! -z "$PGM" ]; then
66         echo "mhstore-store-audio/basic: %m%P.au" >> $TMP
67         echo "mhbuild-compose-audio/basic: ${AUDIODIR}recorder '%f' -au -pause > /dev/tty" >> $TMP
68         echo "mhshow-show-audio/basic: %p${AUDIODIR}splayer -au" >> $TMP
69     fi
70 elif [ -f "/dev/audio" ]; then
71     PGM="`$SEARCHPROG $SEARCHPATH raw2audio`"
72     if [ ! -z "$PGM" ]; then
73         AUDIODIR="`echo $PGM | awk -F/ '{ for(i=2;i<NF;i++)printf "/%s", $i;}'`"/
74         echo "mhstore-store-audio/basic: | ${AUDIODIR}raw2audio -e ulaw -s 8000 -c 1 > %m%P.au" >> $TMP
75         echo "mhstore-store-audio/x-next: %m%P.au" >> $TMP
76         AUDIOTOOL="`$SEARCHPROG $SEARCHPATH audiotool`"
77         if [ ! -z "$AUDIOTOOL" ]; then
78             echo "mhbuild-compose-audio/basic: $AUDIOTOOL '%f' && ${AUDIODIR}raw2audio -F < '%f'" >> $TMP
79         else
80             echo "mhbuild-compose-audio/basic: trap \"exit 0\" 2 && ${AUDIODIR}record | ${AUDIODIR}raw2audio -F" >> $TMP
81         fi
82         echo "mhshow-show-audio/basic: %p${AUDIODIR}raw2audio 2>/dev/null | ${AUDIODIR}play" >> $TMP
83
84         PGM="`$SEARCHPROG $SEARCHPATH adpcm_enc`"
85         if [ ! -z "$PGM" ]; then
86             DIR="`echo $PGM | awk -F/ '{ for(i=2;i<NF;i++)printf "/%s", $i;}'`"/
87             if [ ! -z "$AUDIOTOOL" ]; then
88                 echo "mhbuild-compose-audio/x-next: $AUDIOTOOL '%f' && ${DIR}adpcm_enc < '%f'" >> $TMP
89             else
90                 echo "mhbuild-compose-audio/x-next: ${AUDIODIR}record | ${DIR}adpcm_enc" >> $TMP
91             fi
92             echo "mhshow-show-audio/x-next: %p${DIR}adpcm_dec | ${AUDIODIR}play" >> $TMP
93         else
94             if [ ! -z "$AUDIOTOOL" ]; then
95                 echo "mhbuild-compose-audio/x-next: $AUDIOTOOL '%f'" >> $TMP
96             else
97                 echo "mhbuild-compose-audio/x-next: ${AUDIODIR}record" >> $TMP
98             fi
99             echo "mhshow-show-audio/x-next: %p${AUDIODIR}play" >> $TMP
100         fi
101     else
102         echo "mhbuild-compose-audio/basic: cat < /dev/audio" >> $TMP
103         echo "mhshow-show-audio/basic: %pcat > /dev/audio" >> $TMP
104     fi
105 fi
106
107 PGM="`$SEARCHPROG $SEARCHPATH mpeg_play`"
108 if [ ! -z "$PGM" ]; then
109         echo "mhshow-show-video/mpeg: %p$PGM '%f'" >> $TMP
110 fi
111
112 PGM="`$SEARCHPROG $SEARCHPATH lpr`"
113 if [ ! -z "$PGM" ]; then
114         echo "mhshow-show-application/PostScript: %plpr -Pps" >> $TMP
115 else
116     PGM="`$SEARCHPROG $SEARCHPATH lp`"
117     if [ ! -z "$PGM" ]; then    
118         echo "mhshow-show-application/PostScript: %plp -dps" >> $TMP
119     fi
120 fi
121
122 PGM="`$SEARCHPROG $SEARCHPATH ivs_replay`"
123 if [ ! -z "$PGM" ]; then
124         echo "mhshow-show-application/x-ivs: %p$PGM -o '%F'" >> $TMP
125 fi
126
127 cat <<EOF >> ${TMP}
128 mhshow-suffix-text/html: .html
129 mhshow-suffix-text/xml: .xml
130 mhshow-suffix-application/pdf: .pdf
131 mhshow-suffix-application/postscript: .ps
132 mhshow-suffix-application/msword: .doc
133 mhshow-suffix-application/msword: .docx
134 mhshow-suffix-application/vnd.ms-excel: .xls
135 mhshow-suffix-application/vnd.ms-excel: .xlc
136 mhshow-suffix-application/vnd.ms-excel: .xll
137 mhshow-suffix-application/vnd.ms-excel: .xlm
138 mhshow-suffix-application/vnd.ms-excel: .xlw
139 mhshow-suffix-application/vnd.ms-excel: .xla
140 mhshow-suffix-application/vnd.ms-excel: .xlt
141 mhshow-suffix-application/vnd.ms-excel: .xld
142 mhshow-suffix-application/vnd.ms-powerpoint: .ppz
143 mhshow-suffix-application/vnd.ms-powerpoint: .ppt
144 mhshow-suffix-application/vnd.ms-powerpoint: .pps
145 mhshow-suffix-application/vnd.ms-powerpoint: .pot
146 mhshow-suffix-audio/mpeg: .mp3
147 mhshow-suffix-image/gif: .gif
148 mhshow-suffix-image/jpeg: .jpeg
149 mhshow-suffix-image/jpeg: .jpg
150 mhshow-suffix-image/png: .png
151 mhshow-suffix-image/tiff: .tif
152 mhshow-suffix-image/tiff: .tiff
153 mhshow-suffix-video/mpeg: .mpeg
154 mhshow-suffix-video/mpeg: .mpg
155 mhshow-suffix-video/mpeg: .mpg
156 mhshow-suffix-video/quicktime: .qt
157 mhshow-suffix-video/quicktime: .mov
158 mhshow-suffix-video/quicktime: .moov
159 mhshow-suffix-video/quicktime: .qtvr
160 EOF
161
162 # I'd like to check if netscape is available and use it preferentially to lynx,
163 # but only once I've added a new %-escape that makes more permanent temp files,
164 # so netscape -remote can be used (without -remote you get a complaint dialog
165 # that another netscape is already running and certain things can't be done).
166 PGM="`$SEARCHPROG $SEARCHPATH lynx`"
167 if [ ! -z "$PGM" ]; then
168         echo "mhshow-show-text/html: %p$PGM '%F'" >> $TMP
169 fi
170
171 PGM="`$SEARCHPROG $SEARCHPATH richtext`"
172 if [ ! -z "$PGM" ]; then
173         echo "mhshow-show-text/richtext: %p$PGM -p '%F'" >> $TMP
174 else
175     PGM="`$SEARCHPROG $SEARCHPATH rt2raw`"
176     if [ ! -z "$PGM" ]; then
177         echo "mhshow-show-text/richtext: %p$PGM < '%f' | fmt -78 | more" >> $TMP
178     fi
179 fi
180
181 # staroffice to read .doc files
182 PGM="`$SEARCHPROG $SEARCHPATH soffice`"
183 if [ ! -z "$PGM" ]; then
184         echo "mhshow-show-application/msword: %psoffice '%F'" >> $TMP
185         echo "mhshow-suffix-application/msword: .doc" >> $TMP
186 fi
187
188 # output a sorted version of the file
189 sort < $TMP
190
191 exit 0
192
193 : not until we get a "safe" postscript environment...
194
195 PGM="`$SEARCHPROG $SEARCHPATH pageview`"
196 if [ "$DISPLAY" = "unix:0.0" -a ! -z "$PGM" ]; then
197     echo "mhshow-show-application/PostScript: %p$PGM -" >> $TMP
198 else
199     PGM="`$SEARCHPROG $SEARCHPATH gs`"
200     if [ ! -z "$PGM" ]; then
201         echo "mhshow-show-application/PostScript: %p$PGM -- '%F'" >> $TMP
202         echo "mhshow-suffix-application/PostScript: .ps" >> $TMP
203     fi
204 fi
205
206 : have to experiment more with this
207
208 PGM="`$SEARCHPROG $SEARCHPATH ivs_record`"
209 if [ ! -z "$PGM" ]; then
210         echo "mhbuild-compose-application/x-ivs: $PGM -u localhost '%F'" >> $TMP
211 fi