User Details
- User Since
- Nov 29 2014, 10:11 AM (575 w, 3 d)
- Availability
- Available
- LDAP User
- Unknown
- MediaWiki User
- Alex Mashin [ Global Accounts ]
Nov 9 2025
Please do something on this.
Nov 7 2025
Are you sure that there is a relation between git clone failing on the command line for code checkout, and the web interface in a browser asking you to log in for code browsing?
https://phabricator.wikimedia.org/diffusion/NLSP/new-lexeme-special-page.git is not cloneable, because it requires user login to Phabricator to access:
/usr/bin/git clone --recurse-submodules https://gerrit.wikimedia.org/r/mediawiki/extensions
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikibaseLexeme is not found.
Oct 30 2025
Can it at all work with Parsoid's non-linear parsing?
Oct 25 2025
In this solution, SVG is treated like a monolith. Perhaps, it structure could be represented by nested Lua tables corresponging to nested SVG elements?
Oct 12 2025
Oct 6 2025
I've been informed that the bug is a duplicate of T389506; and a patch has been merged: https://gerrit.wikimedia.org/r/c/mediawiki/skins/Metrolook/+/1134366; yet it hasn't made it to REL1_43: https://gerrit.wikimedia.org/r/c/mediawiki/skins/Metrolook/+/1193895 has not been merged.
Oct 4 2025
Sep 29 2025
And graphviz.
Have I mentioned https://github.com/alex-mashin/InlineSVG?
I don't think that allowing {{#invoke:}}d Lua functions to have side effects, that is, effects other than their return injected into wikitext, is a good idea.
Jun 10 2025
Jun 8 2025
Jun 7 2025
May 22 2025
Nov 12 2024
Now it is "composer/installers": "^2|^1.0.1", so, I think, resolved.
After enabling Tag emulation mode for any connector, moving some features from the EDConnectorExe to EDConnectorBase class and adding presets, with Dockerfiles docker-compose.yml, the task, for which this feature request was created, — that is, moving server-side programs, especially, multimedia, to microservices — is, more or less, fulfilled; although not literally with ShellBox, which I did not like, when I studied it.
Oct 2 2024
Mar 29 2024
With ultra-short URL, the webmaster has to make sure that the search engines, Let's Encrypt, etc. receive files, rather than wiki pages, when requesting robots.txt, .sitemap, etc. That has to be done by the frontend web server.
The workaround is this:
$wgHooks ['GetLocalURL'] [] = function (Title $title, string &$url, string $_): bool {
if (mb_substr ($title->getText (), 0, 1) === '/'
&& !strpos ($url, '.', 2)
&& $title->getNamespace () === 0
&& !MWNamespace::hasSubpages (0) // -- the same as $title->getNamespace () but faster
) {
$url = '/.' . $url;
}
return true;
};Mar 19 2024
Feb 24 2024
Bump.
Is there a reason not to submit a patch, summarising the improvements above, immediately?
I did a simple test, though not in MediaWiki environment, and found out that simply
return value:gsub( '\n[ \t]+%*', '\n*' )
without any string.find() will be about 27% faster.
Feb 21 2024
See LuaSpecials.
Feb 15 2024
Feb 14 2024
Feb 7 2024
@Tgr, could you please approve the change, or reject it, or send it to someone else for reviewing?
Feb 6 2024
Jan 29 2024
Bump.
Jan 19 2024
@Kghbln, have you managed to show a fragment of a CSV-file?
Jan 17 2024
With start line > 1 CSV with headers will not work. start line and end line are applied to the file before it is parsed and header line is taken into account. You can use header lines = 1 to guarantee that the headers are included, and, therefore, columns have correct names.
Dec 30 2023
require 'Module:…' and mw.loadData '…' clauses are effectively links.
Dec 29 2023
Dec 27 2023
Dec 8 2023
Have you tried Page Exchange?
Dec 6 2023
Dec 3 2023
Nov 26 2023
@Sugarbravo, does it work now?
Nov 15 2023
Waiting till the 24th of November.
Nov 14 2023
Already fixed in January.
Nov 13 2023
Nov 12 2023
@Sugarbravo, have you updated the extension and made sure that JOINs work, so that this task can be closed?
Nov 11 2023
Nov 10 2023
Nov 8 2023
I have updated my patch so that it reproduces the old behaviour of join on. Please note that, in mySQL or MariaDB, that join will always be an inner join, since there is no way to set the type of join in this syntax.
Nov 2 2023
I have never heard that a table used in a query could be omitted from the from clause, and that mentioning it in the join on would be enough. However, I have submitted a patch allowing this.
What is the database engine, to which {{#get_db_data:}} connects?
Sep 21 2023
Sep 20 2023
Aug 26 2023
Aug 25 2023
Aug 21 2023
Jul 27 2023
Jul 19 2023
Jul 18 2023
May 11 2023
I would like to note that it is already doable with External Data.
May 9 2023
May 8 2023
@Platinops, please upgrade and see if the patch has helped.
May 7 2023
Apr 19 2023
Why don't you enable inline SVG, which can be generated by whatever mechanism that is available in MediaWiki, including Scribunto, templates or parser functions?