'''Repair of saved wiki-pages before reimport''' In wiki pages, which are save via the '''WIKIT_HIST'''ory-function, german UMLAUTE are destroyed. So before reconstructing pages via cut and paste, at least the following translations are neccessary: set h [open [lindex $argv 0] r] set data [read $h] close $h set data [string map {��„ Ä ��– Ö ��œ Ü ��¤ ä ��¶ ö ��¼ ü ��Ÿ ß} $data] puts $data ---- '''German Translations of some of the protected wiki-pages''' '''''Page #9''''' # this code is executed on each CGI invocation # pages which may not be edited through CGI (page 9 better be included!) set ProtectedPages {1 2 3 4 5 6 7 8 9} # the text that gets shown at the bottom of an edit page set EditInstructions {
Editieren - Kurzreferenz:
LINKS auf Wikiseitennamen [Formatierungs Regeln] - oder beliebige URLs http://here.com/ - benutze [http://here.com/], um eine Referenz in Form einer Verweisnummer zu erzeugen: [1]
BULLETS Zeilen beginnen mit 3 Leerstellen, einem Stern und einer Leerstelle, dahinter der Text in einer (ggf. umgebrochenen) Zeile
PARAGRAPHEN werden separiert durch Leerzeilen, UNFORMATTIERTER TEXT startet mit white space
HERAUSHEBUNGEN werden durch zwei oder drei einfache Anf��¼hrungszeichen begonnen und beendet - zwei f��¼r ''kursiv'', drei f��¼r '''fett'''
SEKTIONEN k��¶nnen getrennt werden durch eine horizontale Linie, die mittels vier Bindestrichen ---- erzeugt wird

} '''CSS used in our wiki''' (as a general example) @media screen { body { font-family:Verdana,"Trebuchet Ms",Tahoma,"Lucida Sans Unicode","MS Sans Serif",Arial; font-size:8pt; line-height:10.5pt; color: #000; margin-left: 2%; margin-right: 2%; margin-top: 2%; } } @media print { body { font-family:"Trebuchet Ms",Verdana,Tahoma,"Lucida Sans Unicode","MS Sans Serif",Arial; font-size:9pt; line-height:11.5pt; color: #000; margin-left: 2%; margin-right: 2%; margin-top: 2%; } } h2 a { font-size:11pt; font-weight:bold; } h2 a:link { text-decoration:none; font-weight:bold; color:teal; } h2 a:visited { text-decoration:none; font-weight:bold; color:teal; } h2 a:focus { text-decoration:none; font-weight:bold; color:teal; } h2 a:active { text-decoration:none; font-weight:bold; color:teal; } h2 a:hover { text-decoration:none; font-weight:bold; color:white; background-color:teal; } a:link { text-decoration:none; font-weight:bold; color:blue; } a:visited { text-decoration:none; font-weight:bold; color:purple; } a:hover { text-decoration:none; font-weight:bold; color:white; background-color:blue; } a:active { text-decoration:none; font-weight:bold; color:purple; } a:focus { text-decoration:none; font-weight:bold; color:purple; } pre { font-family:"LettrGoth12 BT","Andale Mono","Lucida Console",Courier; font-size:8pt; color:maroon; font-weight: bold; } textarea { font-family:"LettrGoth12 BT","Andale Mono","Lucida Console",Courier; font-size:8pt; font-weight: bold; } hr { width:100%; color:gray; height:2px; border:1px solid gray; } #footer { height: 31px; background: url("/images/HMELOGO_TINY.gif") no-repeat top right; font-family:Verdana,Tahoma,"Lucida Sans Unicode","MS Sans Serif",Arial,"Trebuchet Ms"; font-size:7pt; line-height:9.5pt; font-weight:bold; } dt { font-weight: bold; margin-top:4pt; margin-bottom:4pt; } ----