I know it is not possible to create Mercurial repositories remotely using HTTP(S), for instance:
$ hg init https://host.org/repos/project
or
$ hg clone /path/to/local/project https://host.org/repos/project
But, what's the reason? Security issues? No need for it? Simply because nobody has implemented it yet?
Rationale for this question: In my company we share most resources via HTTPS, i.e. access permissions are managed by Apache only and regular users cannot login via SSH on the server. That's just perfect as long as repositories need to be served only (for that purpose we are happy with hgwebdir.cgi). However, we also want to allow the remote creation of repos, without the need to maintain additional/patched scripts on the server and extra tools on clients.
To be clear: This question does not ask for solutions to our particular problem but for the reason why Mercurial does not support this feature itself.
UPDATE
Here's a more technical description of the situation I'm thinking of. Supposed hgwebdir.cgi serves a collection of repositories in /path/to/repos at https://.../repos (with pushing enabled). Every user allowed to access this URL (as configured in Apache) may pull and push changesets, effectively this means that hgwebdir.cgi (and thus hg) edits and creates files below /path/to/repos. Now, what's the barrier in letting hgwebdir.cgi also create new repositories below /path/to/repos?
hgwebdir.cgirunshgon the server side which then edits/deletes/creates files within a repository (usually as the webserver user, e.g. www-data). Shouldn'thgbe able to similarly create new repositories within a directory specified inconfig.web(and, of course owned by www-data)? – Oben Sonne Feb 8 '11 at 13:36hg serve'ing. It doesn't take long to do I admit but it would be better if maybe the webdir application exposed some way to initiate the clone operation via the web page. Then we wouldn't need to worry about giving devs direct RDP access to our master server. – nbevans Feb 8 '11 at 13:49hgwebdir.cgiserves a collection in/some/pathathttps://.../repos(pushing enabled), then technically it shouldn't be a huge problem to allow everyone with access to this URL to also create repos below/some/path, right? – Oben Sonne Feb 8 '11 at 13:56