| 675f74fb | 06-Dec-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
similarify MediaDiff and PageDiff classes |
| 2db397b2 | 04-Dec-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
move media_diff() into Ui\MediaDiff class
deprecated functions: media_diff() _media_file_diff() media_file_diff() media_image_diff() |
| edb50e6a | 04-Dec-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
Ui\Diff hierarchy |
| 65bcbb60 | 03-Dec-2020 |
Schplurtz le Déboulonné <Schplurtz@laposte.net> |
translation update |
| 541032da | 03-Dec-2020 |
Andreas Gohr <andi@splitbrain.org> |
extension manager: fix for empty API result. fixes #3330 |
| fe2e97f6 | 03-Dec-2020 |
Andreas Gohr <andi@splitbrain.org> |
PHP 8: rename match() to apply() in Lexer #3298 |
| bc45a28e | 03-Dec-2020 |
Andreas Gohr <andi@splitbrain.org> |
codestyle fixes |
| 61da323a | 03-Dec-2020 |
Andreas Gohr <andi@splitbrain.org> |
add new log dir to test data directory |
| 63ab9afe | 01-Dec-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
Ui\Diff hierarchy |
| defc7576 | 01-Dec-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
move Ui\Diff to Ui\PageDiff |
| ccef1899 | 01-Dec-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
fix html missing closing div tag |
| ae5d2354 | 27-Nov-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
UI\Revisions hierachy
define Revisions as abstract, which is inherited by PageRevision and MediaRevision classes. this is simillar to ChangeLog class hierachy. |
| b370ebcd | 27-Nov-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
create Ui\PageRevisions class
new Ui\PageRevisons is dedicated for page revisions |
| 08500ab3 | 27-Nov-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
create UI\MediaRevisions class
Create new Ui\MediaRevisions class created by copying from Ui\Revisons and customize its methods to use media only (methods args are changed). Replace deprecated html_
create UI\MediaRevisions class
Create new Ui\MediaRevisions class created by copying from Ui\Revisons and customize its methods to use media only (methods args are changed). Replace deprecated html_revisions() with Ui\MediaRevisions->show() method.
show more ...
|
| a7d03b81 | 25-Nov-2020 |
ANDRE BASSANI DE FREITAS <dedebf@gmail.com> |
translation update |
| 3dc79ed8 | 25-Nov-2020 |
Andreas Gohr <andi@splitbrain.org> |
usermanager CLI: more cleanup |
| 1a88e283 | 25-Nov-2020 |
Andreas Gohr <andi@splitbrain.org> |
usermanager CLI: use success messages
This makes it more consistent with the other tools |
| 4fe4fe89 | 25-Nov-2020 |
Andreas Gohr <andi@splitbrain.org> |
usermanager CLI: fix parameter order for creating users |
| 80fb44d9 | 25-Nov-2020 |
Andreas Gohr <andi@splitbrain.org> |
usermanager CLI: catch plugin signalled error messages
Plugins may prevent user modifications and will use msg() to tell why. This will catch the messages and print them on CLI as well |
| e56df874 | 25-Nov-2020 |
Andreas Gohr <andi@splitbrain.org> |
abort early when no auth backend is available |
| 44c2bd91 | 25-Nov-2020 |
Andreas Gohr <andi@splitbrain.org> |
type hints and cleanup |
| 19078209 | 25-Nov-2020 |
Andreas Gohr <andi@splitbrain.org> |
stricter user check in AbstractUserAction |
| 5525369f | 22-Nov-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
set proper revinfo when media meta file is not available
MediaChangelog::getRevision() may return false when media changes meta file is missing, cause error unsupported operand types. |
| 7bbf38ee | 20-Nov-2020 |
Andreas Gohr <andi@splitbrain.org> |
avoid running tests twice for pull requests
This implements the suggested method from [1]. It runs tests on all pushes to our own repository and for pull requests coming from other people's forks.
avoid running tests twice for pull requests
This implements the suggested method from [1]. It runs tests on all pushes to our own repository and for pull requests coming from other people's forks.
[1] https://github.community/t/how-to-trigger-an-action-on-push-or-pull-request-but-not-both/16662/10
show more ...
|
| 2cf7c325 | 19-Nov-2020 |
Andreas Gohr <andi@splitbrain.org> |
Replace Appveyor and Travis with Github actions
Travis has recently introduced built limits which makes using them very slow sometimes and I never really liked the setup for appveyor for our Windows
Replace Appveyor and Travis with Github actions
Travis has recently introduced built limits which makes using them very slow sometimes and I never really liked the setup for appveyor for our Windows testing.
This makes use of github actions instead. Some notes:
* since we only support PHP 7.2+ anymore, nothing below is tested * MySQL and Postgres auth backends are only tested on Linux (as before) * I am not actually sure the problem matchers are working as intended * There is currently no good way to run tests that are allowed to fail so no PHP 8 tests are run yet * I haven't reestablished the no-gzip test runs again, I'm not sure they are still relevant on modern PHP systems * PHP 7.4 currently fails because of https://github.com/MarcusSchwarz/lesserphp/pull/18 * I'm currently using @v2 tags for the used action. We had a discussion before if we should actually pin the action to a fixed commit. For sake of easier maintainance, I would argue to trust the setup-php action.
show more ...
|