Matthias Hoffmann - Tcl-Code-Snippets - wikit-related

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 {
   <hr size=1>
   <b>Editieren - Kurzreferenz:</b>
   <blockquote><font size=-1>
     <b>LINKS</b> auf Wikiseitennamen <b>[<a href="6.html" target="_newWindow">Formatierungs
     Regeln</a>]</b> - oder beliebige URLs
     <b><a href="http://here.com/" target="_newWindow">http://here.com/</a></b>
     - benutze <b>[http://here.com/]</b>, um eine Referenz in Form einer Verweisnummer zu erzeugen:
     <b>[<a href="http://here.com/" target="_newWindow">1</a>]</b>
   <br>
     <b>BULLETS</b> Zeilen beginnen mit 3 Leerstellen, einem Stern und einer Leerstelle, dahinter der Text in einer (ggf. umgebrochenen) Zeile
   <br>
     <b>PARAGRAPHEN</b> werden separiert durch Leerzeilen, <b>UNFORMATTIERTER TEXT </b>startet mit white space
   <br>
     <b>HERAUSHEBUNGEN</b> werden durch zwei oder drei einfache Anführungszeichen begonnen und beendet - zwei für
     <b>''</b><i>kursiv</i><b>''</b>, drei für <b>'''fett'''</b>
   <br>
     <b>SEKTIONEN</b> können getrennt werden durch eine horizontale Linie, die mittels vier Bindestrichen <b>----</b> erzeugt wird
   </font></blockquote><hr size=1>
  }

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; }

Category Wikit | Category TclHttpd