wiki forum trac otrs blogs mailman bewelcome
Personal tools

Wiki team

Jump to: navigation, search

[edit top section]

As you can guess, we take care of the wiki!

If you are a wiki expert, and want to help out, please get in contact with Kasper (guaka)wikitalk or Andreas (lemon-head)wikitalk! We are not an "official" team yet, but we can talk about everything!

People

See also the list of all registered users on this wiki.


You want to participate in this team ?

Solution: Ask one of the members - ideally Andreas (lemon-head)wikitalk or Kasper (guaka)wikitalk. This is different from the other teams, because ... don't ask!


People with server access

Some modifications can only be done on the server. For instance, making single pages public.

If any of these informations is wrong, please correct it!

Bureaucrats

Buraucrats can promote other users to Sysop and Bureacrat status, and are also sysops.

Sysops

Sysops can delete and protect pages.

Non-sysops doing active wiki maintenance

Tasks

Official pages

Some pages on this wiki are more official than others. Take extra care with these. Check out this category.


Why this team?

Guaka started this team, since he thinks it's a good idea to keep an overview about what's happening in the wiki, who's doing what, what needs to be done, etc.


Questions and Answers

Wiki php

Strange section edit links

The edit links in this wiki look very bad, because they are placed far too high above the headline. Inspection with firebug turns out that the html tree structure (DOM) is not the same as in original Wikipedia! Maybe someone has messed around with the php that generates the edit links?


Wikipedia: DOM tree of a h2 headline

<div id="bodyContent>
  ...
  <p>
    <a id="..."/>
  </p>
  <h2>
    <span class="editsection">...</span>
    <span class="mw-headline">...</span>
  </h2>
  ...
</div>

This wiki

<div id="bodyContent">
  ...
  <div class="editsection">...</div>
  <a name="Repair_top_navi"/>
  <h2>#text: Repair top navi</h2>
  ...
</div>

This special DOM tree structure makes it totally impossible to fix the badly placed edit links in monobook.css. Someone needs to have a look at the php.

back to