Semantic Scribunto (a.k.a. SSC) is a Semantic Mediawiki extension to provide native support for the Scribunto extension.
The recommended way to install Semantic Scribunto is using Composer with MediaWiki's built-in support for Composer.
Note that the required extensions Semantic MediaWiki and Scribunto must be installed first according to the installation instructions provided.
Change to the base directory of your MediaWiki installation. If you do not have a "composer.local.json" file yet, create one and add the following content to it:
{
"require": {
"mediawiki/semantic-scribunto": "~2.3"
}
}
If you already have a "composer.local.json" file add the following line to the end of the "require" section in your file:
"mediawiki/semantic-scribunto": "~2.3"
Remember to add a comma to the end of the preceding line in this section.
Run the following command in your shell:
php composer.phar update --no-dev
Note if you have Git installed on your system add the --prefer-source
flag to the above command.
Add the following line to the end of your "LocalSettings.php" file:
wfLoadExtension( 'SemanticScribunto' );
A description of the mw.smw
library functions can be found here.
If you want to contribute work to the project please subscribe to the developers mailing list and have a look at the contribution guideline.
This extension provides unit and integration tests that are run by a continues integration platform
but can also be executed using the composer phpunit
command from the extension base directory that will
run all tests. In order to run only a specific test suit, the following commands are provided for convenience:
composer unit
to run all unit testscomposer integration
to run all integration tests (which requires an active MediaWiki, DB connection)