Home
last modified time | relevance | path

Searched refs:file (Results 101 – 125 of 3491) sorted by relevance

12345678910>>...140

/plugin/ckgedit/
H A Dadmin.php110 foreach ($files AS $file) {
111 if($file == '.' || $file == '..' || $file == $this->template) continue;
112 $entry = $dir . $file;
115 if($file == $selected) {
116 $list .= "<option value='$file' selected>$file</option>";
118 else $list .= "<option value='$file' >$file</option>";
/plugin/code3/
H A Dstyle.css9 div.code, div.file {
18 div.code p, div.file p {
24 div.code pre.code, div.file pre.file {
41 div.file {
46 div.file p {
50 div.file pre.file {
/plugin/fckg/scripts/
H A DsafeFN_class.js246 function dwikiUTF8_encodeFN(file, encoding){ argument
248 if(encoding == 'utf-8') return file;
251 return file;
255 return SafeFN_encode(file);
258 file = encodeURIComponent(file);
259 file = file.replace(/%2F/g,'/');
260 return file;
264 function dwikiUTF8_decodeFN(file, encoding){ argument
266 if(encoding == 'utf-8') return file;
269 return SafeFN_decode(file);
[all …]
/plugin/ckgdoku/fckeditor/editor/filemanager/browser/default/js/
H A DsafeFN_class.js242 function dwikiUTF8_encodeFN(file, encoding){ argument
244 if(encoding == 'utf-8') return file;
247 return file;
251 return SafeFN_encode(file);
254 file = encodeURIComponent(file);
255 file = file.replace(/%2F/g,'/');
256 return file;
260 function dwikiUTF8_decodeFN(file, encoding){ argument
262 if(encoding == 'utf-8') return file;
265 return SafeFN_decode(file);
[all …]
/plugin/fckg/fckeditor/editor/filemanager/browser/default/js/
H A DsafeFN_class.js242 function dwikiUTF8_encodeFN(file, encoding){ argument
244 if(encoding == 'utf-8') return file;
247 return file;
251 return SafeFN_encode(file);
254 file = encodeURIComponent(file);
255 file = file.replace(/%2F/g,'/');
256 return file;
260 function dwikiUTF8_decodeFN(file, encoding){ argument
262 if(encoding == 'utf-8') return file;
265 return SafeFN_decode(file);
[all …]
/plugin/ckgdoku/scripts/
H A DsafeFN_class.js246 function dwikiUTF8_encodeFN(file, encoding){ argument
248 if(encoding == 'utf-8') return file;
251 return file;
255 return SafeFN_encode(file);
258 file = encodeURIComponent(file);
259 file = file.replace(/%2F/g,'/');
260 return file;
264 function dwikiUTF8_decodeFN(file, encoding){ argument
266 if(encoding == 'utf-8') return file;
269 return SafeFN_decode(file);
[all …]
/plugin/ckgedit/scripts/
H A DsafeFN_class.js246 function dwikiUTF8_encodeFN(file, encoding){ argument
248 if(encoding == 'utf-8') return file;
251 return file;
255 return SafeFN_encode(file);
258 file = encodeURIComponent(file);
259 file = file.replace(/%2F/g,'/');
260 return file;
264 function dwikiUTF8_decodeFN(file, encoding){ argument
266 if(encoding == 'utf-8') return file;
269 return SafeFN_decode(file);
[all …]
/plugin/ckgedit/fckeditor/editor/filemanager/browser/default/js/
H A DsafeFN_class.js242 function dwikiUTF8_encodeFN(file, encoding){ argument
244 if(encoding == 'utf-8') return file;
247 return file;
251 return SafeFN_encode(file);
254 file = encodeURIComponent(file);
255 file = file.replace(/%2F/g,'/');
256 return file;
260 function dwikiUTF8_decodeFN(file, encoding){ argument
262 if(encoding == 'utf-8') return file;
265 return SafeFN_decode(file);
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DTextStructureNamespace.asciidoc13 NOTE: this file is autogenerated using util/GenerateEndpoints.php
31 $params['lines_to_sample'] = (int) How many lines of the file should be included in the analysis (Default = 1000)
34 $params['charset'] = (string) Optional parameter to specify the character set of the file
35 $params['format'] = (enum) Optional parameter to specify the high level file format (Options = ndjson,xml,delimited,semi_structured_text)
36 $params['has_header_row'] = (boolean) Optional parameter to specify whether a delimited file includes the column names in its first row
37 $params['column_names'] = (list) Optional parameter containing a comma separated list of the column names for a delimited file
38 $params['delimiter'] = (string) Optional parameter to specify the delimiter character for a delimited file - must be a single character
39 $params['quote'] = (string) Optional parameter to specify the quote character for a delimited file - must be a single character
40 $params['should_trim_fields'] = (boolean) Optional parameter to specify whether the values between delimiters in a delimited file should have whitespace trimmed from them
41 $params['grok_pattern'] = (string) Optional parameter to specify the Grok pattern that should be used to extract fields from messages in a semi-structured text file
[all...]
/plugin/clearhistory/
H A Dadmin.php108 while (($file = readdir($dh)) !== false) {
109 if ($file == '.' || $file == '..') continue;
110 if (is_dir($dir . '/' . $file)) {
111 $this->_scan($ns . ':' . $file);
114 if ($file[0] == '_') continue;
115 if (substr($file, -4) == '.txt') {
116 $name = substr($file, 0, -4);
144 * @param string $file the path to the change file
151 if (!is_file($file)) return;
154 $content = file_get_contents($file);
[all …]
/plugin/authfacebook/lib/Http/
H A DRequestBodyMultipart.php104 * @param FacebookFile $file
108 private function getFileString($name, FacebookFile $file) argument
114 $file->getFileName(),
115 $this->getFileHeaders($file),
116 $file->getContents()
162 * @param FacebookFile $file
166 protected function getFileHeaders(FacebookFile $file) argument
168 return "\r\nContent-Type: {$file->getMimetype()}";
/plugin/html2pdf/html2pdf/html2ps/
H A Dpdf.fpdf.makefont.php102 function ReadAFM($file, $map) { argument
105 $afm_lines = file($file);
318 $f=fopen($file,'w'.$mode);
337 function CheckTTF($file) argument
340 $f=fopen($file,'rb');
468 $header=(ord($file{0})==128);
471 $file=substr($file,6);
473 $pos=strpos($file,'eexec');
480 $file=substr($file,0,$size1).substr($file,$size1+6);
482 $pos=strpos($file,'00000000');
[all …]
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
H A DDirectory.php64 foreach ($iterator as $key => $file) {
65 $result[$key] = $file->getFilename();
68 ->object($file)
143 foreach ($iterator as $file) {
144 $result[] = $file->getFilename();
181 foreach ($iterator as $file) {
183 ->object($file)
186 $result[] = $file->getFilename();
225 foreach ($iterator as $file) {
227 ->object($file)
[all …]
/plugin/diagramsnet/lib/js/diagramly/
H A DElectronApp.js29 if (file)
31 file.updateFileData();
32 xml = file.getData();
33 title = file.title;
184 if (file != null && file.isModified())
854 if (file != null)
891 if (file.unwatchedSaves || (file.state != null && file.stat.mtimeMs == curr.mtimeMs))
944 if (file != null && file.isModified())
1203 success(file);
1563 if (file != null)
[all …]
/plugin/dropfiles/src/
H A Dupload.js209 function(file) {file.namespace = namespace; return file;} argument
220 filenames: filelist.map(function (file) { argument
221 return file.name;
226 return data[file.name] === '';
232 return data[file.name] && data[file.name] !== 'file exists';
243 $errorMessage.text(file.name + ': ' + data[file.name]);
314 filelist.forEach(function (file) { argument
315 var fileName = file.newFileName || file.name;
327 form.append('qqfile', file, fileName);
330 form.append('ns', file.namespace);
[all …]
/plugin/issuetracker/
H A Dassilist.php37 while (false!==($file=readdir($handle))) {
38 if ($file<>"." AND $file<>"..") {
39 if (is_file($path.'/'.$file)) {
40 $ext = explode('.',$file);
42 if (stristr($file, $fileextension)!==false) {
43 $assignees_lists .= ','.$file;
/plugin/bureaucracy-au/helper/
H A Dfieldfile.php64 $file = $this->getParam('file');
65 if($file['error'] == 1 || $file['error'] == 2) {
67 } else if($file['error'] == 4) {
71 } else if( $file['error'] || !is_uploaded_file($file['tmp_name'])) {
72 …throw new Exception(hsc($this->opt['label']) .' '. $lang['uploadfail'] . ' (' .$file['error'] . ')…
/plugin/bureaucracyau/helper/
H A Dfieldfile.php64 $file = $this->getParam('file');
65 if($file['error'] == 1 || $file['error'] == 2) {
67 } else if($file['error'] == 4) {
71 } else if( $file['error'] || !is_uploaded_file($file['tmp_name'])) {
72 …throw new Exception(hsc($this->opt['label']) .' '. $lang['uploadfail'] . ' (' .$file['error'] . ')…
/plugin/bureaucracy/helper/
H A Dfieldfile.php64 $file = $this->getParam('file');
65 if($file['error'] == 1 || $file['error'] == 2) {
67 } else if($file['error'] == 4) {
71 } else if( $file['error'] || !is_uploaded_file($file['tmp_name'])) {
72 …throw new Exception(hsc($this->opt['label']) .' '. $lang['uploadfail'] . ' (' .$file['error'] . ')…
/plugin/bliki/
H A Dsyntax.php161 foreach ($list as $file) {
163 $file = str_replace('\\', '/', $file);
172 $str .= file_get_contents($file);
205 function getTimestampFromFile($file) { argument
213 $parts = explode('/', dirname($file));
216 $filename = basename($file);
345 while ($file = @readdir($handle)) {
347 if ($file != '.' && $file != '..') {
349 $dirs[] = $file;
353 if (!preg_match($match, $file)) {
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DCalendarTest.php148 $file = fopen('php://memory','r+');
149 fwrite($file,TestUtil::getTestCalendarData());
150 rewind($file);
152 $this->calendar->createFile('hello',$file);
154 $file = $this->calendar->getChild('hello');
155 $this->assertTrue($file instanceof CalendarObject);
161 $file = fopen('php://memory','r+');
162 fwrite($file,TestUtil::getTestCalendarData());
163 rewind($file);
166 $calendar->createFile('hello',$file);
[all …]
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Util/
H A DFilesystemUtils.php30 foreach ($outer as $file) {
31 if ($file->isFile()) {
32 unlink($file);
38 foreach (array_reverse($files) as $file) {
40 if ($file->isDir()) {
41 rmdir($file);
/plugin/farm/install/
H A Dfarmstructurecreator.php43 $file = null;
45 if(@file_exists('./lib/plugins/farm/installed')) $file = './lib/plugins/farm/installed';
46 if(!$file) return '';
47 if(!$s) return trim(@file_get_contents($file));
48 if($fp = fopen($file, 'w')) {
139 $file = $farmconf['farmfsroot'].$farmconf['farmer'].'.htaccess'; variable
140 if(!@file_exists($file)) $file = $farmconf['farmfsroot'].$farmconf['farmer'].'.htaccess.dist'; variable
141 if(@file_exists($file)) {
142 copy($file, $file.'.orig');
143 if($htaccess = @file_get_contents($file)) {
[all …]
/plugin/noticeboard/classes/
H A DNoticeList.php100 io_saveFile($file, serialize($this->list));
117 io_saveFile($file, serialize($this->list));
133 if (@file_exists($file)){//delete notice
151 io_saveFile($file, serialize($this->list));
158 if (!@file_exists($file)){
162 if (@file_exists($file)) {
203 if (!@file_exists($file)){
207 if (@file_exists($file)) {
382 $file = metaFN($parentId, '.noticeboard');
383 if (!@file_exists($file)){
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
H A Dhelp.phpt17 --coverage-clover <file> Generate code coverage report in Clover XML format.
18 --coverage-crap4j <file> Generate code coverage report in Crap4J XML format.
20 --coverage-php <file> Export PHP_CodeCoverage object to file.
21 --coverage-text=<file> Generate code coverage report in text format.
29 --log-junit <file> Log test execution in JUnit XML format to file.
30 --log-teamcity <file> Log test execution in TeamCity format to file.
31 --testdox-html <file> Write agile documentation in HTML format to file.
32 --testdox-text <file> Write agile documentation in Text format to file.
33 --testdox-xml <file> Write agile documentation in XML format to file.
86 --bootstrap <file> A "bootstrap" PHP file that is run before the tests.
[all …]

12345678910>>...140