International Dictionary of Marine Aids to Navigation:Configuration

From International Dictionary of Marine Aids to Navigation
Revision as of 00:26, 13 February 2009 by Oferiks (talk | contribs)
Jump to navigation Jump to search

This page contains an overview of how Mediawiki has been customized to suit the IALA Dictionary

Installed Plugins[edit]

CategoryTree

ParserFunctions

Changes to LocalSettings.PHP[edit]

Enable Uploads

$wgEnableUploads = true;

'Install the IALA Logo

$wgLogo = "$wgScriptPath/images/20080412_135pixels_high_IALA_Logo.jpg";

Install Parserfunctions Extension - needed for the Language template

require_once("$IP/extensions/ParserFunctions/ParserFunctions.php");

Enable Ajax which is needed to run the the Categorytree Extension

$wgUseAjax = true;

Install the CategoryTree Extension

require_once( 'extensions/CategoryTree/CategoryTree.php' );

Make sure that Anonymous users do not edit content and define other user permissions

$wgGroupPermissions['*' ]['edit'] = false;

$wgGroupPermissions['*' ]['createpage'] = false;

$wgGroupPermissions['*' ]['createtalk'] = false;

$wgGroupPermissions['*' ]['createaccount'] = false;

$wgGroupPermissions['user' ]['edit'] = false;

$wgGroupPermissions['user' ]['createpage'] = false;

$wgGroupPermissions['user' ]['createtalk'] = false;

$wgGroupPermissions['user' ]['createaccount'] = false;

$wgGroupPermissions['sysop' ]['edit'] = true;

$wgGroupPermissions['sysop' ]['createpage'] = true;

$wgGroupPermissions['sysop' ]['createtalk'] = true;

$wgGroupPermissions['sysop' ]['createaccount'] = true;


Uploaded Images[edit]

"20080412_135pixels_high_IALA_Logo.jpg"
"25px-Geographylogo.png"


Changes to Mediawiki:Sidebar[edit]

Full Page Name http://www.envoy.dk/MediaWiki/index.php5?title=MediaWiki:Sidebar

Original Content

   *  navigation
         o mainpage|mainpage-description
         o portal-url|portal
         o currentevents-url|currentevents
         o recentchanges-url|recentchanges
         o randompage-url|randompage
         o helppage|help 
   * SEARCH
   * TOOLBOX
   * LANGUAGES

New Content

   *  navigation
         o mainpage|mainpage-description
         o recentchanges-url|recentchanges
         o helppage|help 
   * SEARCH
   * TOOLBOX

Original Mediawiki Help on getting started using this Wiki[edit]

Consult the User's Guide for information on using the wiki software.