view libervia/web/pages/u/blog/page_meta.py @ 1526:fc2bc024600d

build: do not set explicitely `libervia` package: `twisted` needs to be installed, and if we don't specify anything, Hatch looks automatically for all directories containing .py files, so it includes `libervia` and `twisted`.
author Goffi <goffi@goffi.org>
date Thu, 08 Jun 2023 21:07:55 +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(), "@"]
    )