| /template/vector/ |
| D | inc_cite.php | 25 $rev = (int)$INFO["rev"]; variable 26 if ($rev < 1){ 27 $rev = (int)$INFO["lastmod"]; variable 31 $permurl = DOKU_URL.DOKU_SCRIPT."?id=".getID()."&rev=".$rev; //no wl() here to get absolute URLs wo… 47 …?php echo hsc($lang["vector_cite_dateofrev"]); ?>: <?php echo gmdate("j F Y H:i T", $rev); ?></div> 56 …<div class="li"><?php echo hsc($lang["vector_cite_pageversionid"]); ?>: <?php echo hsc($rev); ?></… 70 <?php tpl_pagetitle(); ?>. (<?php echo gmdate("Y, M j", $rev); ?>). 83 <?php echo gmdate("j M. Y", $rev); ?>. Web. <?php echo gmdate("j M. Y, H:i"); ?> 93 <?php echo gmdate("j F Y, H:i T", $rev); ?>, 113 …<?php echo hsc($conf["title"])?>; <?php echo gmdate("Y M j, H:i T", $rev); ?> [<?php echo hsc($lan… [all …]
|
| /template/vector20/ |
| D | inc_cite.php | 25 $rev = (int)$INFO["rev"]; variable 26 if ($rev < 1){ 27 $rev = (int)$INFO["lastmod"]; variable 31 $permurl = DOKU_URL.DOKU_SCRIPT."?id=".getID()."&rev=".$rev; //no wl() here to get absolute URLs wo… 47 …?php echo hsc($lang["vector_cite_dateofrev"]); ?>: <?php echo gmdate("j F Y H:i T", $rev); ?></div> 56 …<div class="li"><?php echo hsc($lang["vector_cite_pageversionid"]); ?>: <?php echo hsc($rev); ?></… 70 <?php tpl_pagetitle(); ?>. (<?php echo gmdate("Y, M j", $rev); ?>). 83 <?php echo gmdate("j M. Y", $rev); ?>. Web. <?php echo gmdate("j M. Y, H:i"); ?> 93 <?php echo gmdate("j F Y, H:i T", $rev); ?>, 113 …<?php echo hsc($conf["title"])?>; <?php echo gmdate("Y M j, H:i T", $rev); ?> [<?php echo hsc($lan… [all …]
|
| D | main.php | 109 $rev = (int)$INFO["rev"]; //$INFO comes from the DokuWiki core variable 110 if ($rev < 1){ 111 $rev = (int)$INFO["lastmod"]; variable
|
| /template/monobook/ |
| D | inc_cite.php | 25 $rev = (int)$INFO["rev"]; variable 26 if ($rev < 1){ 27 $rev = (int)$INFO["lastmod"]; variable 31 $permurl = DOKU_URL.DOKU_SCRIPT."?id=".getID()."&rev=".$rev; //no wl() here to get absolute URLs wo… 47 …hp echo hsc($lang["monobook_cite_dateofrev"]); ?>: <?php echo gmdate("j F Y H:i T", $rev); ?></div> 56 …<div class="li"><?php echo hsc($lang["monobook_cite_pageversionid"]); ?>: <?php echo hsc($rev); ?>… 70 <?php tpl_pagetitle(); ?>. (<?php echo gmdate("Y, M j", $rev); ?>). 83 <?php echo gmdate("j M. Y", $rev); ?>. Web. <?php echo gmdate("j M. Y, H:i"); ?> 93 <?php echo gmdate("j F Y, H:i T", $rev); ?>, 113 …<?php echo hsc($conf["title"])?>; <?php echo gmdate("Y M j, H:i T", $rev); ?> [<?php echo hsc($lan… [all …]
|
| /template/wikiweko/ |
| H A D | inc_cite.php | 25 $rev = (int)$INFO["rev"]; variable 26 if ($rev < 1){ 27 $rev = (int)$INFO["lastmod"]; variable 31 $permurl = DOKU_URL.DOKU_SCRIPT."?id=".getID()."&rev=".$rev; //no wl() here to get absolute URLs wo… 47 …?php echo hsc($lang["vector_cite_dateofrev"]); ?>: <?php echo gmdate("j F Y H:i T", $rev); ?></div> 56 …<div class="li"><?php echo hsc($lang["vector_cite_pageversionid"]); ?>: <?php echo hsc($rev); ?></… 70 <?php tpl_pagetitle(); ?>. (<?php echo gmdate("Y, M j", $rev); ?>). 83 <?php echo gmdate("j M. Y", $rev); ?>. Web. <?php echo gmdate("j M. Y, H:i"); ?> 93 <?php echo gmdate("j F Y, H:i T", $rev); ?>, 113 …<?php echo hsc($conf["title"])?>; <?php echo gmdate("Y M j, H:i T", $rev); ?> [<?php echo hsc($lan… [all …]
|
| /template/strap/ComboStrap/ |
| H A D | WikiPath.php | 102 private $rev; variable in ComboStrap\\WikiPath 121 * @param string|null $rev - the revision (mtime) 132 protected function __construct(string $path, string $drive, string $rev = null) argument 245 $this->rev = $rev; 257 * @param string|null $rev - the revision (ie timestamp in number format) 261 …public static function createMarkupPathFromPath(string $parameterPath, string $rev = null): WikiPa… argument 274 return new WikiPath($parameterPath, self::MARKUP_DRIVE, $rev); 323 $defaultWikiPath = new WikiPath($defaultPath, self::MARKUP_DRIVE, $rev); 336 … $markupWikiPath = new WikiPath($parameterPath . '.' . $markupExtension, self::MARKUP_DRIVE, $rev); 352 static function createMediaPathFromPath($path, $rev = null): WikiPath argument [all …]
|
| H A D | FetcherTraitWikiPath.php | 63 $rev = $tagAttributes->getValueAndRemove(WikiPath::REV_ATTRIBUTE); 70 $wikiPath = WikiPath::createMarkupPathFromPath($path, $rev); 72 $wikiPath = WikiPath::createFromPath($path, $drive, $rev); 113 $rev = $this->path->getRevision(); 114 $url->addQueryParameter(WikiPath::REV_ATTRIBUTE, $rev);
|
| H A D | IFetcherLocalImage.php | 50 * @param string|null $rev 54 …public static function createImageFetchFromId(string $imageId, string $rev = null): IFetcherLocalI… argument 56 $dokuPath = WikiPath::createMediaPathFromId($imageId, $rev);
|
| H A D | MarkupRef.php | 286 $rev = $this->url->getQueryPropertyValue(WikiPath::REV_ATTRIBUTE); 288 $rev = null; 295 $this->path = WikiPath::createMediaPathFromId($wikiPath, $rev); 297 $this->addRevToUrl($rev); 335 $this->addRevToUrl($rev); 482 private function addRevToUrl($rev = null): void argument 484 if ($rev !== null) { 485 $this->url->addQueryParameter(WikiPath::REV_ATTRIBUTE, $rev);
|
| H A D | FetcherRaster.php | 40 * @param null $rev 46 public static function createImageRasterFetchFromId(string $imageId, $rev = null): FetcherRaster argument 48 …urn FetcherRaster::createImageRasterFetchFromPath(WikiPath::createMediaPathFromId($imageId, $rev));
|
| /template/mnml-blog/user/ |
| D | boxes.php.dist | 121 …" => "draft", "rev" => (int)$rev))."\" rel=\"nofollow\">".hsc($lang["btn_draft"])."</a></li>\n"; /… 124 …o" => "edit", "rev" => (int)$rev))."\" rel=\"nofollow\">".hsc($lang["btn_edit"])."</a></li>\n"; //… 126 …" => "edit", "rev" => (int)$rev))."\" rel=\"nofollow\">".hsc($lang["btn_create"])."</a></li>\n"; /… 130 …" => "edit", "rev" => (int)$rev))."\" rel=\"nofollow\">".hsc($lang["btn_source"])."</a></li>\n"; /… 135 …l(cleanID(getId()), array("rev" =>(int)$rev))."\" rel=\"nofollow\">".hsc($lang["mnmlblog_lnk_permr…
|
| /template/strap/action/ |
| H A D | pagesystemmutation.php | 92 $rev = $data[3]; 95 if (!FileSystems::exists($file) && $rev === false) { 122 if (empty($content) && $rev === false) {
|
| /template/prsnl10/ |
| D | main.php | 57 $rev = (int)$INFO["rev"]; //$INFO comes from the DokuWiki core variable 58 if ($rev < 1){ 59 $rev = (int)$INFO["lastmod"]; variable
|
| /template/monobook/conf/ |
| D | boxes.php | 170 … <li id=\"tb-print\"><a href=\"".wl(cleanID(getId()), array("rev" =>(int)$rev, "mddo" => "print")… 172 …i id=\"tb-permanent\"><a href=\"".wl(cleanID(getId()), array("rev" =>(int)$rev))."\" rel=\"nofollo… 173 … <li id=\"tb-cite\"><a href=\"".wl(cleanID(getId()), array("rev" =>(int)$rev, "mddo" => "cite"))…
|
| D | tabs.php | 74 …-edit"]["href"] = wl(cleanID(getId()), array("do" => "edit", "rev" => (int)$rev), false, "&"); 81 …["ca-edit"]["href"] = wl(cleanID(getId()), array("do" => "draft", "rev" => (int)$rev), false, "&");
|
| /template/vector20/conf/ |
| D | boxes.php | 149 … <li id=\"t-print\"><a href=\"".wl(cleanID(getId()), array("rev" =>(int)$rev, "vecdo" => "print"… 200 …li id=\"t-permanent\"><a href=\"".wl(cleanID(getId()), array("rev" =>(int)$rev))."\" rel=\"nofollo… 201 … <li id=\"t-cite\"><a href=\"".wl(cleanID(getId()), array("rev" =>(int)$rev, "vecdo" => "cite")…
|
| D | tabs.php | 107 …-edit"]["href"] = wl(cleanID(getId()), array("do" => "edit", "rev" => (int)$rev), false, "&"); 111 …["ca-edit"]["href"] = wl(cleanID(getId()), array("do" => "draft", "rev" => (int)$rev), false, "&");
|
| /template/mnml-blog/ |
| D | main.php | 56 $rev = (int)$INFO["rev"]; //$INFO comes from the DokuWiki core variable 57 if ($rev < 1){ 58 $rev = (int)$INFO["lastmod"]; variable
|
| /template/vector/conf/ |
| D | boxes.php | 149 … <li id=\"t-print\"><a href=\"".wl(cleanID(getId()), array("rev" =>(int)$rev, "vecdo" => "print"… 200 …li id=\"t-permanent\"><a href=\"".wl(cleanID(getId()), array("rev" =>(int)$rev))."\" rel=\"nofollo… 201 … <li id=\"t-cite\"><a href=\"".wl(cleanID(getId()), array("rev" =>(int)$rev, "vecdo" => "cite")…
|
| D | tabs.php | 107 …-edit"]["href"] = wl(cleanID(getId()), array("do" => "edit", "rev" => (int)$rev), false, "&"); 111 …["ca-edit"]["href"] = wl(cleanID(getId()), array("do" => "draft", "rev" => (int)$rev), false, "&");
|
| /template/wikiweko/conf/ |
| H A D | boxes.php | 149 … <li id=\"t-print\"><a href=\"".wl(cleanID(getId()), array("rev" =>(int)$rev, "vecdo" => "print"… 200 …li id=\"t-permanent\"><a href=\"".wl(cleanID(getId()), array("rev" =>(int)$rev))."\" rel=\"nofollo… 201 … <li id=\"t-cite\"><a href=\"".wl(cleanID(getId()), array("rev" =>(int)$rev, "vecdo" => "cite")…
|
| H A D | tabs.php | 107 …-edit"]["href"] = wl(cleanID(getId()), array("do" => "edit", "rev" => (int)$rev), false, "&"); 111 …["ca-edit"]["href"] = wl(cleanID(getId()), array("do" => "draft", "rev" => (int)$rev), false, "&");
|
| /template/kiwiki/classes/ |
| H A D | kiwiki_functions.php | 15 $rev = ($INFO['rev']) ? '&rev='.$INFO['rev'] : ''; 21 …"]*)"(.*)>/','<a$1href="'.DOKU_BASE.'doku.php?id='.$INFO['id'].'&do=edit'.$rev.'"$3 role="button">…
|
| /template/lisps/ |
| D | main.php | 40 function template_tpl_include_page($pageid, $print = true, $propagate = false, $rev = '') { argument 46 $html = p_wiki_xhtml($pageid, $rev, false);
|
| /template/starterbootstrap/ |
| D | tpl_functions.php | 534 $rev = ''; 535 $file = wikiFN($pageid, $rev); 537 if ($cache && !$rev) { 543 …$html = p_render('xhtml',p_get_instructions(io_readWikiPage($file,$pageid,$rev)),$info); //no cach…
|