changeset 1035:09f5a5d649df

pages (u/blog): new user_blog page which redirect to blog but using profile instead of service/node
author Goffi <goffi@goffi.org>
date Mon, 22 Jan 2018 22:22:11 +0100
parents f82c355ffa6e
children f5661761b1b9
files src/pages/u/blog/page_meta.py
diffstat 1 files changed, 13 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/pages/u/blog/page_meta.py	Mon Jan 22 22:22:11 2018 +0100
@@ -0,0 +1,13 @@
+#!/usr/bin/env python2.7
+# -*- coding: utf-8 -*-
+
+name = u"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.getRData(request)
+    service = data[u'service']
+    self.pageRedirect(u'blog', request, skip_parse_url=False, path_args=[service.full(), u'@'])