mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-26 05:32:59 +00:00
[recent-changes] Add new page size & size difference
This commit is contained in:
parent
91a9c44b8f
commit
1765f410e6
3 changed files with 8 additions and 4 deletions
|
@ -409,7 +409,7 @@ if($settings->sessionprefix == "auto")
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
/** The version of Pepperminty Wiki currently running. */
|
/** The version of Pepperminty Wiki currently running. */
|
||||||
$version = "v0.18-dev";
|
$version = "v0.18-dev";
|
||||||
$commit = "c40d1a1016eb1c981a1d549fa40a15686ac807f9";
|
$commit = "91a9c44b8f714deb320805f127ff2953af24106d";
|
||||||
/// Environment ///
|
/// Environment ///
|
||||||
/** Holds information about the current request environment. */
|
/** Holds information about the current request environment. */
|
||||||
$env = new stdClass();
|
$env = new stdClass();
|
||||||
|
@ -4092,7 +4092,7 @@ function render_recent_change_atom($recent_changes) {
|
||||||
<li><strong>Change type:</strong> $recent_change->type</li>
|
<li><strong>Change type:</strong> $recent_change->type</li>
|
||||||
<li><strong>User:</strong> $recent_change->user</li>
|
<li><strong>User:</strong> $recent_change->user</li>
|
||||||
<li><strong>Page name:</strong> $recent_change->page</li>
|
<li><strong>Page name:</strong> $recent_change->page</li>
|
||||||
<li><strong>Timestamp:</strong> ".date(DateTime::RFC1123, $recent_change->timestamp)."</li>";
|
<li><strong>Timestamp:</strong> ".date(DateTime::RFC1123, $recent_change->timestamp)."</li>\n";
|
||||||
|
|
||||||
switch($type) {
|
switch($type) {
|
||||||
case "revert":
|
case "revert":
|
||||||
|
@ -4101,6 +4101,8 @@ function render_recent_change_atom($recent_changes) {
|
||||||
$revision_id = find_revisionid_timestamp($recent_change->page, $recent_change->timestamp);
|
$revision_id = find_revisionid_timestamp($recent_change->page, $recent_change->timestamp);
|
||||||
if(!empty($revision_id))
|
if(!empty($revision_id))
|
||||||
$url .= "&revision=$revision_id";
|
$url .= "&revision=$revision_id";
|
||||||
|
$content .= "<li><strong>New page size:</strong> ".human_filesize($recent_change->newsize)."</li>
|
||||||
|
<li><strong>Page size difference:</strong> ".($recent_change->sizediff > 0 ? "+" : "")."$recent_change->sizediff</li>\n";
|
||||||
break;
|
break;
|
||||||
case "deletion": $type = "Deletion of"; break;
|
case "deletion": $type = "Deletion of"; break;
|
||||||
case "move": $type = "Movement of"; break;
|
case "move": $type = "Movement of"; break;
|
||||||
|
|
|
@ -95,7 +95,7 @@
|
||||||
"author": "Starbeamrainbowlabs",
|
"author": "Starbeamrainbowlabs",
|
||||||
"description": "Adds recent changes. Access through the 'recent-changes' action.",
|
"description": "Adds recent changes. Access through the 'recent-changes' action.",
|
||||||
"id": "feature-recent-changes",
|
"id": "feature-recent-changes",
|
||||||
"lastupdate": 1548364510,
|
"lastupdate": 1548373950,
|
||||||
"optional": false
|
"optional": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -404,7 +404,7 @@ function render_recent_change_atom($recent_changes) {
|
||||||
<li><strong>Change type:</strong> $recent_change->type</li>
|
<li><strong>Change type:</strong> $recent_change->type</li>
|
||||||
<li><strong>User:</strong> $recent_change->user</li>
|
<li><strong>User:</strong> $recent_change->user</li>
|
||||||
<li><strong>Page name:</strong> $recent_change->page</li>
|
<li><strong>Page name:</strong> $recent_change->page</li>
|
||||||
<li><strong>Timestamp:</strong> ".date(DateTime::RFC1123, $recent_change->timestamp)."</li>";
|
<li><strong>Timestamp:</strong> ".date(DateTime::RFC1123, $recent_change->timestamp)."</li>\n";
|
||||||
|
|
||||||
switch($type) {
|
switch($type) {
|
||||||
case "revert":
|
case "revert":
|
||||||
|
@ -413,6 +413,8 @@ function render_recent_change_atom($recent_changes) {
|
||||||
$revision_id = find_revisionid_timestamp($recent_change->page, $recent_change->timestamp);
|
$revision_id = find_revisionid_timestamp($recent_change->page, $recent_change->timestamp);
|
||||||
if(!empty($revision_id))
|
if(!empty($revision_id))
|
||||||
$url .= "&revision=$revision_id";
|
$url .= "&revision=$revision_id";
|
||||||
|
$content .= "<li><strong>New page size:</strong> ".human_filesize($recent_change->newsize)."</li>
|
||||||
|
<li><strong>Page size difference:</strong> ".($recent_change->sizediff > 0 ? "+" : "")."$recent_change->sizediff</li>\n";
|
||||||
break;
|
break;
|
||||||
case "deletion": $type = "Deletion of"; break;
|
case "deletion": $type = "Deletion of"; break;
|
||||||
case "move": $type = "Movement of"; break;
|
case "move": $type = "Movement of"; break;
|
||||||
|
|
Loading…
Reference in a new issue