minor text change
authorpaulr <me@pjr.cc>
Thu, 3 Nov 2011 16:41:34 +0000 (03:41 +1100)
committerpaulr <me@pjr.cc>
Thu, 3 Nov 2011 16:41:34 +0000 (03:41 +1100)
gwvplib/gwvpdatabase.php
gwvplib/gwvprepoadmin.php

index 0c9a121..d9b51cd 100644 (file)
@@ -39,8 +39,8 @@ function gwvp_dbCreateSQLiteStructure($dbloc)
                )';
 
        // 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" (
index e0943ba..53cf4b1 100644 (file)
@@ -46,6 +46,8 @@ function gwvp_RepoAdminPageBody()
        
        
        // 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) {