Wužiwar:Tlustulimu/monobook.js

z Kitakija

< Wužiwar:Tlustulimu(rozdźěl mjez wersijomaj)
Dźi do: Nawigacija, Pytać
S (korektura)
(korektura)
 
(Přirunanje wersijow zapřija 17 mjez nimaj ležacych wersijow.)
Rjadka 1: Rjadka 1:
-
/* zdźěla wot mojeje němskeje strony */
+
/* zdźěla wot mojeje němskeje a zdźěla wot esperantorěčneje strony */
 +
 
 +
/** Trovita ĉe Arno Lagrange
 +
* insertAfter : insérer un élément dans une page
 +
*/
 +
function insertAfter(parent, node, referenceNode) {
 +
parent.insertBefore(node, referenceNode.nextSibling);
 +
}
 +
 +
/**
 +
* getElementsByClass : rechercher les éléments de la page dont le paramètre "class" est celui recherché
 +
*/
 +
function getElementsByClass(searchClass, node, tag) {
 +
if (node == null) node = document;
 +
if (tag == null) tag = '*';
 +
return getElementsByClassName(node, tag, searchClass);
 +
}
 +
 +
 +
// Ĝuste akiras la tekstan entenaon de nodo kaj de ties idaj nodoj
 +
// Kopirajto Harmen Christophe, http://openweb.eu.org/articles/validation_avancee, CC
 +
function getTextContent(oNode) {
 +
if (typeof(oNode.textContent)!="undefined") {return oNode.textContent;}
 +
switch (oNode.nodeType) {
 +
case 3: // TEXT_NODE
 +
case 4: // CDATA_SECTION_NODE
 +
return oNode.nodeValue;
 +
break;
 +
case 7: // PROCESSING_INSTRUCTION_NODE
 +
case 8: // COMMENT_NODE
 +
if (getTextContent.caller!=getTextContent) {
 +
return oNode.nodeValue;
 +
}
 +
break;
 +
case 9: // DOCUMENT_NODE
 +
case 10: // DOCUMENT_TYPE_NODE
 +
case 12: // NOTATION_NODE
 +
return null;
 +
break;
 +
}
 +
var _textContent = "";
 +
oNode = oNode.firstChild;
 +
while (oNode) {
 +
_textContent += getTextContent(oNode);
 +
oNode = oNode.nextSibling;
 +
}
 +
return _textContent;
 +
}
/* Einige link-Tags hinzufügen */
/* Einige link-Tags hinzufügen */
Rjadka 72: Rjadka 119:
     + 'http://de.wikipedia.org/w/index.php?title=User:Dschwen/wikiminiatlas2.js'  
     + 'http://de.wikipedia.org/w/index.php?title=User:Dschwen/wikiminiatlas2.js'  
     + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');
     + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');
-
 
-
//Aus der englischen Wikipedia von User:Cacycle
 
-
// install [[User:Cacycle/wikEd]] in-browser text editor
 
-
document.write('<script type="text/javascript" src="'
 
-
+ 'http://en.wikipedia.org/w/index.php?title=User:Cacycle/wikEd.js'
 
-
+ '&action=raw&ctype=text/javascript&dontcountme=s"></script>');
 
-
 
