Universal Omega
da27636f6b
add additional isset check for mTemplatePath ( #167 )
2022-04-15 14:08:27 -06:00
Universal Omega
c4bff23bf6
Use database update maintenance script for creating VIEW ( #165 )
2022-04-14 11:50:27 -06:00
Universal Omega
7c2bc69296
phpcs: enable MediaWiki.Commenting.FunctionComment
( #149 )
2022-03-22 13:59:52 -06:00
Universal Omega
be6395a07a
Remove unused LST::noop()
function ( #148 )
2022-03-22 10:37:11 -06:00
Universal Omega
4890c27b7f
Fix %TOTALPAGES%
usage ( #145 )
2022-03-21 15:37:02 -06:00
Universal Omega
02fe40ec52
Fix firstrevisionsince and lastrevisionbefore parameters ( #143 )
2022-03-20 17:50:19 -06:00
Universal Omega
181a32255e
Only set sqlQuery if used for debug ( #142 )
2022-03-20 17:14:44 -06:00
Universal Omega
d5b353968e
Fix openreferences=missing
count ( #140 )
2022-03-20 16:42:03 -06:00
Universal Omega
bc1377bb00
Use ExtensionRegistry for checking HitCounters ( #137 )
2022-03-20 11:15:43 -06:00
Universal Omega
af9d8a4f5e
phpcs: enable SpaceBeforeSingleLineComment.NewLineComment
( #138 )
2022-03-20 11:11:35 -06:00
Universal Omega
edb0836569
Fix allowUnlimitedResults
( #131 )
2022-03-19 20:52:03 -06:00
Universal Omega
c47acf14c6
phpcs: enable PEAR.Functions.ValidDefaultValue.NotAtEnd
( #128 )
2022-03-17 13:02:52 -06:00
Universal Omega
683294d0ab
Fix minoredits parameter ( #127 )
2022-03-17 09:38:47 -06:00
Universal Omega
60ec70c079
Properly implement titlemaxlength and includemaxlength ( #123 )
2022-03-16 17:23:58 -06:00
Universal Omega
5bd1244b34
Remove unused parameters from editTemplateCall ( #125 )
2022-03-16 16:37:16 -06:00
Universal Omega
cb70bf0a8b
Remove some unused code ( #124 )
2022-03-16 16:10:03 -06:00
Universal Omega
4e5a019adb
Remove unused removeSectionMarkers function ( #121 )
2022-03-15 14:37:01 -06:00
Universal Omega
1cfaefb084
Fix query error due to not adding quotes to '%' ( #119 )
2022-03-15 11:11:41 -06:00
Universal Omega
4b41db98f6
Use StringUtils::isValidPCRERegex ( #117 )
2022-03-14 10:44:46 -06:00
Universal Omega
af983cf2df
Re-namespace and use AutoloadNamespaces ( #113 )
2022-03-13 13:57:34 -06:00
Universal Omega
90c3c0ee6c
Improve query performance and add caching support ( #107 )
2022-03-13 12:28:30 -06:00
Universal Omega
2ea2503a43
Use Extension:DynamicPageList3 in logger ( #111 )
2022-03-12 16:12:52 -07:00
Universal Omega
cd764c2a1d
Replace usages of globals ( #106 )
2022-03-09 13:17:24 -07:00
Jack Phoenix
c37cda41d9
Use the existing Services object ( #105 )
...
It was already defined above, on line 198.
Also compacted the multi-line chained method calls into one line since its length does not exceed 120 characters.
2022-03-08 10:28:46 -07:00
Universal Omega
a0a2b862bc
Fix usage of scroll and order in the same query ( #88 )
2022-02-06 16:27:50 -07:00
Universal Omega
ce64f763a3
Add support for openreferences=missing
( #87 )
2022-02-05 12:33:07 -07:00
Robert Vogel
1024e445ff
Fix second param to preg_match
( #78 )
...
Co-authored-by: rvogel <vogel@hallowelt.biz>
2022-01-28 10:07:27 -07:00
Robert Vogel
f20ad2e16f
Restore MediaWiki 1.35 compatibility ( #79 )
...
Co-authored-by: rvogel <vogel@hallowelt.biz>
2022-01-28 10:06:58 -07:00
Jack Phoenix
20f11dc6b7
Fix up a few minor things which were annoying me ( #72 )
...
* Use single quotes instead of double where appropriate, as per MediaWiki's usual coding conventions
* Correctly capitalize `getDBkey` method as such
* Add some spacing etc.
* Capitalize SQL keywords in the exception messages that are thrown
* Fix up indentation and remove one unnecessary variable in function _addcontribution
2021-12-16 18:23:18 -07:00
Universal Omega
78c5ead32c
Fix getSubcategories ( #71 )
2021-12-16 15:18:01 -07:00
Universal Omega
cf3e0566ef
Fix allowUnlimitedResults + fix tests on 1.38.0+ ( #70 )
2021-12-15 16:23:13 -07:00
Universal Omega
9afe84380a
Cleanup ( #64 )
2021-12-15 13:22:38 -07:00
Universal Omega
2324ce206a
Revert helper classes ( #63 )
2021-10-06 12:44:11 -06:00
Universal Omega
8f996a6b25
add phan-var ( #61 )
2021-10-02 15:55:24 -06:00
Universal Omega
2fe609148c
Fix fatal "Class 'DynamicPageListHooks' not found"
2021-10-02 15:00:01 -06:00
Universal Omega
2c04dafb37
Major cleanup ( #57 )
2021-10-01 16:52:30 -06:00
Universal Omega
8c9ee66836
Fix setting query limit ( #53 )
2021-09-24 20:56:23 -06:00
Universal Omega
c5a8702106
Fix "Trying to access array offset on value of type null" ( #54 )
2021-09-15 20:03:00 -06:00
DanB
7bc82c9a62
Improve DPL's sorting behavior for table columns that are nearly numeric ( #47 )
...
* Improve DPL's sorting behavior for table columns that are nearly numeric.
Introduce a new keyword, tablesortmethod, with values 'standard'
(the default, which preserves DPL's existing behavior) and 'natural'
(which uses natsort() instead of asort()).
Example: 103, 103-104, 100, 99, 105
Original sorting behavior: 100, 103, 103-104, 99, 105
New (natural) sort behavior: 99, 100, 103, 103-104, 105
* satisfy static analyzer
2021-09-15 19:06:51 -06:00
Universal Omega
b1100fef92
Fix "Trying to access array offset on value of type null" ( #36 )
2021-05-30 12:44:40 -06:00
Universal Omega
eb6be85376
Replace removed wgContLang ( #34 )
2021-05-30 12:33:21 -06:00
Universal Omega
92976fef31
Fix default for cacheperiod ( #30 )
2021-04-30 20:49:24 -06:00
Universal Omega
fbd18eac88
Issue #19 : Fix "Trying to access array offset on value of type null" ( #23 )
2021-03-23 17:47:30 -06:00
Universal Omega
f138659873
Move script to maintenance directory, rename, and re-namespace ( #21 )
...
* Move script to maintenance directory, rename, and re-namespace
2021-03-16 16:39:18 -06:00
Universal Omega
e3985e57ef
cleanup
2021-02-22 17:06:29 -07:00
Universal Omega
12ae20b861
Fix phpcs issues ( #18 )
2021-02-22 16:48:01 -07:00
Universal Omega
56accee512
rename directory, 'classes' to 'includes' ( #17 )
...
* rename classes to includes
* Rename classes
2021-02-22 16:37:14 -07:00