Open main menu

Changes

1,589 bytes added ,  09:50, 11 May 2018
add brickimedia
</ol>
{{:Extensions wanted}}
 
== Extension Authors ==
Who authors MediaWiki extensions? Anyone can. These companies are some of the people authoring and supporting extensions
# [http://www.curseinc.com/company Curse Inc.]
# [https://www.mitre.org/ MITRE]
# [http://wiki.nasa.gov/ NASA]
# [https://eQuality-Tech.com eQuality Technology]
# [http://wikiworks.com/ WikiWorks]
# [http://hallowelt.com/en/home/ Hallo Welt!]
# [http://www.shoutwiki.com/wiki/Main_Page ShoutWiki]
# [https://github.com/Brickimedia/extensions Brickimedia project]
== See also ==
* [[Extensions_wanted]]
* [[MediaWiki/Bundles]]
* [[mw:Category:Extensions|Category:Extensions]]
== Notes on Installed Extensions ==
See [[Upgrade MediaWiki]] === Add Images ===An extension found at wikia (also called WikiaMiniUpload?), it allows you to add images from Flickr, the web, and those already uploaded to your local wiki. It also adds a new button to the editor (a feature lacking in the standard editor). Video and instructions at http://help.wikia.com/wiki/Help:Add_Images[[Features]]
=== DataTable2 ===
== Switch to using Git ==
Have an 'old' mediawiki instance running off un-versioned code that you want to convert over to git? Here's a script that can help you get going. Note: it will DELETE all directories in your current working directory if they are NOT already git-managed. Use only if you know what you're doing!! Use it from inside your extensions directory
 
<source lang="bash">
#!/bin/bash
release="REL1_27"
git_root="https://github.com/wikimedia/mediawiki"
git_extension_root="${git_root}-extensions-"
 
extension_dir=`pwd`
 
for f in *; do
if [ -d ${f} ]; then
# Will not run if no directories are available
echo $f
cd $f
# check for .git directory
if [ -d ".git" ]; then
git fetch
git checkout $release
else
cd $extension_dir
rm -rf ./${f}
# when $f == 'Bootstrap' we want to clone the following:
# https://github.com/wikimedia/mediawiki-extensions-Bootstrap.git
git clone "${git_extension_root}${f}.git"
cd $f
git checkout $release
fi
## add any composer managed dependencies
if [ -f "./composer.json" ]; then
composer update;
fi
# back to the extension directory
cd $extension_dir;
rename 's/mediawiki-extensions-//' mediawiki-extensions-*
fi
done
 
 
 
</source>
{{References}}
[[Category:Wiki]]
4,558

edits