thenets / docker-parsoid

Containerized MediaWiki parsoid service
MIT License
21 stars 17 forks source link

Parsoid 0.12 #16

Closed bperel closed 3 years ago

bperel commented 4 years ago

Hello,

Parsoid 0.12 was released on September 11th. Could you create a tag for this version?

Thanks in advance :-)

f-ewald commented 3 years ago

I created a pull request against this repo: https://github.com/thenets/docker-parsoid/pull/18

thenets commented 3 years ago

@bperel @f-ewald Hi! :) sorry for the big delay.

Version 0.12 is not using NodeJS anymore and doesn't need an external server. The new version is bundled with the Parsoid installation and you can enable it using the LocalSettings.php file.

Check the docs: https://www.mediawiki.org/wiki/Parsoid#Installation

Installation In MediaWiki 1.35 LTS Parsoid/PHP is included in the bundle and loaded automatically by Visual Editor. No configuration necessary if used on a single server.

If you are a developer working on 1.36, explicitly loading Parsoid is required since August 24, 2020 (the auto-load hack was removed in 1.36-wmf.6). Add to LocalSettings.php:

wfLoadExtension( 'Parsoid', 'vendor/wikimedia/parsoid/extension.json' ); This is expected to change for the release of 1.36.

I'll update the README.md file to notify anyone else.