Mercurial > libervia-web
view libervia/web/pages/u/blog/page_meta.py @ 1536:dc81403a5b2f
browser: chat page:
since the move to Brython, the chat was really basic and not really usable. Now that
dynamism has been re-implemented correctly in the new frontend, a real advanced chat page
can be done. This is the first draft in this direction.
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 28 Jun 2023 10:05:13 +0200 |
parents | eb00d593801d |
children |
line wrap: on
line source
#!/usr/bin/env python3 name = "user_blog" def parse_url(self, request): # in this subpage, we want path args and query args # (i.e. what's remaining in URL: filters, id, etc.) # to be used by blog's url parser, so we don't skip parse_url data = self.get_r_data(request) service = data["service"] self.page_redirect( "blog_view", request, skip_parse_url=False, path_args=[service.full(), "@"] )