Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • VideoLAN.org/websites
  • Freso/websites
  • ePirat/websites
  • DimStar77/websites
  • lemourin/websites
  • kwizart/websites
  • cmassiot/websites
  • fcartegnie/websites
  • mfkl/websites
  • chouquette/websites
  • maybesamuel43/websites
  • xslidian/websites
  • realRojSerbest/websites
  • Aza/websites
  • azchohfi/websites
  • VegaMex/websites
  • m/websites
  • fkuehne/websites
  • Roman-Gemini95/websites
  • Jamesguru/websites
  • dillmo71/websites
  • anodsaod/websites
  • jill/websites
  • Garf/websites
  • atas70835/websites
  • mahdiabdolahi01234/websites
  • pbo-linaro/websites
  • OctopusET/websites
28 results
Show changes
Commits on Source (2)
Showing
with 34 additions and 697 deletions
www.videolan.org/videolan/events/20030204/cnit1.jpg

109 KiB

www.videolan.org/videolan/events/20030204/cnit3.jpg

104 KiB

www.videolan.org/videolan/events/20030204/cnit5.jpg

114 KiB

#!/bin/sh
# genethumb.sh - Gnration de thumbnails mortels de ta mre
# (c) 3 Jan 1998: version 0.0.4 by Samuel Hocevar <sam@via.ecp.fr>
# 22 May 2000: version 0.0.5 by Samuel Hocevar <sam@via.ecp.fr>
# 15 Nov 2000: version 0.0.6 by Samuel Hocevar <sam@zoy.org>
# with code from Sven Hartge <hartge@ds9.argh.org>
# 13 Dec 2000: version 0.0.7 by Samuel Hocevar <sam@zoy.org>
# now compatible with old ImageMagick versions
# added --rows option
#
# 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.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
version=0.0.7
THFILE=index.html
THDIR=.xvpics
THEXT=png # change this to jpeg or whatever you want
THWIDTH=120 # thumbnail width
THHEIGHT=90 # thumbnail height
THCOLS=5 # change to set table width -- 0 for no tables
if [ x"$1" != x ]
then
THCOLS=$1
fi
echo "genethumb.sh v$version -- report bugs to Samuel Hocevar <sam@zoy.org>"
echo "usage: genethumb.sh [number of rows]"
if [ -w $THFILE ]
then
echo "saving $THFILE to $THFILE~"
mv -f $THFILE $THFILE~
fi
if [ ! -d $THDIR ]
then
echo "creating thumbnail directory $THDIR"
mkdir $THDIR
fi
cat > $THFILE << EOF
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="GENERATOR" content="genethumb.sh version $version" />
<meta name="Description" content="thumbnails of $PWD" />
<title>Index of $PWD</title>
<style type="text/css">
img { border: 1pt; }
body { background: white; color: black;
font-family: Arial, Helvetica, sans-serif;
font-size: 9pt; margin: 5pt; }
h2 { color: black; background: white; font-size: 14pt; }
a { text-decoration: none; }
td.center { text-align: center; }
td.nowrap { white-space: nowrap; }
blockquote.center { text-align: center; }
</style>
</head>
<body>
<table border="0" width="100%"><tr><td>
<h2>Index of $PWD</h2></td>
<td align="right">generated by <a
href="http://sam.zoy.org/projects/unix/genethumb.html">genethumb.sh</a>
version $version </td></tr></table>
<hr />
<table cellspacing="5" border="0">
<tr>
EOF
compteur=0
created=0
find . -type f -maxdepth 1 | sed 's,^\./,,' | while read file
do
# on vrifie que l'image n'est pas dj un thumbnail ou une page html, et a
# une extension quelconque ( amliorer un peu)
if echo "$file" | grep -v "~$" | grep -qv "\.html$"
then
failed=0
newfile="$THDIR/tn_$file.$THEXT"
echo -n "* $file: "
if [ -r $newfile ]
then
echo "thumbnail already exists."
else
convert -geometry ${THWIDTH}x${THHEIGHT} $file $newfile >/dev/null 2>&1
if [ ! -r $newfile ]
then
echo "failed creating."
failed=1
else
echo "done."
fi
fi
if [ x"$failed" = x0 ]
then
created=$(expr 0$created + 1)
if [ -e "$newfile.info" ]
then
read filesize coordinates oldcoords < "$newfile.info"
else
dummyvar=$(identify "$file" | awk '{print $4 " " $2}' )
filesize=$(echo $dummyvar | awk '{print $1}')
coordinates=$(identify "$newfile" | awk '{print $2}')
oldcoords=$(echo $dummyvar | awk '{print $2}')
echo $filesize $coordinates $oldcoords > "$newfile.info"
echo " $newfile.info written."
fi
j=$(echo $file | cut -b1-20)
if [ x"$file" != x"$j" ]
then
j=$(echo $file | cut -b1-17)...
fi
res=$(identify $file | cut -f3 -d" ")
if [ x$res = "x1800x1200" ]
then
lowres="$THDIR/`echo $file | sed 's/\.jpg$/_low.jpg/'`"
echo -n " convert to lowres : $lowres ..."
convert -geometry 900x600 $file $lowres >/dev/null 2>&1
echo "done"
cat >> $THFILE << EOF
<td align="center">
<a href="$file"><img alt="$file ($oldcoords)"
width="$(echo $coordinates | cut -f1 -dx)"
height="$(echo $coordinates | cut -f2 -dx)"
src="$newfile" /><br />$j<br />$oldcoords</a><br />
<a href="$lowres">(<small>900x600</small>)</a>
</td>
EOF
elif [ x$res = "x1200x1800" ]
then
lowres=`echo $file | sed 's/\.jpg$/_low.jpg/'`
echo -n " convert to lowres : $lowres ..."
convert -geometry 600x900 $file $lowres >/dev/null 2>&1
echo "done"
cat >> $THFILE << EOF
<td align="center">
<a href="$file"><img alt="$file ($oldcoords)"
width="$(echo $coordinates | cut -f1 -dx)"
height="$(echo $coordinates | cut -f2 -dx)"
src="$newfile" /><br />$j<br />$oldcoords</a><br />
<a href="$lowres">(<small>600x900</small>)</a>
</td>
EOF
else
cat >> $THFILE << EOF
<td align="center">
<a href="$file"><img alt="$file ($oldcoords)"
width="$(echo $coordinates | cut -f1 -dx)"
height="$(echo $coordinates | cut -f2 -dx)"
src="$newfile" /><br />$j<br />$oldcoords</a>
</td>
EOF
fi
compteur=$(expr 0$compteur + 1)
if [ x"$compteur" = "x$THCOLS" ]
then
echo " </tr><tr>" >> $THFILE
compteur=0
fi
fi
fi
done
echo "done."
cat >> $THFILE << EOF
</tr>
</table>
</body>
</html>
EOF
<?
$title = "VideoLAN - Linux Expo Paris 2003";
$lang = "en";
$date = "18 February 2003";
$menu = array( "home", "events" );
require("header.php3");
?>
<table border="0" width="100%"><tr><td>
<? h2("VideoLAN booth at Linux Expo Paris 2003"); ?></td>
<td align="right">generated by <a
href="http://sam.zoy.org/projects/unix/genethumb.html">genethumb.sh</a>
version 0.0.7 </td></tr></table>
<table cellspacing="5" border="0">
<tr>
<td align="center">
<a href="cnit1.jpg"><img alt="cnit1.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_cnit1.png.png" /><br />cnit1.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="cnit3.jpg"><img alt="cnit3.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_cnit3.png.png" /><br />cnit3.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="cnit5.jpg"><img alt="cnit5.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_cnit5.png.png" /><br />cnit5.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan29.jpg"><img alt="videolan29.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan29.png.png" /><br />videolan29.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan1.jpg"><img alt="videolan1.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan1.png.png" /><br />videolan1.jpg<br />JPEG</a>
</td>
</tr><tr>
<td align="center">
<a href="videolan10.jpg"><img alt="videolan10.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan10.png.png" /><br />videolan10.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan11.jpg"><img alt="videolan11.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan11.png.png" /><br />videolan11.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan12.jpg"><img alt="videolan12.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan12.png.png" /><br />videolan12.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan13.jpg"><img alt="videolan13.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan13.png.png" /><br />videolan13.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan14.jpg"><img alt="videolan14.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan14.png.png" /><br />videolan14.jpg<br />JPEG</a>
</td>
</tr><tr>
<td align="center">
<a href="videolan15.jpg"><img alt="videolan15.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan15.png.png" /><br />videolan15.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan16.jpg"><img alt="videolan16.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan16.png.png" /><br />videolan16.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan17.jpg"><img alt="videolan17.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan17.png.png" /><br />videolan17.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan18.jpg"><img alt="videolan18.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan18.png.png" /><br />videolan18.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan19.jpg"><img alt="videolan19.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan19.png.png" /><br />videolan19.jpg<br />JPEG</a>
</td>
</tr><tr>
<td align="center">
<a href="videolan2.jpg"><img alt="videolan2.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan2.png.png" /><br />videolan2.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan20.jpg"><img alt="videolan20.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan20.png.png" /><br />videolan20.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan21.jpg"><img alt="videolan21.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan21.png.png" /><br />videolan21.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan22.jpg"><img alt="videolan22.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan22.png.png" /><br />videolan22.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan23.jpg"><img alt="videolan23.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan23.png.png" /><br />videolan23.jpg<br />JPEG</a>
</td>
</tr><tr>
<td align="center">
<a href="videolan24.jpg"><img alt="videolan24.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan24.png.png" /><br />videolan24.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan25.jpg"><img alt="videolan25.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan25.png.png" /><br />videolan25.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan26.jpg"><img alt="videolan26.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan26.png.png" /><br />videolan26.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan27.jpg"><img alt="videolan27.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan27.png.png" /><br />videolan27.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan28.jpg"><img alt="videolan28.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan28.png.png" /><br />videolan28.jpg<br />JPEG</a>
</td>
</tr><tr>
<td align="center">
<a href="videolan3.jpg"><img alt="videolan3.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan3.png.png" /><br />videolan3.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan30.jpg"><img alt="videolan30.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan30.png.png" /><br />videolan30.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan31.jpg"><img alt="videolan31.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan31.png.png" /><br />videolan31.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan4.jpg"><img alt="videolan4.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan4.png.png" /><br />videolan4.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan5.jpg"><img alt="videolan5.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan5.png.png" /><br />videolan5.jpg<br />JPEG</a>
</td>
</tr><tr>
<td align="center">
<a href="videolan6.jpg"><img alt="videolan6.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan6.png.png" /><br />videolan6.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan7.jpg"><img alt="videolan7.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan7.png.png" /><br />videolan7.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan8.jpg"><img alt="videolan8.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan8.png.png" /><br />videolan8.jpg<br />JPEG</a>
</td>
<td align="center">
<a href="videolan9.jpg"><img alt="videolan9.jpg (JPEG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan9.png.png" /><br />videolan9.jpg<br />JPEG</a>
</td>
</tr>
</table>
<? footer(''); ?>
<?php
$title = "Linux Expo Paris 2003";
$lang = "en";
$new_design = true;
$body_color = "green";
require($_SERVER["DOCUMENT_ROOT"]."/include/header.php");
?>
<?php function printImageThumb($filename) { ?>
<div class="col-xs-6 col-md-3">
<a href="<?= $filename ?>" class="thumbnail">
<img src="thumbs/<?= pathinfo($filename, PATHINFO_FILENAME) ?>_thumb.jpg" alt="<?= $filename ?>">
</a>
</div>
<?php } ?>
<div class="container">
<h1 class="bigtitle">Linux Expo Paris 2003</h1>
<div class="row">
<?php
$folder = realpath(dirname(__FILE__));
$files = scandir($folder);
foreach ($files as $file) {
$ext = pathinfo($file, PATHINFO_EXTENSION);
if (strcasecmp($ext, "JPG") === 0 || strcasecmp($ext, "PNG") === 0) {
printImageThumb($file);
}
}
?>
</div>
</div>
<?php footer(); ?>
www.videolan.org/videolan/events/20030204/mi_team.jpg

