Home
last modified time | relevance | path

Searched refs:str (Results 851 – 875 of 895) sorted by path

1...<<313233343536

/plugin/webcode/
H A DwebCodeConsole.js35 htmlEntities: function(str) { argument
37 return String(str)
/plugin/webdav/
H A Dadmin.php54 $cmd = $INPUT->extract('cmd')->str('cmd');
79 $lock_id = $INPUT->str('lock');
H A Dhelper.php39 …return auth_isMember($this->getConf('remoteuser'), $INPUT->server->str('REMOTE_USER'), (array) $US…
/plugin/webdav/vendor/sabre/http/lib/
H A DResponse.php181 …$str = 'HTTP/' . $this->httpVersion . ' ' . $this->getStatus() . ' ' . $this->getStatusText() . "\…
184 $str .= $key . ": " . $v . "\r\n";
187 $str .= "\r\n";
188 $str .= $this->getBodyAsString();
189 return $str;
H A Dfunctions.php324 * @param string $str
327 function parseMimeType($str) { argument
333 $parts = explode(';', $str);
/plugin/webdav/vendor/sabre/vobject/lib/
H A DComponent.php270 $str = 'BEGIN:'.$this->name."\r\n";
331 $str .= $child->serialize();
333 $str .= 'END:'.$this->name."\r\n";
335 return $str;
H A DProperty.php224 $str = $this->name;
226 $str = $this->group.'.'.$this->name;
230 $str .= ';'.$param->serialize();
233 $str .= ':'.$this->getRawMimeDirValue();
235 $str = \preg_replace(
242 $str
246 return \substr($str, 0, -1);
H A DStringUtil.php17 * @param string $str
21 public static function isUTF8($str) argument
24 if (preg_match('%[\x00-\x08\x0B-\x0C\x0E\x0F]%', $str)) {
28 return (bool) preg_match('%%u', $str);
37 * @param string $str
41 public static function convertToUTF8($str) argument
43 $encoding = mb_detect_encoding($str, ['UTF-8', 'ISO-8859-1', 'WINDOWS-1252'], true);
47 $newStr = utf8_encode($str);
56 $newStr = $str;
/plugin/webdav/vendor/sabre/vobject/lib/Property/
H A DText.php217 $str = $this->name;
219 $str = $this->group.'.'.$this->name;
225 $str .= ';'.$param->serialize();
231 $str .= ';ENCODING=QUOTED-PRINTABLE:';
232 $lastLine = $str;
259 $str .= ':'.$val;
261 $str = \preg_replace(
268 $str
272 return \substr($str, 0, -1);
/plugin/webdav/vendor/sabre/xml/lib/
H A DService.php271 * @param string $str
275 static function parseClarkNotation($str) { argument
278 if (!isset($cache[$str])) {
280 if (!preg_match('/^{([^}]*)}(.*)$/', $str, $matches)) {
281 …throw new \InvalidArgumentException('\'' . $str . '\' is not a valid clark-notation formatted stri…
284 $cache[$str] = [
290 return $cache[$str];
/plugin/webdavclient/
H A Dadmin.php131 $username = $INPUT->str('username', '');
132 $password = $INPUT->str('password', '');
133 $uri = $INPUT->str('uri', '');
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DComponent.php255 $str = "BEGIN:" . $this->name . "\r\n";
314 foreach($this->children as $child) $str.=$child->serialize();
315 $str.= "END:" . $this->name . "\r\n";
317 return $str;
H A DProperty.php233 $str = $this->name;
234 if ($this->group) $str = $this->group . '.' . $this->name;
238 $str.=';' . $param->serialize();
242 $str.=':' . $this->getRawMimeDirValue();
245 while(strlen($str)>0) {
246 if (strlen($str)>75) {
247 $out.= mb_strcut($str,0,75,'utf-8') . "\r\n";
248 $str = ' ' . mb_strcut($str,75,strlen($str),'utf-8');
250 $out.=$str . "\r\n";
251 $str='';
H A DStringUtil.php17 * @param string $str
20 static public function isUTF8($str) { argument
23 if (preg_match('%[\x00-\x08\x0B-\x0C\x0E\x0F]%', $str)) {
27 return (bool)preg_match('%%u', $str);
37 * @param string $str
40 static public function convertToUTF8($str) { argument
42 $encoding = mb_detect_encoding($str , array('UTF-8','ISO-8859-1', 'WINDOWS-1252'), true);
46 $newStr = utf8_encode($str);
55 $newStr = $str;
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/
H A DText.php228 $str = $this->name;
235 $str.=';' . $param->serialize();
245 $str.=';ENCODING=QUOTED-PRINTABLE:';
246 $lastLine=$str;
272 $str.=':' . $val;
274 while(strlen($str)>0) {
275 if (strlen($str)>75) {
276 $out.= mb_strcut($str,0,75,'utf-8') . "\r\n";
277 $str = ' ' . mb_strcut($str,75,strlen($str),'utf-8');
279 $out.=$str . "\r\n";
[all …]
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/
H A DComponentTest.php352 $str = $comp->serialize();
354 …N:VCALENDAR\r\nBEGIN:VEVENT\r\nEND:VEVENT\r\nBEGIN:VTODO\r\nEND:VTODO\r\nEND:VCALENDAR\r\n", $str);
367 $str = $comp->serialize();
369 …BLA\r\nBEGIN:VTIMEZONE\r\nEND:VTIMEZONE\r\nBEGIN:VEVENT\r\nEND:VEVENT\r\nEND:VCALENDAR\r\n", $str);
394 $str = $comp->serialize();
396 …PROPNUMBEREIGHT:FOO\r\nPROPNUMBERNINE:FOO\r\nPROPNUMBERTEN:FOO\r\nUID:FOO\r\nEND:VCARD\r\n", $str);
H A DEmClientTest.php9 $str = 'BEGIN:VCALENDAR
48 $vObject = Reader::read($str);
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Property/
H A DCompoundTest.php30 $str = 'ABC\, Inc.;North American Division;Marketing\;Sales';
34 $elem->setRawMimeDirValue($str);
/plugin/weiqi/
H A Dweiqi_parser.php84 function parse($str) { argument
85 $lines = explode("\n", $str);
252 $str = trim($str);
253 if (strlen($str) == 1) {
255 switch ($str) {
347 if (is_numeric($str)) return $str.'#';
350 $ch1 = substr($str, 0, 1);
351 $ch2 = substr($str, 1, 1);
437 $str = trim($str);
438 if ($str=='') return array();
[all …]
/plugin/wikistats/
H A Daction.php57 $str = rawWiki($ID);
58 if (strpos($str, '{{wikistats') !== false) {
/plugin/workflow/
H A Dscript.js19 var str = jQuery.cookie(name);
20 if (str)
21 return jQuery.parseJSON(str);
/plugin/wysiwyg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/
H A DcontrolWindow.js37 var str = "";
39 str = slct.options[slct.selectedIndex].text;
41 txt.value = str;
H A DwordWindow.js263 var str = '<input readonly ';
264 str += 'class="blend" type="text" value="' + word + '" size="' + word.length + '">';
265 return str;
/plugin/wysiwyg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/
H A Dspellchecker.php58 function escape_quote( $str ) { argument
59 return preg_replace ( "/'/", "\\'", $str );
H A Dspellchecker.pl102 my $str = shift;
103 $str =~ s/'/\\'/g;
104 return $str;

1...<<313233343536