Lines Matching full:changelog
4 * 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 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
286 $lines = @file($conf['changelog']);
322 * @param string $line changelog line
333 $recent = ChangeLog::parseLogLine($line);