//Po ideju w němskej Wikipediji [[:de:Wikipedia Diskussion:Skin#Freigeben rot]]
//Po ideju w němskej Wikipediji [[:de:Wikipedia Diskussion:Skin#Freigeben rot]]
Rjadka 101: Rjadka 141:
function addtoolboxlinks() {
function addtoolboxlinks() {
var tb = document.getElementById('p-navigation').getElementsByTagName('ul')[0];
var tb = document.getElementById('p-navigation').getElementsByTagName('ul')[0];
-
addlilink(tb, '/wiki/Wikipedija:Projekt_za_předłohi', 'Projekt za předłohi', '');
+
addlilink(tb, '/w/index.php?title=Wikipedija:Projekt_za_předłohi', 'Projekt za předłohi', '');
-
addlilink(tb, '/wiki/Kategorija:Strony_k_spěšnemu_wušmórnjenju', 'SW', '');
+
addlilink(tb, '/w/index.php?title=Wikipedija:Infokašćik', 'Projekt za infokašćiki', '');
 +
addlilink(tb, '/w/index.php?title=Wikipedija:Požadane_přełožki', 'Požadane přełožki', '');
 +
addlilink(tb, '/w/index.php?title=Kategorija:Strony_k_spěšnemu_wušmórnjenju', 'SW', '');
 +
addlilink(tb, '/w/index.php?title=Kategorija:Kandidaty_za_šmórnjenje', 'Kat. Kand. šm.', '');
 +
addlilink(tb, '/w/index.php?title=Wikipedija:Kandidaty_za_šmórnjenje', 'Wik. Kand. šm.', '');
 +
addlilink(tb, '/w/index.php?title=Specialnje:Prefiksindeks', 'Strony', '');
 +
addlilink(tb, '/w/index.php?title=Wužiwar:Tlustulimu/Nawi', 'Nawi', '');
 +
addlilink(tb, '/w/index.php?title=Wužiwar:Tlustulimu/Nawi2', 'Nawi2', '');
 +
addlilink(tb, '/w/index.php?title=Wužiwar:Tlustulimu/Babel', 'Babel', '');
 +
addlilink(tb, '/w/index.php?title=MediaWiki:Gadgets-definition', 'Gadgets', '');
 +
addlilink(tb, 'irc://irc.freenode.net/#wikipedia-hsb', 'IRC', '');
}
}
if (window.addEventListener) window.addEventListener("load", addtoolboxlinks, false);
if (window.addEventListener) window.addEventListener("load", addtoolboxlinks, false);
else if (window.attachEvent) window.attachEvent("onload", addtoolboxlinks);
else if (window.attachEvent) window.attachEvent("onload", addtoolboxlinks);
 +
// install [[Wužiwar:Tlustulimu/test2.js]] correction for older gecko browsers (until rv:1.8.x)
 +
