Page MenuHomePhabricator
Feed Advanced Search

Mar 29 2021

nyemini added a comment to T217508: Make CodeEditor available in modules that are subpages of a user page.

You can actually use user:[user]/Module:foo to test Modules while developing them using the https://en.m.wikipedia.org/wiki/Special:TemplateSandbox

Mar 29 2021, 8:33 AM · Patch-For-Review, Scribunto, CodeEditor

Oct 3 2020

nyemini added a comment to T219358: Trust user added Certificates Authorities(CAs) on Android 7 and beyond.

Amm, actually, the PR mentioned above has been merged. So declined status isn't appropriate:)
I'm sorry I forgot to notify here.

Oct 3 2020, 5:36 PM · Wikipedia-Android-App-Backlog, Android-app-Bugs

Mar 7 2020

Pppery awarded T217508: Make CodeEditor available in modules that are subpages of a user page a Like token.
Mar 7 2020, 9:42 PM · Patch-For-Review, Scribunto, CodeEditor

Apr 6 2019

nyemini added a comment to T217508: Make CodeEditor available in modules that are subpages of a user page.

I sent a patch ( https://gerrit.wikimedia.org/r/#/c/mediawiki/extensions/Scribunto/+/501940/ )
using Gerrit Patch Uploader (wikitech account creating is currently disabled).

Apr 6 2019, 6:54 PM · Patch-For-Review, Scribunto, CodeEditor

Apr 5 2019

nyemini added a comment to T220182: Include the extracted intro of a page using parser function.

Thank you!
It seems to solve my problem. There is a question however wheter or not it should be Parser function.

Apr 5 2019, 3:16 PM · ParserFunctions
nyemini updated the task description for T220182: Include the extracted intro of a page using parser function.
Apr 5 2019, 9:21 AM · ParserFunctions
nyemini created T220182: Include the extracted intro of a page using parser function.
Apr 5 2019, 9:18 AM · ParserFunctions

Mar 27 2019

nyemini added a comment to T219358: Trust user added Certificates Authorities(CAs) on Android 7 and beyond.

I have submited a pull request https://github.com/wikimedia/apps-android-wikipedia/pull/123.

Mar 27 2019, 10:41 PM · Wikipedia-Android-App-Backlog, Android-app-Bugs
nyemini renamed T219358: Trust user added Certificates Authorities(CAs) on Android 7 and beyond from Trust user added Certificates Authorities(CAs) to Trust user added Certificates Authorities(CAs) on Android 7 and beyond.
Mar 27 2019, 10:20 AM · Wikipedia-Android-App-Backlog, Android-app-Bugs
nyemini added a comment to T219358: Trust user added Certificates Authorities(CAs) on Android 7 and beyond.

Acctually I have already implemented that solution and it works great! I'll be happy to contribute it to the github repo, but as I read I should wait until it will get out of open tasks/needs triage category, am I right?

Mar 27 2019, 9:49 AM · Wikipedia-Android-App-Backlog, Android-app-Bugs
nyemini created T219358: Trust user added Certificates Authorities(CAs) on Android 7 and beyond.
Mar 27 2019, 9:45 AM · Wikipedia-Android-App-Backlog, Android-app-Bugs

Mar 20 2019

nyemini added a comment to T217508: Make CodeEditor available in modules that are subpages of a user page.

Well, I posted a possible solution.

Mar 20 2019, 10:24 AM · Patch-For-Review, Scribunto, CodeEditor

Mar 9 2019

nyemini added a comment to T217508: Make CodeEditor available in modules that are subpages of a user page.

Well, I checked it a bit and discovered that the decision whether a page is lua is in the scribunto extension in /includes/common/Hooks.php
in the function: contentHandlerDefaultModelFor

public static function contentHandlerDefaultModelFor( Title $title, &$model ) {
	if ( $model === 'sanitized-css' ) {
		// Let TemplateStyles override Scribunto
		return true;
	}
	if ( $title->getNamespace() == NS_MODULE && !Scribunto::isDocPage( $title ) ) {
		$model = CONTENT_MODEL_SCRIBUNTO;
		return true;
	}
	return true;
}

actually in my version of mediawiki(1.32.0) is

public static function contentHandlerDefaultModelFor( Title $title, &$model ) {
	if ( $title->getNamespace() == NS_MODULE && !Scribunto::isDocPage( $title ) ) {
		$model = CONTENT_MODEL_SCRIBUNTO;
		return false;
	}
	return true;
}
Mar 9 2019, 6:23 PM · Patch-For-Review, Scribunto, CodeEditor

Mar 8 2019

Dalba awarded T217508: Make CodeEditor available in modules that are subpages of a user page a Like token.
Mar 8 2019, 2:11 PM · Patch-For-Review, Scribunto, CodeEditor

Mar 3 2019

nyemini added a project to T217508: Make CodeEditor available in modules that are subpages of a user page: Scribunto.

maybe scribunto is related too.

Mar 3 2019, 1:43 PM · Patch-For-Review, Scribunto, CodeEditor
nyemini created T217508: Make CodeEditor available in modules that are subpages of a user page.
Mar 3 2019, 1:31 PM · Patch-For-Review, Scribunto, CodeEditor

Oct 30 2018

nyemini added a comment to T156041: Page Previews should be able to show page fragments (sections of pages).

I'm sorry, I'm new here, but how things are usually going here?
I mean, how the decisions are made and who does the work of writing/fixing the code of mediawiki extensions?

Oct 30 2018, 8:51 PM · Product-Infrastructure-Team-Backlog-Deprecated, Page-Previews
nyemini added a comment to T156041: Page Previews should be able to show page fragments (sections of pages).

Isn't it possible to get the wikicode of specific section and render just it?
like when you edit a specific section.

Oct 30 2018, 10:54 AM · Product-Infrastructure-Team-Backlog-Deprecated, Page-Previews

Oct 26 2018

nyemini created T208041: preview of link to specific section in a page.
Oct 26 2018, 12:08 PM · Page-Previews