view libervia/pages/photos/page_meta.py @ 1168:ea0caa7b1bcc

pages (i18n): check presence of u"/" in locale: if u"/" is present in local, a warning message is logged, and locale is ignored. This is done because in some cases locale can be used with a path (e.g. if several localised version of a document are used).
author Goffi <goffi@goffi.org>
date Fri, 12 Apr 2019 14:06:50 +0200
parents 28e3eb3bb217
children 7b8e123ba043
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

name = u"photos"
access = C.PAGES_ACCESS_PROFILE
template = u"photo/discover.html"


@defer.inlineCallbacks
def on_data_post(self, request):
    jid_ = self.getPostedData(request, u"jid")
    url = self.getPageByName(u"photos_album").getURL(jid_)
    self.HTTPRedirect(request, url)