Kennt ihr auch das Klexikon für Lese-Anfänger? Auf MiniKlexikon.de findet ihr mehr als 900 Artikel von A wie Aal bis Z wie Zoo.
common.js: Unterschied zwischen den Versionen
Aus Klexikon - Das Freie Kinderlexikon
K |
|||
Zeile 1: | Zeile 1: | ||
+ | // Format: <Titel im Klexikon>: [<Titel im Einfach-Lexikon>, <Titel in Wikipedia>] | ||
mappedPages = { | mappedPages = { | ||
'Klexikon:Willkommen_im_Klexikon': ['Hauptseite', 'Wikipedia:Hauptseite'], | 'Klexikon:Willkommen_im_Klexikon': ['Hauptseite', 'Wikipedia:Hauptseite'], | ||
Zeile 8: | Zeile 9: | ||
try { | try { | ||
var target = 'p-' + section; | var target = 'p-' + section; | ||
− | |||
if ( action == 'add' ) { | if ( action == 'add' ) { | ||
var node = document.getElementById( target ) | var node = document.getElementById( target ) | ||
.getElementsByTagName( 'div' )[0] | .getElementsByTagName( 'div' )[0] | ||
.getElementsByTagName( 'ul' )[0]; | .getElementsByTagName( 'ul' )[0]; | ||
− | |||
var aNode = document.createElement( 'a' ); | var aNode = document.createElement( 'a' ); | ||
var liNode = document.createElement( 'li' ); | var liNode = document.createElement( 'li' ); | ||
− | |||
aNode.appendChild( document.createTextNode( name ) ); | aNode.appendChild( document.createTextNode( name ) ); | ||
aNode.setAttribute( 'href', link ); | aNode.setAttribute( 'href', link ); | ||
Zeile 23: | Zeile 21: | ||
node.appendChild( liNode ); | node.appendChild( liNode ); | ||
} | } | ||
− | |||
} catch( e ) { | } catch( e ) { | ||
// let's just ignore what's happened | // let's just ignore what's happened | ||
Zeile 44: | Zeile 41: | ||
l1 = mappedPages[wgPageName][1] | l1 = mappedPages[wgPageName][1] | ||
if (l0 != '') {ModifySidebar( 'add', 'othproj', 'Einfach Lexikon', 'https://einfach.zum.de/wiki/' + l0 );} | if (l0 != '') {ModifySidebar( 'add', 'othproj', 'Einfach Lexikon', 'https://einfach.zum.de/wiki/' + l0 );} | ||
− | if (l1 != '') {ModifySidebar( 'add', 'othproj', 'Wikipedia', 'http:// | + | if (l1 != '') {ModifySidebar( 'add', 'othproj', 'Wikipedia', 'http://de.wikipedia.org/wiki/' + l1 );} |
} | } | ||
} | } | ||
jQuery( CustomizeModificationsOfSidebar ); | jQuery( CustomizeModificationsOfSidebar ); |
Version vom 18. April 2019, 13:42 Uhr
// Format: <Titel im Klexikon>: [<Titel im Einfach-Lexikon>, <Titel in Wikipedia>] mappedPages = { 'Klexikon:Willkommen_im_Klexikon': ['Hauptseite', 'Wikipedia:Hauptseite'], 'Hasen': ['Hasen', 'Hasen'], 'Ostern': ['', 'Ostern'] } function ModifySidebar( action, section, name, link ) { try { var target = 'p-' + section; if ( action == 'add' ) { var node = document.getElementById( target ) .getElementsByTagName( 'div' )[0] .getElementsByTagName( 'ul' )[0]; var aNode = document.createElement( 'a' ); var liNode = document.createElement( 'li' ); aNode.appendChild( document.createTextNode( name ) ); aNode.setAttribute( 'href', link ); liNode.appendChild( aNode ); liNode.className = 'plainlinks'; node.appendChild( liNode ); } } catch( e ) { // let's just ignore what's happened return; } } function CustomizeModificationsOfSidebar() { op = document.createElement('div') op.setAttribute('class','portal') op.setAttribute('role','navigation') op.setAttribute('id','p-othproj') op.innerHTML = '<h3>In anderen Projekten</h3><div class="body"><ul></ul></div>' document.getElementById('p-tb').parentNode.appendChild(op) if (wgPageName in mappedPages) { l0 = mappedPages[wgPageName][0] l1 = mappedPages[wgPageName][1] if (l0 != '') {ModifySidebar( 'add', 'othproj', 'Einfach Lexikon', 'https://einfach.zum.de/wiki/' + l0 );} if (l1 != '') {ModifySidebar( 'add', 'othproj', 'Wikipedia', 'http://de.wikipedia.org/wiki/' + l1 );} } } jQuery( CustomizeModificationsOfSidebar );