Lazy Web: Mercurial Repository Publishing
I have been using mercurial for personal development for a while and now want to publicly expose one of those projects. Looking around at repository publishing options: CGI, "don't use this" static http, and... yep, that's it.
So, anyone out there know how to publicly publish a Mercurial repo via mod_python or something less painful than CGI?
Update, looks like SF has a way. Re-Update -- looks like that is using CGI.
writebacks...
Opengrok - http://www.opensolaris.org/os/project/opengrok/ - might be worth a look. It does seem to work pretty well over on opensolaris.org
What about a trac plugin? http://trac.edgewall.org/wiki/TracMercurial
WSGI
Looks like hgweb is wsgi compliant so it can probably be run under mod_wsgi or the wsgi adaptor for mod_python. Woot!
comment...