X-Git-Url: https://iankelling.org/git/?p=mediawiki-setup;a=blobdiff_plain;f=mw-setup-script;fp=mw-setup-script;h=599766800be8cc5fd03f44723c68fec04092a8ee;hp=754c53664815c9afa579de61af919270c66b06c4;hb=36be2f22108098545ff35f189db1637102febcdb;hpb=26831bf52ab8a90dc2a3556ec91aa010dd93c530 diff --git a/mw-setup-script b/mw-setup-script index 754c536..5997668 100755 --- a/mw-setup-script +++ b/mw-setup-script @@ -88,7 +88,7 @@ if isdeb; then # main reference: # https://www.mediawiki.org/wiki/Manual:Running_MediaWiki_on_Ubuntu apt-get update - DEBIAN_FRONTEND=noninteractive apt-get install -y imagemagick + DEBIAN_FRONTEND=noninteractive apt-get install -y imagemagick curl if apt-get install -s mediawiki &>/dev/null; then # mediawiki is packaged in jessie backports. DEBIAN_FRONTEND=noninteractive apt-get -y install php5-apcu mediawiki @@ -149,6 +149,8 @@ fi # git branch -r git checkout -f origin/$mw_branch git clean -ffxd +# add some librejs support: +curl "https://iankelling.org/git/?p=mediawiki-librejs-patch;a=blob_plain;f=mediawiki-librejs-patch;hb=HEAD" | bash # Get the php libraries wmf uses. Based on: # https://www.mediawiki.org/wiki/Download_from_Git#Fetch_external_libraries if [[ ! -e vendor/.git ]]; then @@ -229,6 +231,7 @@ teeu $mwc< # @@ -242,9 +245,13 @@ $wgArticlePath = "/wiki/$1"; $wgNoFollowLinks = false; # Allow user customization. $wgAllowUserCss = true; - # use imagemagick over GD $wgUseImageMagick = true; +# manual says this is not production ready, I think that is mostly +# because they are using MobileFrontend extension instead, which gives +# an even cleaner more minimal view, I plan to try setting it up +# sometime but this seems like a very nice improvement for now. +$wgVectorResponsive = true; EOF @@ -280,8 +287,8 @@ git fetch ian-kelling git checkout ian-kelling/${mw_branch}-toolbox-in-dropdown # # -mw-ext Cite CiteThisPage CSS Echo Gadgets ImageMap Interwiki News \ - Nuke ParserFunctions Poem SyntaxHighlight_GeSHi Variables +mw-ext Cite CiteThisPage CheckUser CSS Echo Gadgets ImageMap Interwiki News \ + Nuke ParserFunctions Poem Renameuser SyntaxHighlight_GeSHi Variables # # mw-ext AntiSpoof @@ -289,12 +296,6 @@ mw-ext AntiSpoof sudo -u $apache_user php $mw/extensions/AntiSpoof/maintenance/batchAntiSpoof.php # # -mw-ext CheckUser -if [[ -e $mw/extensions/CheckUser/install.php ]]; then - sudo -u $apache_user php $mw/extensions/CheckUser/install.php; sleep 1 -fi -# -# if isdeb; then apt-get -y install php-wikidiff2 teeu $mwc <<'EOF' @@ -544,22 +545,31 @@ s=/etc/cron.daily/mediawiki_update dd of=$s<<'EOF' #!/bin/bash source ~/mw_vars -cd $mw -for dir in extensions/* skins/* $mw; do - [[ -d $dir ]] || continue +update() { + dir=$1 + cd $mw + [[ -d $dir ]] || return 1 cd $dir branch=$(git describe --all) branch=${branch#remotes/} git fetch --all -q new_head=$(git rev-parse $branch) log=$(git log HEAD..$new_head) - if [[ $log ]]; then - pwd - echo "$log" + if [[ ! $log ]]; then + return 1 fi - git checkout -q $new_head + pwd + echo "$log" + git checkout -qf $new_head cd $mw + return 0 +} +for dir in extensions/* skins/* vendor; do + update "$dir" ||: done +if update .; then + curl "https://iankelling.org/git/?p=mediawiki-librejs-patch;a=blob_plain;f=mediawiki-librejs-patch;hb=HEAD" | bash +fi php $mw/maintenance/update.php -q --quick EOF