Home
last modified time | relevance | path

Searched refs:changelog (Results 1 – 14 of 14) 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.php21 protected $changelog; variable in dokuwiki\\Ui\\MediaDiff
53 $this->changelog = new MediaChangeLog($this->id);
79 $changelog =& $this->changelog;
85 $changelogRev1 = $changelog->getRevisionInfo($this->rev1);
86 $changelogRev2 = $changelog->getRevisionInfo($this->rev2);
94 $isCurrent = $changelog->isCurrentRevision($RevInfo->val('date'));
/dokuwiki/inc/File/
H A DPageFile.php17 public $changelog; variable in dokuwiki\\File\\PageFile
30 $this->changelog = new PageChangeLog($this->id);
55 $revInfo = $rev ? $this->changelog->getRevisionInfo($rev) : false;
149 $revInfo = $this->changelog->getCurrentRevisionInfo();
202 $logEntry = $this->changelog->addLogEntry([
/dokuwiki/inc/Feed/
H A DFeedMediaProcessor.php133 $changelog = new MediaChangeLog($this->id);
134 $revs = $changelog->getRevisions(-1, 2);
H A DFeedPageProcessor.php179 $changelog = new PageChangeLog($this->id);
180 $revs = $changelog->getRevisions(-1, 2);
/dokuwiki/inc/
H A Dchangelog.php80 $logEntry = $pageFile->changelog->addLogEntry([
H A Dparserutils.php95 $changelog = new PageChangeLog($id);
96 if ($changelog->hasRevisions()) {
/dokuwiki/_test/tests/inc/
H A Dcommon_pageinfo.test.php255 $logEntry = $pageFile->changelog->addLogEntry([
/dokuwiki/inc/parser/
H A Dxhtml.php2055 $changelog = new MediaChangeLog($media_id);
2056 return $changelog->getLastRevisionAt($this->date_at);