Clear out management command descriptions.
authorAntony Chazapis <chazapis@gmail.com>
Sat, 25 Feb 2012 23:41:38 +0000 (01:41 +0200)
committerAntony Chazapis <chazapis@gmail.com>
Sat, 25 Feb 2012 23:41:38 +0000 (01:41 +0200)
snf-astakos-app/README
snf-astakos-app/astakos/im/management/commands/createuser.py
snf-astakos-app/astakos/im/management/commands/inviteuser.py
snf-astakos-app/astakos/im/management/commands/listinvitations.py
snf-astakos-app/astakos/im/management/commands/showinvitation.py

index 85a8555..4a449ec 100644 (file)
@@ -51,10 +51,15 @@ Administrator functions
 
 Available as extensions to Django's command-line management utility:
 
-============  ======================
-Name          Description
-============  ======================
-...
-============  ======================
-
-
+===============  ===========================
+Name             Description
+===============  ===========================
+activateuser     Activates one or more users
+createuser       Create a user
+inviteuser       Invite a user
+listinvitations  List invitations
+listusers        List users
+modifyuser       Modify a user's attributes
+showinvitation   Show invitation info
+showuser         Show user info
+===============  ===========================
index 528d41c..54f7e5f 100644 (file)
@@ -48,7 +48,7 @@ def generate_password():
 
 class Command(BaseCommand):
     args = "<email> <first name> <last name> <affiliation>"
-    help = "Modify a user's attributes"
+    help = "Create a user"
     
     option_list = BaseCommand.option_list + (
         make_option('--active',
index c4ae40a..a16b64d 100644 (file)
@@ -44,7 +44,7 @@ from ._common import get_user
 
 class Command(BaseCommand):
     args = "<inviter id or email> <email> <real name>"
-    help = "Activates one or more users"
+    help = "Invite a user"
     
     def handle(self, *args, **options):
         if len(args) != 3:
index eb1b1c1..b0c16f7 100644 (file)
@@ -41,7 +41,7 @@ from ._common import format_bool
 
 
 class Command(BaseCommand):
-    help = "List users"
+    help = "List invitations"
     
     option_list = BaseCommand.option_list + (
         make_option('-c',
index be951e3..b40d01c 100644 (file)
@@ -39,7 +39,7 @@ from ._common import format_bool, format_date
 
 
 class Command(BaseCommand):
-    help = "Show user info"
+    help = "Show invitation info"
     
     def handle(self, *args, **options):
         if len(args) != 1: