| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Script/Resource/ |
| D | Scripts.php | 9 * http://www.apache.org/licenses/LICENSE-2.0 18 namespace Google\Service\Script\Resource; 20 use Google\Service\Script\ExecutionRequest; 21 use Google\Service\Script\Operation; 27 * $scriptService = new Google\Service\Script(...); 28 * $scripts = $scriptService->scripts; 34 * Runs a function in an Apps Script project. The script project must be 35 * deployed for use with the Apps Script API and the calling application must 38 * the [Authorization](#authorization-scopes) section; script projects that do 40 * correct scopes to include in the authentication token, open the script [all …]
|
| /plugin/maintenance/ |
| D | helper.php | 2 // must be run within Dokuwiki 10 $this->temp_dir = $conf['tmpdir'].'/maintenance'; 11 $this->script_last_log_file = $this->temp_dir.'/last.log'; 12 $this->script_last_pid_file = $this->temp_dir.'/last.pid'; 13 $this->script_last_script_file = $this->temp_dir.'/last.script'; 14 $this->manual_lock_file = $this->temp_dir.'/.lock'; 19 putenv('LANG='."en_US.UTF-8"); 23 * Gets the configured script 26 $script = $this->getConf('script'); 27 $script = str_replace( [all …]
|
| /plugin/html2pdf/html2pdf/html2ps/demo/ |
| D | systemcheck.php | 43 $title = htmlspecialchars($check->title()); 44 $message = nl2br($check->getMessage()); 45 $status_class = status2class($check->getStatus()); 62 function run() { function in ManagerChecks 66 $__g_registered_checks[$i]->run(); 93 function run() { function in CheckSimple 94 error_no_method('run', get_class($this)); 100 * CHECK_STATUS_FAILED - check failed, script will not work unless this issue is fixed 101 * CHECK_STATUS_WARNING - check succeeded, script may encounter minor issues 102 * CHECK_STATUS_SUCCESS - check succeeded without any problems [all …]
|
| /plugin/upgrade/ |
| H A D | legacy.php | 4 * Legacy command line upgrade script 6 * This script can be used to upgrade old versions of DokuWiki that won't easily run on 8 * DokuWiki code, but instead fakes an absolute minimal environment to run the upgrade. 10 * This means this script will make more assumptions and take shortcuts: 12 * - no proxy support 13 * - no tmp dir changes 14 * - english only 15 * - only "normal" releases (no snapshots or git checkouts) 17 * Only use this if you can't run the normal upgrade script. 55 return htmlspecialchars($string, ENT_QUOTES, 'UTF-8'); [all …]
|
| /plugin/aichat/vendor/mehrab-wj/tiktoken-php/.github/workflows/ |
| H A D | php.yml | 15 runs-on: ubuntu-latest 18 - uses: actions/checkout@v3 20 - name: Validate composer.json and composer.lock 21 run: composer validate --strict 23 - name: Cache Composer packages 24 id: composer-cache 28 key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} 29 restore-keys: | 30 ${{ runner.os }}-php- 32 - name: Install dependencies [all …]
|
| /plugin/asciidocjs/node_modules/esutils/ |
| D | package.json | 31 "coffee-script": "~1.6.3", 35 "unicode-9.0.0": "~0.7.0" 37 "license": "BSD-2-Clause", 39 "test": "npm run-script lint && npm run-script unit-test", 41 "unit-test": "mocha --compilers coffee:coffee-script -R spec", 42 "generate-regex": "node tools/generate-identifier-regex.js"
|
| /plugin/freechat/phpfreechat/src/commands/ |
| D | send.class.php | 7 function run(&$xml_reponse, $p) function in pfcCommand_send 19 $nick = $ct->getNickname($u->nickid); //phpFreeChat::FilterSpecialChar($sender); 22 …// $offline = $container->getMeta("offline", "nickname", $u->privmsg[$recipientid]["name"])… 28 if (isset($u->privmsg[$recipientid])) 30 $pvnickid = $u->privmsg[$recipientid]["pvnickid"]; 31 $pvnick = $ct->getNickname($pvnickid);//$u->privmsg[$recipientid]["name"]; 32 // $pvnickid = $ct->getNickId($pvnick); 35 $onlineusers = $ct->getOnlineNick(NULL); 42 $cmd->run($xml_reponse, $cmdp); 58 $cmd->run($xml_reponse, $cmdp); [all …]
|
| D | update.class.php | 7 function run(&$xml_reponse, $p) function in pfcCommand_update 20 if ($u->nick != '' && !$u->isOnline()) 24 $cmdp['params'] = array($u->nick); 27 $cmd->run($xml_reponse, $cmdp); 31 if ($u->isOnline()) 39 $cmd->run($xml_reponse, $cmdp); 43 foreach( $u->channels as $id => $chan ) 48 $cmd->run($xml_reponse, $cmdp); 50 foreach( $u->privmsg as $id => $pv ) 55 $cmd->run($xml_reponse, $cmdp); [all …]
|
| D | privmsg.class.php | 9 function run(&$xml_reponse, $p) function in pfcCommand_privmsg 26 $cmdp["param"] .= " (".$this->usage.")"; 28 $cmd->run($xml_reponse, $cmdp); 35 if ($this->name == 'privmsg2') 38 $pvname = $ct->getNickname($pvnickid); 43 $pvnickid = $ct->getNickId($pvname); 45 $nickid = $u->nickid; 46 $nick = $ct->getNickname($u->nickid); 51 $xml_reponse->script("pfc.handleResponse('".$this->name."','speak_to_myself');"); 55 //$this->trace($xml_reponse, $this->name, $sender); [all …]
|
| /plugin/cleanup/ |
| D | admin.php | 5 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html 9 // must be run within Dokuwiki 17 $this->helper = $this->loadHelper('cleanup', false); 40 echo $this->locale_xhtml('intro'); 43 if(empty($_REQUEST['run'])) { 44 $form = new Doku_Form(array('action' => script(), 'method' => 'post')); 45 $form->addHidden('id', $ID); 46 $form->addHidden('page', 'cleanup'); 47 $form->addHidden('run', 'dry'); 48 $form->addElement(form_makeButton('submit', 'admin', $this->getLang('preview'))); [all …]
|
| /plugin/jplayer/vendor/symfony/process/ |
| D | PhpProcess.php | 17 * PhpProcess runs a PHP script in an independent process. 20 * $p->run(); 21 * print $p->getOutput()."\n"; 28 * @param string $script The PHP script to run (as a string) 34 …public function __construct($script, $cwd = null, array $env = null, $timeout = 60, array $options… argument 37 if (false === $php = $executableFinder->find(false)) { 40 $php = array_merge([$php], $executableFinder->findArguments()); 44 file_put_contents($file, $script); 47 $script = null; 53 parent::__construct($php, $cwd, $env, $script, $timeout, $options); [all …]
|
| /plugin/combo/vendor/symfony/process/ |
| H A D | PhpProcess.php | 18 * PhpProcess runs a PHP script in an independent process. 21 * $p->run(); 22 * print $p->getOutput()."\n"; 29 * @param string $script The PHP script to run (as a string) 35 …public function __construct(string $script, ?string $cwd = null, ?array $env = null, int $timeout … argument 39 $php = $executableFinder->find(false); 40 $php = false === $php ? null : array_merge([$php], $executableFinder->findArguments()); 44 file_put_contents($file, $script); 47 $script = null; 50 parent::__construct($php, $cwd, $env, $script, $timeout); [all …]
|
| /plugin/prosemirror/ |
| D | README.md | 2 …tinizer-ci.com/g/cosmocode/dokuwiki-plugin-prosemirror/badges/quality-score.png?b=master)](https:/… 10 ``lib/plugins/prosemirror/`` - if the folder is called different it 40 #### Begin Edit-Session: DokuWiki -> Prosemirror 41 - `action/editor.php`: `HTML_EDITFORM_OUTPUT` get Instructions and render them to json 42 - see `renderer.php` 43 - `renderer.php` uses the classes `NodeStack` `Node` and `Mark` in `schema` to do its job 44 - this should possibly renamed 45 - to keep information about a Node in as few places as possible, 47 - Prosemirror parses that json in `script/main.js` according to the schema defined in 48 `script/schema.js` and creates its `doc`-Node from it. [all …]
|
| /plugin/jplayer/vendor/symfony/process/Tests/ |
| D | NonStopableProcess.php | 13 * Runs a PHP script that can be stopped only with a SIGKILL (9) signal for 3 seconds. 15 * @args duration Run this script with a custom duration 17 * @example `php NonStopableProcess.php 42` will run the script for 42 seconds 44 while ($duration > (microtime(true) - $start)) {
|
| /plugin/asciidocjs/node_modules/core-js/modules/ |
| D | _task.js | 4 var cel = require('./_dom-create'); 15 var run = function () { function 17 // eslint-disable-next-line no-prototype-builtins 25 run.call(event.data); 34 // eslint-disable-next-line no-new-func 43 // Node.js 0.8- 46 process.nextTick(ctx(run, id, 1)); 51 Dispatch.now(ctx(run, id, 1)); 66 // IE8- 67 } else if (ONREADYSTATECHANGE in cel('script')) { [all …]
|
| /plugin/asciidocjs/node_modules/core-js/library/modules/ |
| D | _task.js | 4 var cel = require('./_dom-create'); 15 var run = function () { function 17 // eslint-disable-next-line no-prototype-builtins 25 run.call(event.data); 34 // eslint-disable-next-line no-new-func 43 // Node.js 0.8- 46 process.nextTick(ctx(run, id, 1)); 51 Dispatch.now(ctx(run, id, 1)); 66 // IE8- 67 } else if (ONREADYSTATECHANGE in cel('script')) { [all …]
|
| /plugin/freechat/phpfreechat/src/proxies/ |
| D | auth.class.php | 20 * Boston, MA 02110-1301 USA 33 function run(&$xml_reponse, $p) function in pfcProxyCommand_auth 45 // do not allow someone to run a command if he is not online 46 if ( !$u->isOnline() && 47 $this->name != 'error' && 48 $this->name != 'connect' && 49 $this->name != 'update' ) 54 $cmd->run($xml_reponse, $cmdp); 61 if ( in_array($this->name, $admincmd) ) 64 $nickid = $u->nickid; [all …]
|
| D | checknickchange.class.php | 20 * Boston, MA 02110-1301 USA 33 function run(&$xml_reponse, $p) function in pfcProxyCommand_checknickchange 46 $oldnick = $ct->getNickname($u->nickid); 48 if ( $this->name == 'nick' ) 53 if ( $this->name == 'nick' && 56 $c->frozen_nick == true && 57 $owner != $this->proxyname ) 60 …$xml_reponse->script("pfc.handleResponse('".$this->proxyname."', 'nick', '".addslashes($msg)."');"… 64 $newnickid = $ct->getNickId($newnick); 65 $oldnickid = $u->nickid; [all …]
|
| /plugin/combo/.github/ |
| H A D | bootstrap.sh | 5 # https://docs.github.com/en/actions/learn-github-actions/contexts#example-usage-of-the-github-cont… 6 …://docs.github.com/en/actions/learn-github-actions/variables#using-the-vars-context-to-access-conf… 7 # https://docs.github.com/en/actions/learn-github-actions/variables#default-environment-variables 9 # The head ref or source branch of the pull request in a workflow run. 10 …# This property is only set when the event that triggers a workflow run is either pull_request or … 11 # For example, feature-branch-1 13 # The name of the base ref or target branch of the pull request in a workflow run. 14 …# This is only set when the event that triggers a workflow run is either pull_request or pull_requ… 17 echo -e "\nPull request from the branch (${BUILD_BRANCH}) to the branch (${BUILD_TARGET_BRANCH})" 19 # The short ref name of the branch or tag that triggered the workflow run. [all …]
|
| /plugin/p2ilinkaction/ |
| D | p2i.thumbnails.js | 8 * p2iQuery().run("Free", false, false); 10 * p2iQuery().run(YOUR_DIRECTLINK_KEY, false, true); 14 * <script type="text/javascript" src="/js/p2i.thumbnails.js"></script> 15 * <script> 17 * p2iQuery().run("6b51f3e77d98e07f", false, true); 18 * //p2iQuery().run("Free", true, true); 20 * </script> 34 run: function(apikey, preload, includeinnerlink) { 48 …style="border-top: 1px solid #222222; padding: 0 3px; text-align: right;"><a href="http://www.pag… 125 pleft = pleft - p2i_popup.offsetWidth - 30; [all …]
|
| /plugin/sequencediagram/bower_components/snap.svg/doc/js/ |
| D | prism.js | 3 * MIT license http://www.opensource.org/licenses/mit-license.php/ 5 …-(?!\*)(\w+)\b/i,t=self.Prism={util:{type:function(e){return Object.prototype.toString.call(e).mat… 6 …-name":{pattern:/((?:(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\(… 8 …-?(0x[\dA-Fa-f]+|\d*\.?\d+([Ee]-?\d+)?|NaN|-?Infinity)\b/g});Prism.languages.insertBefore("javascr… property
|
| /plugin/toolbox/extension/ |
| D | content.js | 5 * inject the toolbox script if yes 8 // guards to make sure we only run on DokuWiki: 10 if (!gen || (gen.content.search(/DokuWiki/) === -1)) return; 14 // inject the script 15 var script = document.createElement('script'); 16 script.setAttribute("type", "application/javascript"); 17 script.src = (chrome || browser).extension.getURL('script.js'); 18 script.onload = function () { 21 (document.head || document.documentElement).appendChild(script);
|
| /plugin/inlinejs/ |
| D | helper.php | 5 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html 9 // must be run within Dokuwiki 17 public function renderInlineJsHtml(Doku_Renderer $renderer, $script) argument 19 if (empty($script)) return false; 21 $html = '<script type="text/javascript">'.DOKU_LF.'/*<![CDATA[*/'.DOKU_LF; 22 $html .= $script; 23 $html .= '/*!]]>*/'.DOKU_LF.'</script>'.DOKU_LF; 24 $renderer->doc .= $html;
|
| /plugin/backlinks/.github/workflows/ |
| H A D | phpCS.yml | 8 runs-on: ubuntu-latest 10 - uses: actions/checkout@v4 12 - name: Setup PHP 13 uses: shivammathur/setup-php@v2 15 php-version: '8.2' 18 - name: retrieve script 19 run: wget https://raw.github.com/splitbrain/dokuwiki-travis/master/travis.sh 21 - name: Install DokuWiki 25 run: sh travis.sh 27 # - name: run PHP codesniffer [all …]
|
| /plugin/syntaxhighlighter3/sxh3/demos/ |
| D | server_side.html | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-st… 4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 6 …<script type="text/javascript" src="../scripts/xregexp.js"></script> <!-- XRegExp is bundled with … 7 <script type="text/javascript" src="../scripts/shCore.js"></script> 8 <script type="text/javascript" src="../scripts/shBrushJScript.js"></script> 17 This page demonstrated ability to run SyntaxHighlighter independently of the browser's DOM, 21 <script type="text/plain" id="input"> 28 </script> 30 <script type="text/javascript"> 40 </script>
|