SEARCH
TOOLBOX
LANGUAGES
Create a book
Steeple wiki

Steeple wiki

From Steeple

Jump to: navigation, search

We should probably install the latest stable version, 1.13.2.

It would be good to have pretty urls, as in http://www.ict4e.net/wiki/Steeple_wiki . However, certain ways of doing pretty urls can break the collection extension.

Extensions:

The following should go into the LocalSettings.php

# User settings:
# http://www.mediawiki.org/wiki/Manual:$wgDefaultUserOptions
$wgDefaultUserOptions['numberheadings' ] = 1;
$wgDefaultUserOptions['enotifwatchlistpages'] = 1;
$wgDefaultUserOptions['enotifusertalkpages'] = 1;
$wgDefaultUserOptions['enotifminoredits'] = 1;
$wgDefaultUserOptions['justify'] = 1;
$wgDefaultUserOptions['imagesize'] = 0;
$wgDefaultUserOptions['thumbsize'] = 0;

$wgEnableEmail      = true;
$wgEnableUserEmail  = true;
$wgEmailConfirmToEdit = true;

$wgEnableUploads       = true;
$wgFileExtensions[] = 'pdf';
$wgNamespacesWithSubpages[NS_MAIN] = true;

The following variables

$wgEmergencyContact = "...";
$wgPasswordSender = "...";

should contain a mailing list that includes Bjoern, PeterR, and Ben.

Extensions all configured as standard, except for

require_once("$IP/extensions/Collection/Collection.php");
$wgCollectionFormats = array(
     'rl' => 'PDF',
     'odf' => 'ODT',
);

It would be good to do a regular page dump (perhaps also a mysql dump), as well as an export of all uploads, so that it's available in that way. (E.g. for offline caching.)

The license (in Bjoern'a view) should be at least CC-A-NC-SA.