summaryrefslogtreecommitdiff
path: root/helper.py
blob: e0d6aada3770798399c269df0ee4ff8a0ccf588a (plain)
1
2
3
4
5
6
7
8
9
import web
import os

APPDIR = os.path.dirname(os.path.abspath(__file__))
def appdir (*args):
    return os.path.join(APPDIR, *args)

def url (path):
    return "\"%s\"" % web.url(path)