Mercurial > libervia-web
view libervia/pages/blog/view/atom.xml/page_meta.py @ 1128:6414fd795df4
server, pages: multi-sites refactoring:
Libervia is now handling external sites (i.e. other sites than Libervia official site).
The external site are declared in sites_path_public_dict (in [DEFAULT] section) which is read by template engine, then they are linked to virtual host with vhosts_dict (linking host name to site name) in [libervia] section.
Sites are only instanced once, so adding an alias is just a matter of mapping the alias host name in vhosts_dict with the same site name.
menu_json and url_redirections_dict can now accept keys named after site name, which will be linked to the data for the site. Data for default site can still be keyed at first level.
Libervia official pages are added to external site (if pages are not overriden), allowing to call pages of the framework and to have facilities like login handling.
Deprecated url_redirections_profile option has been removed.
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 14 Sep 2018 21:41:28 +0200 |
parents | 28e3eb3bb217 |
children | b2d067339de3 |
line wrap: on
line source
#!/usr/bin/env python2.7 # -*- coding: utf-8 -*- from libervia.server.constants import Const as C from twisted.internet import defer from sat.tools.common import uri import time name = u"blog_feed_atom" access = C.PAGES_ACCESS_PUBLIC template = u"blog/atom.xml" @defer.inlineCallbacks def prepare_render(self, request): request.setHeader("Content-Type", "application/atom+xml; charset=utf-8") data = self.getRData(request) service, node = data[u"service"], data.get(u"node") self.checkCache( request, C.CACHE_PUBSUB, service=service, node=node, short="microblog" ) data["show_comments"] = False template_data = request.template_data blog_page = self.getPageByName(u"blog_view") yield blog_page.prepare_render(self, request) items = data[u"items"] template_data[u"request_uri"] = self.host.getExtBaseURL( request, request.path.decode("utf-8") ) template_data[u"xmpp_uri"] = uri.buildXMPPUri( u"pubsub", subtype=u"microblog", path=service.full(), node=node ) blog_view = self.getPageByName(u"blog_view") template_data[u"http_uri"] = self.host.getExtBaseURL( request, blog_view.getURL(service.full(), node) ) if items: template_data[u"updated"] = items[0].updated else: template_data[u"updated"] = time.time()