Home
last modified time | relevance | path

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

/dokuwiki/inc/Ui/
H A DRevisions.php22 protected $changelog; // PageChangeLog or MediaChangeLog object variable in dokuwiki\\Ui\\Revisions
36 * set class property changelog
46 * @see also https://www.dokuwiki.org/devel:changelog
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
41 * set class property changelog
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);
42 * @param int $first skip the first n changelog lines
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);
40 * @param int $first skip the first n changelog lines
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
[all...]
H A DRecent.php23 * @param int $first skip the first n changelog lines
159 $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.php19 /* @var PageChangeLog $changelog */
20 public $changelog; variable in dokuwiki\\File\\PageFile
33 $this->changelog = new PageChangeLog($this->id);
58 $revInfo = $rev ? $this->changelog->getRevisionInfo($rev) : false;
69 * Also directs changelog and attic updates.
83 the attic and changelog with dokuwiki and external edits
149 // add a potential external edit entry to changelog and store it into attic
198 // adds an entry to the changelog and saves the metadata for the page
199 $logEntry = $this->changelog->addLogEntry([
219 * Checks if the current page version is newer than the last entry in the page's changelog
[all...]
/dokuwiki/inc/
H A Dchangelog.php16 * parses a changelog line into it's components
18 * @param string $line changelog line
32 * Adds an entry to the changelog and saves the metadata for the page
78 // update changelog file and get the added entry that is also to be stored in metadata
80 $logEntry = $pageFile->changelog->addLogEntry([
96 * Adds an entry to the media changelog
136 // update changelog file and get the added entry
150 * returns an array of recently changed files using the changelog
185 $lines = @file($conf['changelog']) ?: [];
253 * changelog
[all...]
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);