18.8 KiB

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="GENERATOR" content="genethumb.sh version 0.0.7" />
<meta name="Description" content="thumbnails of /var/www/www.videolan.org/events/20030204/png" />
<title>Index of /var/www/www.videolan.org/events/20030204/png</title>
<style type="text/css">
img { border: 1pt; }
body { background: white; color: black;
font-family: Arial, Helvetica, sans-serif;
font-size: 9pt; margin: 5pt; }
h2 { color: black; background: white; font-size: 14pt; }
a { text-decoration: none; }
td.center { text-align: center; }
td.nowrap { white-space: nowrap; }
blockquote.center { text-align: center; }
</style>
</head>
<body>
<table border="0" width="100%"><tr><td>
<h2>Index of /var/www/www.videolan.org/events/20030204/png</h2></td>
<td align="right">generated by <a
href="http://sam.zoy.org/projects/unix/genethumb.html">genethumb.sh</a>
version 0.0.7 </td></tr></table>
<hr />
<table cellspacing="5" border="0">
<tr>
<td align="center">
<a href="cnit1.png"><img alt="cnit1.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_cnit1.png.png" /><br />cnit1.png<br />PNG</a>
</td>
<td align="center">
<a href="cnit3.png"><img alt="cnit3.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_cnit3.png.png" /><br />cnit3.png<br />PNG</a>
</td>
<td align="center">
<a href="cnit5.png"><img alt="cnit5.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_cnit5.png.png" /><br />cnit5.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan1.png"><img alt="videolan1.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan1.png.png" /><br />videolan1.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan2.png"><img alt="videolan2.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan2.png.png" /><br />videolan2.png<br />PNG</a>
</td>
</tr><tr>
<td align="center">
<a href="videolan3.png"><img alt="videolan3.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan3.png.png" /><br />videolan3.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan4.png"><img alt="videolan4.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan4.png.png" /><br />videolan4.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan5.png"><img alt="videolan5.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan5.png.png" /><br />videolan5.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan6.png"><img alt="videolan6.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan6.png.png" /><br />videolan6.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan7.png"><img alt="videolan7.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan7.png.png" /><br />videolan7.png<br />PNG</a>
</td>
</tr><tr>
<td align="center">
<a href="videolan8.png"><img alt="videolan8.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan8.png.png" /><br />videolan8.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan9.png"><img alt="videolan9.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan9.png.png" /><br />videolan9.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan10.png"><img alt="videolan10.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan10.png.png" /><br />videolan10.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan11.png"><img alt="videolan11.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan11.png.png" /><br />videolan11.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan12.png"><img alt="videolan12.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan12.png.png" /><br />videolan12.png<br />PNG</a>
</td>
</tr><tr>
<td align="center">
<a href="videolan13.png"><img alt="videolan13.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan13.png.png" /><br />videolan13.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan14.png"><img alt="videolan14.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan14.png.png" /><br />videolan14.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan15.png"><img alt="videolan15.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan15.png.png" /><br />videolan15.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan16.png"><img alt="videolan16.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan16.png.png" /><br />videolan16.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan17.png"><img alt="videolan17.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan17.png.png" /><br />videolan17.png<br />PNG</a>
</td>
</tr><tr>
<td align="center">
<a href="videolan18.png"><img alt="videolan18.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan18.png.png" /><br />videolan18.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan19.png"><img alt="videolan19.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan19.png.png" /><br />videolan19.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan20.png"><img alt="videolan20.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan20.png.png" /><br />videolan20.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan21.png"><img alt="videolan21.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan21.png.png" /><br />videolan21.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan22.png"><img alt="videolan22.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan22.png.png" /><br />videolan22.png<br />PNG</a>
</td>
</tr><tr>
<td align="center">
<a href="videolan23.png"><img alt="videolan23.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan23.png.png" /><br />videolan23.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan24.png"><img alt="videolan24.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan24.png.png" /><br />videolan24.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan25.png"><img alt="videolan25.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan25.png.png" /><br />videolan25.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan26.png"><img alt="videolan26.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan26.png.png" /><br />videolan26.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan27.png"><img alt="videolan27.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan27.png.png" /><br />videolan27.png<br />PNG</a>
</td>
</tr><tr>
<td align="center">
<a href="videolan28.png"><img alt="videolan28.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan28.png.png" /><br />videolan28.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan29.png"><img alt="videolan29.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan29.png.png" /><br />videolan29.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan30.png"><img alt="videolan30.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan30.png.png" /><br />videolan30.png<br />PNG</a>
</td>
<td align="center">
<a href="videolan31.png"><img alt="videolan31.png (PNG)"
width="PNG"
height="PNG"
src=".xvpics/tn_videolan31.png.png" /><br />videolan31.png<br />PNG</a>
</td>
</tr>
</table>
</body>
</html>
#!/bin/sh
while read mail
do
convert $mail.png $mail.jpg
done
www.videolan.org/videolan/events/20030204/thumbs/cnit1_thumb.jpg

14.8 KiB

www.videolan.org/videolan/events/20030204/thumbs/cnit3_thumb.jpg

17.1 KiB

www.videolan.org/videolan/events/20030204/thumbs/cnit5_thumb.jpg

22 KiB

www.videolan.org/videolan/events/20030204/thumbs/team_thumb.jpg

40.5 KiB

www.videolan.org/videolan/events/20030204/thumbs/videolan10_thumb.jpg

19.4 KiB

www.videolan.org/videolan/events/20030204/thumbs/videolan11_thumb.jpg

25 KiB

www.videolan.org/videolan/events/20030204/thumbs/videolan12_thumb.jpg

25.4 KiB

www.videolan.org/videolan/events/20030204/thumbs/videolan13_thumb.jpg

23.7 KiB