Differences between revisions 14 and 15
Revision 14 as of 2007-10-25 21:00:36
Size: 2433
Comment:
Revision 15 as of 2007-10-28 21:41:02
Size: 2411
Comment:
Deletions are marked like this. Additions are marked like this.
Line 57: Line 57:

----
CategoryWiki

[:../:FrontPage] > ["DebianWiki"] > Administration ?BRTranslation: none

This page is meant as a hub, a central place to list all the pages related to the administration of this wiki (i.e. by Content Administrators).

Regular wiki Editors should visit [:DebianWiki/EditorGuide:Editor Guide] (or contact [:DebianWiki/Contact#content-admin:Content Administrators] for assistance).

Who are the administrators

  • ["DebianWiki/Contact"] - who has special rights? Who is contributing to the overall wiki organisation?

Official Wiki policy

Here's a list of all policy documents that have been broadly agreed upon by the active wiki contributors. Before they are agreed upon, policy ideas can be discussed in the ["?DiscussionsStarter"] page.

  • ["DebianWiki/EditorGuide"] - Rules about integrity and structure of Debian Wiki

  • ["?DebianWiki/WikiPage"] - pages creation..

  • ["?DebianWiki/TranslationGuide"] - Handling wiki translation

Task to be handled by content administrators

Answer visitor questions

As the title implies ;). also, monitor the appropriate mailing lists.

Enforce Policy & Best practices

Try to enforce best practices and published policies (in [:DebianWiki/EditorGuide:Editor Guide], etc.)

Fight spam

  • ?DealingWithSpam - Unfortunately, we need a page for this.

Illegal pages names

  • #extract list of pages
    wget http://wiki.debian.org/TitleIndex?action=titleindex > /tmp/wdo-ti  
    #page with "illegal" name
    grep -E '[^[:alnum:]\/\.+, :_-]' /tmp/wdo-illegal-pagenames

  • #List wanted pages (broken links)
    links -dump 0 -no-numbering -no-references -dump-width 4096 http://wiki.debian.org/WantedPages | grep -E '^[ ]*[0-9]+\. ' | sed -e 's/^[ ]*[0-9]\+\. //' > /tmp/wdo-wp
    
    sed -e 's/^[^:]*: //' -e 's/, /\t/g' /tmp/wdo-wp | tr "\t" "\n" | sort | uniq -c | sort -n > /tmp/wdo-pages-with-lot-of-broken-links
    # page with ["  or http://
    grep -E '^(\[|http)' /tmp/wdo-wp > /tmp/wdo-broken-external-links