Home
last modified time | relevance | path

Searched refs:res (Results 251 – 275 of 309) sorted by last modified time

1...<<111213

/plugin/freechat/phpfreechat/src/
H A Dpfccommand.class.php276 if (preg_match($pattern_command, $cmd_str, $res))
278 $cmd = $res[1];
279 $clientid = $res[2];
280 $recipientid = $res[3];
281 $params_str = $res[4];
H A Dpfcglobalconfig.class.php860 if (preg_match("/(.*)\?(.*)/", $filetotest, $res))
861 $filetotest = $res[1];
880 if (preg_match("/(.*)\?(.*)/",$this->server_script_path, $res))
881 $filetotest = $res[1];
1016 else if (preg_match("/([a-z_\-0-9\.]+)(.*)$/i",$line,$res))
1018 $smiley_file = 'smileys/'.$res[1];
1019 $smiley_str = trim($res[2])."\n";
H A Dpfctools.php88 $res = "";
96 $res .= "../";
108 $res .= $p2;
110 if (preg_match("/.*\/$/", $res)) $res = preg_replace("/(.*)\//","$1",$res);
112 if ($res == "") $res = ".";
114 return $res;
H A Dpfcinfo.class.php65 $res = $ct->getOnlineNick($channel);
67 if (isset($res["nickid"]))
69 for($i = 0; $i < count($res["nickid"]); $i++)
71 if (time()-$timeout < $res["timestamp"][$i])
72 $users[] = $ct->getNickname($res["nickid"][$i]);
H A Dphpfreechat.class.php233 $res = pfcCommand::ParseCommand($request);
235 $cmdstr = isset($res['cmdstr']) ? $res['cmdstr'] : $request;
236 $cmdname = strtolower(isset($res['cmdname']) ? $res['cmdname'] : '');
237 $clientid = isset($res['params'][0]) ? $res['params'][0] : '';
238 $recipientid = isset($res['params'][1]) ? $res['params'][1] : "";
239 $params = array_slice(is_array($res['params']) ? $res['params'] : array() ,2);
H A Dpfci18n.class.php140 $res = array();
153 $res[$label] = "// line ".$line_nb." in ".basename($src_filename);
160 $res[$matches[1][0]] = "// line ".$line_nb." in ".basename($src_filename);
180 foreach($res as $str => $com)
/plugin/freechat/phpfreechat/data/public/js/
H A Dpfcclient.js25 this.res = new pfcResource();
1330 img.alt = this.res.getLabel('Close');
1569 var smileys = this.res.getSmileyHash();
1862 btn.src = this.res.getFileUrl('images/maximize.gif');
1863 btn.alt = this.res.getLabel('Magnify');
1869 btn.src = this.res.getFileUrl('images/minimize.gif');
1870 btn.alt = this.res.getLabel('Cut down');
2067 btn.alt = this.res.getLabel('Hide smiley box');
2076 btn.alt = this.res.getLabel('Show smiley box');
2120 btn.alt = this.res.getLabel('Hide online users box');
[all …]
H A Dpfcprompt.js35 div.appendChild(document.createTextNode(pfc.res.getLabel('Input Required')));
59 cancel.value = pfc.res.getLabel('Cancel');
67 submit.value = pfc.res.getLabel('OK');
H A Dpfcgui.js244 img.setAttribute('src', pfc.res.getFileUrl('images/ch.gif'));
246 img.setAttribute('src', pfc.res.getFileUrl('images/pv.gif'));
262 var res = confirm(pfc.res.getLabel(msg));
263 if (res == true)
267 a2.alt = pfc.res.getLabel('Close this tab');
349 img.src = pfc.res.getFileUrl('images/ch-active.gif');
351 img.src = pfc.res.getFileUrl('images/pv-active.gif');
386 img.src = pfc.res.getFileUrl('images/ch.gif');
388 img.src = pfc.res.getFileUrl('images/pv.gif');
403 var smileys = pfc.res.getSmileyReverseHash();//getSmileyHash();
[all …]
H A Dmyprototype.js11 var res = Array();
14 if (array[i] != value) res.push(array[i]);
16 return res;
/plugin/freechat/phpfreechat/src/commands/
H A Dnotice.class.php25 $res = $ct->write($recipient, $nick, "notice", $msg);
26 if (is_array($res))
29 $cmdp["param"] = implode(",",$res);
H A Dhelp.class.php26 if (!preg_match("/^([a-z]+).class.php$/i",$file,$res)) continue;
27 if (!in_array($res[1],$ignore)) $cmdlist[] = $res[1];
/plugin/freechat/phpfreechat/src/containers/
H A Dmysql.class.php169 $res = mysql_query($sql_count, $db);
170 $row = mysql_fetch_array($res, MYSQL_ASSOC);
261 $res = mysql_query($sql_count, $db);
262 $row = mysql_fetch_array($res, MYSQL_ASSOC);
273 $res = mysql_query('SELECT LAST_INSERT_ID();', $db);
274 $row = mysql_fetch_array($res, MYSQL_ASSOC);
H A Doracle.class.php187 $res = $this->_db->query($sql_count);
188 if (DB::isError($res))
203 $res=$this->_db->query($sql_insert);
204 if (DB::isError($res)) { error_log("sql insert error: $sql_insert " . $res->getMessage()); }
213 if (DB::isError($res))
309 $res = $this->_db->query($sql_count);
310 …if (DB::isError($res)) { error_log("sql_count error $sql_count " . $res->getMessage()); …
324 if (DB::isError($res)){ error_log("sql insert error $sql_insert " . $res->getMessage()); }
336 if (DB::isError($res)){ error_log("problema update: $sql_update " . $res->getMessage()); }
376 $res=$this->_db->query($sql_delete);
[all …]
/plugin/plantuml/conf/
H A Ddefault.php8 $conf['button_icon']='res/icon1.png';
/plugin/datapopup/
H A Daction.php38 $res = $sqlite->query($query);
39 $rows = $sqlite->res2arr($res);
/plugin/simplemysqlclient/syntax/
H A Dsimplemysqlclient.php202 $res = mysqli_fetch_all ( $result, MYSQLI_ASSOC );
204 for ($res = array(); $tmp = mysqli_fetch_array($result, MYSQLI_ASSOC);) $res[] = $tmp;
206 return $res;
/plugin/authucenter/lib/uc_client/
H A Dclient.php627 $res = uc_fopen2($url, 500000, '', '', TRUE, UC_IP, 20);
628 if($res == 1) {
/plugin/odt2dw/
H A Daction.php455 $res = $this->ZIP->extractTo( $this->uploadDir, $entrie );
457 if ( ! $res ) return $this->_msg( array( 'er_unzip_error', $entrie ) );
/plugin/vcard/
H A Dsyntax.php334 $res = array();
338 $res[] = array('+', $value);
339 return $res;
346 $res[] = array('+', $v);
348 $res[] = array('-', $match[0]);
353 $res[] = array('+', $v);
355 return $res;
366 foreach ($this->_tel_normalize($value) as $res) {
367 list($t, $value) = $res;
/plugin/mellelexport/
H A Drenderer.php248 $res = $zip->open($tmpZipFile, ZipArchive::CREATE);
249 if ($res === TRUE) {
/plugin/subjectindex/plugins/
H A Dbible_verses.txt6545 So the Am'or·ites persisted in dwelling in Mount He'res and in Ai'ja·lon and Sha·al'bim. But the ha…
6555 So they buried him in the territory of his inheritance in Tim'nath-he'res in the mountainous region…
6733 And Gid'e·on the son of Jo'ash began his return from the war by the pass that goes up to He'res.
12717 and those closest to him were Car·she'na, She'thar, Ad·ma'tha, Tar'shish, Me'res, Mar·se'na, [and] …
20112 …hall howl, and for Mo'ab in his entirety I shall cry out. For the men of Kir-he'res one shall moan.
20117 … boisterous for Mo'ab himself, just like flutes; and for the men of Kir-he'res my very heart will …
/plugin/svgpureinsert/
H A Dsyntax.php93 $res = $hlp->getAdjustedSVG($data['id']);
94 if($res) {
95 list(, $w, $h) = $res;
/plugin/html2pdf/html2pdf/html2ps/
H A Dfetcher.url.class.php180 function _extract_code($res) { argument
271 $res = $this->_head();
276 return $this->_process_code($res);
287 $res = $this->_head();
335 $res = "";
344 $res = fread($socket, 1024*1024);
349 return $res;
373 $res = "";
382 $res = fread($socket, 4096);
387 return $res;
[all …]
/plugin/mantis/lib/
H A Dnusoap.php6505 if (preg_match("/encoding=[\"']([^\"']*)[\"']/", $xml_decl, $res)) {
6506 $xml_encoding = $res[1];

1...<<111213