Extension talk:StructuredDiscussions

About this board

Any questions about the StructuredDiscussions extension.

Some older comments can be found at Extension talk:Structured Discussions/Archive. See also Talk:Structured Discussions.

VisualEditor does not work on Flow (Structured discussions) talk pages.

26
Summary by Tinss
  1. In LocalSettings.php, explicitely load Parsoid like so: wfLoadExtension( 'Parsoid', "vendor/wikimedia/parsoid/extension.json" );
  2. Apply the patch
Fokebox (talkcontribs)

After upgrading from 1.38.4 to 1.39.0 VisualEditir does not work at Flow (Structered discussions) talk pages having following error:

[Y48AWn@IyD2bEpG6yTCgxAAAAgY] Exception caught: Conversion from 'html' to 'wikitext' was requested, but core's Parser only supports 'wikitext' to 'html' conversion

Previously I had such problem but the patch helped to resolve the problem, but now it doesn't help.

Any ideas how to resolve the problem?

Tinss (talkcontribs)

Damn ! I'm definitely looking forward to a solution as well. Did you try asking the developers of the patch ?

Flow works properly on this wiki and it's 1.40.0. Is there a way to access the code base to see what fix they applied ?

Marx.FelipeForte (talkcontribs)

I can confirm the same issue, the patch mentioned does not work anymore. Working with version 1.39.1 and not even the REL1_39 on GitHub is working.

@Tinss: Flow works properly on this wiki and it's 1.40.0. Is there a way to access the code base to see what fix they applied ?

It says this MediaWiki instance is running the version 1.40.0-wmf.20. So in theory, the version listed as such on the extension's GitHub is the one featured here. If you happen to find anything, please share here with us, because apparently we can't expect the developers to prioritize the users of MediaWiki as much as they prioritize Wikimedia's projects.

It's been more than 2 years of this issue, still unresolved for most of us, except, well, Wikimedia.

Tinss (talkcontribs)

Is there a phabricator ticket for the issue ? Maybe we could try kindly asking the VE development team to look into it.

Flow is indeed very popular in enterprise MW.

Fokebox (talkcontribs)

I haven't made tickets for the issue at phabricator. I would appreciate if there will be one.

Marx.FelipeForte (talkcontribs)
Fokebox (talkcontribs)

Thank you! Hope there will be a solution of the issue soon.

Marx.FelipeForte (talkcontribs)

We received a reply, more than a month later basically confirming my suspicions related to this extension developers' priorities:

apparently we can't expect the developers to prioritize the users of MediaWiki as much as they prioritize Wikimedia's projects.

This turned out to be true, as can be seen by the comment of this developer on the issue:

I'm afraid we don't offer much in the way of StructuredDiscussions maintenance/support, other than fixing issues that are highly disruptive on Wikimedia wikis. [...] Also, given that StructuredDiscussions does work on Wikimedia wikis, this seems an issue with the configuration, not the extension; the linked patch is about supporting a zero-config setup, but you probably wouldn't need a patch if it is correctly confiugred.

So what they are saying is – it's the fault of the users, not the developers for not documenting the configuration needed, or for focusing exclusively on Wikimedia projects.

So yeah, we can only rely on the users to fix that. If any of you ever find anything, let us know, I'll certainly do the same.

Tinss (talkcontribs)

I was sort of expecting that kind of reply. Maybe the original author of the patch (@Lens0021) could lend us a hand ?

Lens0021 (talkcontribs)

Unfortunately, I am not using zero-config VisualEditor anymore (or never). I am sorry I've forgotten what was the issue after that patch merged. Here are my current configuration and the comment I've written.

# Disable "zero configuration" VisualEditor
# zero-conf VisualEditor assumes that all the services are served as the same host. ('/' for
# MediaWiki, '/rest.php/<domain>/v3/' for Parsoid and '/restbase/<domain>/v1/' for RESTBase)
# It is not our use case, we are serving those services behind the orchestration tool, Docker or
# Nomad and a variety of addresses are used.
$wgVisualEditorParsoidAutoConfig = false;

