)';
// this looks like null, <repoid>, <read|visible|write>, user:<uid>|group:<gid>|authed|anon
- // where authed = any authenticated user, anon = any unauthed user
- // read|visible|write = can clone from repo|can see repo exists but not clone from it|can push to repo
+ // where authed = any authenticated user, anon = everyone (logged in, not logged in, etc)
+ // read|visible|write = can clone from repo|can see repo exists and see description but not clone from it|can push to repo
// TODO: is this sufficient? i have to think about it
$repoperms = '
CREATE TABLE "repoperms" (
// next we need a repo list - with perms checking - ug
+ // i must also remember that the home page will also contain a list of repos and that this page is solely for maintance
+ // and creation of repos - so i dont need to get over-worked about the info stored on this page outside of those activities
$rlist = gwvp_GetRepoList();
echo "<table border=\"1\"><tr><th>Repo Name</th><th>Repo Description</th><th>Repo Owner</th></tr>";
foreach($rlist as $u_res) {