diff --git a/docs/skin.txt b/docs/skin.txt index 82a5b72ec1a..ce2d0b766e8 100644 --- a/docs/skin.txt +++ b/docs/skin.txt @@ -5,6 +5,18 @@ This document describes the overall architecture of MediaWiki's HTML rendering code as well as some history about the skin system. It is placed here rather than in comments in the code itself to help reduce the code size. +== Version 1.6 and greater == + +PHPTal skins doesn't exist anymore. They were replaced by SkinTemplate skins, +introduced since 1.4 to remove the depedency of PHPTal. + +A new experimental (disabled by default) callback-based template processor +has been introduced to try to speed up the generation of html pages. See for +example skins/disabled/MonoBookCBT.php. + +You can find more informations at http://www.mediawiki.org/wiki/Manual:Skins. + + == Version 1.4 == MediaWiki still use the PHPTal skin system introduced in version 1.3 but some diff --git a/skins/SkinPHPTal.sample b/skins/SkinPHPTal.sample deleted file mode 100644 index 683c2080706..00000000000 --- a/skins/SkinPHPTal.sample +++ /dev/null @@ -1,28 +0,0 @@ -skinname = 'name of your skin all lower case'; - $this->template = 'phptal template used do not put the .pt'; - } - - # Override method below - # - - } - -} -?>