Mercurial > libervia-web
view libervia/pages/forums/view/page_meta.py @ 1344:472267dcd4d8
browser (alt_media_player): native player support + poster + flags + restricted area:
- alt_media_player will now use native player when possible. This allows to use its controls
and behaviour instead of native ones.
- a poster can be specified when instanciated manually
- video is not preloaded anymore
- handle events propagation to plays nicely when used in slideshow
- a "restricted area" mode can be used to let click propagation on video border, and thus
catch only play/pause in the center. This is notably useful when used in the slideshow,
as border can be used to show/hide slideshow controls
- player can be reset, in which case the play button overlay is put back, and video
is put at its beginning
- once video is played at least once, a `in_use` class is added to the element, play
button overlay is removed then. This fix a bug when the overlay was still appearing when
using bottom play button.
- VideoPlayer has been renamed to MediaPlayer
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 24 Aug 2020 23:04:35 +0200 |
parents | f511f8fbbf8a |
children | 4cf2b73e63aa |
line wrap: on
line source
#!/usr/bin/env python3 from libervia.server.constants import Const as C from twisted.internet import defer from sat.core.i18n import _ from sat.core.log import getLogger from sat.tools.common import data_format log = getLogger(__name__) name = "forum_view" access = C.PAGES_ACCESS_PUBLIC template = "forum/view.html" def parse_url(self, request): self.getPathArgs(request, ["service", "node"], 2, service="jid") @defer.inlineCallbacks def prepare_render(self, request): data = self.getRData(request) data["show_comments"] = False blog_page = self.getPageByName("blog_view") request.args[b"before"] = [b""] request.args[b"reverse"] = [b"1"] yield blog_page.prepare_render(self, request) request.template_data["login_url"] = self.getPageRedirectURL(request) @defer.inlineCallbacks def on_data_post(self, request): profile = self.getProfile(request) if profile is None: self.pageError(request, C.HTTP_FORBIDDEN) type_ = self.getPostedData(request, "type") if type_ == "comment": service, node, body = self.getPostedData(request, ("service", "node", "body")) if not body: self.pageError(request, C.HTTP_BAD_REQUEST) mb_data = {"content": body} try: yield self.host.bridgeCall( "mbSend", service, node, data_format.serialise(mb_data), profile) except Exception as e: if "forbidden" in str(e): self.pageError(request, 401) else: raise e else: log.warning(_("Unhandled data type: {}").format(type_))