Mercurial > libervia-web
view libervia/pages/photos/album/page_meta.py @ 1505:a169cbc315f0
server: don't wait anymore for libervia app to be fully started:
following change in backend, libervia app are started and the loading workflow continue
immediately, the proxy is created only when the app is known to be actually started
(through the `application_started` signal or a flag received when starting the
application).
This avoid stopping the loading of website for a long time, or breaking when a timeout is
reached.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 04 Mar 2023 18:37:17 +0100 |
parents | d6bcb0cf92d2 |
children | 106bae41f5c8 |
line wrap: on
line source
#!/usr/bin/env python3 from sat.core.i18n import D_ from sat.core.log import getLogger from libervia.server.constants import Const as C log = getLogger(__name__) name = "photos_album" label = D_("Photos Album") access = C.PAGES_ACCESS_PROFILE template = "photo/album.html" def parse_url(self, request): self.getPathArgs(request, ["service", "*path"], min_args=1, service="jid", path="") def prepare_render(self, request): data = self.getRData(request) data["thumb_limit"] = 800 data["retrieve_comments"] = True files_page = self.getPageByName("files_list") return files_page.prepare_render(self, request) def on_data_post(self, request): blog_page = self.getPageByName("blog_view") return blog_page.on_data_post(self, request)