$wgVirtualRestConfig = [
	'modules' => [
		'parsoid' => [
			'url' => 'http://' . ( getenv( 'NOMAD_UPSTREAM_ADDR_http' ) ?: 'http:8080' ) . '/rest.php',
		],
		'restbase' => [
			'url' => 'http://' . ( getenv( 'NOMAD_UPSTREAM_ADDR_restbase' ) ?: 'restbase:7231' ),
			# https://github.com/femiwiki/femiwiki/issues/266
			'domain' => 'femiwiki.com',
		],
	],
	'global' => [
		'domain' => 'femiwiki.com',
		'restbaseCompat' => true,
		'forwardCookies' => false,
	],
];

(original code:

https://github.com/femiwiki/docker-mediawiki/blob/408fbdf64fbcbc02c4ca96671f97b40fab7b5701/configs/LocalSettings.php#L357-L380)

Fokebox (talkcontribs)

Does anybody resolved the issue or not?

Tinss (talkcontribs)

Not on my end. As I do not have MW 1.39 deployed on my test setup, could you give a look at the Parsoid and Flow configs used by Wikimedia for this wiki to see if replicating them fixes the issue ?

It appears that Flow is not finding Parsoid so this points to a configuration issue indeed.

Uvas magicas (talkcontribs)
Tinss (talkcontribs)

This is the patch that used to work but no longer does.

Fokebox (talkcontribs)

No idea how to implement that. For now I am stuck - wanted to update to 1.39.3, but faced with problem. But if I have success, then I want to implement DiscussionTools extension, which, as I understand will be developed. And if I am not mistake Structured discussions are no longer supported, right?

Tinss (talkcontribs)

StructuredDiscussions is only getting security fixes. Other type of support has halted. I suspect support will be entirely dropped, but not until there is a migration tool because some wikis (this one at least) are still using StructuredDiscussions.

@Fokebox, did you get a chance to replicate these configs on your installation ? The bug here does seem to be related to the zero-config setup.

Uvas magicas (talkcontribs)

@Tinss, @Fokebox I don't know if you saw my complete thread, but there, in addition to the patch, is also a summary of the variable:

$wgVirtualRestConfig['modules']['parsoid']['url']

I tried this to connect parsoid php to visualeditor and from visualeditor to flow, it really worked for me, I don't know if you have tried this configuration

Fokebox (talkcontribs)

Well, I decided to drop off the extension as it is not maintained no longer and change it to DuscussionTools. I have not too many Flow pages to be changed, so I decided to resolve the issue this way.

Marx.FelipeForte (talkcontribs)

@Fokebox,@Tinss I was finally able to make it work, by the glory of Lenin. Here is what I had to put in the LocalSettings.php:

wfLoadExtension( 'Parsoid', "vendor/wikimedia/parsoid/extension.json" );
$wgVirtualRestConfig['modules']['parsoid'] = [
    'url' => $wgServer . '/rest.php',
];

I followed the instructions of the Parsoid/PHP setup. It recommends to manually declare Parsoid as an extension and to configure it, then just override the url parameter of $wgVirtualRestConfig['modules']['parsoid'] with your situation.

It's where you access the rest.php from. If you input the rest.php location correctly in your url, it should return a JSON catching a 404 error. You should see the same thing as https://en.prolewiki.org/rest.php

The URL of access of the rest.php is what you should put in the url parameter of that configuration.

Tinss (talkcontribs)

Wow, thanks. Can't wait to try it.

MeneerWout (talkcontribs)

@Tinss this might interest you. I still had a problem when doing the above. The problem was we have a private wiki, so I should also forward cookies:

wfLoadExtension( 'Parsoid', "vendor/wikimedia/parsoid/extension.json" );
$wgVirtualRestConfig['modules']['parsoid'] = [
    'url' => $wgServer . '/rest.php',
    'forwardCookies' => true,
];

But doing only the following also worked for me:

wfLoadExtension( 'Parsoid', "$IP/vendor/wikimedia/parsoid/extension.json" );

(EDITED: Added $IP)

When also applying the patch everybody uses.

Tinss (talkcontribs)
Ryoya3 (talkcontribs)

In my environment, I had to add $IP/ and follow the code here to get the maintenance script to work.

Reply to "VisualEditor does not work on Flow (Structured discussions) talk pages."
Jamal22066 (talkcontribs)

Are there any reliable uninstall instructions? I commented out $wfLoadExtension for flow and now receive the following error:

[4a15dd98c1d00a2b8019936a] /mediawiki/index.php?title=Talk:Main_Page MWUnknownContentModelException from line 306 of C:\inetpub\wwwroot\epss-dev-mw01\mediawiki\includes\content\ContentHandler.php: The content model 'flow-board' is not registered on this wiki.

See https://www.mediawiki.org/wiki/Content_handlers to find out which extensions handle this content model.

Backtrace:

#0 C:\inetpub\wwwroot\epss-dev-mw01\mediawiki\includes\content\ContentHandler.php(243): ContentHandler::getForModelID(string)

#1 C:\inetpub\wwwroot\epss-dev-mw01\mediawiki\includes\MediaWiki.php(400): ContentHandler::getForTitle(Title)

#2 C:\inetpub\wwwroot\epss-dev-mw01\mediawiki\includes\MediaWiki.php(291): MediaWiki->initializeArticle()

#3 C:\inetpub\wwwroot\epss-dev-mw01\mediawiki\includes\MediaWiki.php(862): MediaWiki->performRequest()

#4 C:\inetpub\wwwroot\epss-dev-mw01\mediawiki\includes\MediaWiki.php(523): MediaWiki->main()

#5 C:\inetpub\wwwroot\epss-dev-mw01\mediawiki\index.php(43): MediaWiki->run()

#6 {main}

Do all the flow tables in the database need to be deleted as well?

Jamal22066 (talkcontribs)

Ran the following to fix the error:

UPDATE page SET page_content_model='wikitext' WHERE page_content_model='flow-board';

Joe Beaudoin Jr. Redux (talkcontribs)

Update: In addition to the above SQL update query, you may want to run the following as the database schema in MW has changed:

UPDATE content SET content_model='1' WHERE content_model='4';

NOTE: Make sure that "4" equals "flow-board" in your content_models table. If not, update the last content_model variable above with the proper identifying number.

And, as always, backup your database before doing anything!

Pppery (talkcontribs)
Reply to "Uninstall"
195.80.103.225 (talkcontribs)

I don't get the Parsoid installation requirement. Parsoid should be bundled since MW 1.35? I'm asking, because I'm unable to get it to work with VE.

Gota de agua (talkcontribs)

parsoid since 1.35 include the php vrsion into the core, in the version 1.40 of mediawiki works good without restbase

Reply to "Parsoid requirement"

MW 1.40 and StructuredDisscusion?

1
Kghbln (talkcontribs)

A thread on the mailing list that may be interesting. Probably beyond 1.40 since a community member shared a working configuration.

Reply to "MW 1.40 and StructuredDisscusion?"

Feature of Extension:StructuredDiscussions

6
Want (talkcontribs)

In header page is warning, which @KHarlan (WMF) copy from old page (2022-03-07 13:59:35). And @Pppery removed string "for now" (3:59:3). But I see, that is develop (changes in git repository) continued. Really "deployments have been suspended", or not?

KHarlan (WMF) (talkcontribs)

Deployments to new wikis are suspended. Bug fixes for critical issues continue to be merged and are deployed via the release train.

Want (talkcontribs)
Want (talkcontribs)
Tacsipacsi (talkcontribs)
Want (talkcontribs)

It's not usable for me, because my wiki not use VisualEditor, but I'm sure that there be someone who could use it. Thank you.

Reply to "Feature of Extension:StructuredDiscussions"

wrongly Enable StructuredDiscussions to my main page

2
Adugna.assefa (talkcontribs)

How can I disable it?

Tinss (talkcontribs)

The main page of your wiki ?

You need to revert the content model of the page to that it was. See Help:ChangeContentModel.

Does this help ?

Reply to "wrongly Enable StructuredDiscussions to my main page"
Summary by Tinss

Seach was experimental and has now been removed from the code base. Discussions are underway here to get it working again.

Bovlb (talkcontribs)

How do you search an archive of structured discussions?

Tinss (talkcontribs)

Hello,

There is a configuration parameter named $wgFlowSearchEnabled which defaults to false because it's is still experimental.

Sadly, integration with Elastic has been removed in some recent commits.

If you give it a go tell me about it because we could petition the dev team to put it back in.

Bovlb (talkcontribs)

Thanks. I'll start a discussion.

Tinss (talkcontribs)

Cool, please cc me or give me link here so I can subscribe.

Bovlb (talkcontribs)

Enable the visual editor on the mobile frontend

1
Tinss (talkcontribs)

In mobile mode, only the wikicode is available which is problematic as most users are not versed in wikicode edition. Below is a patch to enable the visual editor in mobile mode.

There is however one bug that I cannot solve: searching users to tag them does not work, the exact user name has to be entered.

In extension.json

Above "ext.flow.visualEditor":

"ext.flow.mobileVisualEditor": {
	"scripts": [
		"editor/editors/visualeditor/mw.flow.ve.Target.js",
		"editor/editors/visualeditor/mw.flow.ve.UserCache.js",
		"editor/editors/visualeditor/ui/inspectors/mw.flow.ve.ui.MentionInspector.js",
		"editor/editors/visualeditor/ui/tools/mw.flow.ve.ui.MentionInspectorTool.js",
		"editor/editors/visualeditor/ui/tools/mw.flow.ve.ui.MWEditModeTool.js",
		"editor/editors/visualeditor/ui/contextitem/mw.flow.ve.ui.MentionContextItem.js",
		"editor/editors/visualeditor/ui/widgets/mw.flow.ve.ui.MentionTargetInputWidget.js",
		"editor/editors/visualeditor/mw.flow.ve.CommandRegistry.js",
		"editor/editors/visualeditor/mw.flow.ve.SequenceRegistry.js"
	],
	"styles": [
		"editor/editors/visualeditor/mw.flow.ve.Target.less"
	],
	"dependencies": [
		"ext.visualEditor.core",
		"ext.visualEditor.core.mobile",
		"ext.visualEditor.mediawiki",
		"ext.visualEditor.mwwikitext",
		"ext.visualEditor.switching",
		"mediawiki.editfont.styles",
		"oojs-ui.styles.icons-editing-advanced",
		"ext.flow.visualEditor.icons",
		"mediawiki.api",
		"mediawiki.util"
	],
	"messages": [
		"flow-ve-mention-context-item-label",
		"flow-ve-mention-inspector-title",
		"flow-ve-mention-inspector-remove-label",
		"flow-ve-mention-inspector-invalid-user",
		"flow-ve-mention-placeholder",
		"flow-ve-mention-tool-title"
	],
	"targets": [
		"mobile"
	]
},

In "ext.flow.visualEditor.icons":

"targets": [
	"desktop",
	"mobile"
]

In extensions/Flow/modules/flow/ui/widgets/editor/mw.flow.ui.EditorWidget.js

Comment out !OO.ui.isMobile() in

mw.flow.ui.EditorWidget.static.isVisualEditorSupported = function () {
	/* global VisualEditorSupportCheck:false */
	return !!(
		//!OO.ui.isMobile() &&
		mw.loader.getState( 'ext.visualEditor.core' ) &&
		mw.user.options.get( 'flow-visualeditor' ) &&
		window.VisualEditorSupportCheck && VisualEditorSupportCheck()
	);
};


Replace line modules = [ 'ext.flow.visualEditor' ].concat(

with modules = [ OO.ui.isMobile() ? 'ext.flow.mobileVisualEditor' : 'ext.flow.visualEditor' ].concat(

Reply to "Enable the visual editor on the mobile frontend"
197.202.110.178 (talkcontribs)

Is Flow being discontinued next year?

Jdforrester (WMF) (talkcontribs)
Revansx (talkcontribs)

Are there any discussions about how to migrate to comment streams?

Jdforrester (WMF) (talkcontribs)
Tinss (talkcontribs)

How about migration to the new talk page system in use on the English Wikipedia?

Reply to "Flow"
SaltyMolaontheMoon (talkcontribs)

MediaWiki version 1.37.2

I have installed all dependencies and checked special:version to ensure all of them have been installed successfully. But it seems that Flow isn't applied. And no warning no error, just like I haven't installed Flow. I cant figure it out and really upset.

Is there any configuration to pay attention to? Thanks for any help.

Konodiol (talkcontribs)

Did you add $wgNamespaceContentModels[NS_TALK] = 'flow-board'; $wgNamespaceContentModels[NS_USER_TALK] = 'flow-board'; to your LocalSettings.php?

Reply to "Doesn't work"