summaryrefslogtreecommitdiff
path: root/cgi-bin/path.py
blob: 99152ce7ed8b353154653860aed303f9b27f283b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
dir = "C:/Users/chaifeixiang/Documents/python/issues/html/" 

class Path(object):     
    def full(p): 
        return dir + p
    
    def url(p): 
        return "/" + p

    def img(p):
        return dir + 'imgs/' + p