Update of /cvsroot/cvs-nserver/cvs-nserver/src
In directory usw-pr-cvs1:/tmp/cvs-serv12339
Modified Files:
Tag: NCLI-1-11-1
racl.c
Log Message:
Command documentation updated
Index: racl.c
===================================================================
RCS file: /cvsroot/cvs-nserver/cvs-nserver/src/Attic/racl.c,v
retrieving revision 1.1.2.6
retrieving revision 1.1.2.7
diff -u -d -r1.1.2.6 -r1.1.2.7
--- racl.c 13 Jun 2002 13:44:33 -0000 1.1.2.6
+++ racl.c 20 Jun 2002 17:29:12 -0000 1.1.2.7
@@ -38,11 +38,27 @@
static const char *const racl_usage[] =
{
"Usage: cvs racl [-r BRANCH] [-t] [grant|revoke] USER PERMISSION modules...\n",
+ "\t-r BRANCH\tSet PERMISSION for a specific branch (default: trunk)\n",
+ "\t-t \t\"Translate\" dir. perm. to an appropriate file perm.\n",
"\tPERMISSION could be one of those:\n",
- "\t\ttag\t\tAllow creating tags\n",
- "\t\ttag:PREFIX\tAllow tags whose names start with PREFIX\n",
- "\t\tbranch\t\tAllow creating branches\n",
- "\t\tbranch:PREFIX\tAllow branches whose names start with PREFIX\n",
+ "\t Module level permissions:\n",
+ "\t tag\t\tAllow creating tags\n",
+ "\t tag:PREFIX\tAllow tags whose names start with PREFIX\n",
+ "\t branch\t\tAllow creating branches\n",
+ "\t branch:PREFIX\tAllow branches whose names start with PREFIX\n",
+ "\n",
+ "\t File specific permissions:\n",
+ "\t checkout \tCheckout right for a file\n",
+ "\t checkout,checkin\tCheckout and checkin rights for a file\n",
+ "\t none \t'None' right to a file\n",
+ "\n",
+ "\t Directory specific permissions:\n",
+ "\t access Access right to a directory\n",
+ "\t access,modify Access and modify rights to a directory\n",
+ "\t none 'None' right to a directory\n",
+ "\t default:<file perms> Set default rights for files in a directory\n",
+ "\n",
+ "\tSee NCVS documentation for more explanations about ACLs in CVS\n",
NULL
};
|