Chris Africa skrev: > Hi Everyone. I'm new to mediawiki, and I'm not the site administrator, > so I'm still feeling around for what I can do. > > Today, I learned how to modify MediaWiki:Sidebar, MediaWiki:Common.css > and MediaWiki:Common.js. > > What I can't figure out how to do, after reading tons of > documentation... > 1. Utilize my javascript within my document. My <script> tag shows > up > as text in the body of the document, instead of executing the script. >
Not that I have tried this my self, but be glad for that. The possibility inject malicious code isn't enabled by default. I think you need some kind of exptension for executing scripts, so I'd search for something such in the Extension matrix: * http://www.mediawiki.org/wiki/Extension_Matrix > 2. Modify the top of the page to add additional common navigation, > > the way that I did with the Sidebar. > This is about either advanced skin customization, or, a poor man's menu can be inserted via the $wgSiteNotice variable in your LocalSettings.php: $wgSiteNotice = "<span style="..."> ... my fancy little menu here ...</span>"; :) ( skip the smiley though ) You might also be interested in a Sharepoint lookalike skin, which you can find here: * http://www.rilnet.com/en/skins Example of usage: * https://rfid.berlin.de/wiki/Hauptseite // Rolf Lampa > Maybe I just don't know what to search for, or what part of the > documentation to look at. Can someone point me in the right direction? > > Thanks! > > -- > Chris Africa > Web Project Manager > Department of Mechanical Engineering > University of Michigan > 734-764-8482 > Fridays: 734-730-6221 > AIM/iChat/Skype ID: baiewola > > > _______________________________________________ > MediaWiki-l mailing list > [email protected] > https://lists.wikimedia.org/mailman/listinfo/mediawiki-l > > > _______________________________________________ MediaWiki-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
