view libervia/pages/photos/page_meta.py @ 1155:813d54af8c0c

server (tasks): tasks can now be automatically ran when something happen in a watched dir: A task can specify directories to watch in "WATCH_DIRS" list of path. In dev_mode, when a file is created of modified in a watched dir, the task is run again.
author Goffi <goffi@goffi.org>
date Fri, 22 Feb 2019 18:50:33 +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)