view libervia/pages/photos/page_meta.py @ 1146:76d75423ef53

server: tasks manager first draft: A new task manager will check /tasks directory of website to scripts to execute before launching the site. This allows to generate docs, scripts, or do anything else useful. Generated files are put in in sat local dir, in cache, and are accessible from the website using the new "build_dir" variable.
author Goffi <goffi@goffi.org>
date Fri, 25 Jan 2019 08:58:41 +0100
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)