| 194457eb | 13-Jun-2020 |
HokkaidoPerson <dosankomali@yahoo.co.jp> |
translation update |
| 1187c33a | 12-Jun-2020 |
Filippo <abrickslife@gmail.com> |
translation update |
| 7f153c56 | 11-Jun-2020 |
Andreas Gohr <andi@splitbrain.org> |
Make router work with dotted page names. fixes #3165
This should work around PHP bug #61286
Seems to work well but could use some additional manual testing. |
| 29220f2c | 11-Jun-2020 |
HokkaidoPerson <dosankomali@yahoo.co.jp> |
translation update |
| 722372bd | 10-Jun-2020 |
ms101 <aass@abwesend.de> |
fixed comment smd5->bcrypt |
| e602e047 | 09-Jun-2020 |
Guy Brand <gb@unistra.fr> |
Release preparation |
| 267bbbca | 08-Jun-2020 |
ms101 <aass@abwesend.de> |
changed hash algo in install.php from smd5 to bcrypt |
| a65be911 | 08-Jun-2020 |
Phy <git@phy25.com> |
add unit tests for #3114 |
| 985f440f | 14-Mar-2020 |
Damien Regad <dregad@mantisbt.org> |
Fix typo in error message |
| 5e77d3e8 | 05-Jun-2020 |
Phy <git@phy25.com> |
Add flexbox to admin menu link to fix text width
The previous implementation assigns the whole width of the parent ul to the text area, which brings some text (fr) overlapping the icon in the second
Add flexbox to admin menu link to fix text width
The previous implementation assigns the whole width of the parent ul to the text area, which brings some text (fr) overlapping the icon in the second row. Adding flexbox should be most backward-compatible and ensures a proper width being set.
show more ...
|
| 7210c855 | 04-Jun-2020 |
Andreas Gohr <andi@splitbrain.org> |
add datetime option to info plugin
It simply displays the time of the last render() call. This is useful for cache debugging |
| b6c12ffa | 04-Jun-2020 |
Andreas Gohr <andi@splitbrain.org> |
use correct class for Sitemap generation. fixes #3134
This seems to have been a refactoring error |
| 85b0dd7d | 04-Jun-2020 |
Andreas Gohr <andi@splitbrain.org> |
readd lib/exe/indexer.php for now. fixes #3137
This ensures backward compability (especially for testing purposes) |
| c183535a | 04-Jun-2020 |
Domingo Redal <docxml@gmail.com> |
translation update |
| eb33b670 | 04-Jun-2020 |
Andreas Gohr <andi@splitbrain.org> |
make handler status available via accessors. fixes #2931
This allows plugins to inspect and manipulate the status if needed. |
| 46028c4c | 04-Jun-2020 |
Andreas Gohr <andi@splitbrain.org> |
Move defines to their own file
As described in https://github.com/dwp-forge/columns/issues/5#issuecomment-638467603 sometime the Lexer constants have not been (auto)loaded when a syntax plugin is in
Move defines to their own file
As described in https://github.com/dwp-forge/columns/issues/5#issuecomment-638467603 sometime the Lexer constants have not been (auto)loaded when a syntax plugin is invoked (I'm not sure why).
In general PSR2 discourages a mix of main code and function/class setup with the call to define() being considered main code.
This patch moves these the define calls to a separate new file, solving both of the above problems.
These are not all our defines. Instead I focused on the ones that are ENUM-like.
In the future we should think about what defines can be replaced by class constants and what other define() calls should be moved.
show more ...
|
| 47c5d564 | 03-Jun-2020 |
Moisés Braga Ribeiro <moisesbr@gmail.com> |
Changes to conform to PHP Code Style
New function lang_has_changed() as wrapper for _get_collator(TRUE). |
| 7ee46c5d | 03-Jun-2020 |
Guy Brand <gb@unistra.fr> |
Release preparation |
| d87ff0d3 | 03-Jun-2020 |
Andreas Gohr <andi@splitbrain.org> |
fix phpdoc
Co-authored-by: Matthias Gutjahr <mattsches@gmail.com> |
| 746611d8 | 03-Jun-2020 |
Moisés Braga Ribeiro <moisesbr@gmail.com> |
Collator re-creation in unit test |
| 533aca44 | 02-Jun-2020 |
Andreas Gohr <andi@splitbrain.org> |
Fix accessing calls
Some plugins need access to the handler (and rewriter) calls. One example is the do plugin.
This adds some accessing methods to the callWriter objects, ensures $calls can be acc
Fix accessing calls
Some plugins need access to the handler (and rewriter) calls. One example is the do plugin.
This adds some accessing methods to the callWriter objects, ensures $calls can be accessed and removes some duplicate code by introducing an abstract base class.
show more ...
|
| 0884c254 | 02-Jun-2020 |
Andreas Gohr <andi@splitbrain.org> |
fix the case lookup table. #3113
This readds a whole bunch of conversions that for some reason got lost in the refactoring. No idea what happened there. |
| 3feb137a | 02-Jun-2020 |
Andreas Gohr <andi@splitbrain.org> |
run all tests without mbstring support
The setup we had, where we tried to disable mbstring on a perclass basis did not actually work because the define is set up in an early include already.
Ideal
run all tests without mbstring support
The setup we had, where we tried to disable mbstring on a perclass basis did not actually work because the define is set up in an early include already.
Ideally we should probably make the check a static instead of a constant.
show more ...
|
| 322ad074 | 02-Jun-2020 |
Andreas Gohr <andi@splitbrain.org> |
some minor improvements for the writability checks
* handle is_writable for non-existing pages correctly * Success and Fail are now color coded correctly |
| 556e996e | 02-Jun-2020 |
Andreas Gohr <andi@splitbrain.org> |
fixed message classes
In #3069 the internal structure of messages was accidentally changed to be numeric. This reintroduces the proper string constants.
I thought about keeping the integers and do
fixed message classes
In #3069 the internal structure of messages was accidentally changed to be numeric. This reintroduces the proper string constants.
I thought about keeping the integers and do the mapping in html_msgarea() but some plugins rely on inspecting the global $MSG so I don't want to change it.
show more ...
|