Home
last modified time | relevance | path

Searched full:command (Results 1 – 25 of 1528) sorted by relevance

12345678910>>...62

/plugin/asciidocjs/node_modules/commander/typings/
Dindex.d.ts18 …e option must have a value after parsing, which usually means it must be specified on command line.
30 interface Command { interface
35 commands: Command[];
48 * Define a command, implemented using an action handler.
51 * The command description is supplied using `.description`, not as a parameter to `.command`.
56 * .command('clone <source> [destination]')
59 * console.log('clone command called');
63 …* @param nameAndArgs - command name and arguments, args are `<required>` or `[optional]` and last…
65 * @returns new command
67 command(nameAndArgs: string, opts?: CommandOptions): ReturnType<this['createCommand']>; method
[all …]
/plugin/upgrade/myvendor/splitbrain/php-cli/src/
H A DOptions.php8 …* Parses command line options passed to the CLI script. Allows CLI scripts to easily register all …
22 /** @var string current parsed command if any */
23 protected $command = ''; variable in splitbrain\\phpcli\\Options
56 'commandhelp' => 'This tool accepts a command as first parameter as outlined below:'
58 ); // default command
112 * @param string $command if theses apply to a sub command only
115 public function registerArgument($arg, $help, $required = true, $command = '') argument
117 if (!isset($this->setup[$command])) {
118 throw new Exception("Command $command not registered");
121 $this->setup[$command]['args'][] = array(
[all …]
/plugin/command/inc/
Dextension.php4 CommandPluginExtension - Base class for a command of the Command Plugin.
6 Each command is a subclass of CommandPluginExtension. The name of a subclass
7 must be of the form CommandPluginExtension_<command>, where <command> is the
8 name of the command as it occurs in the syntax, in lowercase letters. Each
9 subclass must go in its own file, a file with name <command>.php.
11 The behavior of a command may vary according to how the command was embedded
13 block. When embedding inline, any replacement text that the command produces
19 The class provides two methods. getCachedData() is a stub that each command
21 the command to be replaced with the string returned by getCachedData() and
24 The Command Plugin never instantiates this class. Both methods are static
[all …]
Dembedding.php3 * CommandEmbedding -- Base class for command embedding syntaxes.
5 * A command embedding is a type of syntax plugin whose syntax includes
36 define('COMMANDPLUGIN_EXT_PATH', DOKU_PLUGIN.'command/ext/');
64 * particular command embedding and ideally also suggests the behavior
65 * of the command embedding. This string is passed to the command
67 * embedding the command was called from. A command typically only
80 * the command and parses out the call string and the content. It returns
97 // Parse the command.
110 // Load the command extension.
115 // Invoke the command.
[all …]
/plugin/swiftmail/Swift/Connection/
DSendmail.php52 * Switches to true for just one command when DATA has been issued
64 * @param string The command to execute
67 public function __construct($command="/usr/sbin/sendmail -bs", $timeout=10) argument
69 $this->setCommand($command);
162 * Set the sendmail command (path + flags)
163 * @param string Command
164 * @throws Swift_ConnectionException If the command is not correctly structured
166 public function setCommand($command) argument
168 if ($command == self::AUTO_DETECT) $command = $this->findSendmail() . " -bs";
170 if (!strrpos($command, " -"))
[all …]
DNativeMail.php94 * Write a command to the process (leave off trailing CRLF)
95 * @param string The command to send
98 public function write($command, $end="\r\n") argument
100 $command = strtoupper($command);
101 if (strpos($command, " ")) $command = substr($command, 0, strpos($command, " "));
102 switch ($command)
/plugin/asciidocjs/node_modules/commander/
DReadme.md8 The complete solution for [node.js](http://nodejs.org) command-line interfaces, inspired by Ruby's …
64 …der in multiple ways, including unit testing, it is better to create a local Command object to use.
67 const { Command } = require('commander');
68 const program = new Command();
76 The options can be accessed as properties on the Command object. Multi-word options such as "--temp…
83 command, like: `do -- git --version`.
85 Options on the command line are not positional, and can be specified before or after other command
89 …kes a value (declared using angle brackets). Both are `undefined` unless specified on command line.
153 …ou can specify a default boolean value for a boolean flag and it can be overridden on command line.
265 …n`. The option must have a value after parsing, usually specified on the command line, or perhaps …
[all …]
Dindex.js25 …e option must have a value after parsing, which usually means it must be specified on command line.
93 class Command extends EventEmitter { class
95 * Initialize a new `Command`.
124 this._helpDescription = 'display help for command';
129 this._helpCommandnameAndArgs = 'help [command]';
130 this._helpCommandDescription = 'display help for command';
134 * Define a command.
136 * There are two styles of command: pay attention to where to put the description.
140 …* // Command implemented using action handler (description is supplied separately to `.comman…
142 * .command('clone <source> [destination]')
[all …]
DCHANGELOG.md14 - support for multiple command aliases, the first of which is shown in the auto-generated help ([#5…
25 - rename `.command()` configuration `noHelp` to `hidden` (but not remove old support) ([#1232])
36 * `.addCommand()` for adding a separately configured command ([#764] [#1149])
37 * allow a non-executable to be set as the default command ([#742] [#1149])
38 * implicit help command when there are subcommands (previously only if executables) ([#1149])
39 * customise implicit help command with `.addHelpCommand()` ([#1149])
47 * suggest help option along with unknown command error ([#1179])
48 * TypeScript definition for `commands` property of `Command` ([#1184])
55 * do not emit `command:*` for executable subcommands ([#809] [#1149])
58 * only add implicit help command when it will not conflict with other uses of argument ([#1153] [#1…
[all …]
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/py/
Dconnector.py31 from fckcommands import * # default command's implementation
50 for key in ("Command","Type","CurrentFolder"):
53 # Get command, resource type and current folder
54 command = self.request.get("Command")
61 # Check if it is an allowed command
62 if ( not command in Config.ConfigAllowedCommands ):
63 return self.sendError( 1, 'The %s command isn\'t allowed' % command )
69 if command == "QuickUpload":
87 if (command == "FileUpload"):
94 s += self.createXmlHeader(command, resourceType, currentFolder, url)
[all …]
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/
Ddhtmlxgantt_undo.js174 function changeTaskCommandId(command, oldId, newId) { argument
175 updTask(command.value, oldId, newId);
176 updTask(command.oldValue, oldId, newId);
189 function changeLinkCommandId(command, oldId, newId) { argument
190 updLink(command.value, oldId, newId);
191 updLink(command.oldValue, oldId, newId);
198 if (entry.commands[j].entity === undo.command.entity.task) {
201 else if (entry.commands[j].entity === undo.command.entity.link) {
212 var command = entry.commands[j];
213 if (command.entity === undo.command.entity.link) {
[all …]
/plugin/pgn4web/pgn4web/
Dpgn-standard-proposed-supplement.txt58 2.3 If new command structures are to be introduced they should be specified in
69 new command syntax into PGN comments. This is a kludge and such an obvious one
73 Apart from a general command syntax we propose several specific commands
90 An embedded command may occur at any position in a standard PGN comment, ie
94 [%clk 1:05:23] is the embedded command string.
97 The command string is structured as follows.
100 A command name consisting of one or more alphanumeric characters.
109 The characters [% are redefined to indicate the start of a command sequence when
119 Command names start immediately after the [%.
124 describe a generalised command syntax, not to impose a particular set of
[all …]
/plugin/runcommand/
Dpostaction.php3 * Execute command given by runcommand plugin
8 * 2014/03/20: Added rcObjectId argument as command and outputType selector
37 $command=$_POST['command'.$rcObjectId]; variable
40 if ($element == 'command'.$rcObjectId) continue;
45 $command=str_replace("$".$baseElement,$_POST[$element],$command); variable
46 debug("Replace: ".$baseElement." -> ".$_POST[$element]." | ".$command, 3, $rcDebugLevel);
48 $command=stripslashes($command); variable
52 $lastLine = exec($command, $outputValue, $retVal);
/plugin/combo/vendor/php-webdriver/webdriver/lib/Chrome/
H A DChromeDevToolsDriver.php30 * Executes a Chrome DevTools command
32 * @param string $command The DevTools command to execute
33 * @param array $parameters Optional parameters to the command
34 * @return array The result of the command
36 public function execute($command, array $parameters = []) argument
38 $params = ['cmd' => $command, 'params' => (object) $parameters];
/plugin/odtsupport/
Dsyntax.php79 $command = $matches[1];
86 switch ($command) {
132 return array($command,$string,$hash,$string2);
146 list($command, $string, $hash, $string2) = $data;
149 if ($command == $this->serverurl) {
152 } else if ($command != $this->odt_field_pagehash4
153 && $command != $this->odt_field_pagehash
154 && $command != $this->odt_field_metadata) {
160 …if ($command != $this->odt_field_metadata) { // don't insert metadata - if this should be searchab…
165 if ($command == $this->serverurl) {
[all …]
/plugin/freechat/phpfreechat/src/
Dpfccommand.class.php35 * Command name (lowercase)
40 * Contains the command syntaxe (how to use the command)
51 * Used to instanciate a command
52 * $tag is the command name : "nick", "me", "update" ...
58 // instanciate the real command
109 // return the proxy, not the command (the proxy will forward the request to the real command)
123 * It is called by the phpFreeChat::HandleRequest function to execute the wanted command
177 * Add command to be played onto command stack
178 * @param $nickid is the user that entered the command
179 * @param $cmdstr is the command
[all …]
/plugin/plantuml/
Dsyntax.php202 $command = $java;
203 $command .= ' -Djava.awt.headless=true';
204 $command .= ' -Dfile.encoding=UTF-8';
205 $command .= " -jar $jar";
206 $command .= ' -charset UTF-8';
207 $command .= ' -encodeurl';
208 $command .= ' ' . escapeshellarg($in);
209 $command .= ' 2>&1';
211 $encoded = exec($command, $output, $return_value);
216 dbglog(join("\n", $output), "Encoding url failed: $command");
[all …]
/plugin/pdftools/
Dadmin.php13 var $output = 'COMMAND: none';
34 $command = key($_REQUEST['cmd']);
37 if (strpos($command,"install:")===0) {
38 $command = str_replace("install:","",$command);
40 $this->output = "COMMAND: Install template '$command'";
42 recurse_copy(DOKU_PLUGIN."/pdftools/tpl/$command",DOKU_PLUGIN."/dw2pdf/tpl/$command");
45 if (strpos($command,"erase:")===0) {
46 $command = str_replace("erase:","",$command);
48 $this->output = "COMMAND: Erase '$command'";
50 $this->rrmdir(DOKU_PLUGIN."dw2pdf/tpl/$command");
[all …]
/plugin/statdisplay/
Dsyntax.php38 $command = trim(substr($match, 14, -2));
39 list($command, $params) = array_pad(explode('?', $command), 2, '');
57 'command' => $command,
68 $command = $data['command'];
76 $table->table($renderer, $command, $from, $to);
79 …> DOKU_BASE . 'lib/plugins/statdisplay/graph.php?graph=' . rawurlencode($command) . '&f=' . $from …
/plugin/swiftmail/Swift/Events/
DCommandEvent.php4 * Swift Mailer Command Event
14 * Generated when Swift is sending a command
21 * Contains the command being sent
33 * @param string The command being sent
42 * Set the command being sent (without CRLF)
43 * @param string The command being sent
50 * Get the command being sent
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
DProcessHandler.php17 * Stores to STDIN of any process, specified by a command.
39 private $command; variable in Monolog\\Handler\\ProcessHandler
61 …* @param string $command Command for the process to start. Absolute paths are …
66 …public function __construct(string $command, $level = Logger::DEBUG, bool $bubble = true, ?string … argument
68 if ($command === '') {
69 throw new \InvalidArgumentException('The command argument must be a non-empty string.');
77 $this->command = $command;
116 … $this->process = proc_open($this->command, static::DESCRIPTOR_SPEC, $this->pipes, $this->cwd);
139 sprintf('The process "%s" could not be opened: ' . $errors, $this->command)
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRun/
DExecAction.php22 protected $collection_key = 'command';
26 public $command; variable in Google\\Service\\CloudRun\\ExecAction
31 public function setCommand($command) argument
33 $this->command = $command;
40 return $this->command;
/plugin/odt/renderer/
Dpagepdf.php88 // Prepare command line
89 $command = $this->config->getParam('convert_to_pdf');
90 $command = str_replace('%outdir%', $temp_dir, $command);
91 $command = str_replace('%sourcefile%', $file, $command);
95 exec ($command, $output, $result);
102 $message = str_replace('%command%', $command, $message);
/plugin/yuriigantt/3rd/dhtmlxgantt/ext/
Ddhtmlxgantt_undo.js.map1command","length","type","update","move","_a","oldValue","entity","inverseCommands","remove","add"…
/plugin/command/syntax/
Dblock.php3 * Block Command Plugin - Perform a command whose output is block-embedded.
6 * http://wiki.splitbrain.org/plugin:command
21 define('COMMANDPLUGIN_PATH', DOKU_PLUGIN.'command/');
33 'name' => 'Block Command',
34 'desc' => 'Perform a command whose output is block-embedded',
35 'url' => 'http://wiki.splitbrain.org/plugin:command',

12345678910>>...62