Home
last modified time | relevance | path

Searched full:changelog (Results 1 – 25 of 333) sorted by relevance

12345678910>>...14

/plugin/linkback/
H A Dtools.php114 * Adds an entry to the linkbacks changelog
123 $changelog = $conf['metadir'] . '/_linkbacks.changes';
143 // add changelog line
145 io_saveFile($changelog, $logline, true); //global changelog cache
146 $this->_trimRecentCommentsLog($changelog);
156 function _trimRecentCommentsLog($changelog) { argument
159 if (@ file_exists($changelog) && (filectime($changelog) + 86400) < time() && !@ file_exists($changelog
[all...]
/dokuwiki/inc/ChangeLog/
H A DPageChangeLog.php3 namespace dokuwiki\ChangeLog;
6 * Class PageChangeLog; handles changelog of a wiki page
8 class PageChangeLog extends ChangeLog
11 * Returns path to changelog
43 * Adds an entry to the changelog
49 * @see also addLogEntry() in inc/changelog.php file
57 // add changelog lines
60 io_saveFile($conf['changelog'], $logline, true); //global changelog cache
H A DMediaChangeLog.php3 namespace dokuwiki\ChangeLog;
6 * Class MediaChangeLog; handles changelog of a media file
8 class MediaChangeLog extends ChangeLog
11 * Returns path to changelog
43 * Adds an entry to the changelog
49 * @see also addMediaLogEntry() in inc/changelog.php file
57 // add changelog lines
60 io_saveFile($conf['media_changelog'], $logline, $append = true); //global changelog cache
H A DChangeLog.php3 namespace dokuwiki\ChangeLog;
8 * ChangeLog Prototype; methods for handling changelog
10 abstract class ChangeLog class
91 // set ChangeLog::currentRevision property
98 * Return the last revision identifier, date value of the last entry of the changelog
109 * Parses a changelog line into its components and save revision info to the cache pool
111 * @param string $value changelog line
126 * Get the changelog information for a specific revision (timestamp)
128 * Adjacent changelog line
[all...]
H A DChangeLogTrait.php3 namespace dokuwiki\ChangeLog;
8 * Provides methods for handling of changelog
13 * Adds an entry to the changelog file
20 * Parses a changelog line into its components
22 * @param string $line changelog line
47 * Build a changelog line from its components
51 * @return string changelog line
71 * Returns path to changelog
105 * Returns lines from changelog.
108 * When reference timestamp $rev is outside time range of changelog, readlogline
[all...]
/dokuwiki/inc/Ui/
H A DRevisions.php5 use dokuwiki\ChangeLog\ChangeLog; alias
21 /* @var ChangeLog */
22 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
[all...]
H A DDiff.php5 use dokuwiki\ChangeLog\ChangeLog; alias
26 /* @var ChangeLog */
27 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
[all...]
H A DMediaRevisions.php5 use dokuwiki\ChangeLog\MediaChangeLog;
6 use dokuwiki\ChangeLog\RevisionInfo;
18 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.php5 use dokuwiki\ChangeLog\PageChangeLog;
6 use dokuwiki\ChangeLog\RevisionInfo;
17 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.php5 use dokuwiki\ChangeLog\PageChangeLog;
6 use dokuwiki\ChangeLog\RevisionInfo;
21 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
[all...]
H A DRecent.php5 use dokuwiki\ChangeLog\MediaChangeLog;
6 use dokuwiki\ChangeLog\PageChangeLog;
7 use dokuwiki\ChangeLog\RevisionInfo;
23 * @param int $first skip the first n changelog lines
116 * @see also dokuwiki\Changelog::getRevisionInfo()
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);
[all...]
/plugin/gdpr/action/
H A Ddelusers.php87 while ($changelog = $this->getTopChangelog()) {
88 if (!$this->cleanChangelog($changelog, $username, $deletedUserCount)) {
122 …* Remove the first changelog from the list of changelogs that have still to be cleaned for the cur…
149 * Try to clean a username from a changelog and replace it with a placeholder, locks the page
151 * @param string $changelogFN path to the changelog to be cleaned
155 …* @return bool if the changelog has been successfully cleaned, false if page was locked and nothin…
188 * Parse the pageid from the changelog filename
192 * @return false|string pageid or false if media changelog
205 * Get the next changelog to clean
207 * @return bool|string the next changelog or false if we are done
/plugin/querychangelog/lang/en/
H A Dlang.php14 $lang['menu'] = 'Query Changelog';
15 $lang['desc'] = 'Configurable access to the whole changelog';
40 $lang['qc_res_title'] = 'Changelog';
42 $lang['qc_res_from'] = 'Changelog start date';
43 $lang['qc_res_to'] = 'Changelog end date';
/dokuwiki/inc/
H A Dchangelog.php4 * Changelog handling functions
10 use dokuwiki\ChangeLog\MediaChangeLog;
11 use dokuwiki\ChangeLog\ChangeLog;
12 use dokuwiki\ChangeLog\RevisionInfo;
16 * parses a changelog line into it's components
18 * @param string $line changelog line
27 dbg_deprecated('see ' . ChangeLog::class . '::parseLogLine()');
28 return ChangeLog::parseLogLine($line);
32 * Adds an entry to the changelog an
9 use dokuwiki\ChangeLog\ChangeLog; global() alias
[all...]
H A DTaskRunner.php8 use dokuwiki\ChangeLog\ChangeLog; alias
89 * Trims the recent changes cache (or imports the old changelog) as needed.
91 * @param bool $media_changes If the media changelog shall be trimmed instead of
92 * the page changelog
104 $fn = ($media_changes ? $conf['media_changelog'] : $conf['changelog']);
131 $log = ChangeLog::parseLogLine($lines[$i]);
154 // however the extra robustness in making the changelog cache self-correcting is worth it
170 // save trimmed changelog
/dokuwiki/inc/File/
H A DPageFile.php6 use dokuwiki\ChangeLog\PageChangeLog;
19 /* @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
[all...]
/plugin/googleads/
H A DCHANGELOG.md1 # Changelog chapter
4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
18 - [GA-2] - Replaced CHANGELOG.md with the correct one
24 …t was rewritten, and some bug fixes were made. Also added LICENSE, README.md, and this CHANGELOG.md
/plugin/publistf/
H A DCHANGELOG.md1 # Changelog chapter
4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
34 * changed version number and changelog format for project (the existing changelog
49 * bib2tpl updated to v2 with additional modifications (see changelog in
/plugin/elasticsearch/vendor/symfony/deprecation-contracts/
H A DCHANGELOG.md1 CHANGELOG chapter
4 The changelog is maintained for all Symfony contracts at the following URL:
5 https://github.com/symfony/contracts/blob/main/CHANGELOG.md
/plugin/combo/vendor/symfony/deprecation-contracts/
H A DCHANGELOG.md1 CHANGELOG chapter
4 The changelog is maintained for all Symfony contracts at the following URL:
5 https://github.com/symfony/contracts/blob/main/CHANGELOG.md
/plugin/displaywikipage/
H A DCHANGELOG.md1 # Changelog chapter
4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
18 - [DWP-3] - Added LICENSE, README.md, CHANGELOG.md, admin page, admin svg icon, and some code clean…
/plugin/referrers/
H A DCHANGELOG.md1 # Changelog chapter
4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
18 - [RE-1] - Added LICENSE, README.md, CHANGELOG.md, admin page, admin svg icon, and some code cleanup
/plugin/diffpreview/
H A DREADME.md7 Changelog: See [CHANGELOG.md](CHANGELOG.md)
/plugin/projects/
H A Dconf.php37 global $changelog;
39 $changelog = 'http://rsv.math.uvic.ca/dokuwiki/doku.php/changelog'; variable
/plugin/approve/action/
H A Dmigration.php200 $changelog = new PageChangeLog($id);
203 while (count($revs = $changelog->getRevisions($first, $num)) > 0) {
205 $revInfo = $changelog->getRevisionInfo($rev);
227 $changelog = new PageChangeLog($id);
230 while (count($revs = $changelog->getRevisions($first, $num)) > 0) {
232 $revInfo = $changelog->getRevisionInfo($rev);
256 $changelog = new PageChangeLog($id);
259 while (count($revs = $changelog->getRevisions($first, $num)) > 0) {
261 $revInfo = $changelog->getRevisionInfo($rev);

12345678910>>...14