Home
last modified time | relevance | path

Searched refs:rev (Results 1 – 25 of 36) sorted by relevance

12

/template/vector/
Dinc_cite.php25 $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/
Dinc_cite.php25 $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 …]
Dmain.php109 $rev = (int)$INFO["rev"]; //$INFO comes from the DokuWiki core variable
110 if ($rev < 1){
111 $rev = (int)$INFO["lastmod"]; variable
/template/monobook/
Dinc_cite.php25 $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 Dinc_cite.php25 $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 DWikiPath.php102 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 DFetcherTraitWikiPath.php63 $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 DIFetcherLocalImage.php50 * @param string|null $rev
54 …public static function createImageFetchFromId(string $imageId, string $rev = null): IFetcherLocalI… argument
56 $dokuPath = WikiPath::createMediaPathFromId($imageId, $rev);
H A DMarkupRef.php286 $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 DFetcherRaster.php40 * @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/
Dboxes.php.dist121 …" => "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 Dpagesystemmutation.php92 $rev = $data[3];
95 if (!FileSystems::exists($file) && $rev === false) {
122 if (empty($content) && $rev === false) {
/template/prsnl10/
Dmain.php57 $rev = (int)$INFO["rev"]; //$INFO comes from the DokuWiki core variable
58 if ($rev < 1){
59 $rev = (int)$INFO["lastmod"]; variable
/template/monobook/conf/
Dboxes.php170 … <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"))…
Dtabs.php74 …-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/
Dboxes.php149 … <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")…
Dtabs.php107 …-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/
Dmain.php56 $rev = (int)$INFO["rev"]; //$INFO comes from the DokuWiki core variable
57 if ($rev < 1){
58 $rev = (int)$INFO["lastmod"]; variable
/template/vector/conf/
Dboxes.php149 … <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")…
Dtabs.php107 …-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 Dboxes.php149 … <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 Dtabs.php107 …-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 Dkiwiki_functions.php15 $rev = ($INFO['rev']) ? '&rev='.$INFO['rev'] : '';
21 …"]*)"(.*)>/','<a$1href="'.DOKU_BASE.'doku.php?id='.$INFO['id'].'&do=edit'.$rev.'"$3 role="button">…
/template/lisps/
Dmain.php40 function template_tpl_include_page($pageid, $print = true, $propagate = false, $rev = '') { argument
46 $html = p_wiki_xhtml($pageid, $rev, false);
/template/starterbootstrap/
Dtpl_functions.php534 $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…

12