From 458120dd40db6b4df55a4e96b650e16798ef06a0 Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Tue, 3 May 2011 11:25:13 +0000 Subject: add hg and python --- sys/lib/python/mercurial/hgweb/__init__.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 sys/lib/python/mercurial/hgweb/__init__.py (limited to 'sys/lib/python/mercurial/hgweb/__init__.py') diff --git a/sys/lib/python/mercurial/hgweb/__init__.py b/sys/lib/python/mercurial/hgweb/__init__.py new file mode 100644 index 000000000..3cb3e95e2 --- /dev/null +++ b/sys/lib/python/mercurial/hgweb/__init__.py @@ -0,0 +1,16 @@ +# hgweb/__init__.py - web interface to a mercurial repository +# +# Copyright 21 May 2005 - (c) 2005 Jake Edge +# Copyright 2005 Matt Mackall +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2, incorporated herein by reference. + +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) + -- cgit v1.2.3