X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=local_photos_mirror_renderer.py;h=84958de0a774cd3f6fd276d5134bcc87d8a84f34;hb=7eae23537dcc61565a24d5c957d4325b7337b63a;hp=287bdd697ecdfad96c93e47aa12619463cee54f9;hpb=73e4d75ceabe5546f3966cfdcd1f705c77be17f7;p=kiosk.git diff --git a/local_photos_mirror_renderer.py b/local_photos_mirror_renderer.py index 287bdd6..84958de 100644 --- a/local_photos_mirror_renderer.py +++ b/local_photos_mirror_renderer.py @@ -12,7 +12,7 @@ import renderer class local_photos_mirror_renderer(renderer.debuggable_abstaining_renderer): """A renderer that uses a local mirror of Google photos""" - album_root_directory = "/var/www/kiosk/pages/images/gphotos/albums" + album_root_directory = "/var/www/html/kiosk/images/gphotos/albums" album_whitelist = frozenset( [ @@ -36,9 +36,11 @@ class local_photos_mirror_renderer(renderer.debuggable_abstaining_renderer): "Newer Alex Photos", "Ohme Gardens", "Olympic Sculpture Park", + "Portland, ME 2021", "Prague and Munich 2019", "Random", "Scott and Lynn", + "Sculpture Place", "SFO 2014", "Skiing with Alex", "Sonoma", @@ -47,6 +49,7 @@ class local_photos_mirror_renderer(renderer.debuggable_abstaining_renderer): "Trip to East Coast '16", "Tuscany 2008", "Yosemite 2010", + "WA Roadtrip, 2021", "Zoo", ] ) @@ -94,7 +97,7 @@ class local_photos_mirror_renderer(renderer.debuggable_abstaining_renderer): if extension in self.extension_whitelist: photo_path = os.path.join(root, filename) photo_url = photo_path.replace( - "/var/www/", "http://kiosk.house/", 1 + "/var/www/html", "http://kiosk.house/", 1 ) self.candidate_photos.add(photo_url) return True