Beispiel #1
0
def stopper():
    stop = get_field("stop")
    if stop:
        player.kill()
        return simplepage(body = "%s stopped." % song)
    else:
        f = Form()
        f.add_submit("stop", "Stop")
        return simplepage(body= ("Playing %s" % song) +
                          f.render())
Beispiel #2
0
def _q_index():
    return simplepage(
        title="Welcome to the Web player!",
        body=selector(songs))