Mercurial > libervia-web
annotate 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 |
rev | line source |
---|---|
1216 | 1 #!/usr/bin/env python3 |
1239 | 2 |
1035
09f5a5d649df
pages (u/blog): new user_blog page which redirect to blog but using profile instead of service/node
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
3 |
1216 | 4 name = "user_blog" |
1035
09f5a5d649df
pages (u/blog): new user_blog page which redirect to blog but using profile instead of service/node
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
5 |
09f5a5d649df
pages (u/blog): new user_blog page which redirect to blog but using profile instead of service/node
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
6 |
09f5a5d649df
pages (u/blog): new user_blog page which redirect to blog but using profile instead of service/node
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
7 def parse_url(self, request): |
09f5a5d649df
pages (u/blog): new user_blog page which redirect to blog but using profile instead of service/node
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
8 # in this subpage, we want path args and query args |
09f5a5d649df
pages (u/blog): new user_blog page which redirect to blog but using profile instead of service/node
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
9 # (i.e. what's remaining in URL: filters, id, etc.) |
09f5a5d649df
pages (u/blog): new user_blog page which redirect to blog but using profile instead of service/node
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
10 # to be used by blog's url parser, so we don't skip parse_url |
1509
106bae41f5c8
massive refactoring from camelCase -> snake_case. See backend commit log for more details
Goffi <goffi@goffi.org>
parents:
1239
diff
changeset
|
11 data = self.get_r_data(request) |
1216 | 12 service = data["service"] |
1509
106bae41f5c8
massive refactoring from camelCase -> snake_case. See backend commit log for more details
Goffi <goffi@goffi.org>
parents:
1239
diff
changeset
|
13 self.page_redirect( |
1216 | 14 "blog_view", request, skip_parse_url=False, path_args=[service.full(), "@"] |
1113
cdd389ef97bc
server: code style reformatting using black
Goffi <goffi@goffi.org>
parents:
1083
diff
changeset
|
15 ) |