Home
last modified time | relevance | path

Searched refs:changelog (Results 1 – 13 of 13) sorted by relevance

/dokuwiki/inc/Ui/
H A DRevisions.php22 protected $changelog; // PageChangeLog or MediaChangeLog object variable in dokuwiki\\Ui\\Revisions
52 $changelog =& $this->changelog;
55 $currentRevInfo = $changelog->getCurrentRevisionInfo();
64 $revlist = $changelog->getRevisions($first, $num + 1);
80 $revisions[] = $changelog->getRevisionInfo($rev);
H A DDiff.php27 protected $changelog; // PageChangeLog or MediaChangeLog object variable in dokuwiki\\Ui\\Diff
61 $this->rev2 = (int)$this->changelog->traceCurrentRevision($rev2);
100 $this->rev2 = $this->changelog->currentRevision();
113 $this->rev2 = (int)$this->changelog->traceCurrentRevision($rev2);
118 $rev2 = $this->changelog->currentRevision();
119 if ($rev2 > $this->changelog->lastRevision()) {
120 $rev1 = $this->changelog->lastRevision();
122 $revs = $this->changelog->getRevisions(0, 1);
H A DMediaRevisions.php18 protected $changelog; variable in dokuwiki\\Ui\\MediaRevisions
36 $this->changelog = new MediaChangeLog($this->id);
53 $changelog =& $this->changelog;
74 $RevInfo->isCurrent($changelog->isCurrentRevision($rev));
H A DPageRevisions.php17 protected $changelog; variable in dokuwiki\\Ui\\PageRevisions
34 $this->changelog = new PageChangeLog($this->id);
51 $changelog =& $this->changelog;
74 $RevInfo->isCurrent($changelog->isCurrentRevision($rev));
H A DPageDiff.php21 protected $changelog; variable in dokuwiki\\Ui\\PageDiff
51 $this->changelog = new PageChangeLog($this->id);
66 $changelog =& $this->changelog;
69 $info = $changelog->getCurrentRevisionInfo();
135 $changelog =& $this->changelog;
141 $changelogRev1 = $changelog->getRevisionInfo($this->rev1);
142 $changelogRev2 = $changelog->getRevisionInfo($this->rev2);
148 $isCurrent = $changelog->isCurrentRevision($RevInfo->val('date'));
340 $changelog =& $this->changelog;
351 [$revs1, $revs2] = $changelog->getRevisionsAround(
[all …]
H A DRecent.php159 $changelog = new PageChangelog($info['id']);
161 $changelog = new MediaChangelog($info['id']);
163 if (!$changelog->isCurrentRevision($info['date'])) {
164 $currentRevInfo = $changelog->getCurrentRevisionInfo();
171 unset($changelog);
H A DMediaDiff.php19 protected $changelog; variable in dokuwiki\\Ui\\MediaDiff
51 $this->changelog = new MediaChangeLog($this->id);
77 $changelog =& $this->changelog;
83 $changelogRev1 = $changelog->getRevisionInfo($this->rev1);
84 $changelogRev2 = $changelog->getRevisionInfo($this->rev2);
92 $isCurrent = $changelog->isCurrentRevision($RevInfo->val('date'));
/dokuwiki/inc/File/
H A DPageFile.php20 public $changelog; variable in dokuwiki\\File\\PageFile
33 $this->changelog = new PageChangeLog($this->id);
58 $revInfo = $rev ? $this->changelog->getRevisionInfo($rev) : false;
199 $logEntry = $this->changelog->addLogEntry([
228 $revInfo = $this->changelog->getCurrentRevisionInfo();
246 … . '(' . filemtime($fileLastMod) . ' < ' . $this->changelog->lastRevision() . ')';
257 $this->changelog->addLogEntry($revInfo);
/dokuwiki/inc/Feed/
H A DFeedMediaProcessor.php141 $changelog = new MediaChangeLog($this->id);
142 $revs = $changelog->getRevisions(-1, 2);
H A DFeedPageProcessor.php187 $changelog = new PageChangeLog($this->id);
188 $revs = $changelog->getRevisions(-1, 2);
/dokuwiki/inc/
H A Dchangelog.php80 $logEntry = $pageFile->changelog->addLogEntry([
H A Dparserutils.php100 $changelog = new PageChangeLog($id);
101 if ($changelog->hasRevisions()) {
/dokuwiki/inc/parser/
H A Dxhtml.php2057 $changelog = new MediaChangeLog($media_id);
2058 return $changelog->getLastRevisionAt($this->date_at);