User Details
- User Since
- Nov 29 2014, 10:11 AM (326 w, 6 h)
- Availability
- Available
- LDAP User
- Alexander Mashin
- MediaWiki User
- Alex Mashin [ Global Accounts ]
Dec 19 2020
Closing this task as, most probaly, resolved during the recent refactoring.
Dec 15 2020
@Platinops, you can upgrade and check.
Dec 14 2020
Dec 12 2020
Dec 11 2020
Dec 7 2020
Does the error persist after updating *ExternalData*?
@Marquerose, after updating *ExternalData*, is there still an error?
Nov 29 2020
It seems that TSRMLS_C, TSRMLS_DC and TSRMLS_CC are not used under PHP 8.0 and have to be redefined as empty, if the extension is built for PHP 8.0. See https://github.com/Imagick/imagick/pull/334/commits.
Nov 25 2020
Nov 20 2020
Sep 22 2020
Sep 18 2020
Somebody please review the patchset. It corrects a bug.
Sep 17 2020
And the security review isn't likely to happen any time soon?
Is the extension still maintained?
Sep 14 2020
Please review the change https://gerrit.wikimedia.org/r/626884.
Sep 13 2020
Sep 8 2020
Aug 31 2020
Cannot reproduce. See https://traditio.wiki/Project:Test/ED/2equals.
Aug 17 2020
Could anybody review the change https://gerrit.wikimedia.org/r/620525?
Aug 13 2020
Aug 12 2020
Aug 11 2020
To enable ModgoDB under PHP 7.4, mongodb extension should be enabled (sudo apt install php-mongodb && sudo phpenmod mongodb; and also mongodb library should be installed with Composer: composer require mongodb/mongodb "^1.6.0" (this will be necessary until bug T259743 is resolved).
Aug 10 2020
Aug 6 2020
Can automated tests read extension.json's requires.platform section and add to the testing environment whatever is missing?
Aug 5 2020
Jul 31 2020
Jul 26 2020
I'll try to implement S for English ordinals, for the time being, and make it overloadable.
Why not jS (see https://www.php.net/manual/en/function.date.php)?
Jul 17 2020
Jul 16 2020
It seems a strange idea to me. Changes in MediaWiki or extensions codebase (per @gh87), Lua modules, templates and pages with Semantic MediaWiki annotations do not propagate themselves along dependencies in realtime; and neither is even the parser cache invalidation.
Jul 11 2020
Jul 10 2020
Jul 9 2020
Will adding |ignore regex parameter to {{#get_web_data:}} help? For comments starting wish hashes, set |ignore regex=/#.*$/m.
Jul 8 2020
Can the bug's author or anybody else share connection settings for LocalSettings.php that allow to connect to a publically accessible MongoDB base?
Jul 5 2020
Jul 4 2020
Do you want to pass the key in an HTTP header?
Jul 3 2020
Have you tried to curl Special:GetData/Fruits_data from your webserver's console?
Shouldn't this be closed as resolved?
Jul 2 2020
Jun 28 2020
Jun 27 2020
Jun 26 2020
Examples of __time usage:
- https://traditio.wiki/Project:Test/ED/XML/XPath (the Retrieved line),
- https://traditio.wiki/WikiApiary (the lines at the bottom of the two collapsible sections of the gray infobox).
Jun 21 2020
Thank you, @Reedy, I have managed, though with great difficulty, to re-synchronise REL1_34 with it origin.
Jun 11 2020
Jun 10 2020
Jun 9 2020
Jun 6 2020
Corrected the patch per Yaron Koren's review.
Jun 5 2020
Mar 16 2020
I did it in the hope that this issue would be resolved. The code fragment to which you referred still doesn't explain to me why namespace constants defined in some extensions are not available in LocalSettings.php while others are (like SMW_NS_PROPERTY).
Mar 14 2020
I applied the last patch manually, and the maintenance script started to work.
No, when I found out the absence of NS_MODULE, I had to switch to:
if (defined ('NS_MODULE')) { $wgNamespaceProtection [NS_MODULE] = ['editmodule']; } else { $wgNamespaceProtection [828] = ['editmodule']; }
So, I eventually had to do basically what you said.
Mar 13 2020
Feb 12 2020
Feb 9 2020
Feb 8 2020
Perhaps, wikilinks should again be parsed before external links?
Feb 2 2020
For the time being, I replaced $wgUrlProtocols [] = '/'; with $wgUrlProtocols [] = $wgScriptPath; to achieve the desired effect, although I am not yet sure whether that has broken something else.