Install plugins
This commit is contained in:
parent
7547bc11df
commit
d4af5f4621
@ -4,8 +4,14 @@ ENV DEBIAN_FRONTEND="noninteractive"
|
||||
COPY ./config.json /tmp/config.json
|
||||
COPY ./build /tmp
|
||||
|
||||
RUN apt update && apt install --yes wget gpg \
|
||||
&& wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | gpg --dearmor -o /usr/share/keyrings/elasticsearch-keyring.gpg \
|
||||
&& echo "deb [signed-by=/usr/share/keyrings/elasticsearch-keyring.gpg] https://artifacts.elastic.co/packages/8.x/apt stable main" | tee /etc/apt/sources.list.d/elastic-8.x.list \
|
||||
&& apt update && apt install elasticsearch
|
||||
|
||||
RUN find /tmp/mediawiki_extensions -name "*.tar.gz" -exec sh -c 'tar -xzf {} -C /var/www/html/extensions' \; \
|
||||
&& find /tmp/mediawiki_skins -name "*.tar.gz" -exec sh -c 'tar -xzf {} -C /var/www/html/skins' \; \
|
||||
&& find /tmp/mediawiki_override -type f -exec php /tmp/scripts/config_placeholder_replace.php "/tmp/config.json" "{}" \; \
|
||||
&& mv /tmp/mediawiki_override/* /var/www/html \
|
||||
&& cp -R /tmp/mediawiki_override/* /var/www/html \
|
||||
&& chown www-data:www-data /var/www/html/extensions/ -R \
|
||||
&& rm -R /tmp/*
|
BIN
build/mediawiki_extensions/AdvancedSearch.tar.gz
Normal file
BIN
build/mediawiki_extensions/AdvancedSearch.tar.gz
Normal file
Binary file not shown.
BIN
build/mediawiki_extensions/CirrusSearch.tar.gz
Normal file
BIN
build/mediawiki_extensions/CirrusSearch.tar.gz
Normal file
Binary file not shown.
BIN
build/mediawiki_extensions/Elastica.tar.gz
Normal file
BIN
build/mediawiki_extensions/Elastica.tar.gz
Normal file
Binary file not shown.
Binary file not shown.
BIN
build/mediawiki_extensions/Mpdf.tar.gz
Normal file
BIN
build/mediawiki_extensions/Mpdf.tar.gz
Normal file
Binary file not shown.
BIN
build/mediawiki_extensions/PageImages.tar.gz
Normal file
BIN
build/mediawiki_extensions/PageImages.tar.gz
Normal file
Binary file not shown.
BIN
build/mediawiki_extensions/Popups.tar.gz
Normal file
BIN
build/mediawiki_extensions/Popups.tar.gz
Normal file
Binary file not shown.
BIN
build/mediawiki_extensions/TextExtracts.tar.gz
Normal file
BIN
build/mediawiki_extensions/TextExtracts.tar.gz
Normal file
Binary file not shown.
@ -163,22 +163,26 @@ $extensions = [
|
||||
// "CharInsert",
|
||||
// "TemplateStyles",
|
||||
"TimedMediaHandler",
|
||||
// "AdvancedSearch",
|
||||
// "RevisionSlider",
|
||||
// "Scribunto",
|
||||
// "Mpdf",
|
||||
"Scribunto",
|
||||
// "ExpandableContent",
|
||||
"MonacoEditor",
|
||||
// "Spoilers",
|
||||
// "AutoCreateCategoryPages",
|
||||
// "CiteThisPage",
|
||||
// "TextExtracts",
|
||||
// "TitleBlacklist",
|
||||
// "Disambiguator",
|
||||
"OATHAuth",
|
||||
// "EmbedVideo",
|
||||
"UserFunctions",
|
||||
"DynamicSidebar",
|
||||
"Mpdf",
|
||||
"Elastica",
|
||||
"CirrusSearch",
|
||||
"AdvancedSearch",
|
||||
"PageImages",
|
||||
"TextExtracts",
|
||||
"Popups",
|
||||
];
|
||||
foreach($extensions as $extension){
|
||||
$json_file = "$wgExtensionDirectory/$extension/extension.json";
|
||||
@ -190,11 +194,13 @@ foreach($extensions as $extension){
|
||||
}
|
||||
// END: load extensions
|
||||
|
||||
// $wgScribuntoDefaultEngine = 'luastandalone';
|
||||
$wgScribuntoDefaultEngine = 'luastandalone';
|
||||
// $wgMaxShellMemory = 204800; # in KB
|
||||
// $wgScribuntoEngineConf['luastandalone']['memoryLimit'] = 209715200; # bytes
|
||||
// $wgScribuntoEngineConf['luastandalone']['errorFile'] = "$IP/err.log";
|
||||
// $wgScribuntoEngineConf['luastandalone']['luaPath'] = '/usr/bin/lua5.1';
|
||||
$wgScribuntoUseGeSHi = true;
|
||||
$wgScribuntoUseCodeEditor = true;
|
||||
|
||||
// Hide user toolbar settings
|
||||
$wgHiddenPrefs[] = 'usebetatoolbar';
|
||||
@ -259,6 +265,9 @@ $wgUFAllowedNamespaces = [
|
||||
|
||||
$wgPFEnableStringFunctions = true;
|
||||
|
||||
//$wgMpdfTab = true;
|
||||
$wgMpdfToolboxLink = true;
|
||||
|
||||
// $wgObjectCaches['redis'] = [
|
||||
// 'class' => 'RedisBagOStuff',
|
||||
// 'servers' => [ '127.0.0.1:6379' ],
|
||||
|
56
build/mediawiki_override/extensions/AdvancedSearch/includes/SearchnamespaceTokenModule.php
Normal file
56
build/mediawiki_override/extensions/AdvancedSearch/includes/SearchnamespaceTokenModule.php
Normal file
@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
namespace AdvancedSearch;
|
||||
|
||||
use ResourceLoaderContext;
|
||||
use ResourceLoaderModule;
|
||||
use ResourceLoaderWikiModule;
|
||||
use Xml;
|
||||
|
||||
/**
|
||||
* ResourceLoader module providing the users "searchnamespace" token.
|
||||
*/
|
||||
class SearchnamespaceTokenModule extends ResourceLoaderWikiModule {
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
protected $origin = self::ORIGIN_CORE_INDIVIDUAL;
|
||||
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
protected $targets = [ 'desktop', 'mobile' ];
|
||||
|
||||
/**
|
||||
* @param ResourceLoaderContext $context
|
||||
*
|
||||
* @return string JavaScript code
|
||||
*/
|
||||
public function getScript( ResourceLoaderContext $context ) {
|
||||
$user = $context->getUserObj();
|
||||
// Use FILTER_NOMIN annotation to prevent needless minification and caching (T84960).
|
||||
return ResourceLoader::FILTER_NOMIN .
|
||||
Xml::encodeJsCall(
|
||||
'mw.user.tokens.set',
|
||||
[ 'searchnamespaceToken', $user->getEditToken( 'searchnamespace' ) ],
|
||||
(bool)ResourceLoader::inDebugMode()
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
public function supportsURLLoading() {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getGroup() {
|
||||
// Private modules can not be loaded as a dependency, only via OutputPage::addModules().
|
||||
return 'private';
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user