| fd9f9891 | 20-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
remove unnecessary comment |
| 36faf696 | 21-Jan-2020 |
Michael Große <mic.grosse@googlemail.com> |
Split out temporary code style excludes
Splitting them out allows for plugins to use _test/phpcs.xml as the basis for their own linting without having an overly permissive coding standard. Also, thi
Split out temporary code style excludes
Splitting them out allows for plugins to use _test/phpcs.xml as the basis for their own linting without having an overly permissive coding standard. Also, this makes it more obvious and painful that these are just intended as temporary exceptions and should be actually fixed.
The rule `Generic.ControlStructures.InlineControlStructure.NotAllowed` has its comment adjust to make it clear that this is an intended deviation from the PSR-2/PSR-12 coding standard.
The rule `PSR1.Classes.ClassDeclaration.MissingNamespace` has to remain in the DokuWiki coding standard as the plugin base classes can currently not reasonably be in namespaces.
show more ...
|
| a72f333f | 19-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
fix url parameter separator in gui::tabURL() |
| b0b7d196 | 19-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
revert aliasing FormWriter class |
| ad4abe1d | 19-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
lowercase variable name |
| 9fdcc8fc | 18-Feb-2020 |
movatica <c0d3@movatica.com> |
Respect fmode config setting
Fix hardcoded fmode overriding user config, which breaks with nondefault environments. |
| 3aa75874 | 18-Feb-2020 |
movatica <c0d3@movatica.com> |
Fixed inconsistent handling of falsy values on fperm setting
The $conf['fperm'] value was checked in multiple files using different methods. This can cause permission trouble with restricted environ
Fixed inconsistent handling of falsy values on fperm setting
The $conf['fperm'] value was checked in multiple files using different methods. This can cause permission trouble with restricted environments, i.e. when chmod is forbidden and file permissions are non-default. Now, all checks use implicit cast to boolean which leads to consistent behaviour.
Also, a misleading variable was renamed in context to better understand one of the checks.
show more ...
|
| b49dd295 | 18-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
set action attribute for form tags |
| bc580cbb | 18-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
label.block design compatibility
render <br> after <input> tag inside <label class="block"> elements. to be compatible with Doku_Form::form_textfield(), form_filefield() |
| 1d4a5a70 | 16-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
fix bundled extension list |
| cd80a505 | 14-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
bugfix: not work enable/disable plugin buttons |
| 67fb6a5d | 14-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
rewrite code using Form\Form class |
| 86e8f706 | 14-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
coding style |
| cf833595 | 11-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
PSR-12 coding style |
| 7be7cd38 | 11-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
respect conf['target'] for Docs and Bugs links
fix #2912 |
| f531b2b2 | 11-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
better variable name |
| 9329b002 | 02-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
change static methods into instance methods |
| db879364 | 02-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
fix getPID()
getPID() will be called only when the page exists. |
| f2e1d0bf | 02-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
fix set Stopwords property |
| 4a90f94b | 02-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
move backlinks() and mediause() into MediaIndex class |
| 653b91a2 | 01-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
AbstractIndex class const INDEX_MARK_DELETED |
| 6f58ff65 | 01-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
obsolete fulltext.php and indexer.php files
define deprecated functions in deprecated.php file. fix load.php, loading fulltext.php and indexer.php is nolonger necessary. |
| 743c9a28 | 31-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
rename PagewordIndex to FulltextIndex |
| 5237d405 | 31-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
trigger error when lock/unlock index directory failed |
| 4d04b7bb | 31-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
histogram() change args order
INdexer::histogram() is only used in indexer_histogram.test.php file. |