
########
# tops

echo "
<STYLE TYPE="text/css">
<!--
        A:link{text-decoration:none}
        A:visited{text-decoration:none}
        A:active{text-decoration:none}
        OL,UL,P,BODY,TD,TR,TH,FORM { font-family: arial,helvetica,sans-serif; font-size:small; color: #333333; }

        H1 { font-size: x-large; font-family: arial,helvetica,sans-serif }
        H2 { font-size: large; font-family: arial,helvetica,sans-serif }
        H3 { font-size: medium; font-family: arial,helvetica,sans-serif }
        H4 { font-size: small; font-family: arial,helvetica,sans-serif }
-->
</STYLE>
<title>ploticus: Thumbnail jungle</title>
<body bgcolor=D0D0EE vlink=0000FF>
<br>
<br>
<center>
<table cellpadding=2 bgcolor=FFFFFF width=550 @BOR><tr>
<td>
  <table cellpadding=2 width=550><tr>
  <td><br><h2>Thumbnail jungle</h2></td>
  <td align=right>
  <small>
  <a href=\"../../doc/welcome.html\"><img src=\"../../doc/ploticus.gif\" border=0></a><br>
   </small><br><a href=\"../doc/scripthome.html\">Scripts</a>
  <td></tr></table>
</td></tr>
<td>
<br>" > index.html

####
# copy..

cp index.html Alphabetical.html


############

echo "
This page has thumbnails for all graphics in the Ploticus script examples gallery.
The newest examples are at the top, based on file modification time.
Click on a thumbnail to view the example.
<br><br>
<a href="Alphabetical.html">Show examples in filename alphabetical order</a>
<br><br>
See also the <a href=\"../../doc/prefab_gallery.html\">gallery of prefab examples</a>.
<br><br><br>" >> index.html


# index.html will be in mod time order (newest at top)
ls -t *.png | while read PNGFILE 
do
  SCRIPTFILE=`echo $PNGFILE | sed "s/.png/.htm/" `
  BASE=`echo $PNGFILE | sed "s/.png//" `
  echo "<a href=\"../$SCRIPTFILE\">$BASE<br><img src=\"$PNGFILE\" border=0></a><br><br>" >> index.html
done
  

############
echo "
This page has thumbnails for all graphics in the Ploticus script examples gallery,
in filename alphabetical order.
Click on a thumbnail to view the example.
<br><br>
<a href="index.html">Show examples by newest to oldest</a>
<br><br>
See also the <a href=\"../../doc/prefab_gallery.html\">gallery of prefab examples</a>.
<br><br><br>" >> Alphabetical.html

# index.html will be in mod time order (newest at top)
ls *.png | while read PNGFILE 
do
  SCRIPTFILE=`echo $PNGFILE | sed "s/.png/.htm/" `
  BASE=`echo $PNGFILE | sed "s/.png//" `
  echo "<a href=\"../$SCRIPTFILE\">$BASE<br><img src=\"$PNGFILE\" border=0></a><br><br>" >> Alphabetical.html
done
  
############

# bottoms

echo "
<br>
<br>
</td></tr>
<td align=right>
<a href=\"../../doc/welcome.html\">
<img src=\"../../doc/ploticus.gif\" border=0></a><br><small>data display engine &nbsp; <br>
<a href=\"../../doc/Copyright.html\">Copyright Steve Grubb</a>
<br>
<br>
<center>
<img src=\"../all.gif\"> 
</center>
</td></tr>
</table>
" >> index.html


echo "
<br>
<br>
</td></tr>
<td align=right>
<a href=\"../../doc/welcome.html\">
<img src=\"../../doc/ploticus.gif\" border=0></a><br><small>data display engine &nbsp; <br>
<a href=\"../../doc/Copyright.html\">Copyright Steve Grubb</a>
<br>
<br>
<center>
<img src=\"../all.gif\"> 
</center>
</td></tr>
</table>
" >> Alphabetical.html
