]> granicus.if.org Git - php/commitdiff
* added more shortcuts
authorStig Bakken <ssb@php.net>
Tue, 21 May 2002 01:38:50 +0000 (01:38 +0000)
committerStig Bakken <ssb@php.net>
Tue, 21 May 2002 01:38:50 +0000 (01:38 +0000)
pear/PEAR/Command/Config.php
pear/PEAR/Command/Install.php
pear/PEAR/Command/Package.php
pear/PEAR/Command/Registry.php
pear/PEAR/Command/Remote.php

index fd919c958483f3c2673d32a53cb045c48478b71f..f2d12b550d40b9fdc6fb57b8e432c02cfa1cd0ef 100644 (file)
@@ -44,6 +44,7 @@ configuration layers are "user", "system" and "default".
         'config-get' => array(
             'summary' => 'Show One Setting',
             'function' => 'doConfigGet',
+            'shortcut' => 'cg',
             'options' => array(),
             'doc' => 'Displays the value of one configuration parameter.  The
 first argument is the name of the parameter, an optional second argument
@@ -56,6 +57,7 @@ just specified.
         'config-set' => array(
             'summary' => 'Change Setting',
             'function' => 'doConfigSet',
+            'shortcut' => 'cs',
             'options' => array(),
             'doc' => 'Sets the value of one configuration parameter.  The first
 argument is the name of the parameter, the second argument is the new value.
index 18e4a21303e02bc5e345ae227552f6591b240eaa..c9576cea84cc7416f01a23e25ab5f074616cf9b3 100644 (file)
@@ -35,6 +35,7 @@ class PEAR_Command_Install extends PEAR_Command_Common
         'install' => array(
             'summary' => 'Install Package',
             'function' => 'doInstall',
+            'shortcut' => 'i',
             'options' => array(
                 'force' => array(
                     'shortopt' => 'f',
@@ -80,6 +81,7 @@ four ways of specifying packages.
         'upgrade' => array(
             'summary' => 'Upgrade Package',
             'function' => 'doInstall',
+            'shortcut' => 'up',
             'options' => array(
                 'force' => array(
                     'shortopt' => 'f',
@@ -111,6 +113,7 @@ More than one package may be specified at once.
         'uninstall' => array(
             'summary' => 'Un-install Package',
             'function' => 'doUninstall',
+            'shortcut' => 'un',
             'options' => array(
                 'nodeps' => array(
                     'shortopt' => 'n',
index 28f36da624e4c2813965d603372d84787cce84f7..074879f075d22203ddda1245eb20fbdd19128757 100644 (file)
@@ -27,6 +27,7 @@ class PEAR_Command_Package extends PEAR_Command_Common
         'package' => array(
             'summary' => 'Build Package',
             'function' => 'doPackage',
+            'shortcut' => 'p',
             'options' => array(
                 'nocompress' => array(
                     'shortopt' => 'Z',
index 58f74cdfc10042d654af503be392c4771644283f..d85be3747919c5e1d5e67f961f943084dc581620 100644 (file)
@@ -29,6 +29,7 @@ class PEAR_Command_Registry extends PEAR_Command_Common
         'list' => array(
             'summary' => 'List Installed Packages',
             'function' => 'doList',
+            'shortcut' => 'l',
             'options' => array(),
             'doc' => '[package]
 If invoked without parameters, this command lists the PEAR packages
@@ -38,8 +39,8 @@ lists the files in that package.
             ),
         'shell-test' => array(
             'summary' => 'Shell Script Test',
-            'shortcut' => 'stest',
             'function' => 'doShellTest',
+            'shortcut' => 'stest',
             'options' => array(),
             'doc' => '<package> [[relation] version]
 Tests if a package is installed in the system. Will exit(1) if it is not.
index fb4fe201d1b6e15fb17a7e1d225b6f7395ae9663..b7b85c530aafb01f7b9d7d4540b23a376187d738 100644 (file)
@@ -28,9 +28,10 @@ class PEAR_Command_Remote extends PEAR_Command_Common
     // {{{ command definitions
 
     var $commands = array(
-        'info-remote' => array(
+        'remote-info' => array(
             'summary' => 'Information About Remote Packages',
-            'function' => 'doInfoRemote',
+            'function' => 'doRemoteInfo',
+            'shortcut' => 'ri',
             'options' => array(),
             'doc' => '<package>
 Get details on a package from the server.',
@@ -38,14 +39,16 @@ Get details on a package from the server.',
         'list-upgrades' => array(
             'summary' => 'List Available Upgrades',
             'function' => 'doListUpgrades',
+            'shortcut' => 'lu',
             'options' => array(),
             'doc' => '
 List releases on the server of packages you have installed where
 a newer version is available with the same release state (stable etc.).'
             ),
-        'list-remote' => array(
+        'remote-list' => array(
             'summary' => 'List Remote Packages',
-            'function' => 'doListRemote',
+            'function' => 'doRemoteList',
+            'shortcut' => 'rl',
             'options' => array(),
             'doc' => '
 Lists the packages available on the configured server along with the
@@ -54,6 +57,7 @@ latest stable release of each package.',
         'download' => array(
             'summary' => 'Download Package',
             'function' => 'doDownload',
+            'shortcut' => 'd',
             'options' => array(
                 'nocompress' => array(
                     'shortopt' => 'Z',