Add example CGI script
authormpm@selenic.com
Wed, 25 May 2005 16:28:23 -0800
changeset 159 f9d8620ef469
parent 158 be7103467d2e
child 160 5c331d941c7f
Add example CGI script This gives an example of how to easily use hgweb via CGI
hgweb.cgi
new file mode 100644
--- /dev/null
+++ b/hgweb.cgi
@@ -0,0 +1,10 @@
+#!/usr/bin/python
+#
+# An example CGI script to use hgweb, edit as necessary
+
+import cgitb, os, sys
+# sys.path.insert(0, "/path/to/python/lib") # if not a system-wide install
+from mercurial import hgweb
+
+h = hgweb.hgweb("/path/to/repo", "repository name")
+h.run()