mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2024-11-22 07:11:55 +00:00
Added validation for existence of files linked from folk.csv
This commit is contained in:
parent
f74c304cd4
commit
2cdfd4ea53
@ -238,7 +238,7 @@ Nick Reckert,Reckert,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Simon Redhead,Redhead,,,i/simonr.jpg,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,
|
||||
Penny Reeves,Reeves,,,l/penny.htm,,,,,,,,,,,,,1,1,,1,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Mike Richardson (Mike TA),Richardson,,,l/miketa.htm,,,,,,,,,1,1,,1,1,1,1,,1,,1,1,1,1,,1,1,1,,,,,,,,1,,,1,,,,,,,,
|
||||
Rover Richardson,Richardson,,,../piclinks/rover.htm,,,,,,,,,-1,-1,,-1,-1,-1,-1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Rover Richardson,Richardson,,,l/rover.htm,,,,,,,,,-1,-1,,-1,-1,-1,-1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
Rob Rignall,Rignall,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,
|
||||
Bob Riley (Long),Riley,1,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,
|
||||
Del Robinson,Robinson,,,i/del.jpg,,,,,,,,,,,,,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
|
|
BIN
folk/i/mug.png
Normal file
BIN
folk/i/mug.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 175 B |
BIN
folk/i/rover.jpg
Normal file
BIN
folk/i/rover.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 27 KiB |
@ -23,14 +23,6 @@ This was despite having enjoyed the delights of P8 in claggies when he was a fre
|
||||
|
||||
<p class="caption">Photo © Brian Derby (with OUCC in N.Ireland)</p>
|
||||
|
||||
<!-- LINKS -->
|
||||
<ul id="links">
|
||||
<li>Back to table of <a href="../index.htm">expo members</a></li>
|
||||
<li>Back to <a href="../../index.htm">Expedition Intro page</a>
|
||||
<ul>
|
||||
<li><a href="../../infodx.htm"><b>Index</b> to Expo</a> information pages</li>
|
||||
</ul></li>
|
||||
<li>Back to <a href="../../../index.htm">CUCC Home page</a></li>
|
||||
</ul>
|
||||
<hr>
|
||||
</body>
|
||||
</html>
|
||||
|
26
folk/l/rover.htm
Normal file
26
folk/l/rover.htm
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>
|
||||
Rover Richardson on expo
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="../css/main2.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="centre">
|
||||
<img src="../i/rover.jpg" width="420" height="348" alt="" />
|
||||
</div>
|
||||
<p>Veteran transport for many expeditions, Rover Richardson had the
|
||||
unique distinction of being older than his owner (who was by no means
|
||||
one of the youngest of expedition members). Sporting a tremendous
|
||||
carrying capacity and a powerful (though much needed) stereo system
|
||||
which made up somewhat for the lack of speed and comfort, Rover was one
|
||||
of the most distinctive sights denoting that CUCC were "in residence"
|
||||
around Bad Aussee.</p>
|
||||
|
||||
<p class="caption">Photo © Penny Reeves, 1988</p>
|
||||
<!-- Photo scanned by Coolscan on 1997.08.05, AERW -->
|
||||
<hr />
|
||||
</body>
|
||||
</html>
|
@ -1,5 +1,5 @@
|
||||
#!/usr/bin/python
|
||||
import sys, string, re
|
||||
import sys, string, re, os
|
||||
|
||||
# run within the /folk/ folder:
|
||||
# python ../scripts/make-folklist.py <folk.csv >index.htm
|
||||
@ -54,6 +54,9 @@ for r in lines[1:]:
|
||||
output += '</td><td>'
|
||||
if vfho: output += '¤'
|
||||
output += '</td><td>'
|
||||
if mug:
|
||||
if not (os.path.isfile(mug)):
|
||||
print >> sys.stderr, "ERROR: --------------- mug file does not exist: ", mug
|
||||
if mug: output += '<a href=%s><img alt=":-)" src="i/mug.png" /></a>' % mug
|
||||
output += '</td>'
|
||||
for y in xrange(len(years)):
|
||||
|
Loading…
Reference in New Issue
Block a user