Skip to content

Commit

Permalink
Applying patch from 'dragonfly' to improve help output for AclShell.
Browse files Browse the repository at this point in the history
Fixes #1198
  • Loading branch information
markstory committed Oct 15, 2010
1 parent 6529e0e commit 025090f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cake/console/libs/acl.php
Expand Up @@ -434,21 +434,21 @@ function help() {
"\t" . __("For more detailed parameter usage info,", true) . "\n" .
"\t" . __("see help for the 'create' command.", true),

'grant' => "grant <node> <node> [<aco_action>] " . __("or", true) . " all\n" .
'grant' => "grant <aronode> <aconode> [<aco_action>] " . __("or", true) . " all\n" .
"\t" . __("Use this command to grant ACL permissions. Once executed, the ARO", true) . "\n" .
"\t" . __("specified (and its children, if any) will have ALLOW access to the", true) . "\n" .
"\t" . __("specified ACO action (and the ACO's children, if any).", true) . "\n" .
"\t" . __("For more detailed parameter usage info,", true) . "\n" .
"\t" . __("see help for the 'create' command.", true),

'deny' => "deny <node> <node> [<aco_action>]" . __("or", true) . " all\n" .
'deny' => "deny <aronode> <aconode> [<aco_action>]" . __("or", true) . " all\n" .
"\t" . __("Use this command to deny ACL permissions. Once executed, the ARO", true) . "\n" .
"\t" . __("specified (and its children, if any) will have DENY access to the", true) . "\n" .
"\t" . __("specified ACO action (and the ACO's children, if any).", true) . "\n" .
"\t" . __("For more detailed parameter usage info,", true) . "\n" .
"\t" . __("see help for the 'create' command.", true),

'inherit' => "inherit <node> <node> [<aco_action>]" . __("or", true) . " all\n" .
'inherit' => "inherit <aronode> <aconode> [<aco_action>]" . __("or", true) . " all\n" .
"\t" . __("Use this command to force a child ARO object to inherit its", true) . "\n" .
"\t" . __("permissions settings from its parent.", true) . "\n" .
"\t" . __("For more detailed parameter usage info,", true) . "\n" .
Expand Down

0 comments on commit 025090f

Please sign in to comment.