__init__.py
16 lines
| 499 B
| text/x-python
|
PythonLexer
Eric Hopper
|
r2391 | # hgweb/__init__.py - web interface to a mercurial repository | ||
Eric Hopper
|
r2311 | # | ||
# Copyright 21 May 2005 - (c) 2005 Jake Edge <jake@edge2.net> | ||||
# Copyright 2005 Matt Mackall <mpm@selenic.com> | ||||
# | ||||
Martin Geisler
|
r8225 | # This software may be used and distributed according to the terms of the | ||
Matt Mackall
|
r10263 | # GNU General Public License version 2 or any later version. | ||
Eric Hopper
|
r2311 | |||
Matt Mackall
|
r3877 | import hgweb_mod, hgwebdir_mod | ||
def hgweb(*args, **kwargs): | ||||
return hgweb_mod.hgweb(*args, **kwargs) | ||||
def hgwebdir(*args, **kwargs): | ||||
return hgwebdir_mod.hgwebdir(*args, **kwargs) | ||||