Home
last modified time | relevance | path

Searched refs:fs (Results 1 – 25 of 148) sorted by relevance

123456

/plugin/uncmap/
H A Dsyntax.php49 $fs = substr($line,$delim);
50 $fs = trim($fs);
52 $lines_fs[] = implode(' ',array($letter,$fs));
60 foreach ($this->fileserver as $letter => $fs) {
61 if($fs !== null && file_exists($fs)) {
63 $fs = str_replace('\\', '/', $fs);
64 $fs = rtrim($fs, '/');
65 if(substr($fs, -1) == '/') {
66 $fs = substr($fs, 0, -1);
68 $this->fileserver[$letter] = $fs;
/plugin/diagramsnet/lib/
H A DelectronFilesWorker.js1 const fs = require('fs'); constant
3 const { COPYFILE_EXCL } = fs.constants;
25 fs.writeFile(fileObject.path, data, writeEnc,
34 fs.stat(fileObject.path, function(e2, stat2)
44 fs.readFile(fileObject.path, writeEnc, (err, writtenData) =>
65 fs.unlink(fileObject.bkpPath, (err) => {}); //Ignore errors!
79 fs.copyFile(fileObject.path, fileObject.bkpPath, COPYFILE_EXCL, (err) =>
97 fs.stat(fileObject.path, function(err, stat)
H A Delectron.js1 const fs = require('fs') constant
24 fs.existsSync('/.flatpak-info'); //This file indicates running in flatpak sandbox
55 if (fs.existsSync(process.cwd() + '/urlParams.json'))
57 let urlParams = JSON.parse(fs.readFileSync(process.cwd() + '/urlParams.json'));
300 var outStat = fs.statSync(options.output);
365 inStat = fs.statSync(paths[0]);
376 fs.readdirSync(dir).forEach(function(file)
379 stat = fs.statSync(filePath);
413 expArgs.xml = fs.readFileSync(curFile, ext === '.png' || ext === '.vsdx' ? null : 'utf-8');
508 while (fs.existsSync(realFileName))
[all …]
/plugin/fontsize2/
H A Dsyntax.php48 preg_match("/(?i)<fs (.+?)>/", $match, $fs); // get the fontsize
49 if ( $this->_isValid($fs[1]) ) return array($state, $fs[1]);
67 list($state, $fs) = $data;
70 $renderer->doc .= "<span style=\"font-size: $fs\">";
75 $renderer->doc .= $renderer->_xmlEntities($fs);
/plugin/typography/
H A DREADME.md9 Some specific **short name** are also available as markup tag; `<ff>` (font familiy/name), `<fs>` (…
16 | `fs` | font-size | font size of text (large or small) |
39 <typo fs:x-large>Very large</typo>,
40 <fs:xx-large>Huge</fs>, and
41 <fs smaller>smaller</fs> size text
48 <typo fs:larger; fw:bold; ff:serif>Bold serif</typo>,
49 <fs:large; fv:small-caps>Small-caps</fs> text
56 <ff:'Georgia', 'MS Serif', serif><fs:36px; lh:1.1>
58 </fs>\\
59 <fs:smaller;>//-- William Shakespeare, “Hamlet”, Act 2 scene 2//</fs></ff>
/plugin/distribute/
H A Dhelper.funcs.util.php21 $fs = array();
30 $fs[] = $f.'/'.$g;
38 $fs[]=$f;
44 sort($fs);
45 return $fs;
/plugin/sequencediagram/bower_components/lodash/lib/common/
H A Dfile.js4 const fs = require('fs-extra'); constant
22 return _.partial(fs.copy, srcPath, destPath);
35 result[key] = _.template(fs.readFileSync(filePath, 'utf8'));
61 return _.partial(fs.writeFile, destPath, data);
H A Dminify.js4 const fs = require('fs-extra'); constant
36 fs.writeFile(destPath, output.code, 'utf-8', callback);
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/cfm/
H A Dcf5_upload.cfm103 fs = "/";
105 fs = "\";
114 if ( right(serverPath,1) neq fs ) {
115 serverPath = serverPath & fs;
118 …ase(getBaseTemplatePath(),replace(cgi.script_name,"/",fs,"all"),"") & replace(userFilesPath,"/",fs
157 <cfset userFilesServerPath = replace( userFilesServerPath, fs & fs, fs, "all") >
166 <cfloop list="#resourceTypeDirectory#" index="name" delimiters="#fs#">
167 <cfif currentPath eq "" and fs eq "\">
173 <cfif not directoryExists(currentPath & fs & name)>
178 <cfif fs eq "\" and currentPath eq "">
[all …]
H A Dcf5_connector.cfm79 fs = "/";
83 fs = "\";
93 if ( right(serverPath,1) neq fs )
95 serverPath = serverPath & fs;
100 …ase(getBaseTemplatePath(),replace(cgi.script_name,"/",fs,"all"),"") & replace(userFilesPath,"/",fs
126 <cfset userFilesServerPath = replace( userFilesServerPath, fs & fs, fs, "all") >
152 <cfloop list="#resourceTypeDirectory#" index="name" delimiters="#fs#">
153 <cfif currentPath eq "" and fs eq "\">
159 <cfif not directoryExists(currentPath & fs & name)>
164 <cfif fs eq "\" and currentPath eq "">
[all …]
/plugin/sequencediagram/bower_components/lodash/test/
H A Dremove.js5 fs = require('fs'), variable
24 fs.writeFileSync(filePath, fs.readFileSync(filePath, 'utf8').replace(pattern, function(match) {
/plugin/readability/
H A Dcalc.php17 $fs = calculate_flesch($text); variable
33 printf('<li><div class="li"><b>Flesch-Kincaid Score:</b> %.2f ',$fs);
34 if($fs < 50){
36 }elseif($fs < 80){
/plugin/groupmail/
H A Drecaptchalib.php80 if( false == ( $fs = @fsockopen($host, $port, $errno, $errstr, 10) ) ) {
84 fwrite($fs, $http_request);
86 while ( !feof($fs) )
87 $response .= fgets($fs, 1160); // One TCP-IP packet
88 fclose($fs);
/plugin/recaptcha/lib/
H A Drecaptchalib.php82 if( false == ( $fs = @fsockopen($host, $port, $errno, $errstr, 10) ) ) {
86 fwrite($fs, $http_request);
88 while ( !feof($fs) )
89 $response .= fgets($fs, 1160); // One TCP-IP packet
90 fclose($fs);
/plugin/contactmodern/
H A Drecaptchalib.php80 if( false == ( $fs = @fsockopen($host, $port, $errno, $errstr, 10) ) ) {
84 fwrite($fs, $http_request);
86 while ( !feof($fs) )
87 $response .= fgets($fs, 1160); // One TCP-IP packet
88 fclose($fs);
/plugin/revealjs/plugin/notes-server/
H A Dindex.js3 var fs = require('fs'); variable
43 fs.createReadStream( opts.baseDir + '/index.html' ).pipe( res );
49 fs.readFile( opts.baseDir + 'plugin/notes-server/notes.html', function( err, data ) {
/plugin/sequencediagram/bower_components/raphael/
H A Dwebpack.config.js4 const fs = require("fs"); constant
28 banner: fs.readFileSync('./dev/banner.txt', 'utf8'),
/plugin/syntaxhighlighter3/sxh3/build/
H A Dtasks.coffee3 fs = require 'fs'
26 fs.existsSync(dir) and fs.statSync(dir).isDirectory()
29 fs.readFileSync filename, 'utf8'
32 fs.writeFileSync filename, content, 'utf8'
/plugin/diagramsnet/lib/js/diagramly/
H A DElectronApp.js124 var fs = require('fs');
253 var fs = require('fs');
259 fs.mkdirSync(drawioDir);
352 var fs = require('fs');
681 var fs = require('fs');
686 fs.mkdirSync(pluginsDir);
725 var fs = require('fs');
846 var fs = require('fs');
1027 var fs = require('fs');
1115 fs.stat(path, function(err, stat)
[all …]
/plugin/jplayer/vendor/robloach/component-installer/src/ComponentInstaller/Process/
H A DCopyProcess.php54 foreach ($this->fs->recursiveGlobFiles($source) as $filesource) {
62 $this->fs->ensureDirectoryExists(dirname($destination));
H A DRequireJsProcess.php54 $this->fs->ensureDirectoryExists(dirname($destination));
165 $matches = $this->fs->recursiveGlobFiles($path);
175 $this->fs->ensureDirectoryExists(dirname($destination));
/plugin/sequencediagram/bower_components/lodash/lib/main/
H A Dbuild-doc.js5 const fs = require('fs-extra'); constant
80 fs.writeFile(readmePath, postprocess(markdown), util.pitch);
H A Dbuild-site.js5 const fs = require('fs'); constant
174 const markdown = fs
221 fs.writeFile(path.join(docPath, version + '.html'), html, util.pitch);
/plugin/sequencediagram/bower_components/lodash/lib/fp/
H A Dbuild-doc.js4 const fs = require('fs-extra'); constant
75 fs.writeFile(target, template.wiki(templateData), util.pitch);
/plugin/html2pdf/html2pdf/html2ps/
H A Dbox.br.php129 $fs = $font->size;
131 $parent->_current_y - $font->line_height->apply($fs->getPoints()));

123456