]> git.mxchange.org Git - friendica.git/commitdiff
Update server block console help text to reflect the addition of shell wildcard syntax
authorHypolite Petovan <hypolite@mrpetovan.com>
Fri, 26 Jul 2019 02:36:50 +0000 (22:36 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Fri, 26 Jul 2019 02:37:14 +0000 (22:37 -0400)
src/Console/ServerBlock.php

index 7e45f108bb87309b2fa369067126a8ba473a19e9..202f7bb75edf271fe43ad7d1c4d36442e22fb033 100644 (file)
@@ -23,15 +23,20 @@ class ServerBlock extends Console
        protected function getHelp()
        {
                $help = <<<HELP
-console serverblock - Manage blocked servers
+console serverblock - Manage blocked server domain patterns
 Usage
        bin/console serverblock [-h|--help|-?] [-v]
-       bin/console serverblock add <server> <reason> [-h|--help|-?] [-v]
-       bin/console serverblock remove <server> [-h|--help|-?] [-v]
+       bin/console serverblock add <pattern> <reason> [-h|--help|-?] [-v]
+       bin/console serverblock remove <pattern> [-h|--help|-?] [-v]
 
 Description
-       With this tool, you can list the current blocked servers
-    or you can add / remove a blocked server from the list
+       With this tool, you can list the current blocked server domain patterns
+    or you can add / remove a blocked server domain pattern from the list.
+    
+    Patterns are case-insensitive shell wildcard comprising the following special characters:
+    - * : Any number of characters
+    - ? : Any single character
+    - [<char1><char2>...] : char1 or char2 or...
 
 Options
     -h|--help|-? Show help information