Originally created by: sf-overlords
Created by: wolf
Created date: 2010-04-29 16:05:01.962000
Assigned to:wolf
The file-system paths will begin with /<scm>/, but the SCM URLs will not. The mount-point is now gone from both file-system paths and URLs. So for a project named "foo" and a repo named "bar.git" we would have the following:
The URL to access the repo from Git:
git://<host>/foo/bar.git
The physical path to the repo in the file-system:
/git/foo/bar.git
The URL for the page representing the repo:
http://<host>/p/foo/bar.git
Note this implies that we have to do some kind of magic to get around the existing mount-point architecture. Or rather -- the mount-point name is the repo name; and we don't advertise the repo as an object within the mount-point, but rather as the mounted thing itself.
Originally by: sf-overlords
Post by wolf: