-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |