Nikerabbit has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/315642

Change subject: Cross-sync docs with MLEB wiki page
......................................................................

Cross-sync docs with MLEB wiki page

Bug: T146477
Bug: T50452
Change-Id: I8e424142e5a0e0e2fe70ee9025911017d7c5f579
---
M melange/INSTALL.MediaWikiLanguageExtensionBundle
1 file changed, 26 insertions(+), 31 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/translatewiki 
refs/changes/42/315642/1

diff --git a/melange/INSTALL.MediaWikiLanguageExtensionBundle 
b/melange/INSTALL.MediaWikiLanguageExtensionBundle
index 9ac2b38..1fde96a 100644
--- a/melange/INSTALL.MediaWikiLanguageExtensionBundle
+++ b/melange/INSTALL.MediaWikiLanguageExtensionBundle
@@ -1,26 +1,30 @@
 == Installation ==
 
-=== Layout: ./mediawiki/extensions/{A,B,C} ===
+=== extensions in subdirectory ===
 
-Go to mediawiki directory and extract the release file:
+If your directory layout looks like this:
+ ./mediawiki/extensions/{A,B,C}
+go to mediawiki directory and extract the release file:
  tar xjf MediaWikiLanguageExtensionBundle-{{/latest}}.tar.bz2
 
-Your extension variable is
+The variable you have to add to your LocalSettings.php before the 
configuration below is:
  $EXT = "$IP/extensions";
 
-=== Layout: ./mediawiki/ ./extensions/{A,B,C} ===
+=== extensions in top-level directory ===
 
-Go to common parent directory and extract the release file:
+If your directory layout looks like this:
+ ./mediawiki/
+ ./extensions/{A,B,C}
+go to common parent directory and extract the release file:
  tar xjf MediaWikiLanguageExtensionBundle-{{/latest}}.tar.bz2
 
-Your extension variables are:
+The variables you have to add to your LocalSettings.php before the 
configuration below is:
  $EXT = "$IP/../extensions";
  $wgExtensionAssetsPath = "{$wgScriptPath}/../extensions";
 
 === Add/update your LocalSettings.php ===
-Near the end, place the config lines given above followed by this:
+Near the end, you have to place the configuration lines given above (pick from 
one of the two sections) followed by this:
 
-<syntaxhighlight lang=php>
 wfLoadExtension( 'Babel' );
 
 wfLoadExtension( 'cldr' );
@@ -30,7 +34,7 @@
 $wgCCUserFilter = false;
 $wgDefaultUserOptions['usenewrc'] = 1;
 
-wfLoadExtensions( 'LocalisationUpdate' );
+wfLoadExtension( 'LocalisationUpdate' );
 $wgLocalisationUpdateDirectory = "$IP/cache";
 
 require_once "$EXT/Translate/Translate.php";
@@ -44,31 +48,22 @@
 $wgExtraLanguageNames['qqq'] = 'Message documentation'; # No linguistic 
content. Used for documenting messages
 
 wfLoadExtension( 'UniversalLanguageSelector' );
-</syntaxhighlight>
 
 === Update database tables ===
-==== Commandline ====
-In the directory where your LocalSettings.php is located, run the following
-command:
+==== Command line ====
+In the directory where your LocalSettings.php is located, run the following 
command:
  php maintenance/update.php
 
-==== Webbrowser ====
-Go to example.com/mediawiki/mw-config/ by using your domain and path and rerun
-install.
+==== Web browser ====
+Go to example.com/mediawiki/mw-config/ by using your domain and path and rerun 
install.
 
-=== Configuring LocalisationUpdate ===
-1. Create a cache folder in the installation directory, and be sure the server
-has permissions to write on it.
+=== Configuring and using extensions ===
+See the respective extension documentation pages. Do note that 
LocalisationUpdate does nothing by
+default and needs additional configuration to be run periodically.
 
-2. If localization updates don't seem to come through, you may need to run,
- php maintenance/rebuildLocalisationCache.php --force
-
-3. Whenever you want to run an update, run,
- php extensions/LocalisationUpdate/update.php
-
-4. If you are on Unix like system, you should add LocalisationUpdate to
-crontab:
-
- crontab -e
- # Add the following line
- @daily php /path/to/your/wiki/extensions/LocalisationUpdate/update.php --quiet
+* https://www.mediawiki.org/wiki/Extension:Babel
+* https://www.mediawiki.org/wiki/Extension:CLDR
+* https://www.mediawiki.org/wiki/Extension:CleanChanges
+* https://www.mediawiki.org/wiki/Extension:LocalisationUpdate
+* https://www.mediawiki.org/wiki/Extension:UniversalLanguageSelector
+* https://www.mediawiki.org/wiki/Help:Extension:Translate

-- 
To view, visit https://gerrit.wikimedia.org/r/315642
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I8e424142e5a0e0e2fe70ee9025911017d7c5f579
Gerrit-PatchSet: 1
Gerrit-Project: translatewiki
Gerrit-Branch: master
Gerrit-Owner: Nikerabbit <niklas.laxst...@gmail.com>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to