Home
last modified time | relevance | path

Searched refs:canonical (Results 1 – 25 of 43) sorted by path

12

/plugin/a2s/
H A Ddemo.txt113 … included in ODT and PDF file, a2s does not obey the [[doku>config:canonical|canonical]] setting a…
/plugin/achart/assets/
H A Djs-yaml.min.js2 …nction(){return null},predicate:function(e){return null===e},represent:{canonical:function(){retur…
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
H A Dpdfmake.min.js.map1canonical tree (see _tr_init\n\t * below).\n\t */\n\n\tvar static_dtree = new Array(D_CODES * 2);…
/plugin/amcharts/assets/
H A Djs-yaml.min.js3 …,2002:null",{kind:"scalar",resolve:n,construct:i,predicate:r,represent:{canonical:function(){retur…
/plugin/api/
H A DREADME.md44 If you want relative URL in the exported HTML. See https://www.dokuwiki.org/config:canonical
/plugin/c3chart/assets/
H A Djs-yaml.min.js2 …nction(){return null},predicate:function(e){return null===e},represent:{canonical:function(){retur…
/plugin/codeprettify/code-prettify/src/
H A Dlang-xq.js64 …-properties|xdmp:collection-locks|xdmp:collection-delete|xdmp:collation-canonical-uri|xdmp:castabl…
/plugin/combo/ComboStrap/
H A DCanonical.php16 public const PROPERTY_NAME = "canonical";
17 public const CANONICAL = "canonical";
20 * The auto-canonical feature does not create any canonical value on the file system
21 * but creates a canonical in the database (where the {@link \action_plugin_combo_router}
22 * takes its information and it enables to route via a calculated canonical
55 return "The canonical path is a short unique path for the page (used in named permalink)";
78 public static function createFromValue(string $canonical): Canonical argument
82 ->setValue($canonical);
99 * The last part of the id as canonical
[all...]
H A DDatabasePageRow.php266 * @param $canonical
270 static function createFromCanonical($canonical): DatabasePageRow
273 WikiPath::addRootSeparatorIfNotPresent($canonical);
276 $row = $databasePage->getDatabaseRowFromAttribute(Canonical::PROPERTY_NAME, $canonical);
486 * Named identifier: canonical
487 * (Note that canonical should become a soft link and therefore a path)
490 $canonical = Canonical::createForPage($markupPath)->getValue();
491 return $this->getDatabaseRowFromCanonical($canonical->toAbsoluteId());
493 // no canonical
660 * Default implements the auto-canonical featur
256 createFromCanonical($canonical) global() argument
[all...]
H A DExceptionCompile.php12 * Adds the canonical
19 private $canonical; variable in ComboStrap\\ExceptionCompile
21 public function __construct($message = "", $canonical = "", $code = 0, Throwable $previous = null) argument
23 $this->canonical = $canonical;
32 return $this->canonical;
H A DExceptionNotEquals.php19 public function __construct($message = "", $canonical = "", $code = 0, Throwable $previous = null) argument
21 parent::__construct($message, $canonical, $code, $previous);
H A DExceptionRuntime.php12 * Adds the canonical
21 private $canonical; variable in ComboStrap\\ExceptionRuntime
23 public function __construct($message = "", $canonical = "", $code = 0, Throwable $previous = null) argument
25 $this->canonical = $canonical;
47 return $this->canonical;
H A DHttpResponse.php37 private $canonical = "support"; variable in ComboStrap\\HttpResponse
152 LogUtility::log2file("No status was set for this soft exit, the default was set instead", LogUtility::LVL_MSG_ERROR, $this->canonical);
171 LogUtility::log2file("Bad Http Response: $this->status : {$this->getBody()}", LogUtility::LVL_MSG_ERROR, $this->canonical);
228 function setCanonical($canonical): HttpResponse argument
230 $this->canonical = $canonical;
H A DLogUtility.php77 * @param string $canonical - the canonical
79 public static function msg(string $message, int $level = self::LVL_MSG_ERROR, string $canonical = "support", \Exception $e = null) argument
85 self::log2file($e->getMessage(), LogUtility::LVL_MSG_ERROR, $canonical);
91 self::log2FrontEnd($message, $level, $canonical);
106 self::log2file($message, $level, $canonical, $e);
123 * @param null $canonical
126 static function log2file(?string $msg, int $logLevel = self::LVL_MSG_ERROR, $canonical = null, \Exception $e = null) argument
139 if (!empty($canonical)) {
140 $prefix .= ' - ' . $canonical;
177 log2FrontEnd($message, $level, $canonical = 'support', bool $publicMessage = false) global() argument
338 error(string $message, string $canonical = self SUPPORT_CANONICAL, \\Exception $e = null) global() argument
343 warning(string $message, string $canonical = 'support', \\Exception $e = null) global() argument
348 info(string $message, string $canonical = 'support', \\Exception $e = null) global() argument
368 errorIfDevOrTest($message, $canonical = 'support') global() argument
392 internalError(string $message, string $canonical = 'support', Throwable $previous = null) global() argument
413 debug(string $message, string $canonical = self SUPPORT_CANONICAL, $e = null) global() argument
418 infoToPublic(string $html, string $canonical) global() argument
[all...]
H A DMarkupPath.php60 private $canonical; variable in ComboStrap\\MarkupPath
275 function setCanonical($canonical): MarkupPath argument
277 $this->canonical
278 ->setValue($canonical)
333 * Return a canonical if set
344 return $this->canonical->getValueFromStoreOrDefault();
900 * * in the canonical ref
1227 return $this->canonical->getValue();
1231 * Create a canonical from the last page path part.
1239 return $this->canonical
[all...]
H A DMessage.php26 * @var string the page canonical
28 private $canonical = "support"; variable in ComboStrap\\Message
89 function setCanonical($canonical): Message argument
91 $this->canonical = $canonical;
178 $message .= '<div class="' . self::SIGNATURE_CLASS . '">' . $firedByLang . PluginUtility::getDocumentationHyperLink($this->canonical, $this->signatureName, false) . '</div>';
236 LogUtility::msg($content, $type, $this->canonical);
241 if ($this->canonical !== null) {
242 $canonicalPath = WikiPath::createFromUnknownRoot($this->canonical);
244 return PluginUtility::getDocumentationHyperLink($this->canonical,
[all...]
H A DPluginUtility.php517 * @param $canonical - canonical id or slug
523 static function getDocumentationHyperLink($canonical, $label, bool $withIcon = true, $tooltip = ""): string argument
551 $path = str_replace(":", "/", $canonical);
/plugin/combo/ComboStrap/Meta/Form/
H A DFormMetaField.php75 * If canonical is set, an url is also send
77 private string $canonical; variable in ComboStrap\\Meta\\Form\\FormMetaField
359 if (!isset($this->canonical)) {
363 return Canonical::createFromValue($this->canonical)
369 function setCanonical(string $canonical): FormMetaField argument
371 $this->canonical = $canonical;
/plugin/combo/ComboStrap/Web/
H A DSanitizer.php12 public static function sanitize($content, $suffixMessage = "", $canonical = "security") argument
22 return self::logAndReturnTheEmptyString("You can't used a $forbiddenNode node$suffixMessage.", $canonical);
32 return self::logAndReturnTheEmptyString("You can't used a style attribute $suffixMessage", $canonical);
38 return self::logAndReturnTheEmptyString("You can't used an callback handler on attribute $suffixMessage", $canonical);
48 * @param $canonical
51 private static function logAndReturnTheEmptyString(string $string, $canonical): string argument
53 LogUtility::msg($string, LogUtility::LVL_MSG_ERROR, $canonical);
/plugin/combo/action/
H A Dautofrontmatter.php44 $canonical = $page->getCanonicalOrDefault();
48 "canonical":"{$canonical}",
H A Dcanonical.php35 * Add canonical to javascript
46 * Add the canonical value to JSON
47 * to be able to report only on canonical value and not on path
61 $canonical = $page->getCanonical()->toAbsoluteId();
62 $JSINFO[Canonical::PROPERTY_NAME] = $canonical;
76 $pageViewCanonical = str_replace(WikiPath::NAMESPACE_SEPARATOR_DOUBLE_POINT, "/", $canonical);
/plugin/combo/vendor/php-webdriver/webdriver/
H A DCHANGELOG.md110 - Avoid "path is not canonical" error when uploading file to Chromedriver.
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dehcache-3.8.1.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE META-INF/maven/ META ...
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A Dbundle.js.map1canonical\" version for an extension identifier. Extension ids\n * have to be case-insensitive (du…
/plugin/findologicxmlexport/vendor/phpunit/php-file-iterator/
H A DChangeLog.md21 …ub.com/sebastianbergmann/php-file-iterator/issues/34): Factory should use canonical directory names

12