comparison mercurial/hgweb.py @ 215:9ff5a78d0c45

hgweb: import ui -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 hgweb: import ui Fix from Edouard Gomez manifest hash: 6157f19523d28465a6f0c49adec96c17aa9df118 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCnj3YywK+sNU5EO8RAgHBAJ0b+oHTOyDVDtC5vsQvAzpn0saRAACfYmAU 5q/mDghl/UWYGiSAY1i/l0w= =i9MB -----END PGP SIGNATURE-----
author mpm@selenic.com
date Wed, 01 Jun 2005 14:59:36 -0800
parents f918a6fa2572
children 87484f627422
comparison
equal deleted inserted replaced
214:2d60aa9bde0a 215:9ff5a78d0c45
10 import cgitb 10 import cgitb
11 cgitb.enable() 11 cgitb.enable()
12 12
13 import os, cgi, time, re, difflib, sys, zlib 13 import os, cgi, time, re, difflib, sys, zlib
14 from mercurial.hg import * 14 from mercurial.hg import *
15 from mercurial.ui import *
15 16
16 def templatepath(): 17 def templatepath():
17 for f in "templates", "../templates": 18 for f in "templates", "../templates":
18 p = os.path.join(os.path.dirname(__file__), f) 19 p = os.path.join(os.path.dirname(__file__), f)
19 if os.path.isdir(p): return p 20 if os.path.isdir(p): return p