History log of /dokuwiki/inc/Ui/Recent.php (Results 1 – 25 of 31)
Revision Date Author Comments
# 5a4a5e05 01-May-2024 Damien Regad <dregad@mantisbt.org>

Fix PHP warning

E_WARNING: Trying to access array offset on value of type bool
./inc/Ui/Recent.php(165)


# adf3f0ad 24-Sep-2023 Gerrit Uitslag <klapinklapin@gmail.com>

update Recent as well


# 26dfc232 31-Aug-2023 Andreas Gohr <andi@splitbrain.org>

Rector to rename print to echo calls


# 8c7c53b0 30-Aug-2023 Andreas Gohr <andi@splitbrain.org>

codestyle adjustments: class declaration braces


# e2d055f5 29-Aug-2023 Andreas Gohr <andi@splitbrain.org>

Apply rector fixes to inc/Ui


# 3f168574 05-Aug-2022 TherealperO <110610509+TherealperO@users.noreply.github.com>

Update Recent.php

Fix bug in line 158:

Change
$itemType = $info['mode'] = $info['media'] ? 'media' : 'page';
to
$itemType = $info['media'] ? 'media' : 'page';


# 3855b15e 04-Aug-2022 TherealperO <110610509+TherealperO@users.noreply.github.com>

Update Recent.php

Change to use $info['media'] instead of checking for dots in $ID to decide $info['mode'].


# eeda7ada 23-Jan-2022 Gerrit Uitslag <klapinklapin@gmail.com>

some spelling


# b428a50a 23-Jan-2022 Satoshi Sahara <sahara.satoshi@gmail.com>

use OOP like method name in RevisionInfo class


# b622cd79 15-Jan-2022 Gerrit Uitslag <klapinklapin@gmail.com>

update only revinfo of externally deleted items

externally edited (and externally created is not in the list) are not
updated because sorting by date is not worth so much changes.
Updating and not s

update only revinfo of externally deleted items

externally edited (and externally created is not in the list) are not
updated because sorting by date is not worth so much changes.
Updating and not sorting results in a too messy list

show more ...


# bf3fa5e9 08-Jan-2022 Satoshi Sahara <sahara.satoshi@gmail.com>

new RevisionInfo class obsoletes anonymous objRevInfo class

obsolete getObjRevInfo() in Ui\Recent and Ui\Revisions classes, that had defined anonymous class. they are similar but slightly differentl

new RevisionInfo class obsoletes anonymous objRevInfo class

obsolete getObjRevInfo() in Ui\Recent and Ui\Revisions classes, that had defined anonymous class. they are similar but slightly differently treat the diff link icon. It is impossible to create common method for diff icon using only revision information, it depends on caller, ie. recent or revisions list

show more ...


# 76ab675a 06-Jan-2022 Gerrit Uitslag <klapinklapin@gmail.com>

reformating


# e1e8e3b4 06-Jan-2022 Gerrit Uitslag <klapinklapin@gmail.com>

skip link to ?do=diff for a just created page on Recent Changes page

Alternative is counting number of revisions available, like the image,
but that is slower because it needs a changelog per item,

skip link to ?do=diff for a just created page on Recent Changes page

Alternative is counting number of revisions available, like the image,
but that is slower because it needs a changelog per item, while in
practice this only should happen for just created pages. Also changelogs
of images are more recent implemented in DokuWiki so less often
complete.

show more ...


# 4106d4f9 06-Jan-2022 Gerrit Uitslag <klapinklapin@gmail.com>

Recent Changes page can also show external edits


# 79a2d784 05-Jan-2022 Gerrit Uitslag <klapinklapin@gmail.com>

import classes, replace dbglog, simplify, remove unused statements, and other warnings from IntelliJ

update phpdocs,
rename dokuwiki/Ui/Draft to PageDraft


# 8a2bf2dd 01-Nov-2021 Satoshi Sahara <sahara.satoshi@gmail.com>

set revInfo['current'] in Ui\Recents


# df7627d6 01-Nov-2021 Satoshi Sahara <sahara.satoshi@gmail.com>

obsolete ChangeLog:isExternalEdition

new methods: isLastRevision(), lastRevision()


# 0c92baf0 10-Oct-2021 Satoshi Sahara <sahara.satoshi@gmail.com>

check externally deleted items in do=recent

do not update revision info for externally modified items to avoid wrong sort order in the recent list.


# c6977b3a 26-Aug-2020 Satoshi Sahara <sahara.satoshi@gmail.com>

change event naming scheme

FORM_*_OUTPUT scheme had been introduced since Apriil 2018, see #2286


# 8128de6c 20-Aug-2020 Satoshi Sahara <sahara.satoshi@gmail.com>

fix Scrutinizer annotations


# bde2a644 19-Aug-2020 Satoshi Sahara <sahara.satoshi@gmail.com>

fix Scrutinizer annotations


# 66e555e2 19-Aug-2020 Satoshi Sahara <sahara.satoshi@gmail.com>

fix missing or unnecessary use Event statements


# e6adf5b7 19-Aug-2020 Satoshi Sahara <sahara.satoshi@gmail.com>

tigger HTMLFORM_*_OUTPUT events

trigger events in Form::toHTML() instead of using Event::createAndTrigger()


# 628d5475 18-Aug-2020 Satoshi Sahara <sahara.satoshi@gmail.com>

remove unnecessary printing DOKU_LF


# 21b96b63 15-Aug-2020 Satoshi Sahara <sahara.satoshi@gmail.com>

shorten Ui\Recent::show(), split out sub methods

Requrie *PHP7*, using anonymous class in Ui\Recent::getObjRevInfo()


12