From 1159fb854bbea35c49fb1bda6988d94261c3872a Mon Sep 17 00:00:00 2001 From: Mark Riordan Date: Tue, 22 Oct 2024 08:54:33 -0700 Subject: [PATCH] Add roofleak2024, from 26 June 2024 --- roofleak2024/imageinfo.txt | 5 +++++ roofleak2024/index.html | 28 ++++++++++++++++++++++++++++ roofleak2024/indexskel.html | 25 +++++++++++++++++++++++++ roofleak2024/mkimghtml.awk | 30 ++++++++++++++++++++++++++++++ roofleak2024/mkthumbs.sh | 3 +++ 5 files changed, 91 insertions(+) create mode 100644 roofleak2024/imageinfo.txt create mode 100644 roofleak2024/index.html create mode 100644 roofleak2024/indexskel.html create mode 100644 roofleak2024/mkimghtml.awk create mode 100755 roofleak2024/mkthumbs.sh diff --git a/roofleak2024/imageinfo.txt b/roofleak2024/imageinfo.txt new file mode 100644 index 0000000..3cc887e --- /dev/null +++ b/roofleak2024/imageinfo.txt @@ -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 above 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. \ No newline at end of file diff --git a/roofleak2024/index.html b/roofleak2024/index.html new file mode 100644 index 0000000..3c7d555 --- /dev/null +++ b/roofleak2024/index.html @@ -0,0 +1,28 @@ + + + + + +

Roof Leak June 24, 2024

+

These photos document a few ceiling leaks at 548 El Camino Rd.

+

Click on a photo to see a larger version of it.

+


+This is above the larger sliding glass doors in the downstairs guest room. The wet ceiling appears across all 4 consecutive glass doors. +

+


+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 above the doors), nor to a leak in the windows in the bedroom above this room. +

+


+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. +

+


+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. +

+


+Bits of clay plaster that fell off the wall after the above living room leak. +

+

Mark Riordan Sedona, AZ

+ + diff --git a/roofleak2024/indexskel.html b/roofleak2024/indexskel.html new file mode 100644 index 0000000..261217b --- /dev/null +++ b/roofleak2024/indexskel.html @@ -0,0 +1,25 @@ + + + + + +

Roof Leak June 24, 2024

+

These photos document a few ceiling leaks at 548 El Camino Rd.

+

Click on a photo to see a larger version of it.

+ +

+ +
+ this is text about this image. +

+

+ +
+ this is text about this image. +

+ +

Mark Riordan Sedona, AZ

+ + diff --git a/roofleak2024/mkimghtml.awk b/roofleak2024/mkimghtml.awk new file mode 100644 index 0000000..47b2b4c --- /dev/null +++ b/roofleak2024/mkimghtml.awk @@ -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 0) break + print line + } while(1) +} + +{ + filename = $1 + desc = $2 + print "


" + print "" desc "" + print "

" +} + +END { + doprint = 0 + do { + if(0==getline line 0) doprint = 1 + } while(1) +} diff --git a/roofleak2024/mkthumbs.sh b/roofleak2024/mkthumbs.sh new file mode 100755 index 0000000..ae8703f --- /dev/null +++ b/roofleak2024/mkthumbs.sh @@ -0,0 +1,3 @@ +for file in *.jpg; do + convert $file -resize 640 thumbs/$file +done