About the wiki.peppy wrote:
In order to keep the content on the website as fresh as possible, I'd like to move all sections containing text to the wiki. This includes FAQ, ranking guidelines, all our forum-based guides, the history/information sections. While we have made huge progress already (thanks to a few very dedicated users), keeping a wiki up-to-date is an ongoing process which basically anyone can help with. There is also a lot of translation opportunities remaining to make the content accessible in every language known to mankind!
Where to start:
Firstly, disable rename for autoconfirmed users. I know the script which ruins the whole wiki-project in few minutes with mass rename of the pages. Moreover, Wiki is very vulnerable now to all automated attacks.
I suggest you should give banhammers to some active users whom you can trust. It's very easy to undo all the vandalism in the wiki, but in case of banning somebody one always has to report to you.
Secondly, to create some templates there should be the access to common.css. For example, a spoiler template.
It can't work without this code:
SPOILER
I think more than one person should have the access to mediawiki: namespace./* Spoilers */
.spoiler, .spoiler a, .spoiler a:visited {
cursor: help;
-khtml-opacity: 0.0;
-moz-opacity: 0.0;
filter:alpha(opacity=0);
opacity:0.0;
background:white;color:white;
}
.spoiler:hover, .spoiler:hover a, .spoiler:hover a:visited,
.spoilered, .spoilered a, .spoilered a:visited {
-khtml-opacity: 1.0;
-moz-opacity: 1.0;
filter:alpha(opacity=100);
opacity:1.0;
background:transparent;
}
.spoiler:hover, .spoilered {color: black;}
.spoiler:hover a, .spoilered a {color: #002BB8; cursor: pointer;}
.spoiler:hover a:visited, .spoilered a:visited {color: #5A3696;}
That's all by now.