| /plugin/authssocas/vendor/apereo/phpcas/source/CAS/PGTStorage/ |
| H A D | File.php | 204 $fname = $this->getPGTIouFilename($pgt_iou); 205 if (!file_exists($fname)) { 206 touch($fname); 208 @chmod($fname, 0600); 209 if ($f=fopen($fname, "w")) { 211 phpCAS::error('could not write PGT to `'.$fname.'\''); 213 phpCAS::trace('Successful write of PGT to `'.$fname.'\''); 216 phpCAS::error('could not open `'.$fname.'\''); 219 phpCAS::error('File exists: `'.$fname.'\''); 238 $fname = $this->getPGTIouFilename($pgt_iou); [all …]
|
| /plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/ |
| D | LazyOpenStreamTest.php | 9 private $fname; variable in GuzzleHttp\\Tests\\Stream\\LazyOpenStreamTest 13 $this->fname = tempnam('/tmp', 'tfile'); 15 if (file_exists($this->fname)) { 16 unlink($this->fname); 22 if (file_exists($this->fname)) { 23 unlink($this->fname); 29 $l = new LazyOpenStream($this->fname, 'w+'); 32 $this->assertFileExists($this->fname); 33 $this->assertEquals('foo', file_get_contents($this->fname)); 39 file_put_contents($this->fname, 'foo'); [all …]
|
| /plugin/darcspatch/ |
| D | admin.php | 137 $fname = substr($line,0,$pos); 139 $fname = realpath(dirname($fname)).'/'.basename($fname); 140 if (isset($files[$fname])) { 141 $target_lines = explode("\n",$files[$fname]); 146 … if(($offset > 0) && (isset($files[$fname]) || (($target_lines = @file($fname)) !== false))) { 152 … $return_string .= ' '.$this->lang['msg_errmatch'].': '.$fname.' line '.$offset."\n"; 164 … $return_string .= ' '.$this->lang['msg_errmatch'].': '.$fname.' line '.$offset."\n"; 175 $files[$fname] = implode('',$target_lines); 178 $return_string .= ' '.$this->lang['msg_erropen'].': '.$fname."\n"; 185 foreach($files as $fname => $contents) { [all …]
|
| /plugin/diagramsnet/lib/js/diagramly/ |
| D | UrlLibrary.js | 17 var fname = title; 18 var last = fname.lastIndexOf('/'); 22 fname = fname.substring(last + 1); 25 this.fname = fname; 50 return this.fname;
|
| /plugin/ajaxpeon/ |
| D | helper.php | 35 foreach($filelist as $fname){ 36 if(strpos($fname,".changes")){ 37 $tmphf = fopen($learndir.$fname,"r"); 39 $namelen =strlen($fname); 42 $learnlist[]=substr($tmpstr,0,10)."\t".substr($fname,0,$rawnlen); 68 foreach($filelist as $fname){ 69 if(is_dir($fname)){ 70 if($fname!="." and $fname!=".."){ 71 $file_array["dir"][$fname]=$this->get_file_list($fname); 74 if(is_file($fname)) { [all …]
|
| /plugin/dlcounter/ |
| D | action.php | 56 $fname = $path.'/download_counts.json'; 58 if( file_exists( $fname ) ){ 59 $json = json_decode( file_get_contents($fname), TRUE ); 69 file_put_contents( $fname, json_encode($json) );
|
| D | admin.php | 65 $fname = DOKU_INC.'data/counts/download_counts.json'; 66 $json = json_decode( file_get_contents($fname), TRUE );
|
| D | syntax.php | 100 $fname = DOKU_INC.'data/counts/download_counts.json'; 101 $json = json_decode( file_get_contents($fname), TRUE );
|
| /plugin/fedauth/images/ |
| D | cleanico | 3 for fname in *.png 5 mv $fname ${fname/\.ico/}
|
| /plugin/ajaxloader/ |
| D | common.php | 4 $fname = DOKU_INC."lib/plugins/{$name[0]}/ajax" . variable 6 if (is_file($fname)) { 7 require $fname;
|
| /plugin/ckgdoku/action/ |
| D | mediamanager.php | 33 $fname = substr($event->data[3],0,29) . '. . .'; 35 else $fname = $event->data[3]; 36 msg($this->getLang('mediamgr_imgonly') . $fname);
|
| /plugin/ckgedit/action/ |
| D | mediamanager.php | 34 $fname = substr($event->data[3],0,29) . '. . .'; 36 else $fname = $event->data[3]; 37 msg($this->getLang('mediamgr_imgonly') . $fname);
|
| /plugin/blogtng/helper/ |
| D | tools.php | 75 $fname = DOKU_PLUGIN . "blogtng/tpl/$tpl$sep$type.php"; 76 if (file_exists($fname)) { 77 $res = $fname;
|
| /plugin/remotescript/lib/JsHttpRequest/ |
| D | compile.bat | 21 my $fname = "JsHttpRequest-$k.js"; 24 writeFile($debugDir . '/' . $fname, $newComment . "\n" . $main . "\n\n" . $v); 25 minify($debugDir . '/' . $fname, $miniDir . '/' . $fname);
|
| /plugin/latex/ |
| D | admin.php | 248 $fname = $tmpf.'.'.$ext; 249 if(is_file($fname)) { 251 $rendstr = $this->render('{{'.$tmpw.'.'.$ext.'?linkonly&nocache|'.$fname.'}}'); 254 $rendstr = $fname; 257 ptln('<div class="error">File missing! <code>'.$fname.'</code></div>');
|
| /plugin/latex-was/ |
| D | admin.php | 249 $fname = $tmpf.'.'.$ext; 250 if(is_file($fname)) { 252 … $rendstr = $plug->render('xhtml', $xhtml, '{{'.$tmpw.'.'.$ext.'?linkonly&nocache|'.$fname.'}}'); 255 $rendstr = $fname; 258 ptln('<div class="error">File missing! <code>'.$fname.'</code></div>');
|
| /plugin/latexwas/ |
| D | admin.php | 249 $fname = $tmpf.'.'.$ext; 250 if(is_file($fname)) { 252 … $rendstr = $plug->render('xhtml', $xhtml, '{{'.$tmpw.'.'.$ext.'?linkonly&nocache|'.$fname.'}}'); 255 $rendstr = $fname; 258 ptln('<div class="error">File missing! <code>'.$fname.'</code></div>');
|
| /plugin/asciidocjs/node_modules/jake/lib/ |
| D | loader.js | 82 let fname = ext ? `${name}.${ext}` : name; 83 if (existsSync(fname)) { 84 nameWithExt = fname;
|
| /plugin/bureaucracyau/script/ |
| D | fieldsets.js | 55 var fname = jQuery(this).find('span.bureaucracyau_depends_fname').html(), 66 .has(":first-child:contains('" + fname + "')").first()
|
| /plugin/bureaucracy-au/script/ |
| D | fieldsets.js | 55 var fname = jQuery(this).find('span.bureaucracy_depends_fname').html(), 66 .has(":first-child:contains('" + fname + "')").first()
|
| /plugin/bureaucracy/script/ |
| D | fieldsets.js | 55 var fname = jQuery(this).find('span.bureaucracy_depends_fname').html(), 66 .has(":first-child:contains('" + fname + "')").first()
|
| /plugin/openas/ |
| D | action.php | 116 $fname = basename($current_wikifn, '.txt'); 117 $path = "$dir/$fname" . $this->ext; 179 $fname = basename($current_wikifn, '.txt'); 180 $path = "$dir/$fname" . $this->ext;
|
| /plugin/fckg/fckeditor/editor/plugins/geshi/ |
| D | fckplugin.js | 159 function downloadable_snippet(mySelection, fname) { argument 162 matches = fname.match(/\.(\w+)$/); 169 + 'title="Download Snippet" class="' + media_file + '">' + fname +'</a></dt>'
|
| /plugin/mikioplugin/inc/stemmechanics/lesserphp/ |
| H A D | lessc.inc.php | 1598 $fname = $func[1]; 1602 if ($fname == 'hsl' || $fname == 'hsla') { 1619 } elseif ($fname == 'rgb' || $fname == 'rgba') { 1860 $fname = "op_{$ltype}_{$rtype}"; 1861 if (is_callable(array($this, $fname))) { 1862 $out = $this->$fname($op, $left, $right); 2208 public function __construct($fname = null) argument 2210 if ($fname !== null) { 2212 $this->_parseFile = $fname; 2244 public function compileFile($fname, $outFname = null) argument [all …]
|
| /plugin/ckgdoku/fckeditor/editor/filemanager/connectors/php/ |
| D | util.php | 268 $fname = "other.txt"; 273 $fname = "img.txt";
|