| /plugin/golocal/src/setup/ |
| D | windows.go | 7 "fmt" 27 keypath := fmt.Sprintf("Software\\Classes\\%s", PROTOCOL) 30 return fmt.Errorf("failed to create root key. %s", err.Error()) 34 err = keyRoot.SetStringValue("", fmt.Sprintf("URL:%s Protocol", PROTOCOL)) 49 err = keyOpener.SetStringValue("", fmt.Sprintf("\"%s\" \"%%1\"", os.Args[0])) 63 _ = registry.DeleteKey(registry.CLASSES_ROOT, fmt.Sprintf("%s\\shell\\open\\command", PROTOCOL)) 64 _ = registry.DeleteKey(registry.CLASSES_ROOT, fmt.Sprintf("%s\\shell\\open", PROTOCOL)) 65 _ = registry.DeleteKey(registry.CLASSES_ROOT, fmt.Sprintf("%s\\shell", PROTOCOL)) 66 err = registry.DeleteKey(registry.CLASSES_ROOT, fmt.Sprintf("%s", PROTOCOL)) 72 …_ = registry.DeleteKey(registry.CURRENT_USER, fmt.Sprintf("Software\\Classes\\%s\\shell\\open\\com… [all …]
|
| D | linux.go | 8 "fmt" 30 schemeMimeType := fmt.Sprintf("x-scheme-handler/%s", PROTOCOL) 31 desktopEntry := strings.TrimLeft(fmt.Sprintf(DESKTOPFILE, self, schemeMimeType), "\n") 46 return fmt.Errorf("Failed to execute xdg-mime command.\n%s\n%s", err3.Error(), out) 65 return fmt.Errorf("Failed to remove desktop file.\n%s\n%s", desktopFilePath, err2.Error()) 83 return fmt.Errorf("Failed to execute xdg-open command.\n%s\n%s", err.Error(), out) 90 return fmt.Sprintf("%s-handler.desktop", PROTOCOL) 99 location := fmt.Sprintf("%s/.local/share/applications/%s", usr.HomeDir, desktopFile())
|
| D | darwin.go | 6 "fmt" 53 return fmt.Errorf("Failed to execute open command.\n%s\n%s", err.Error(), out) 77 return nil, fmt.Errorf("unable to convert plist to map") 111 return fmt.Errorf("unable to get LSHandlers") 140 return fmt.Errorf("unable to get LSHandlers") 150 return fmt.Errorf("unable to convert handler to map") 178 return "", fmt.Errorf("unable to get LSHandlers") 185 return "", fmt.Errorf("unable to convert handler to map") 193 return "", fmt.Errorf("handler for protocol %s not found", protocol)
|
| /plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
| D | module.audio.dsf.php | 57 $info['dsf']['fmt']['magic'] = substr($dsfheader, $headeroffset, 4); 59 $magic = 'fmt '; 60 if ($info['dsf']['fmt']['magic'] != $magic) { 61 …at offset '.$headeroffset.', found "'.getid3_lib::PrintHexBytes($info['dsf']['fmt']['magic']).'"'); 64 …$info['dsf']['fmt']['fmt_chunk_size'] = getid3_lib::LittleEndian2Int(substr($dsfheader, $heade… 66 …sf']['fmt']['fmt_chunk_size'] - 12 + 12); // we have already read the entire DSD chunk, plus 12 b… 67 …if (strlen($dsfheader) != ($info['dsf']['dsd']['dsd_chunk_size'] + $info['dsf']['fmt']['fmt_chunk_… 68 …$this->error('Expecting '.($info['dsf']['dsd']['dsd_chunk_size'] + $info['dsf']['fmt']['fmt_chunk_… 71 …$info['dsf']['fmt']['format_version'] = getid3_lib::LittleEndian2Int(substr($dsfheader, $heade… 73 …$info['dsf']['fmt']['format_id'] = getid3_lib::LittleEndian2Int(substr($dsfheader, $heade… [all …]
|
| /plugin/golocal/src/ |
| D | golocal.go | 5 "fmt" 25 fmt.Println() 63 w := application.NewWindow(fmt.Sprintf("%s handler", setup.PROTOCOL)) 143 fmt.Printf("Usage: %s %s://path \n", os.Args[0], setup.PROTOCOL) 144 fmt.Println(" Protocol handling. Will try to open the given path locally.") 145 fmt.Println() 147 fmt.Printf("Usage: %s [OPTION]\n", os.Args[0]) 148 fmt.Println(" Install or uninstall the protocol handler")
|
| /plugin/clock/ |
| D | script.js | 36 format (fmt) { argument 37 return time_.toLocaleString(fmt); 40 formatArgs (fmt, args) { argument 41 return time_.toLocaleString(fmt, args);
|
| /plugin/farm/ |
| D | infos.animal.class.php | 45 * @param $fmt string template 49 public function formatedprint($fmt, $opt) { argument 51 foreach($rawreplace as $k) if(isset($opt[$k])) $fmt = str_replace('{'.$k.'}', $opt[$k], $fmt); 57 $fmt = str_replace('{date}', $date, $fmt); 80 $fmt = str_replace('{delta}', $str, $fmt); 83 …if(isset($opt['size'])) $fmt = str_replace('{size}', $this->animal->manager->nicesize($opt['size']… 84 $fmt = preg_replace('`\{[^}]+\}`', '?', $fmt); 85 return $fmt;
|
| /plugin/amcharts/assets/amcharts/plugins/export/libs/xlsx/ |
| D | xlsx.min.js | 2 …fmt,val,ss0){var o="",ss=0,tt=0,y=val.y,out,outl=0;switch(type){case 98:y=val.y+543;case 121:switc… argument 8 …(format,value){var fmt=XLMLFormatMap[format]||unescapexml(format);if(fmt==="General")return SSF._g…
|
| D | xlsx.js | 266 function write_date(type, fmt, val, ss0) { argument 273 switch(fmt.length) { 278 switch(fmt.length) { 279 case 1: case 2: out = val.m; outl = fmt.length; break; 285 switch(fmt.length) { 286 case 1: case 2: out = val.d; outl = fmt.length; break; 291 switch(fmt.length) { 292 case 1: case 2: out = 1+(val.H+11)%12; outl = fmt.length; break; 293 default: throw 'bad hour format: ' + fmt; 296 switch(fmt.length) { [all …]
|
| /plugin/source/conf/ |
| D | settings.class.php | 19 * generate string to save setting value to file according to $fmt 21 # function out($var, $fmt='php') {
|
| /plugin/blogtng/entities/ |
| D | Comment.php | 129 * @param string $fmt format of number 132 public function tpl_number($link = true, $fmt = '%d', $title = null) { argument 133 if($title === null) $title = sprintf($fmt, $this->num); 188 * @param string $fmt date format, empty string default to $conf['dformat'] 190 public function tpl_created($fmt=''){ argument 191 echo hsc(dformat($this->created,$fmt));
|
| /plugin/src/conf/ |
| D | settings.class.php | 21 * generate string to save setting value to file according to $fmt 23 # function out($var, $fmt='php') {
|
| /plugin/diagramsnet/lib/WEB-INF/lib/ |
| D | jstl-1.2.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/LICENSE.txt
javax ... |
| /plugin/abc/lang/en/ |
| D | settings.php | 19 $lang['fmt'] = 'Where to find an abcm2ps format file (e.g. "foo.fmt") to format the PS/P…
|
| /plugin/abc/lang/cs/ |
| D | settings.php | 19 $lang['fmt'] = 'Kde hledat soubor formátů abcm2ps (tj. "foo.fmt") pro formátování…
|
| /plugin/abc/lang/de/ |
| D | settings.php | 19 $lang['fmt'] = 'Pfad zur abcm2ps-Formatsdatei (z.B. "foo.fmt") um die PS/PDF-Datei zu fo…
|
| /plugin/abc/lang/pt-br/ |
| D | settings.php | 19 $lang['fmt'] = 'Onde encontrar um arquivo de formato abcm2ps (por exemplo, "foo.f…
|
| /plugin/abc/lang/fr/ |
| D | settings.php | 19 $lang['fmt'] = 'Emplacement d\'un fichier de format abcm2ps. (p.e. «toto.fmt» pou…
|
| /plugin/abc/lang/nl/ |
| D | settings.php | 19 $lang['fmt'] = 'Waar bevindt zich een abcm2ps bestand (i.e. "foo.fmt") om het PS/…
|
| /plugin/phpipam/ |
| D | syntax.php | 322 …} elseif (preg_match("/^(form\w*|fmt|disp\w*|affich\w*|out\w*|show|x?html?|xmltag)[=:%#@]['\"]?(\w… 324 $opts['fmt'] = $matches[2] ; 336 switch (strtolower($opts['fmt'])) { 348 $opts['fmt'] = '-1' ; 361 $opts['fmt'] = '+1' ; 366 $opts['fmt'] = '0' ; 369 $opts['fmt'] = (int)$opts['fmt'] ; 403 $renderer->doc .= $this->showSub((array)$reply['data'], $opts['fmt']) ; 413 $renderer->doc .= $this->showSub((array)$subnet, $opts['fmt']) ; 424 $renderer->doc .= $this->showSub((array)$subnet, $opts['fmt']) ; [all …]
|
| /plugin/txtconf/ |
| D | txtconfig.class.php | 287 * generate string to save setting value to file according to $fmt 289 function out($var='config', $fmt='txt') { argument 294 if ($fmt=='php') { 300 } else if ($fmt=='txt') {
|
| /plugin/abc/conf/ |
| D | default.php | 16 $conf['fmt'] = '';
|
| D | metadata.php | 16 $meta['fmt'] = array('string');
|
| /plugin/abc/ |
| D | syntax.php | 308 $fmt = $this->getConf('fmt'); 309 $addFmt = ($fmt && file_exists($fmt)) ? " -F ".fullpath($fmt) : "";
|
| /plugin/virtualkeyboard/vk/extensions/ |
| D | dateextensions.js | 144 Date.prototype.toFormatString = function (fmt, spacer) { argument 146 if (!fmt) return this.toString(); 150 return fmt.replace(/%\w+/g,function(a) {
|