Home
last modified time | relevance | path

Searched refs:rev (Results 26 – 50 of 126) sorted by relevance

123456

/plugin/combo/ComboStrap/
H A DIFetcherLocalImage.php50 * @param string|null $rev
54 public static function createImageFetchFromId(string $imageId, string $rev = null): IFetcherLocalImage 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);
/plugin/slacknotifier/helper/
H A DFormatter.php54 private function buildUrl(string $page, int $rev, ?int $oldRev = null): ?string
56 $urlParameters = $oldRev ? "do=diff&rev2[0]=$oldRev&rev2[1]=$rev" : "rev=$rev";
50 buildUrl(string $page, int $rev, int $oldRev = null) global() argument
/plugin/ireadit/db/
H A Dupdate0001.sql3 rev INTEGER NOT NULL, field
6 PRIMARY KEY (page, rev, user)
/plugin/struct/db/
H A Dupdate0003.sql7 rev INTEGER NOT NULL, field
10 PRIMARY KEY(tbl, colref, pid, rev, row)
/plugin/approve/action/
H A Dprettyprint.php43 $rev = !$INFO['rev'] ? $last_change_date : $INFO['rev'];
48 WHERE page=? AND rev=?', $INFO['id'], $rev);
68 $JSINFO['approve']['date'] = dformat($rev);
H A Dnotification.php66 $rev = $notification['rev'];
83 'id' => $page.':'.$rev,
86 'timestamp' => (int)$rev
/plugin/watchcycle/
H A Daction.php296 * @param int $rev revision of the last page edition by maintainer or -1 if no edition was made
300 protected function getLastMaintainerRev($meta, $maintainer, &$rev) argument
308 $rev = $meta['current']['last_change']['date'];
316 foreach ($revs as $rev) {
318 $revInfo = $changelog->getRevisionInfo($rev);
320 $rev = $revInfo['date'];
328 $rev = -1;
/plugin/photogallery/lightGallery/css/
H A Dlg-transitions.min.css1rev .lg-item{opacity:0}.lg-css3.lg-slide-skew-only-rev .lg-item.lg-next-slide,.lg-css3.lg-slide-sk…
H A Dlg-transitions.css395 …lg-slide-skew-only-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-only-rev .lg-item.lg-next-sl…
447 …lide-skew-only-y-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-next-sl…
478 .lg-css3.lg-slide-skew-rev .lg-item {
499 ….lg-css3.lg-slide-skew-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-rev .lg-item.lg-next-sli…
551 …-slide-skew-cross-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-cross-rev .lg-item.lg-next-sl…
603 …3.lg-slide-skew-ver-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-ver-rev .lg-item.lg-next-sl…
655 …kew-ver-cross-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-next-sl…
680 .lg-css3.lg-lollipop-rev .lg-item {
695 ….lg-css3.lg-lollipop-rev .lg-item.lg-prev-slide, .lg-css3.lg-lollipop-rev .lg-item.lg-next-slide, …
726 .lg-css3.lg-rotate-rev .lg-item {
[all …]
/plugin/struct/meta/
H A DAccessTable.php518 "DATA.$idColumn = $tn.$idColumn AND DATA.rev = $tn.rev AND $tn.colref = $colref"
532 $QB->filters()->whereAnd("DATA.rev = $pl");
582 * @param int $rev
586 public static function isTypePage($pid, $rev)
588 return $rev > 0;
595 * @param int $rev
599 public static function isTypeGlobal($pid, $rev)
608 * @param int $rev
612 public static function isTypeSerial($pid, $rev)
585 isTypePage($pid, $rev) global() argument
598 isTypeGlobal($pid, $rev) global() argument
611 isTypeSerial($pid, $rev) global() argument
[all...]
/plugin/actionlink/
H A Dsyntax.php72 $renderer->doc .=$this->tpll_link(wl($ID,'do=edit&rev='.$REV),
77 $renderer->doc .=$this->tpll_link(wl($ID,'do=edit&rev='.$REV),
83 $renderer->doc .=$this->tpll_link(wl($ID,'do=edit&rev='.$REV),
/plugin/struct/action/
H A Dmigration.php257 $s = 'SELECT pid, rid, rev, ' . implode(', ', $colnames) . " FROM data_$name";
262 [$pid, $rid, $rev, $colref, $rowno, $fixes] = $this->getFixedValues($row);
269 AND rev = ?";
270 $params = [$pid, $rid, $rev];
277 $s = "SELECT colref, pid, rid, rev, row, value FROM multi_$name";
282 [$pid, $rid, $rev, $colref, $rowno, $fixes] = $this->getFixedValues($row);
289 AND rev = ?
292 $params = [$pid, $rid, $rev, $colref, $rowno];
399 $rev = $row['rev'];
[all...]
H A Ddiff.php49 $rev = $event->data[3] ?: time();
59 $schemadata = AccessTable::getPageAccess($table, $id, $rev);
/plugin/jsonrpc/
H A Djsonrpc.php98 public function rawPage($id,$rev=''){ argument
102 $text = rawWiki($id,$rev);
154 public function htmlPage($id,$rev=''){ argument
158 return p_wiki_xhtml($id,$rev,false);
161 public function htmlPagePart($id,$rev='',$maxHeader=3,$maxItems=3){ argument
167 return p_wiki_xhtml_summary_ext($id,$title,$rev,true,$cfg);
276 public function pageInfo($id,$rev=''){ argument
280 $file = wikiFN($id,$rev);
624 foreach($revisions as $rev) {
625 $file = wikiFN($id,$rev);
/plugin/dw2pdf/
H A DDokuImageProcessorDecorator.php65 $rev = '';
72 if (preg_match('/[&?]rev=(\d+)/', $file, $m)) {
73 $rev = $m[1];
89 $local = mediaFN($media, $rev);
/plugin/combo/action/
H A Dpagesystemmutation.php66 * (rev will have a value)
67 * and once to write the new version of the page into the wiki (rev is false)
92 $rev = $data[3];
95 if (!FileSystems::exists($file) && $rev === false) {
113 * of the old version to the attic (rev will have a value)
114 * and once to write the new version of the page into the wiki (rev is false)
122 if (empty($content) && $rev === false) {
/plugin/virtualkeyboard/vk/extensions/dom/
H A Dselectbox.js546 ,rev /* :Number */) /* :String */{ argument
548 if (!rev || !trackers[type][rev]) rev = trackers[type].length-2;
549 if (!trackers[type][rev]) rev = trackers[type].length-1;
550 if (!trackers[type][rev]) rev = 0;
552 for (var i=0, tL=trackers[type][rev].length; i<tL; i++) {
553 tmp[tmp.length] = part?trackers[type][rev][i][part]:trackers[type][rev][i];
/plugin/tos/
H A Daction.php113 foreach ($revisions as $rev) {
114 $info = $changes->getRevisionInfo($rev);
116 return $this->sessionState($rev);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/
H A DImb.php260 $rev = 0;
262 $rev <<= 1;
263 $rev |= ($num & 1);
266 return $rev;
/plugin/autotranslation/
H A Dhelper.php434 foreach($revs as $rev) {
435 if($rev < $INFO['lastmod']) {
436 $orev = $rev;
461 foreach($revs as $rev) {
462 if($rev < $lastmod) {
463 $orev = $rev;
/plugin/structpublish/action/
H A Drevisions.php43 // extract rev from checkbox info
46 $rev = $el->attr('value');
50 // get most recent status for rev
51 $revision = new Revision($INFO['id'], $rev);
/plugin/ajaxedit/
H A Daction.php51 $rev = $INPUT->str('rev');
53 …if($rev && $range && (!$REV && !$RANGE)) { //$_POST has range and rev but pageinfo() cleared it ->…
/plugin/inclform/
H A Dsyntax.php99 function formFN($id,$rev=''){ argument
101 if(empty($rev)){
/plugin/structodt/
H A Dscript.js34 const rev = $me.data('rev');
52 url.searchParams.append('rev', rev);

123456