Home
last modified time | relevance | path

Searched refs:NAME (Results 1 – 25 of 170) sorted by last modified time

1234567

/plugin/siteexport/inc/
H A Dfilewriter.php63 public function __addFileToZip($FILE, $NAME, $ZIP = null) { argument
65 if ($NAME[0] === "/") {
67 $NAME = substr($NAME, 1);
74 $succeeded = $this->pdfGenerator->createPDFFromFile($FILE, $NAME);
77 $this->__moveDataToZip($succeeded, "_debug/$NAME.html", $ZIP, true);
86 return $this->__writeFileToZip($FILE, $NAME, $ZIP);
95 private function __writeFileToZip($FILE, $NAME, $ZIPFILE) { argument
114 $zip->addFile($FILE, $NAME);
124 $this->functions->debug->runtimeException("Zip Error #{$code} for file {$NAME}");
132 public function fileExistsInZip($NAME) argument
[all …]
H A Dfunctions.php136 public function shortenName($NAME) argument
139 $NAME = preg_replace("%^" . preg_quote(DOKU_BASE, '%') . "%", "", $NAME);
140 $NAME = preg_replace("%^((_media|_detail)/)?(" . preg_quote($NS, '%') . "/)?%", "", $NAME);
142 if (strstr($NAME, '%')) { $NAME = rawurldecode($NAME); }
144 $this->debug->message("Shortening file to '$NAME'", null, 1);
145 return $NAME;
H A Dpdfgenerator.php17 public function createPDFFromFile($filename, &$NAME) { argument
21 if (!preg_match("/" . $this->functions->settings->fileType . "$/", $NAME)) {
22 …e("Filetype " . $this->functions->settings->fileType . " did not match filename '$NAME'", null, 4);
/plugin/siteexport/syntax/
H A Dtoc.php119 list($SID, $NAME, $DEPTH) = $data;
261 $renderer->internallink($LNID, $NAME, null);
280 $this->savedToc[] = $this->__addTocItem($SID, $NAME, $DEPTH, $renderer);
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js41019 module.exports = function (IteratorConstructor, NAME, next) {
41020 var TO_STRING_TAG = NAME + ' Iterator';
41073 createIteratorConstructor(IteratorConstructor, NAME, next);
41085 var TO_STRING_TAG = NAME + ' Iterator';
41122 Iterators[NAME] = defaultIterator;
41147 module.exports = function (NAME) {
41149 if (!has(Symbol, NAME)) defineProperty(Symbol, NAME, {
41150 value: wrappedWellKnownSymbolModule.f(NAME)
65863 var NAME = 7;
66697 state.mode = NAME;
[all …]
/plugin/xlsx2dw/packages/jszip/
H A Djszip.js8251 var NAME = 7; /* i: waiting for end of file name (gzip) */
8833 state.mode = NAME;
8835 case NAME:
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs5050 /*::[*/0x1D/*::]*/: "#NAME?",
5062 "#NAME?": 0x1D,
9447 /*::[*/0x000B/*::]*/: { n:"NAME" },
13932 …if(/^#(DIV\/0!|GETTING_DATA|N\/A|NAME\?|NULL!|NUM!|REF!|VALUE!)$/.test(val)) return write_XLSBForm…
13998 61: "DEFINE.NAME",
14047 110: "DELETE.NAME",
14129 210: "SHARE.NAME",
14235 386: "WORKBOOK.NAME",
14431 88: "SET.NAME",
14450 107: "GET.NAME",
/plugin/gitbacked/lang/de/
H A Dmail_command_error.txt13 * **Anwender:** <code>@NAME@</code>
H A Dmail_command_success.txt9 * **Anwender:** <code>@NAME@</code>
H A Dmail_create_new_error.txt9 * **Anwender:** <code>@NAME@</code>
H A Dmail_repo_path_error.txt7 * **Anwender:** <code>@NAME@</code>
/plugin/gitbacked/lang/en/
H A Dmail_command_error.txt13 * **User:** <code>@NAME@</code>
H A Dmail_command_success.txt9 * **User:** <code>@NAME@</code>
H A Dmail_create_new_error.txt9 * **User:** <code>@NAME@</code>
H A Dmail_repo_path_error.txt7 * **User:** <code>@NAME@</code>
/plugin/combo/ComboStrap/
H A DMetadataFrontmatterStore.php25 const NAME = "frontmatter"; define in ComboStrap\\MetadataFrontmatterStore
26 const CANONICAL = self::NAME;
290 return self::NAME;
H A DFetcherAppPages.php21 const NAME = "page-app"; define in ComboStrap\\FetcherAppPages
52 ->addQueryParameter("do", self::NAME);
148 return self::NAME;
H A DFetcherMarkupBuilder.php257 $rendererName = FetcherMarkupInstructions::NAME;
H A DFetcherMarkupInstructions.php8 public const NAME = "instructions"; define in ComboStrap\\FetcherMarkupInstructions
H A DFetcherPage.php17 const NAME = "page"; define in ComboStrap\\FetcherPage
147 LogUtility::internalError("The cache HTML fragment file was not found", self::NAME);
186 return self::NAME;
209 throw new ExceptionRuntimeInternal("This fetcher page object has already been close and cannot be reused", self::NAME);
299 throw new ExceptionRuntimeInternal("Not a local wiki path", self::NAME, 1, $e);
/plugin/combo/db/combo/
H A Dupdate0006.sql6 alter table PAGES add column NAME TEXT;
14 create index if not exists PAGES_NAME ON PAGES (NAME ASC);
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DParser.php66 'Unexpected closing tag: /' . $token[Tokenizer::NAME]
71 && isset($result[Tokenizer::NAME])
72 && $result[Tokenizer::NAME] == $token[Tokenizer::NAME]
H A DTemplate.php133 && $current[Tokenizer::NAME] === $stop
201 && $current[Tokenizer::NAME] === $stop
229 $sectionName = $current[Tokenizer::NAME];
299 $sectionName = $current[Tokenizer::NAME];
319 $partial = $this->handlebars->loadPartial($current[Tokenizer::NAME]);
339 $name = $current[Tokenizer::NAME];
H A DTokenizer.php65 const NAME = 'name'; define in Handlebars\\Tokenizer
181 self::NAME => trim($this->buffer),
203 $lastName = $this->tokens[$lastIndex][self::NAME];
205 $this->tokens[$lastIndex][self::NAME] = trim(
/plugin/combo/db/combo-secondary/
H A Dupdate0003.sql6 NAME TEXT, -- Name field
10 constraint pk_events_queue primary key (NAME, DATA_HASH)

1234567