Skip to content

Commit

Permalink
Add AddMessages and Auth_remoteuser, update core commit
Browse files Browse the repository at this point in the history
SEL-2025
  • Loading branch information
DanielWTQ committed Nov 17, 2024
1 parent 599ec28 commit e9e7149
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 14 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LABEL maintainers="[email protected],[email protected]"
LABEL org.opencontainers.image.source=https://github.com/WikiTeq/Taqasta

ENV MW_VERSION=REL1_43 \
MW_CORE_VERSION=1.43-alpha-3f9b466 \
MW_CORE_VERSION=1.43-alpha-8d8e568 \
WWW_ROOT=/var/www/mediawiki \
MW_HOME=/var/www/mediawiki/w \
MW_LOG=/var/log/mediawiki \
Expand Down Expand Up @@ -124,7 +124,7 @@ FROM base AS core
RUN set -x; \
git clone --depth 1 -b REL1_43 https://gerrit.wikimedia.org/r/mediawiki/core.git $MW_HOME \
&& cd $MW_HOME \
&& git checkout -q e9d784aec5311435c1894c5f4d31222be15a1ad8 \
&& git checkout -q 8d8e568f547c7b6d3b3132ef422e3ddad3c5a51d \
&& git submodule update --init --recursive

# Add Bootstrap to LocalSettings.php if the web installer added the Chameleon skin
Expand Down Expand Up @@ -686,6 +686,18 @@ RUN set -x; \

#### WikiTeq extensions ####

# A
RUN set -x; \
cd $MW_HOME/extensions \
# AddMessages
&& git clone --single-branch -b $MW_VERSION https://gerrit.wikimedia.org/r/mediawiki/extensions/AddMessages $MW_HOME/extensions/AddMessages \
&& cd $MW_HOME/extensions/AddMessages \
&& git checkout -q 2c2bf5f314ff8b1e822dc964597fb227cacb87ee \
# Auth_remoteuser
&& git clone --single-branch -b $MW_VERSION https://gerrit.wikimedia.org/r/mediawiki/extensions/Auth_remoteuser $MW_HOME/extensions/Auth_remoteuser \
&& cd $MW_HOME/extensions/Auth_remoteuser \
&& git checkout -q 0a27d7d0696495d56540c1045241b82fde9ebd4f

# B
RUN set -x; \
cd $MW_HOME/extensions \
Expand Down
2 changes: 2 additions & 0 deletions _sources/canasta/DockerSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,13 @@ function isEnvTrue( $name ): bool {
'SemanticMediaWiki', // keep it at the top to be enabled first, because some Semantic extension don't work in other case.
'AJAXPoll',
'AbuseFilter',
'AddMessages',
'AdminLinks',
'AdvancedSearch',
'AntiSpoof',
'ApprovedRevs',
'Arrays',
'Auth_remoteuser',
'BetaFeatures',
'Bootstrap',
'BootstrapComponents',
Expand Down

0 comments on commit e9e7149

Please sign in to comment.