Home
last modified time | relevance | path

Searched refs:ch (Results 276 – 300 of 366) sorted by last modified time

1...<<1112131415

/plugin/webcomics/
H A Dsyntax.php61 $ch = new DokuHTTPClient();
62 $piece = $ch->get($url);
/plugin/stopforumspam2/
H A Dhelper.php39 $this->ch = curl_init();
40 if ($this->ch) {
41 curl_setopt ($this->ch, CURLOPT_URL, 'http://api.stopforumspam.org/api?json');
197 curl_setopt ($this->ch, CURLOPT_POST, 1);
198 curl_setopt ($this->ch, CURLOPT_POSTFIELDS, $data);
199 curl_setopt ($this->ch, CURLOPT_RETURNTRANSFER, true);
200 $result = curl_exec ($this->ch);
201 $detail = curl_getinfo($this->ch);
202 curl_close ($this->ch);
/plugin/ckgdoku/ckeditor/plugins/link/dialogs/
H A Dlink.js.unc1486 * @author Pierre Spring <pierre.spring@caillou.ch>
/plugin/cleanup/lang/cs/
H A Dintro.txt3 Tento zásuvný modul umí zkontrolovat data adresář na výskyt starých a pravděpodobně nepoužívaných s…
/plugin/importfacebookevents/nppBackup/
H A Dsyntax.php.2018-03-08_165255.bak84 $ch = curl_init();
86 curl_setopt($ch, CURLOPT_URL, $url);
87 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
88 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
89 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
90 $data = curl_exec($ch);
91 curl_close($ch);
H A Dsyntax.php.2018-03-08_165158.bak84 $ch = curl_init();
86 curl_setopt($ch, CURLOPT_URL, $url);
87 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
88 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
89 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
90 $data = curl_exec($ch);
91 curl_close($ch);
H A Dsyntax.php.2018-03-08_165027.bak84 $ch = curl_init();
86 curl_setopt($ch, CURLOPT_URL, $url);
87 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
88 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
89 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
90 $data = curl_exec($ch);
91 curl_close($ch);
H A Dsyntax.php.2018-03-08_164706.bak84 $ch = curl_init();
86 curl_setopt($ch, CURLOPT_URL, $url);
87 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
88 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
89 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
90 $data = curl_exec($ch);
91 curl_close($ch);
H A Dsyntax.php.2018-03-08_164623.bak80 $ch = curl_init();
82 curl_setopt($ch, CURLOPT_URL, $url);
83 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
84 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
85 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
86 $data = curl_exec($ch);
87 curl_close($ch);
H A Dsyntax.php.2018-03-08_163718.bak80 $ch = curl_init();
82 curl_setopt($ch, CURLOPT_URL, $url);
83 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
84 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
85 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
86 $data = curl_exec($ch);
87 curl_close($ch);
H A Dsyntax.php.2018-03-08_163705.bak80 $ch = curl_init();
82 curl_setopt($ch, CURLOPT_URL, $url);
83 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
84 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
85 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
86 $data = curl_exec($ch);
87 curl_close($ch);
H A Dsyntax.php.2018-03-08_163658.bak80 $ch = curl_init();
82 curl_setopt($ch, CURLOPT_URL, $url);
83 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
84 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
85 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
86 $data = curl_exec($ch);
87 curl_close($ch);
/plugin/coinhive/conf/
H A Ddefault.php10 $conf['ch-optin-url'] = 'https://authedmine.com/lib/authedmine.min.js';
/plugin/rocketchatnotifier/
H A Daction.php81 $ch = curl_init($webhook);
90 curl_setopt($ch, CURLOPT_PROXY, $proxyAddress);
91 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
93 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
98 curl_setopt($ch, CURLOPT_PROXYUSERPWD, $proxyAuth);
105 curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
106 curl_setopt($ch, CURLOPT_POSTFIELDS, "payload={$pay}");
107 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
108 $result = curl_exec($ch);
112 echo 'cURL error when posting Wiki save notification to Rocket.Chat+: ' . curl_error($ch);
[all …]
/plugin/vbsso/vendor/com.extremeidea.vbsso/vbsso-connect-shared/
H A Dsharedapi.php250 $ch = $r[$i];
251 switch ($ch) {
466 $ch = curl_init();
468 curl_setopt($ch, CURLOPT_URL, $url);
474 curl_setopt($ch, CURLOPT_POST, 1);
475 curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
478 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
479 curl_setopt($ch, CURLOPT_HEADER, 0);
483 $data = curl_exec($ch);
485 $code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
[all …]
/plugin/authgoogle/google/io/
H A DGoogle_CurlIO.php89 $ch = curl_init();
90 curl_setopt_array($ch, $this->curlParams);
91 curl_setopt($ch, CURLOPT_URL, $request->getUrl());
102 curl_setopt($ch, CURLOPT_HTTPHEADER, $parsed);
107 $respData = curl_exec($ch);
110 if (curl_errno($ch) == CURLE_SSL_CACERT) {
114 $respData = curl_exec($ch);
117 $respHeaderSize = curl_getinfo($ch, CURLINFO_HEADER_SIZE);
119 $curlErrorNum = curl_errno($ch);
120 $curlError = curl_error($ch);
[all …]
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
H A Dpdfmake.js15420 var ch = data.charCodeAt(i);
15421 if (ch < 0x80) {
15422 newdata.push(ch);
15423 } else if (ch < 0x800) {
15425 0x80 | (ch & 0x3f));
15426 } else if (ch < 0x10000) {
15428 0x80 | ((ch >> 6) & 0x3f),
15429 0x80 | (ch & 0x3f));
15432 0x80 | ((ch >> 12) & 0x3f),
15433 0x80 | ((ch >> 6) & 0x3f),
[all …]
H A Dpdfmake.min.js.map1ch","maxbuflen","bits","datalen","nlenbits","calculateecc","genpoly","modulus","polylen","genpolyl…
/plugin/authyubikey/lib/
H A DNEWS13 <patrick.monnerat@datasphere.ch>.
H A DYubico.php313 $ch = array();
341 $ch[(int)$handle] = $handle;
436 foreach ($ch as $h) {
448 unset ($ch[(int)$info['handle']]);
459 foreach ($ch as $h) {
/plugin/wikipediasnippet/conf/
H A Dlang2dir.conf39 ch ltr #Chamorro
/plugin/ditaa/ditaa/
H A Dditaa.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/htmlparser/ net/ ...
/plugin/javadoc/
H A Dplugin.info.txt3 email info@stefan-rothe.ch
/plugin/pgn4web/pgn4web/
H A Dtwic944.pgn42228 [Event "60th ch-HUN w 2012"]
42256 [Event "60th ch-HUN w 2012"]
42282 [Event "60th ch-HUN w 2012"]
42304 [Event "60th ch-HUN w 2012"]
42332 [Event "60th ch-HUN w 2012"]
42354 [Event "60th ch-HUN w 2012"]
42377 [Event "60th ch-HUN w 2012"]
42401 [Event "60th ch-HUN w 2012"]
42424 [Event "60th ch-HUN w 2012"]
42449 [Event "60th ch-HUN w 2012"]
[all …]
/plugin/zotero/
H A DImportZoteroFeedReader.php47 $ch = curl_init();
48 curl_setopt($ch, CURLOPT_URL, $url);
49 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
50 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
51 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
52 $download = curl_exec($ch);
53 curl_close($ch);

1...<<1112131415