Difference between revisions of "Wikiadmin"
(→Links) |
|||
Line 1: | Line 1: | ||
[[category:TEKKOM]] | [[category:TEKKOM]] | ||
This page contains information administrating this Wiki. | This page contains information administrating this Wiki. | ||
+ | == Installed Extensions == | ||
+ | See [[Help:Help]] | ||
+ | == Other changes to the standard Configuration == | ||
+ | Well there are some changes in LocalSetting.php ([[User:Heth|Henrik Thomsen]] 18:56, 11 February 2009 (UTC)) | ||
+ | <source lang="php"> | ||
+ | $wgStylePath = "$wgScriptPath/skins"; | ||
+ | $wgStyleDirectory = "$IP/skins"; | ||
+ | $wgLogo = "$wgStylePath/common/images/tekkom.png"; | ||
+ | $wgFileExtensions[] = 'svg'; | ||
+ | $wgFileExtensions[] = 'pdf'; | ||
+ | $wgAllowTitlesInSVG = true; | ||
+ | #Slaa Caching fra naar der udvikles design paa siden | ||
+ | $wgEnableParserCache = false; | ||
+ | $wgEnableMWSuggest=true; # OpenSearch box | ||
+ | # $wgEnableRestrict = true; #Need extension I think | ||
+ | require_once("$IP/extensions/Gadgets/Gadgets.php"); | ||
+ | require_once("extensions/SyntaxHighlight_GeSHi/SyntaxHighlight_GeSHi.php"); | ||
+ | require_once("$IP/extensions/UserRightsList/UserRightsList.php"); | ||
+ | require_once("extensions/EmbedPDF.php"); | ||
+ | require_once("$IP/extensions/Widgets/Widgets.php"); | ||
+ | $wgGroupPermissions['sysop']['editwidgets'] = true; | ||
+ | require_once("extensions/rss.php"); | ||
+ | #Defining Students name space | ||
+ | define("NS_STUDENTS", 100); | ||
+ | define("NS_STUDENTS_TALK", 101); | ||
+ | $wgExtraNamespaces[NS_STUDENTS] = "Students"; | ||
+ | $wgExtraNamespaces[NS_STUDENTS_TALK] = "Students_talk"; | ||
− | == | + | $wgNamespaceProtection[NS_STUDENTS] = array( 'editstudents' ); #permission "edit" required to edit the n |
+ | amespace | ||
+ | $wgNamespacesWithSubpages[NS_STUDENTS] = true; #subpages enabled for the namespace | ||
+ | $wgGroupPermissions['sysop']['editstudents'] = true; #permission "edit" granted to users in the "sys | ||
+ | op" group | ||
+ | $wgContentNamespaces[] = NS_STUDENTS; | ||
+ | $wgAllowUserCss = true; | ||
+ | $wgAllowUserJs = true; # Made WikEd work | ||
+ | $wgUseSiteCss = true; | ||
+ | $wgUseSiteJs = true; | ||
+ | $wgCategoryMagicGallery = true; | ||
+ | $wgGroupPermissions['*']['edit'] = false; #Restrict anonymous editing | ||
+ | </source> | ||
+ | |||
+ | Changed [[MediaWiki:Common.css]] to avoid pagename in top of [[Main Page]] | ||
+ | |||
+ | == Mediawiki extensions proposed installed == | ||
+ | === User Access Righjts === | ||
User access rights: http://www.mediawiki.org/wiki/Manual:Preventing_access | User access rights: http://www.mediawiki.org/wiki/Manual:Preventing_access | ||
Setting user group access rights: http://www.mediawiki.org/wiki/Manual:$wgGroupPermissions | Setting user group access rights: http://www.mediawiki.org/wiki/Manual:$wgGroupPermissions | ||
+ | |||
+ | === Making MediaWiki non case-sensitive === | ||
+ | [http://obstinate.org/computing/making-mediawiki-urls-non-case-sensitive non case sensitive procedure] | ||
+ | See [http://meta.wikimedia.org/wiki/Case_sensitivity_of_page_names wikimedia proposals] | ||
+ | === Mediawiki === | ||
+ | TitleKey extension is a case-insensitive title prefix search plugin [http://www.mediawiki.org/wiki/Extension:TitleKey TitleKey Extension] | ||
+ | |||
+ | === <strike>Lucene Search Engine</strike> === | ||
+ | |||
+ | <strike>Lucence search engine will be installed. It will make suggestions in the searchbox case insensitive. </strike>[http://www.mediawiki.org/wiki/Extension:Lucene-search <strike>Lucene-search</strike>] | ||
+ | |||
+ | === SphinxSearch engine === | ||
+ | |||
+ | [http://www.mediawiki.org/wiki/Extension:SphinxSearch SphinxSearch] Should be better than Lucene Search. Try it out on [http://www.newworldencyclopedia.org/entry/Info:Main_Page | newworldencyclopedia] | ||
+ | |||
+ | === Embedded document === | ||
+ | |||
+ | Can apparantly embed *.pdf and *.doc files into the Wiki. | ||
+ | [http://www.mediawiki.org/wiki/Extension:Embed_Document Embed_Document]] | ||
+ | |||
+ | I would like to find a format converter that really works pdf->wiki and doc->wiki | ||
+ | === Secure and protected category === | ||
+ | See the extension [http://www.mediawiki.org/wiki/Extension:CategoryPermissions CategoryPermissions] | ||
+ | |||
+ | == Mediawiki search engine == | ||
+ | The article [http://www.searchtools.com/analysis/mediawiki-search/index-mediawiki-search-stinks.html Mediawiki search-engine stinks] tell it as it is. | ||
+ | |||
+ | === Short words in mediawiki searches === | ||
+ | See the hidden article on wikimedia [http://meta.wikimedia.org/wiki/Help:Short_words_in_searches Short words in searches] | ||
+ | |||
+ | == Information from this installation == | ||
+ | [[Special:Version]]<br/> | ||
+ | [[Special:Preferences]] |
Revision as of 06:43, 12 February 2009
This page contains information administrating this Wiki.
Contents
Installed Extensions
See Help:Help
Other changes to the standard Configuration
Well there are some changes in LocalSetting.php (Henrik Thomsen 18:56, 11 February 2009 (UTC))
$wgStylePath = "$wgScriptPath/skins";
$wgStyleDirectory = "$IP/skins";
$wgLogo = "$wgStylePath/common/images/tekkom.png";
$wgFileExtensions[] = 'svg';
$wgFileExtensions[] = 'pdf';
$wgAllowTitlesInSVG = true;
#Slaa Caching fra naar der udvikles design paa siden
$wgEnableParserCache = false;
$wgEnableMWSuggest=true; # OpenSearch box
# $wgEnableRestrict = true; #Need extension I think
require_once("$IP/extensions/Gadgets/Gadgets.php");
require_once("extensions/SyntaxHighlight_GeSHi/SyntaxHighlight_GeSHi.php");
require_once("$IP/extensions/UserRightsList/UserRightsList.php");
require_once("extensions/EmbedPDF.php");
require_once("$IP/extensions/Widgets/Widgets.php");
$wgGroupPermissions['sysop']['editwidgets'] = true;
require_once("extensions/rss.php");
#Defining Students name space
define("NS_STUDENTS", 100);
define("NS_STUDENTS_TALK", 101);
$wgExtraNamespaces[NS_STUDENTS] = "Students";
$wgExtraNamespaces[NS_STUDENTS_TALK] = "Students_talk";
$wgNamespaceProtection[NS_STUDENTS] = array( 'editstudents' ); #permission "edit" required to edit the n
amespace
$wgNamespacesWithSubpages[NS_STUDENTS] = true; #subpages enabled for the namespace
$wgGroupPermissions['sysop']['editstudents'] = true; #permission "edit" granted to users in the "sys
op" group
$wgContentNamespaces[] = NS_STUDENTS;
$wgAllowUserCss = true;
$wgAllowUserJs = true; # Made WikEd work
$wgUseSiteCss = true;
$wgUseSiteJs = true;
$wgCategoryMagicGallery = true;
$wgGroupPermissions['*']['edit'] = false; #Restrict anonymous editing
Changed MediaWiki:Common.css to avoid pagename in top of Main Page
Mediawiki extensions proposed installed
User Access Righjts
User access rights: http://www.mediawiki.org/wiki/Manual:Preventing_access
Setting user group access rights: http://www.mediawiki.org/wiki/Manual:$wgGroupPermissions
Making MediaWiki non case-sensitive
non case sensitive procedure See wikimedia proposals
Mediawiki
TitleKey extension is a case-insensitive title prefix search plugin TitleKey Extension
Lucene Search Engine
Lucence search engine will be installed. It will make suggestions in the searchbox case insensitive. Lucene-search
SphinxSearch engine
SphinxSearch Should be better than Lucene Search. Try it out on | newworldencyclopedia
Embedded document
Can apparantly embed *.pdf and *.doc files into the Wiki. Embed_Document]
I would like to find a format converter that really works pdf->wiki and doc->wiki
Secure and protected category
See the extension CategoryPermissions
Mediawiki search engine
The article Mediawiki search-engine stinks tell it as it is.
Short words in mediawiki searches
See the hidden article on wikimedia Short words in searches