⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 index_002.php

📁 DHT的入门介绍
💻 PHP
📖 第 1 页 / 共 3 页
字号:
 /** Add dismiss button to watchlist-message *************************************  *  *  Description: Hide the watchlist message for one week.  *  Maintainers: [[User:Ruud Koot|Ruud Koot]]  */  function addDismissButton() {    var watchlistMessage = document.getElementById("watchlist-message");    if ( watchlistMessage == null ) return;    var watchlistCookieID = watchlistMessage.className.replace(/cookie\-ID\_/ig,'');     if ( document.cookie.indexOf( "hidewatchlistmessage-" + watchlistCookieID + "=yes" ) != -1 ) {        watchlistMessage.style.display = "none";    }     var Button     = document.createElement( "span" );    var ButtonLink = document.createElement( "a" );    var ButtonText = document.createTextNode( "dismiss" );     ButtonLink.setAttribute( "id", "dismissButton" );    ButtonLink.setAttribute( "href", "javascript:dismissWatchlistMessage();" );    ButtonLink.setAttribute( "title", "Hide this message for one week" );    ButtonLink.appendChild( ButtonText );     Button.appendChild( document.createTextNode( "[" ) );    Button.appendChild( ButtonLink );    Button.appendChild( document.createTextNode( "]" ) );     watchlistMessage.appendChild( Button ); }  function dismissWatchlistMessage() {    var e = new Date();    e.setTime( e.getTime() + (7*24*60*60*1000) );    var watchlistMessage = document.getElementById("watchlist-message");    var watchlistCookieID = watchlistMessage.className.replace(/cookie\-ID\_/ig,'');    document.cookie = "hidewatchlistmessage-" + watchlistCookieID + "=yes; expires=" + e.toGMTString() + "; path=/";    watchlistMessage.style.display = "none"; }  addOnloadHook( addDismissButton ); /** Main Page deletion image *******************************************************   *   *  Description: If the Main Page does not exist (i.e., it's been deleted) then insert an image   *               instead of showing the "page does not exist" text.   *  Created by: [[User:Mark]], with invaluable help from [[User:Pathoschild]]   */  function MainPageDeletedImage() {   try {      //If the article does not exist and it is the Main Page, proceed     if ( document.getElementById( "noarticletext" ) && wgTitle == 'Main Page' ) {        // Insert a protected commons image at the end of the document explaining it.       var contentbox = document.getElementById('content');       var newimg = document.createElement('img');       newimg.setAttribute('src','http://upload.wikimedia.org/wikipedia/commons/9/99/WikipediaTechnical.png');       contentbox.appendChild(newimg);        // Hide the article-does-not-exist text       var NoArticleMessage = document.getElementById('noarticletext');       NoArticleMessage.style.display="none";        // Hide the edit button       var EditThisPageButton = document.getElementById('ca-edit');       EditThisPageButton.style.display="none";     }   } catch(e) {       // In case it does not work, do nothing       return;   } }  addOnloadHook( MainPageDeletedImage ); /** Change Special:Search to use a drop-down menu *******************************************************   *   *  Description: Change Special:Search to use a drop-down menu, with the default being   *               the internal MediaWiki engine   *  Created and maintained by: [[User:Gracenotes]]   */  if (wgPageName == "Special:Search") {         var searchEngines = [];         addOnloadHook(SpecialSearchEnhanced); }  function SpecialSearchEnhanced() {         var createOption = function(site, action, mainQ, addQ, addV) {                 var opt = document.createElement('option');                 opt.appendChild(document.createTextNode(site));                 searchEngines[searchEngines.length] = [action, mainQ, addQ, addV];                 return opt;         }         var searchForm = document.forms['search'];         var selectBox = document.createElement('select');         selectBox.id = 'searchEngine';         searchForm.onsubmit = function() {                 var optSelected = searchEngines[document.getElementById('searchEngine').selectedIndex];                 searchForm.action = optSelected[0];                 searchForm.lsearchbox.name = optSelected[1];                 searchForm.title.value = optSelected[3];                 searchForm.title.name = optSelected[2];         }         selectBox.appendChild(createOption('MediaWiki search', wgScriptPath + '/index.php', 'search', 'title', 'Special:Search'));         selectBox.appendChild(createOption('Google', 'http://www.google.com/search', 'q', 'sitesearch', 'en.wikipedia.org'));         selectBox.appendChild(createOption('Yahoo', 'http://search.yahoo.com/search', 'p', 'vs', 'en.wikipedia.org'));         selectBox.appendChild(createOption('Windows Live', 'http://search.live.com/results.aspx', 'q', 'q1', 'site:http://en.wikipedia.org'));         selectBox.appendChild(createOption('Wikiwix', 'http://www.wikiwix.com/', 'action', 'lang', 'en'));         selectBox.appendChild(createOption('Exalead', 'http://www.exalead.com/wikipedia/results', 'q', 'language', 'en'));         searchForm.lsearchbox.style.marginLeft = '0px';         var lStat = document.getElementById('loadStatus');         lStat.parentNode.insertBefore(selectBox, lStat); } /** Geo-targeted watchlist notice *******************************************************   *   *  Description: Allows for geographic targeting of watchlist notices. See [[Wikipedia:Geonotice]] for more information.   *  Created by: [[User:Gmaxwell]]   */  if (wgPageName == "Special:Watchlist")     addOnloadHook((function (){document.write('<script type="text/javascript" src="http://tools.wikimedia.de/~gmaxwell/cgi-bin/geonotice.py"><\/script>')}));/** Sysop Javascript ******************************************************* * *  Description: Allows for sysop-specific Javascript at [[MediaWiki:Sysop.js]]. *  Created by: [[User:^demon]] */function sysopFunctions() {	if ( wgUserGroups && !window.disableSysopJS ) {		for ( var g = 0; g < wgUserGroups.length; ++g ) {			if ( wgUserGroups[g] == "sysop" ) {				importScript( "MediaWiki:Sysop.js" );				break;			}		}	}}addOnloadHook( sysopFunctions ); /** WikiMiniAtlas *******************************************************   *   *  Description: WikiMiniAtlas is a popup click and drag world map.   *               This script causes all of our coordinate links to display the WikiMiniAtlas popup button.   *               The script itself is located on meta because it is used by many projects.   *               See [[Meta:WikiMiniAtlas]] for more information.    *  Created by: [[User:Dschwen]]   */ document.write('<script type="text/javascript" src="'      + 'http://meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js'      + '&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400"></script>'); /** IE 6 Z-index bug workaround for anonnotice **************************   *   *  Description: This implements a work around for the Z-index bug found in Internet Explorer.   *               It correctly places the anon notice on the page, even under IE6.   *               See this Google search for more information about the bug:   *               http://www.google.com/search?hl=en&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&hs=q74&q=z-index+ie6+bug&btnG=Search   *  Created by: [[User:Gmaxwell]]   */ addOnloadHook((function (){     if (wgUserName == null) {                var messageEdu=new Array();            messageEdu[0]='<a href="http://en.wikipedia.org/wiki/Wikipedia:Researching_with_Wikipedia" title="Wikipedia:Researching with Wikipedia">Learn&nbsp;more&nbsp;about&nbsp;using&nbsp;Wikipedia&nbsp;for&nbsp;research</a>';            messageEdu[1]='<a href="http://en.wikipedia.org/wiki/Wikipedia:Ten_things_you_may_not_know_about_Wikipedia" title="Wikipedia:Ten things you may not know about Wikipedia">Ten&nbsp;things&nbsp;you&nbsp;may&nbsp;not&nbsp;know&nbsp;about&nbsp;Wikipedia</a>';            messageEdu[2]='<a href="http://en.wikipedia.org/wiki/Wikipedia:Ten_things_you_may_not_know_about_images_on_Wikipedia" title="Wikipedia:Ten things you may not know about images on Wikipedia">Ten&nbsp;things&nbsp;you&nbsp;may&nbsp;not&nbsp;know&nbsp;about&nbsp;images&nbsp;on&nbsp;Wikipedia</a>';            messageEdu[3]='<a href="http://en.wikipedia.org/wiki/Wikipedia:Citing_Wikipedia" title="Wikipedia:Citing Wikipedia">Learn&nbsp;more&nbsp;about&nbsp;citing&nbsp;Wikipedia</a>';            messageEdu[4]='Have&nbsp;questions?&nbsp;<a href="http://en.wikipedia.org/wiki/Wikipedia:Questions" title="Wikipedia:Questions">Find&nbsp;out&nbsp;how&nbsp;to&nbsp;ask&nbsp;questions&nbsp;and&nbsp;get&nbsp;answers.</a>';            messageEdu[5]='<a href="http://en.wikipedia.org/wiki/Wikipedia:Basic_navigation" title="Wikipedia:Basic navigation">Find&nbsp;out&nbsp;more&nbsp;about&nbsp;navigating&nbsp;Wikipedia&nbsp;and&nbsp;finding&nbsp;information</a>';            messageEdu[6]='<a href="http://en.wikipedia.org/wiki/Wikipedia:Contributing_to_Wikipedia" title="Wikipedia:Contributing to Wikipedia">Interested&nbsp;in&nbsp;contributing&nbsp;to&nbsp;Wikipedia?</a>';         var whichMessageEdu = Math.floor(Math.random()*(messageEdu.length));         /**         document.getElementById("contentSub").innerHTML +='<div style="position:absolute; z-index:100; right:100px; top:0px;" class="metadata" id="anontip"><div style="text-align:right; font-size:87%">•&nbsp;<i>' + messageEdu[whichMessageEdu] + '</i>&nbsp;•</div></div>'; */     } }));/**   * Correctly handle PNG transparency in Internet Explorer 6.  * http://homepage.ntlworld.com/bobosola. Updated 18-Jan-2006.  *    * Adapted for Wikipedia by Remember_the_dot and Edokter.  *    * http://homepage.ntlworld.com/bobosola/pnginfo.htm states "This page contains more information for  * the curious or those who wish to amend the script for special needs", which I take as permission to  * modify or adapt this script freely. I release my changes into the public domain.  */   function PngFix(){    try    {        if (!document.body.filters)        {            window.PngFixDisabled = true        }    }    catch (e)    {        window.PngFixDisabled = true    }    if (!window.PngFixDisabled)    {        var documentImages = document.images        var documentCreateElement = document.createElement        var funcEncodeURI = encodeURI                for (var i = 0; i < documentImages.length;)        {            var img = documentImages[i]            var imgSrc = img.src                        if (imgSrc.substr(imgSrc.length - 3).toLowerCase() == "png" && !img.onclick)            {                if (img.useMap)                {                    img.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + encodeURI(imgSrc) + "')"                    img.src = "http://upload.wikimedia.org/wikipedia/commons/c/ce/Transparent.gif"                    i++                }                else                {                    var outerSpan = documentCreateElement("span")                    var innerSpan = documentCreateElement("span")                    var outerSpanStyle = outerSpan.style                    var innerSpanStyle = innerSpan.style                    var imgCurrentStyle = img.currentStyle                                        outerSpan.id = img.id                    outerSpan.title = img.title                    outerSpan.className = img.className                    outerSpanStyle.backgroundImage = imgCurrentStyle.backgroundImage                    outerSpanStyle.borderWidth = imgCurrentStyle.borderWidth                    outerSpanStyle.borderStyle = imgCurrentStyle.borderStyle                    outerSpanStyle.borderColor = imgCurrentStyle.borderColor                    outerSpanStyle.display = "inline-block"                    outerSpanStyle.fontSize = "0"                    outerSpanStyle.verticalAlign = "middle"                    if (img.parentElement.href) outerSpanStyle.cursor = "hand"                                        innerSpanStyle.width = "1px"                    innerSpanStyle.height = "1px"                    innerSpanStyle.display = "inline-block"                    innerSpanStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + funcEncodeURI(imgSrc) + "')"                                        outerSpan.appendChild(innerSpan)                    img.parentNode.replaceChild(outerSpan, img)                }            }            else            {                i++            }        }    }} if (navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.substr(22, 1) == "6"){    window.attachEvent("onload", PngFix)}/**  * Remove need for CSS hacks regarding MSIE and IPA.  */if(navigator.userAgent.indexOf("MSIE") != -1 && document.createStyleSheet) {   document.createStyleSheet().addRule('.IPA', 'font-family: "Doulos SIL", "Charis SIL", Gentium, "DejaVu Sans", Code2000, "TITUS Cyberbit Basic", "Arial Unicode MS", "Lucida Sans Unicode", "Chrysanthi Unicode";');}/* MediaWiki:Monobook.js (deprecated; migrate to Common.js!) *//* Deprecated by [[MediaWiki:Common.js]] */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -