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

📄 docpane.js

📁 dojo-0.3.0-ajax开 源 项 目
💻 JS
字号:
/*	Copyright (c) 2004-2006, The Dojo Foundation	All Rights Reserved.	Licensed under the Academic Free License version 2.1 or above OR the	modified BSD license. For more information on Dojo licensing, see:		http://dojotoolkit.org/community/licensing.shtml*/dojo.provide("dojo.widget.html.DocPane");dojo.require("dojo.widget.*");dojo.require("dojo.io.*");dojo.require("dojo.event.*");dojo.require("dojo.widget.HtmlWidget");dojo.widget.html.DocPane = function(){	dojo.widget.HtmlWidget.call(this);	this.templatePath = dojo.uri.dojoUri("src/widget/templates/HtmlDocPane.html");	this.templateCSSPath = dojo.uri.dojoUri("src/widget/templates/HtmlDocPane.css");	this.widgetType = "DocPane";	this.isContainer = true;	this.select;	this.result;	this.fn;	this.fnLink;	this.count;	this.row;	this.summary;	this.description;	this.variables;	this.vRow;	this.vLink;	this.vDesc;	this.parameters;	this.pRow;	this.pLink;	this.pDesc;	this.pOpt;	this.pType;	this.source;	dojo.event.topic.subscribe("docResults", this, "onDocResults");	dojo.event.topic.subscribe("docFunctionDetail", this, "onDocSelectFunction");}dojo.inherits(dojo.widget.html.DocPane, dojo.widget.HtmlWidget);dojo.lang.extend(dojo.widget.html.DocPane, {	fillInTemplate: function(){		this.homeSave = this.containerNode.cloneNode(true);		this.selectSave = dojo.dom.removeNode(this.select);		this.resultSave = dojo.dom.removeNode(this.result);		this.rowParent = this.row.parentNode;		this.rowSave = dojo.dom.removeNode(this.row);		this.vParent = this.vRow.parentNode;		this.vSave = dojo.dom.removeNode(this.vRow);		this.pParent = this.pRow.parentNode;		this.pSave = dojo.dom.removeNode(this.pRow);	},	onDocSelectFunction: function(message){		var appends = [];		dojo.dom.removeChildren(this.domNode);		this.fn.innerHTML = message.name;		this.description.innerHTML = message.doc.description;		this.variables.style.display = "block";		var all = [];		if(message.meta){			if(message.meta.variables){				all = message.meta.variables;			}			if(message.meta.this_variables){				all = all.concat(message.meta.this_variables);			}			if(message.meta.child_variables){				all = all.concat(message.meta.child_variables);			}		}		if(!all.length){			this.variables.style.display = "none";		}else{			for(var i = 0, one; one = all[i]; i++){				this.vLink.innerHTML = one;				this.vDesc.parentNode.style.display = "none";				appends.push(this.vParent.appendChild(this.vSave.cloneNode(true)));			}		}				this.parameters.style.display = "none";		for(var param in message.meta.params){			this.parameters.style.display = "block";					this.pLink.innerHTML = param;			this.pOpt.style.display = "none";			if(message.meta.params[param].opt){				this.pOpt.style.display = "inline";							}			this.pType.parentNode.style.display = "none";			if(message.meta.params[param].type){				this.pType.parentNode.style.display = "inline";				this.pType.innerHTML = message.meta.params[param].type;			}			this.pDesc.parentNode.style.display = "none";						if(message.doc.parameters[param] && message.doc.parameters[param].description){				this.pDesc.parentNode.style.display = "inline";				this.pDesc.innerHTML = message.doc.parameters[param].description;			}			appends.push(this.pParent.appendChild(this.pSave.cloneNode(true)));		}		dojo.dom.removeChildren(this.source);		this.source.appendChild(document.createTextNode(message.meta.sig + "{\r\n\t" + message.src.replace(/\n/g, "\r\n\t") + "\r\n}"));				this.domNode.appendChild(this.selectSave.cloneNode(true));		for(var i = 0, append; append = appends[i]; i++){			dojo.dom.removeNode(append);		}	},	onDocResults: function(message){		dojo.dom.removeChildren(this.domNode);		this.count.innerHTML = message.docResults.length;		var appends = [];		for(var i = 0, row; row = message.docResults[i]; i++){			this.fnLink.innerHTML = row.name;			this.fnLink.href = "#" + row.name;			if(row.id){				this.fnLink.href = this.fnLink.href + "," + row.id;				}			this.summary.parentNode.style.display = "none";			if(row.summary){				this.summary.parentNode.style.display = "inline";								this.summary.innerHTML = row.summary;			}			appends.push(this.rowParent.appendChild(this.rowSave.cloneNode(true)));		}				function makeSelect(x){			return function(e) {				dojo.event.topic.publish("docSelectFunction", x);			}		}		this.domNode.appendChild(this.resultSave.cloneNode(true));		var as = this.domNode.getElementsByTagName("a");		for(var i = 0, a; a = as[i]; i++){			dojo.event.connect(a, "onclick", makeSelect(message.docResults[i]));		}				for(var i = 0, append; append = appends[i]; i++){			this.rowParent.removeChild(append);		}	}});dojo.widget.tags.addParseTreeHandler("dojo:DocPane");

⌨️ 快捷键说明

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