User:David Fichtmueller/GFBio Minimal Wiki

From Biowikifarm Metawiki
Jump to: navigation, search

The Minimal Wiki of GFBio (http://gfbio.biowikifarm.net/minimal/) is a specially configured wiki. It serves as a minimalistic skin for the regular public wiki (http://gfbio.biowikifarm.net/wiki/) so it can be integrated via an i-frame into the main portal of GFBio: http://www.gfbio.org/wiki

It is for displaying the content only. At the end of each page, there is an link to the corresponding page in the public wiki, where additional features can be used (view history, edit, watch, ...). This means, that there is also no need to log into the minimal wiki.

Directory Setup

The wiki has a special configuration. In the directory /var/www/v-gfbio/min/ the following files and folders exists:

  • cache (the normal caching directory)
  • media (sym-link to the public wiki ../w/media)
  • skin (not a sym-link but a copy of the files from /usr/share/mediawiki20/skin, some are modified, though. Details see below)
  • LocalSettings.php
  • (all other files and directories point to /usr/share/mediawiki20, as is is the case in all of the other wiki installations )

Skin-Files

Modified Skin-Files

  • removed all other Skins except Vector. Remaining files and directories in /var/www/v-gfbio/min/skin:
    • common
    • vector
    • Vector.php
  • vector/screen.css: added custom CSS code at the end of the file (line 915 ff), see below
  • vector/vector-min.js: custom JS to add reference back to the main wiki, content see below
  • Warning: these modifications are probably not save for an update to the next version, as the skins are handled differently in more recent version. Therefore the modifications need to be redone, once the wiki runs a newer version.

LocalSettings.php

In the LocalSettings.php:

  • $wgDBname is set to the same database as the public wiki
  • editing is disabled for everybody (including admins)
  • all skins are disabled, except vector
  • skins/vector/vector-min.js is loaded as a ResourceModule

Code Documentation

Additions to skin/vector/screen.css:

#mw-panel.collapsible-nav .portal .body ul li{
	display: inline-block;
	float: left;
	font-size: 1.05em;
	height: 40px;
	max-width: 125px;
	padding: 0 0 0 1.5em !important;
}
 
#mw-panel.collapsible-nav .portal .body ul li a{
	color:#666 !important;
}
 
#mw-panel.collapsible-nav .portal .body ul li a:hover{
	color:#39f !important;
	text-decoration: none;
}
 
#mw-panel.collapsible-nav .portal .body ul li a:focus{
	color:#39f !important;
	text-decoration: none;
}

#original-wiki-link a{
	color:#666 !important;
}
 
#original-wiki-link a:hover{
	color:#39f !important;
	text-decoration: none;
}
 
#original-wiki-link a:focus{
	color:#39f !important;
	text-decoration: none;
}

div#mw-panel div.portal div.body ul {
	position: absolute;
	right: 0;
}
 
div#mw-panel {
	width:99%;
}
 
#mw-head-base{
	height: 0px;
}
 
div#content{
	padding: 50px 0 0 0 !important;
	margin-left: 0px !important;
	border-style: none;
	background-image:none;
}
div#mw-head{
	top: 40px;
}
 
div#p-navigation{
	left: -17px;
	position: absolute;
	text-align: right;
	top: -160px;
	width: 100%;
}
#mw-panel li{
	display: inline;
}
 
.editsection{
	display: none;
}
 
#p-tb{
	display: none;
}
div#footer{
	background-image: none;
}
#footer-info{
	display: none;
}
#footer-places{
	display: none;
}
#footer-icons{
	display: none;
}
#p-logo{
	display: none;
}
#p-personal{
	display: none;
}
#left-navigation{
	display: none;
}
#right-navigation{
	display: none;
}
#p-coll-print_export{
	display: none;
}
body{
	background:none;
	background-image:none;
}

Content of skins/vector/vector-min.js:

function addOriginalWikiLink() {
	var footer = document.getElementById("footer");
	var span = document.createElement("span");
	span.innerHTML = "<a href=\"https://gfbio.biowikifarm.net/wiki/"+wgPageName+"\" target=\"_blank\">View this page on the full featured GFBio Wiki.";
	span.setAttribute("style","float:right; font-size:0.75em;");
	span.id = "original-wiki-link";
	footer.insertBefore(span,footer.firstChild);
}
 
addOnloadHook( addOriginalWikiLink );