Skip to content

Commit

Permalink
Add roofleak2024, from 26 June 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
riordanmr committed Oct 22, 2024
1 parent aa9d2d3 commit 1159fb8
Show file tree
Hide file tree
Showing 5 changed files with 91 additions and 0 deletions.
5 changes: 5 additions & 0 deletions roofleak2024/imageinfo.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
100guestroom1.jpg|This is above the larger sliding glass doors in the downstairs guest room. The wet ceiling appears across all 4 consecutive glass doors.
110guestroom2.jpg|A representative from Central Glass looked at this and said that it was not due to a leak in the sliding glass doors (indeed, it's <i>above</i> the doors), nor to a leak in the windows in the bedroom above this room.
200upstairsmaster1.jpg|This is on the wall in the bedroom above the guest room. The window guy said it was not due to a window leak; the windows are fine. He said that 90% of leaks like this are a roof problem. This could well be due to the same leak as above.
300livingroomcorner1.jpg|This is a leak in the corner of the upstairs living room. This leak had appeared before and I had believed that Hale's had fixed it, but it's back.
310livingroomcorner2.jpg|Bits of clay plaster that fell off the wall after the above living room leak.
28 changes: 28 additions & 0 deletions roofleak2024/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<html>
<head>
<style>
body {font-family: sans-serif;}
</style>
</head>
<body>
<h1>Roof Leak June 24, 2024</h1>
<p>These photos document a few ceiling leaks at 548 El Camino Rd. </p>
<p>Click on a photo to see a larger version of it.</p>
<p> <a href="100guestroom1.jpg"><img src="thumbs/100guestroom1.jpg"></a><br/>
<span>This is above the larger sliding glass doors in the downstairs guest room. The wet ceiling appears across all 4 consecutive glass doors.</span>
</p>
<p> <a href="110guestroom2.jpg"><img src="thumbs/110guestroom2.jpg"></a><br/>
<span>A representative from Central Glass looked at this and said that it was not due to a leak in the sliding glass doors (indeed, it's <i>above</i> the doors), nor to a leak in the windows in the bedroom above this room.</span>
</p>
<p> <a href="200upstairsmaster1.jpg"><img src="thumbs/200upstairsmaster1.jpg"></a><br/>
<span>This is on the wall in the bedroom above the guest room. The window guy said it was not due to a window leak; the windows are fine. He said that 90% of leaks like this are a roof problem. This could well be due to the same leak as above.</span>
</p>
<p> <a href="300livingroomcorner1.jpg"><img src="thumbs/300livingroomcorner1.jpg"></a><br/>
<span>This is a leak in the corner of the upstairs living room. This leak had appeared before and I had believed that Hale's had fixed it, but it's back.</span>
</p>
<p> <a href="310livingroomcorner2.jpg"><img src="thumbs/310livingroomcorner2.jpg"></a><br/>
<span>Bits of clay plaster that fell off the wall after the above living room leak.</span>
</p>
<p>Mark Riordan Sedona, AZ</p>
</body>
</html>
25 changes: 25 additions & 0 deletions roofleak2024/indexskel.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<html>
<head>
<style>
body {font-family: sans-serif;}
</style>
</head>
<body>
<h1>Roof Leak June 24, 2024</h1>
<p>These photos document a few ceiling leaks at 548 El Camino Rd. </p>
<p>Click on a photo to see a larger version of it.</p>
<!-- end header -->
<p>
<a href="0100Ceiling.jpg"><img src="thumbs/0100Ceiling.jpg"></a>
<br/>
<span>this is text about this image.</span>
</p>
<p>
<a href="0110CeilingCloseup.jpg.jpg"><img src="thumbs/0110CeilingCloseup.jpg"></a>
<br/>
<span>this is text about this image.</span>
</p>
<!-- start trailer-->
<p>Mark Riordan Sedona, AZ</p>
</body>
</html>
30 changes: 30 additions & 0 deletions roofleak2024/mkimghtml.awk
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# mkimghtml.awk - script to create an HTML web page from
# a list of image files and a skeleton.
# Mark Riordan 28 Dec 2022
# Usage: awk -f mkimghtml.awk imageinfo.txt >index.html
BEGIN {
FS = "|"
skel = "indexskel.html"
do {
getline line <skel
if(index(line,"end header")>0) break
print line
} while(1)
}

{
filename = $1
desc = $2
print "<p> <a href=\"" filename "\"><img src=\"thumbs/" filename "\"></a><br/>"
print "<span>" desc "</span>"
print "</p>"
}

END {
doprint = 0
do {
if(0==getline line <skel) break
if(doprint) print line
if(index(line,"start trailer")>0) doprint = 1
} while(1)
}
3 changes: 3 additions & 0 deletions roofleak2024/mkthumbs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
for file in *.jpg; do
convert $file -resize 640 thumbs/$file
done

0 comments on commit 1159fb8

Please sign in to comment.