document.write('<script type="text/javascript" src="'
 +
    + 'http://hsb.wikipedia.org/w/index.php?title=Wu%C5%BEiwar:Tlustulimu/test.js'
 +
    + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');
-
// Testy
+
/** Trovita ĉe Arno Lagrange
-
//Z desource, monobook.js
+
* El franclingva Vikipedio :
-
//--------------------------------------------------------------------------------
+
* Laŭ decido de [[:fr:Wikipédia:Prise de décision/Lien interprojet]]
-
//## Cookies
+
* Kopias la interprojektajn ligilojn el la ŝablono {{Projekto}}
 +
* en la maldekstran strion
 +
* remove_other_projects = true; en persona monobook.css por krome ne plu aperigi
 +
* la ŝablonon en la paĝo
 +
* no_other_projects = true; en persona monobook.css por malebligi ke tiu skripto funkciu
 +
*/
   
   
-
function SetCookie(name,value) {
+
function aliajProjektoj() {
-
document.cookie = name + "=" + escape(value);
+
if ((typeof no_other_projects != "undefined") && (no_other_projects)) return;
 +
if(!(wgNamespaceNumber==0)) return;
 +
if(!(wgAction=="view")) return;
 +
var div = document.getElementById('druhe_projekty');
 +
if(!div) return;
 +
var list = div.getElementsByTagName('LI');
 +
var newlist = document.createElement("UL");
 +
for (var i = 0; i < list.length ; i++) {
 +
list.link = list[i].getElementsByTagName('A')[0];
 +
list.text = list.link.getElementsByTagName('SPAN')[0];
 +
var newlistitem = document.createElement("LI");
 +
var newlink = document.createElement("A");
 +
var newlinktext = document.createTextNode(getTextContent(list.text));
 +
newlink.appendChild(newlinktext);
 +
newlink.title=getTextContent(list.link);
 +
newlink.href=list.link.href;
 +
newlistitem.appendChild(newlink);
 +
newlist.appendChild(newlistitem);
}
}
-
 
+
var interProject = document.createElement("DIV");
-
function GetCookie(name) {
+
interProject.className = 'portlet';
-
var i =0;
+
interProject.innerHTML = '<h5>Druhe projekty<\/h5><div class="pBody"><ul>'+newlist.innerHTML+'</ul></div>';
-
while (i < document.cookie.length) {
+
insertAfter(document.getElementById('column-one'),interProject,document.getElementById('p-tb'));
-
if (document.cookie.substr(i,name.length) == name) {
+
if ((typeof remove_other_projects != "undefined") && (remove_other_projects)) {
-
var valend = document.cookie.indexOf(";",i+name.length+1);
+
document=document.getElementById('bodyContent').removeChild(div);
-
if (valend == -1) {
+
-
valend = document.cookie.length;
+
-
}
+
-
return unescape(document.cookie.substring(i+name.length+1,valend));
+
-
}
+
-
i = document.cookie.indexOf(" ", i) + 1;
+
-
if (i == 0) break;
+
-
}
+
}
}
-
 
-
//--------------------------------------------------------------------------------
 
-
//--------------------------------------------------------------------------------
 
-
 
-
//Vordefinition für eigene Sonderzeichenleiste
 
-
MyChar = new Array();
 
-
MyCharText = new Array();
 
-
MyCharEnd = new Array();
 
-
MyCharDefault = new Array();
 
-
 
-
 
-
//Z desource, onlyifediting.js
 
-
//================================================================================
 
-
// Optionen für das Sonderzeichenmenü in [[MediaWiki:Edittools]]
 
-
 
-
// Diese Variablen können in den Benutzer-Javascripts angepasst werden
 
-
var SpecCharsMove = true;
 
-
SpecCharsAccesskeys = new Array();
 
-
 
-
function addCharSubsetMenu() {
 
-
        // var toolbar = document.getElementById('toolbar');
 
-
        var toolbar = document.getElementById('wpSummaryLabel');
 
-
        var specialchars = document.getElementById('specialchars');
 
-
        if (specialchars) {
 
-
                var menu = "\n\r<select id=\"CharSelect\" name=\"CharSelect\" tabindex=\"8\" accesskey=\"a\" style=\"display:inline; vertical-align:middle\" onChange=\"chooseCharSubset(selectedIndex)\">";
 
-
                var l = document.getElementById('specialchars').getElementsByTagName('p');
 
-
 
-
                for(var i=0; i < l.length; i++) {
 
-
                        if(l[i].className == "specialbasic" || l[i].className == "speciallang") {
 
-
                                var charname = l[i].title;
 
-
                                menu += "<option>" + charname + "</option>";
 
-
                        }
 
-
                }
 
-
                menu += "</select>";
 
-
                specialchars.innerHTML = menu + specialchars.innerHTML;
 
-
 
-
                // Standard-CharSubset oder aus Cookie
 
-
                var stdsubset = 0;
 
-
                if (GetCookie ("CharSubset")) stdsubset = GetCookie ("CharSubset");
 
-
                document.editform.CharSelect.options[stdsubset].selected = true;
 
-
                chooseCharSubset(stdsubset);
 
-
 
-
                //Umhängen von Specialchars in die Toolbar
 
-
                if (SpecCharsMove) {
 
-
                        if (toolbar) {
 
-
                                toolbar.appendChild(specialchars.parentNode.removeChild(specialchars));
 
-
                                toolbar.className='toolbar';
 
-
                        }
 
-
                }
 
-
        }
 
-
        //Gleicher Tabindex für alle Elemente der Toolbar
 
-
        if (toolbar) {
 
-
                var charlinks = toolbar.getElementsByTagName('a');
 
-
                for (var i=0; i < charlinks.length; i++) {
 
-
                    charlinks[i].setAttribute("tabindex",8);
 
-
                }
 
-
        }
 
}
}
-
 
-
// CharSubset-Auswahl
 
-
function chooseCharSubset(s) {
 
-
if (SpecCharsAccesskeys.length==0) {
 
-
if (is_opera) SpecCharsAccesskeys = new Array("!","\"","§","$","%","&","/","(",")","=");
 
-
else SpecCharsAccesskeys = new Array("1","2","3","4","5","6","7","8","9","0","!","\"","§","$","%","&","/","(",")","=");
 
-
}
 
-
if (s>=0) {
 
-
var l = document.getElementById('specialchars').getElementsByTagName('p');
 
-
for (var i = 0; i < l.length ; i++) {
 
-
if (i==s) {
 
-
l[i].style.display = 'inline'; 
 
-
SetArrayAccessKeys(l[i].getElementsByTagName('a'), SpecCharsAccesskeys);
 
-
}
 
-
else {
 
-
l[i].style.display =  'none';
 
-
}
 
-
}
 
-
if (GetCookie ("CharSubset") && (i = GetCookie ("CharSubset")) != s) {
 
-
SetArrayAccessKeys(l[i].getElementsByTagName('a'),"");
 
-
}
 
-
SetCookie ("CharSubset",s);
 
-
}
 
-
}
 
-
 
-
// Ein Array von Accesskeys an ein Array von Elementen
 
-
function SetArrayAccessKeys(elements, keys) {
 
-
for (var i =0; i < elements.length;i++) {
 
-
if (i < keys.length) {
 
-
elements[i].setAttribute("accessKey",keys[i]);
 
-
elements[i].setAttribute("title","alt-"+keys[i]);
 
-
}
 
-
else {
 
-
elements[i].setAttribute("accessKey","");
 
-
elements[i].setAttribute("title","");
 
-
}
 
-
}
 
-
}
 
-
 
-
// Menü-Einfügung
 
-
function customizeWikipedia() {
 
-
AddMyChars();
 
-
addCharSubsetMenu();
 
-
}
 
-
 
-
// Vorfunktion für eigene Sonderzeichenleiste, nutzt globale Variablen
 
-
function AddMyChars() {
 
-
if (MyChar[0]) AddMyCharsDo(MyChar, MyCharEnd, MyCharText, MyCharDefault);
 
-
}
 
-
 
-
// Eigene Sonderzeichenliste
 
-
function AddMyCharsDo(thechar, thecharend, thechartext, thechardefault) {
 
-
var specialcharslist = document.getElementById('specialchars');
 
   
   
-
var addtext = "<p class=\"specialbasic\" id=\"Eigene\" title=\"Eigene\" style=\"display: none;\">\n\r";
+
addOnloadHook(aliajProjektoj);
-
addtext += "Eigene Zeichen:\n\r";
+
-
addtext += "<font style=\"text-decoration: none;\" face=\"Arial Unicode MS,Lucida Sans Unicode,MS Mincho,Arial,sans-serif\">";
+
-
 
+
-
for (var i = 0; i < thechar.length; i++) {
+
-
if (!thecharend[i]) thecharend[i]="";
+
-
if (!thechardefault[i]) thechardefault[i]="";
+
-
jsfunction ="insertTags('" + thechar[i] + "','" + thecharend[i] + "','" +  thechardefault[i] +"')";
+
-
//Autoinkrement-Funktion einsetzen
+
-
if (thechardefault[i].charAt(0) == "+" && !isNaN(parseInt(thechardefault[i].substr(1)))) {
+
-
jsfunction = "insertTagsValue('" + thechar[i] + "','" + thecharend[i] + "','" +  thechardefault[i] + "','" + i +"')";
+
-
}
+
-
if (!thechartext[i]) thechartext[i] = thechar[i]+" "+thecharend[i];
+
-
addtext += "<a href=\"javascript:" +jsfunction +"\">" + thechartext[i] + "</a>\n\r";
+
-
}
+
-
addtext += "</font></p>";
+
-
specialcharslist.innerHTML = addtext+specialcharslist.innerHTML;
+
-
}
+
-
 
+
-
// Autoinkrement-Tags
+
-
function insertTagsValue(uchar, ucharend, uchardefault, ucharnr) {
+
-
var txtarea = document.editform.wpTextbox1;
+
-
+
-
if (document.selection  && !is_gecko) {
+
-
// IE
+
-
var theSelection = document.selection.createRange().text;
+
-
}
+
-
else if(txtarea.selectionStart || txtarea.selectionStart == '0') {
+
-
// Mozilla
+
-
var replaced = false;
+
-
var startPos = txtarea.selectionStart;
+
-
var endPos = txtarea.selectionEnd;
+
-
if (endPos-startPos)
+
-
replaced = true;
+
-
var scrollTop = txtarea.scrollTop;
+
-
var theSelection = (txtarea.value).substring(startPos, endPos);
+
-
}
+
-
+
-
if (theSelection == "") {
+
-
if (!(lastVal = GetCookie("CharDefaultValue-"+ ucharnr))) lastVal ="0";
+
-
theSelection= parseInt(lastVal) + parseInt(uchardefault.substr(1));
+
-
theSelection= theSelection.toString();
+
-
}
+
-
+
-
SetCookie("CharDefaultValue-"+ ucharnr,theSelection);
+
-
insertTags(uchar,ucharend,theSelection);
+
-
}
+
-
+
-
// onload einbinden
+
-
addLoadEvent(customizeWikipedia);
+
-
 
+
-
//================================================================================
+

Aktualna wersija wot 14:06, 29. jun 2011

/* zdźěla wot mojeje němskeje a zdźěla wot esperantorěčneje strony */
 
/** Trovita ĉe Arno Lagrange
* insertAfter : insérer un élément dans une page
*/
function insertAfter(parent, node, referenceNode) {
parent.insertBefore(node, referenceNode.nextSibling); 
}
 
/**
* getElementsByClass : rechercher les éléments de la page dont le paramètre "class" est celui recherché
*/
function getElementsByClass(searchClass, node, tag) {
if (node == null) node = document;
if (tag == null) tag = '*';
return getElementsByClassName(node, tag, searchClass);
}
 
 
// Ĝuste akiras la tekstan entenaon de nodo kaj de ties idaj nodoj
// Kopirajto Harmen Christophe, http://openweb.eu.org/articles/validation_avancee, CC
function getTextContent(oNode) {
if (typeof(oNode.textContent)!="undefined") {return oNode.textContent;}
switch (oNode.nodeType) {
case 3: // TEXT_NODE
case 4: // CDATA_SECTION_NODE
return oNode.nodeValue;
break;
case 7: // PROCESSING_INSTRUCTION_NODE
case 8: // COMMENT_NODE
if (getTextContent.caller!=getTextContent) {
return oNode.nodeValue;
}
break;
case 9: // DOCUMENT_NODE
case 10: // DOCUMENT_TYPE_NODE
case 12: // NOTATION_NODE
return null;
break;
}
var _textContent = "";
oNode = oNode.firstChild;
while (oNode) {
_textContent += getTextContent(oNode);
oNode = oNode.nextSibling;
}
return _textContent;
}
 
/* Einige link-Tags hinzufügen */
head = document.getElementsByTagName('head')[0]
 
function verlinke(rel, href, title)
{
  link = document.createElement('link')
  link.rel = rel
  link.href = '/wiki/' + href
  link.title = title
  head.appendChild(link)
}
 
if (head) /* sollte immer true ergeben, aber sicher ist sicher */
{
  verlinke('start', 'Hłowna strona', 'Hłowna strona')
  verlinke('help', 'Wikipedija:Pomoc', 'Pomoc')
  verlinke('index', 'Special:Alle Seiten', 'Index')
}
 
/* decodiere UTF8 (aus Selfhtml) */
function decode_utf8(utftext) {
     var plaintext = ""; var i=0; var c=c1=c2=0;
     // while-Schleife, weil einige Zeichen uebersprungen werden
     while(i<utftext.length)
         {
         c = utftext.charCodeAt(i);
         if (c<128) {
             plaintext += String.fromCharCode(c);
             i++;}
         else if((c>191) && (c<224)) {
             c2 = utftext.charCodeAt(i+1);
             plaintext += String.fromCharCode(((c&31)<<6) | (c2&63));
             i+=2;}
         else {
             c2 = utftext.charCodeAt(i+1); c3 = utftext.charCodeAt(i+2);
             plaintext += String.fromCharCode(((c&15)<<12) | ((c2&63)<<6) | (c3&63));
             i+=3;}
         }
     return plaintext;
}
 
/* decodiere die codierten UTF8-Zeichen in Kapitel-Ankern */
function decodeanchor(anchorname)
{
  var escaped = anchorname.replace(/\.([0-9A-F][0-9A-F])/g,"%$1");
  return decode_utf8(unescape(escaped)).replace(/_/g,' ');
}
 
/* Füge Link-Tags fürs Inhaltsverzeichnis hinzu */
function addcontents()
{
  var head = document.getElementsByTagName('head')[0];
  var len = document.anchors.length
  for (i = 0; i <  len; ++i)
  {
    anchor = document.anchors[i];
    link = document.createElement('link')
    link.rel = 'chapter'
    link.href = '#' + anchor.name;
    link.title = decodeanchor(anchor.name);
    head.appendChild(link)
  }
}
 
addOnloadHook(addcontents);
 
//Bei Dschwen gefunden
// [[Benutzer:Dschwen/wikiminiatlas2.js]] - diese Zeile bitte mitkopieren
document.write('<script type="text/javascript" src="' 
     + 'http://de.wikipedia.org/w/index.php?title=User:Dschwen/wikiminiatlas2.js' 
     + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');
 
//Po ideju w němskej Wikipediji [[:de:Wikipedia Diskussion:Skin#Freigeben rot]]
 
if (document.getElementById("ca-unprotect")) 
{  document.getElementById("ca-unprotect").style.borderColor = "#FF0000";
document.getElementById("ca-unprotect").style.borderWidth = "4px";
}
 
// z wužiwarja Zacke w němskej wikipediji
// vom Benutzer:Zacke in dewp
function addlilink(tabs, url, name, id) {
    var na = document.createElement('a');
    na.href = url;
    na.id = id;
    na.appendChild(document.createTextNode(name));
    var li = document.createElement('li');
    li.appendChild(na);
    tabs.appendChild(li);
    return li;
}
function addtoolboxlinks() {
var tb = document.getElementById('p-navigation').getElementsByTagName('ul')[0];
addlilink(tb, '/w/index.php?title=Wikipedija:Projekt_za_předłohi', 'Projekt za předłohi', '');
addlilink(tb, '/w/index.php?title=Wikipedija:Infokašćik', 'Projekt za infokašćiki', '');
addlilink(tb, '/w/index.php?title=Wikipedija:Požadane_přełožki', 'Požadane přełožki', '');
addlilink(tb, '/w/index.php?title=Kategorija:Strony_k_spěšnemu_wušmórnjenju', 'SW', '');
addlilink(tb, '/w/index.php?title=Kategorija:Kandidaty_za_šmórnjenje', 'Kat. Kand. šm.', '');
addlilink(tb, '/w/index.php?title=Wikipedija:Kandidaty_za_šmórnjenje', 'Wik. Kand. šm.', '');
addlilink(tb, '/w/index.php?title=Specialnje:Prefiksindeks', 'Strony', '');
addlilink(tb, '/w/index.php?title=Wužiwar:Tlustulimu/Nawi', 'Nawi', '');
addlilink(tb, '/w/index.php?title=Wužiwar:Tlustulimu/Nawi2', 'Nawi2', '');
addlilink(tb, '/w/index.php?title=Wužiwar:Tlustulimu/Babel', 'Babel', '');
addlilink(tb, '/w/index.php?title=MediaWiki:Gadgets-definition', 'Gadgets', '');
addlilink(tb, 'irc://irc.freenode.net/#wikipedia-hsb', 'IRC', '');
}
if (window.addEventListener) window.addEventListener("load", addtoolboxlinks, false);
else if (window.attachEvent) window.attachEvent("onload", addtoolboxlinks);
 
// install [[Wužiwar:Tlustulimu/test2.js]] correction for older gecko browsers (until rv:1.8.x)
document.write('<script type="text/javascript" src="'
     + 'http://hsb.wikipedia.org/w/index.php?title=Wu%C5%BEiwar:Tlustulimu/test.js'
     + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');
 
/** Trovita ĉe Arno Lagrange
* El franclingva Vikipedio : 
* Laŭ decido de [[:fr:Wikipédia:Prise de décision/Lien interprojet]]
* Kopias la interprojektajn ligilojn el la ŝablono {{Projekto}}
* en la maldekstran strion 
* remove_other_projects = true; en persona monobook.css por krome ne plu aperigi 
* la ŝablonon en la paĝo 
* no_other_projects = true; en persona monobook.css por malebligi ke tiu skripto funkciu
*/
 
function aliajProjektoj() {
if ((typeof no_other_projects != "undefined") && (no_other_projects)) return;
if(!(wgNamespaceNumber==0)) return;
if(!(wgAction=="view")) return;
var div = document.getElementById('druhe_projekty');
if(!div) return;
var list = div.getElementsByTagName('LI');
var newlist = document.createElement("UL");
for (var i = 0; i < list.length ; i++) {
list.link = list[i].getElementsByTagName('A')[0];
list.text = list.link.getElementsByTagName('SPAN')[0];
var newlistitem = document.createElement("LI");
var newlink = document.createElement("A");
var newlinktext = document.createTextNode(getTextContent(list.text));
newlink.appendChild(newlinktext);
newlink.title=getTextContent(list.link);
newlink.href=list.link.href;
newlistitem.appendChild(newlink);
newlist.appendChild(newlistitem);
}
var interProject = document.createElement("DIV");
interProject.className = 'portlet';
interProject.innerHTML = '<h5>Druhe projekty<\/h5><div class="pBody"><ul>'+newlist.innerHTML+'</ul></div>';
insertAfter(document.getElementById('column-one'),interProject,document.getElementById('p-tb'));
if ((typeof remove_other_projects != "undefined") && (remove_other_projects)) {
document=document.getElementById('bodyContent').removeChild(div);
}
}
 
addOnloadHook(aliajProjektoj);
Wosobinske nastroje