@@ -14,8 +14,8 @@ command. The `help` command by itself displays a list of the commands available:
1414
1515Documented commands (use 'help -v' for verbose/'help <topic>' for details):
1616===========================================================================
17- alias help ipy py run_pyscript set shortcuts
18- edit history macro quit run_script shell
17+ alias help ipy quit run_script shell
18+ edit history py run_pyscript set shortcuts
1919```
2020
2121The ` help ` command can also be used to provide detailed help for a specific command:
@@ -53,8 +53,8 @@ By default, the `help` command displays:
5353
5454 Documented commands (use 'help -v' for verbose/'help <topic>' for details):
5555 ===========================================================================
56- alias help ipy py run_pyscript set shortcuts
57- edit history macro quit run_script shell
56+ alias help ipy quit run_script shell
57+ edit history py run_pyscript set shortcuts
5858
5959If you have a large number of commands, you can optionally group your commands into categories.
6060Here's the output from the example ` help_categories.py ` :
@@ -80,8 +80,8 @@ Here's the output from the example `help_categories.py`:
8080
8181 Other
8282 =====
83- alias edit history py run_pyscript set shortcuts
84- config help macro quit run_script shell version
83+ alias edit history run_pyscript set shortcuts
84+ config help quit run_script shell version
8585
8686There are 2 methods of specifying command categories, using the ` @with_category ` decorator or with
8787the ` categorize() ` function. Once a single command category is detected, the help output switches to
@@ -137,51 +137,54 @@ categories with per-command Help Messages:
137137 Documented commands (use 'help -v' for verbose/'help <topic>' for details):
138138
139139 Application Management
140- ================================================================================
141- deploy Deploy command
142- expire Expire command
143- findleakers Find Leakers command
144- list List command
145- redeploy Redeploy command
146- restart usage: restart [-h] {now,later,sometime,whenever}
147- sessions Sessions command
148- start Start command
149- stop Stop command
150- undeploy Undeploy command
140+ ======================================================================================================
141+ deploy Deploy command.
142+ expire Expire command.
143+ findleakers Find Leakers command.
144+ list List command.
145+ redeploy Redeploy command.
146+ restart Restart
147+ sessions Sessions command.
148+ start Start
149+ stop Stop command.
150+ undeploy Undeploy command.
151+
152+ Command Management
153+ ======================================================================================================
154+ disable_commands Disable the Application Management commands.
155+ enable_commands Enable the Application Management commands.
151156
152157 Connecting
153- ================================================================================
154- connect Connect command
155- which Which command
158+ ======================================================================================================
159+ connect Connect command.
160+ which Which command.
156161
157162 Server Information
158- ================================================================================
159- resources Resources command
160- serverinfo Server Info command
161- sslconnectorciphers SSL Connector Ciphers command is an example of a command that contains
162- multiple lines of help information for the user. Each line of help in a
163- contiguous set of lines will be printed and aligned in the verbose output
164- provided with 'help --verbose'
165- status Status command
166- thread_dump Thread Dump command
167- vminfo VM Info command
163+ ======================================================================================================
164+ resources Resources command.
165+ serverinfo Server Info command.
166+ sslconnectorciphers SSL Connector Ciphers command is an example of a command that contains
167+ multiple lines of help information for the user. Each line of help in a
168+ contiguous set of lines will be printed and aligned in the verbose output
169+ provided with 'help --verbose'.
170+ status Status command.
171+ thread_dump Thread Dump command.
172+ vminfo VM Info command.
168173
169174 Other
170- ================================================================================
171- alias Manage aliases
172- config Config command
173- edit Run a text editor and optionally open a file with it
174- help List available commands or provide detailed help for a specific command
175- history View, run, edit, save, or clear previously entered commands
176- macro Manage macros
177- py Invoke Python command or shell
178- quit Exits this application
179- run_pyscript Runs a python script file inside the console
180- run_script Runs commands in script file that is encoded as either ASCII or UTF-8 text
181- set Set a settable parameter or show current settings of parameters
182- shell Execute a command as if at the OS prompt
183- shortcuts List available shortcuts
184- version Version command
175+ ======================================================================================================
176+ alias Manage aliases
177+ config Config command.
178+ edit Run a text editor and optionally open a file with it
179+ help List available commands or provide detailed help for a specific command
180+ history View, run, edit, save, or clear previously entered commands
181+ quit Exit this application
182+ run_pyscript Run a Python script file inside the console
183+ run_script Run commands in script file that is encoded as either ASCII or UTF-8 text
184+ set Set a settable parameter or show current settings of parameters.
185+ shell Execute a command as if at the OS prompt
186+ shortcuts List available shortcuts
187+ version Version command.
185188
186189When called with the ` -v ` flag for verbose help, the one-line description for each command is
187190provided by the first line of the docstring for that command's associated ` do_* ` method.
0 commit comments