mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-06 04:42:15 -05:00
Implement Scriptographer docs template in jsdoc (work in progress).
This commit is contained in:
parent
6b611add37
commit
4dcc320871
25 changed files with 5682 additions and 550 deletions
|
@ -27,6 +27,10 @@ function Link() {
|
|||
return this;
|
||||
}
|
||||
this.toSymbol = function(alias) {
|
||||
if(/\[\]$/.test(alias)) {
|
||||
alias = alias.replace(/\[\]$/, '');
|
||||
this.text = 'array of ' + alias + ' objects';
|
||||
}
|
||||
if (defined(alias)) this.alias = new String(alias);
|
||||
return this;
|
||||
}
|
||||
|
@ -141,11 +145,15 @@ Link.prototype._makeSymbolLink = function(alias) {
|
|||
|
||||
var linkText= this.text || alias;
|
||||
|
||||
var link = {linkPath: linkPath, linkText: linkText, linkInner: (this.innerName? "#"+this.innerName : "")};
|
||||
var link = {linkPath: linkPath, linkText: linkText.replace(/^#/, ''), linkInner: (this.innerName? "#" + this.innerName : "")};
|
||||
|
||||
if (typeof JSDOC.PluginManager != "undefined") {
|
||||
JSDOC.PluginManager.run("onSymbolLink", link);
|
||||
}
|
||||
if (/^[A-Z].+\#/.test(link.linkText)) {
|
||||
link.linkText = link.linkText.charAt(0).toLowerCase() + link.linkText.slice(1);
|
||||
link.linkText = link.linkText.replace(/#/g, '.');
|
||||
}
|
||||
|
||||
return "<a href=\""+link.linkPath+link.linkInner+"\""+target+">"+link.linkText+"</a>";
|
||||
}
|
||||
|
|
|
@ -37,7 +37,6 @@ JSDOC.DocComment.prototype.parse = function(/**String*/comment) {
|
|||
if (RegExp.$1) this.meta = RegExp.$1;
|
||||
if (RegExp.$2) this.src = RegExp.$2;
|
||||
}
|
||||
|
||||
if (typeof JSDOC.PluginManager != "undefined") {
|
||||
JSDOC.PluginManager.run("onDocCommentSrc", this);
|
||||
}
|
||||
|
@ -50,7 +49,6 @@ JSDOC.DocComment.prototype.parse = function(/**String*/comment) {
|
|||
this.src
|
||||
.split(/(^|[\r\n])\s*@/)
|
||||
.filter(function($){return $.match(/\S/)});
|
||||
|
||||
/**
|
||||
The tags found in the comment.
|
||||
@type JSDOC.DocTag[]
|
||||
|
|
|
@ -36,7 +36,6 @@ JSDOC.DocTag.prototype.parse = function(src) {
|
|||
if (JSDOC.PluginManager) {
|
||||
JSDOC.PluginManager.run("onDocTagSynonym", this);
|
||||
}
|
||||
|
||||
src = this.nibbleType(src);
|
||||
|
||||
// only some tags are allowed to have names.
|
||||
|
@ -122,7 +121,7 @@ JSDOC.DocTag.prototype.nibbleTitle = function(src) {
|
|||
JSDOC.DocTag.prototype.nibbleType = function(src) {
|
||||
if (typeof src != "string") throw "src must be a string not "+(typeof src);
|
||||
|
||||
if (src.match(/^\s*\{/)) {
|
||||
if (src.match(/^\s*\{[^@]/)) {
|
||||
var typeRange = src.balance("{", "}");
|
||||
if (typeRange[1] == -1) {
|
||||
throw "Malformed comment tag ignored. Tag type requires an opening { and a closing }: "+src;
|
||||
|
|
11
build/jsdoc-toolkit/app/plugins/operator.js
Normal file
11
build/jsdoc-toolkit/app/plugins/operator.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
JSDOC.PluginManager.registerPlugin(
|
||||
"JSDOC.operator",
|
||||
{
|
||||
onSymbol: function(symbol) {
|
||||
var operators = symbol.comment.getTag('operator');
|
||||
if (operators.length) {
|
||||
symbol.operator = operators[0].desc;
|
||||
}
|
||||
}
|
||||
}
|
||||
);
|
|
@ -25,7 +25,7 @@
|
|||
<for each="item" in="data">
|
||||
<div>
|
||||
<h2>{+new Link().toSrc(item.alias).withText(item.name)+}</h2>
|
||||
<if test="item.desc">{+resolveLinks(item.desc)+}</if>
|
||||
<if test="item.desc">{+processInlineTags(item.desc)+}</if>
|
||||
<dl>
|
||||
<if test="item.author">
|
||||
<dt class="heading">Author:</dt>
|
||||
|
|
|
@ -1,521 +1,110 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset={+IO.encoding+}" />
|
||||
<meta name="generator" content="JsDoc Toolkit" />
|
||||
{! Link.base = "../"; /* all generated links will be relative to this */ !}
|
||||
<title>JsDoc Reference - {+data.alias+}</title>
|
||||
{! data.classId = data.alias.toLowerCase() !}
|
||||
{!
|
||||
var ownProperties = data.properties.filter(function($){return $.memberOf == data.alias && !$.isNamespace && !$.isStatic});
|
||||
var staticProperties = data.properties.filter(function($){return $.memberOf == data.alias && !$.isNamespace && $.isStatic});
|
||||
var ownMethods = data.methods.filter(function($){return $.memberOf == data.alias && !$.isNamespace && !$.isStatic && !$.isOperator});
|
||||
var staticMethods = data.methods.filter(function($){return $.memberOf == data.alias && !$.isNamespace && $.isStatic && !$.isOperator});
|
||||
var operatorMethods = data.methods.filter(function($){return $.memberOf == data.alias && !$.isNamespace && !$.isStatic && $.isOperator});
|
||||
if (operatorMethods.length) {
|
||||
var operators = {};
|
||||
for (var i = 0, l = operatorMethods.length; i < l; i++) {
|
||||
var operator = operatorMethods[i];
|
||||
var name = operator.name.replace(/\^[0-9]$/, '');
|
||||
if (!operators[name])
|
||||
operators[name] = [];
|
||||
operators[name].push(operator);
|
||||
}
|
||||
}
|
||||
!}
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>{+data.alias+}</title>
|
||||
<base target="classFrame">
|
||||
<link rel="stylesheet" href="../resources/css/reference.css" type="text/css">
|
||||
<link rel="stylesheet" href="../resources/css/style.css" type="text/css">
|
||||
<link rel="stylesheet" href="../resources/css/lighter.css" type="text/css">
|
||||
<script src="../resources/js/bootstrap.js" type="text/javascript"></script>
|
||||
<script src="../resources/js/lighter.js" type="text/javascript"></script>
|
||||
<script src="../resources/js/reference.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body class="reference">
|
||||
<div class="reference-class">
|
||||
<h1>{+data.alias+}</h1>
|
||||
<p>{+processInlineTags(data.classDesc)+}</p>
|
||||
</div>
|
||||
<!-- ============================== constructors ========================= -->
|
||||
<div class="reference-members"><h2>Constructors</h2>
|
||||
<div id="{+data.classId+}" class="member">
|
||||
<div id="{+data.classId+}-link" class="member-link">
|
||||
<a name="{+data.classId+}" href="#" onClick="return toggleMember('{+data.classId+}', false);"><tt><b>{+ data.alias +}</b>{+ makeSignature(data.params) +}</tt></a>
|
||||
</div>
|
||||
<div id="{+data.classId+}-description" class="member-description hidden">
|
||||
<div class="member-header">
|
||||
<div class="member-title">
|
||||
<div class="member-link">
|
||||
<a href="#" onClick="return toggleMember('{+data.classId+}', false);"><tt><b>{+ data.alias +}</b>{+ makeSignature(data.params) +}</tt></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="member-close"><input type="button" value="Close" onClick="toggleMember('{+data.classId+}', false);"></div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<div class="member-text"><p>{+processInlineTags(data.desc)+}</p>
|
||||
<if test="data.example.length">
|
||||
<for each="example" in="data.example">
|
||||
<pre>{+example+}</pre>
|
||||
</for>
|
||||
</if>
|
||||
{+ templates.parameters.process(data) +}
|
||||
<if test="data.returns.length">
|
||||
<ul><b>Returns:</b>
|
||||
<li>
|
||||
<for each="item" in="data.returns">
|
||||
<dd>{+((item.type)?"<span class=\"light fixedFont\">{"+(new Link().toSymbol(item.type))+"}</span> " : "")+}{+processInlineTags(item.desc)+}</dd>
|
||||
</for>
|
||||
</li>
|
||||
</ul>
|
||||
</if>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style type="text/css">
|
||||
{+include("static/default.css")+}
|
||||
</style>
|
||||
</head>
|
||||
<!-- ============================== properties ========================= -->
|
||||
<if test="defined(operators)">
|
||||
<div class="reference-members"><h2>Operators</h2>
|
||||
<for each="member" in="operators">
|
||||
{+ templates.operators.process(member) +}
|
||||
</for>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<body>
|
||||
<!-- ============================== header ================================= -->
|
||||
<!-- begin static/header.html -->
|
||||
{+include("static/header.html")+}
|
||||
<!-- end static/header.html -->
|
||||
|
||||
<!-- ============================== classes index ============================ -->
|
||||
<div id="index">
|
||||
<!-- begin publish.classesIndex -->
|
||||
{+publish.classesIndex+}
|
||||
<!-- end publish.classesIndex -->
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<!-- ============================== class title ============================ -->
|
||||
<h1 class="classTitle">
|
||||
{!
|
||||
var classType = "";
|
||||
|
||||
if (data.isBuiltin()) {
|
||||
classType += "Built-In ";
|
||||
}
|
||||
|
||||
if (data.isNamespace) {
|
||||
if (data.is('FUNCTION')) {
|
||||
classType += "Function ";
|
||||
}
|
||||
classType += "Namespace ";
|
||||
}
|
||||
!}
|
||||
{+classType+}{+data.alias+}
|
||||
</h1>
|
||||
|
||||
<!-- ============================== class summary ========================== -->
|
||||
<p class="description">
|
||||
<if test="data.version"><br />Version
|
||||
{+ data.version +}.<br />
|
||||
</if>
|
||||
<if test="data.augments.length"><br />Extends
|
||||
{+
|
||||
data.augments
|
||||
.map(
|
||||
function($) { return new Link().toSymbol($); }
|
||||
)
|
||||
.join(", ")
|
||||
+}.<br />
|
||||
</if>
|
||||
|
||||
{+resolveLinks(data.classDesc)+}
|
||||
</p>
|
||||
|
||||
<!-- ============================== inherited properties summary ===================== -->
|
||||
<if test="data.properties.length">
|
||||
{! var ownProperties = data.properties.filter(function($){return $.memberOf == data.alias && !$.isNamespace}); !}
|
||||
<if test="data.inheritsFrom.length">
|
||||
<dl class="inheritsList">
|
||||
{!
|
||||
var borrowedMembers = data.properties.filter(function($) {return $.memberOf != data.alias});
|
||||
|
||||
var contributers = [];
|
||||
borrowedMembers.map(function($) {if (contributers.indexOf($.memberOf) < 0) contributers.push($.memberOf)});
|
||||
for (var i = 0, l = contributers.length; i < l; i++) {
|
||||
output +=
|
||||
"<dt>Functions inherited from "+new Link().toSymbol(contributers[i])+": </dt>"
|
||||
+
|
||||
"<dd>" +
|
||||
borrowedMembers
|
||||
.filter(
|
||||
function($) { return $.memberOf == contributers[i] }
|
||||
)
|
||||
.map(
|
||||
function($) { return new Link().toSymbol($.alias).withText($.name) }
|
||||
)
|
||||
.join(", ")
|
||||
+
|
||||
"</dd>";
|
||||
}
|
||||
!}
|
||||
</dl>
|
||||
</if>
|
||||
</if>
|
||||
|
||||
<!-- ============================== inherited methods summary ======================== -->
|
||||
<if test="data.methods.length">
|
||||
{! var ownMethods = data.methods.filter(function($){return $.memberOf == data.alias && !$.isNamespace}); !}
|
||||
|
||||
<if test="data.inheritsFrom.length">
|
||||
<dl class="inheritsList">
|
||||
{!
|
||||
var borrowedMembers = data.methods.filter(function($) {return $.memberOf != data.alias});
|
||||
var contributers = [];
|
||||
borrowedMembers.map(function($) {if (contributers.indexOf($.memberOf) < 0) contributers.push($.memberOf)});
|
||||
for (var i = 0, l = contributers.length; i < l; i++) {
|
||||
output +=
|
||||
"<dt>Methods inherited from "+new Link().toSymbol(contributers[i])+": </dt>"
|
||||
+
|
||||
"<dd>" +
|
||||
borrowedMembers
|
||||
.filter(
|
||||
function($) { return $.memberOf == contributers[i] }
|
||||
)
|
||||
.map(
|
||||
function($) { return new Link().toSymbol($.alias).withText($.name) }
|
||||
)
|
||||
.join(", ")
|
||||
+
|
||||
"</dd>";
|
||||
}
|
||||
|
||||
!}
|
||||
</dl>
|
||||
</if>
|
||||
</if>
|
||||
<!-- ============================== inherited events summary ======================== -->
|
||||
<if test="data.events.length">
|
||||
{! var ownEvents = data.events.filter(function($){return $.memberOf == data.alias && !$.isNamespace}); !}
|
||||
|
||||
<if test="data.inheritsFrom.length">
|
||||
<dl class="inheritsList">
|
||||
{!
|
||||
var borrowedMembers = data.events.filter(function($) {return $.memberOf != data.alias});
|
||||
var contributers = [];
|
||||
borrowedMembers.map(function($) {if (contributers.indexOf($.memberOf) < 0) contributers.push($.memberOf)});
|
||||
for (var i = 0, l = contributers.length; i < l; i++) {
|
||||
output +=
|
||||
"<dt>Events inherited from "+new Link().toSymbol(contributers[i])+": </dt>"
|
||||
+
|
||||
"<dd>" +
|
||||
borrowedMembers
|
||||
.filter(
|
||||
function($) { return $.memberOf == contributers[i] }
|
||||
)
|
||||
.map(
|
||||
function($) { return new Link().toSymbol($.alias).withText($.name) }
|
||||
)
|
||||
.join(", ")
|
||||
+
|
||||
"</dd>";
|
||||
}
|
||||
|
||||
!}
|
||||
</dl>
|
||||
</if>
|
||||
</if>
|
||||
|
||||
<!-- ============================== constructor details ==================== -->
|
||||
<if test="!data.isBuiltin() && (data.isNamespace || data.is('CONSTRUCTOR'))">
|
||||
<div class="details"><a name="constructor"> </a>
|
||||
<div class="sectionTitle">
|
||||
Constructor
|
||||
</div>
|
||||
|
||||
<div class="fixedFont">{!
|
||||
if (data.isPrivate) output += "<private> ";
|
||||
if (data.isInner) output += "<inner> ";
|
||||
!}
|
||||
<b>{+ data.alias +}</b><if test="classType != 'Namespace '">{+ makeSignature(data.params) +}</if>
|
||||
</div>
|
||||
|
||||
<div class="description">
|
||||
{+resolveLinks(data.desc)+}
|
||||
<if test="data.author"><br /><i>Author: </i>{+data.author+}.</if>
|
||||
</div>
|
||||
|
||||
<if test="data.example.length">
|
||||
<for each="example" in="data.example">
|
||||
<pre class="code">{+example+}</pre>
|
||||
</for>
|
||||
</if>
|
||||
|
||||
|
||||
<if test="data.params.length">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Parameters:</dt>
|
||||
<for each="item" in="data.params">
|
||||
<dt>
|
||||
<b>{+item.name+}</b> {+((item.type)?""+("<span class=\"light fixedFont\">{"+(new Link().toSymbol(item.type)+"}</span> ")) : "")+}
|
||||
<if test="item.isOptional"><i>Optional<if test="item.defaultValue">, Default: {+item.defaultValue+}</if></i></if>
|
||||
</dt>
|
||||
<dd>{+resolveLinks(item.desc)+}</dd>
|
||||
</for>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="data.deprecated">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Deprecated:</dt>
|
||||
<dt>
|
||||
{+resolveLinks(data.deprecated)+}
|
||||
</dt>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="data.since">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Since:</dt>
|
||||
<dd>{+ data.since +}</dd>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="data.exceptions.length">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Throws:</dt>
|
||||
<for each="item" in="data.exceptions">
|
||||
<dt>
|
||||
{+((item.type)?"<span class=\"light fixedFont\">{"+(new Link().toSymbol(item.type))+"}</span> " : "")+} <b>{+item.name+}</b>
|
||||
</dt>
|
||||
<dd>{+resolveLinks(item.desc)+}</dd>
|
||||
</for>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="data.returns.length">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Returns:</dt>
|
||||
<for each="item" in="data.returns">
|
||||
<dd>{+((item.type)?"<span class=\"light fixedFont\">{"+(new Link().toSymbol(item.type))+"}</span> " : "")+}{+resolveLinks(item.desc)+}</dd>
|
||||
</for>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="data.requires.length">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Requires:</dt>
|
||||
<for each="item" in="data.requires">
|
||||
<dd>{+ new Link().toSymbol(item) +}</dd>
|
||||
</for>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="data.see.length">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">See:</dt>
|
||||
<for each="item" in="data.see">
|
||||
<dd>{+ new Link().toSymbol(item) +}</dd>
|
||||
</for>
|
||||
</dl>
|
||||
</if>
|
||||
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<!-- ============================== field details ========================== -->
|
||||
<if test="defined(ownProperties) && ownProperties.length">
|
||||
<div class="sectionTitle">
|
||||
Properties
|
||||
</div>
|
||||
<for each="member" in="ownProperties">
|
||||
<a name="{+Link.symbolNameToLinkName(member)+}"> </a>
|
||||
<div class="fixedFont">{!
|
||||
if (member.isPrivate) output += "<private> ";
|
||||
if (member.isInner) output += "<inner> ";
|
||||
// if (member.isStatic) output += "<static> ";
|
||||
if (member.isConstant) output += "<constant> ";
|
||||
!}
|
||||
|
||||
<if test="member.isStatic && member.memberOf != '_global_'"><span class="light">{+member.memberOf+}.</span></if><b>{+member.name+}</b>
|
||||
<if test="member.type"><span class="light">{{+new Link().toSymbol(member.type)+}}</span></if>
|
||||
|
||||
</div>
|
||||
<div class="description">
|
||||
{+resolveLinks(member.desc)+}
|
||||
<if test="member.srcFile != data.srcFile">
|
||||
<br />
|
||||
<i>Defined in: </i> {+new Link().toSrc(member.srcFile)+}.
|
||||
</if>
|
||||
<if test="member.author"><br /><i>Author: </i>{+member.author+}.</if>
|
||||
</div>
|
||||
|
||||
<if test="member.example.length">
|
||||
<for each="example" in="member.example">
|
||||
<pre class="code">{+example+}</pre>
|
||||
</for>
|
||||
</if>
|
||||
|
||||
<if test="member.deprecated">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Deprecated:</dt>
|
||||
<dt>
|
||||
{+ resolveLinks(member.deprecated) +}
|
||||
</dt>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="member.since">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Since:</dt>
|
||||
<dd>{+ member.since +}</dd>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="member.see.length">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">See:</dt>
|
||||
<for each="item" in="member.see">
|
||||
<dd>{+ new Link().toSymbol(item) +}</dd>
|
||||
</for>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="member.defaultValue">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Default Value:</dt>
|
||||
<dd>
|
||||
{+resolveLinks(member.defaultValue)+}
|
||||
</dd>
|
||||
</dl>
|
||||
</if>
|
||||
|
||||
<if test="!$member_last"><hr /></if>
|
||||
</for>
|
||||
</if>
|
||||
<if test="defined(ownProperties) && ownProperties.length">
|
||||
<div class="reference-members"><h2>Properties</h2>
|
||||
<for each="member" in="ownProperties">
|
||||
{+ templates.property.process(member) +}
|
||||
</for>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<!-- ============================== method details ========================= -->
|
||||
<if test="defined(ownMethods) && ownMethods.length">
|
||||
<div class="sectionTitle">
|
||||
Functions
|
||||
</div>
|
||||
<for each="member" in="ownMethods">
|
||||
<a name="{+Link.symbolNameToLinkName(member)+}"> </a>
|
||||
<div class="fixedFont">
|
||||
{!
|
||||
if (member.isPrivate) output += "<private> ";
|
||||
if (member.isInner) output += "<inner> ";
|
||||
// if (member.isStatic) output += "<static> ";
|
||||
!}
|
||||
<if test="member.isStatic && member.memberOf != '_global_'"><span class="light">{+member.memberOf+}.</span></if><b>{+member.name.replace(/\^\d+$/, '')+}</b>{+makeSignature(member.params)+}
|
||||
</div>
|
||||
<div class="description">
|
||||
{+resolveLinks(member.desc)+}
|
||||
<if test="member.author"><br /><i>Author: </i>{+member.author+}.</if>
|
||||
</div>
|
||||
|
||||
<if test="member.example.length">
|
||||
<for each="example" in="member.example">
|
||||
<pre class="code">{+example+}</pre>
|
||||
</for>
|
||||
</if>
|
||||
|
||||
<if test="member.params.length">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Parameters:</dt>
|
||||
<for each="item" in="member.params">
|
||||
<dt>
|
||||
<b>{+item.name+}</b>{+((item.type)?"<span class=\"light fixedFont\">{"+(new Link().toSymbol(item.type))+"}</span> " : "")+}
|
||||
<if test="item.isOptional"><i>Optional<if test="item.defaultValue">, Default: {+item.defaultValue+}</if></i></if>
|
||||
</dt>
|
||||
<dd>{+resolveLinks(item.desc)+}</dd>
|
||||
</for>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="member.deprecated">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Deprecated:</dt>
|
||||
<dt>
|
||||
{+ resolveLinks(member.deprecated) +}
|
||||
</dt>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="member.since">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Since:</dt>
|
||||
<dd>{+ member.since +}</dd>
|
||||
</dl>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="member.exceptions.length">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Throws:</dt>
|
||||
<for each="item" in="member.exceptions">
|
||||
<dt>
|
||||
{+((item.type)?"<span class=\"light fixedFont\">{"+(new Link().toSymbol(item.type))+"}</span> " : "")+} <b>{+item.name+}</b>
|
||||
</dt>
|
||||
<dd>{+resolveLinks(item.desc)+}</dd>
|
||||
</for>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="member.returns.length">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Returns:</dt>
|
||||
<for each="item" in="member.returns">
|
||||
<dd>{+((item.type)?"<span class=\"light fixedFont\">{"+(new Link().toSymbol(item.type))+"}</span> " : "")+}{+resolveLinks(item.desc)+}</dd>
|
||||
</for>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="member.requires.length">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Requires:</dt>
|
||||
<for each="item" in="member.requires">
|
||||
<dd>{+ resolveLinks(item) +}</dd>
|
||||
</for>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="member.see.length">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">See:</dt>
|
||||
<for each="item" in="member.see">
|
||||
<dd>{+ new Link().toSymbol(item) +}</dd>
|
||||
</for>
|
||||
</dl>
|
||||
</if>
|
||||
|
||||
<if test="!$member_last"><hr /></if>
|
||||
</for>
|
||||
<if test="defined(ownMethods) && ownMethods.length">
|
||||
<div class="reference-members"><h2>Functions</h2>
|
||||
<for each="member" in="ownMethods">
|
||||
{! member.desc = processGroupTitle(member.desc, member) !}
|
||||
<if test="defined(member.groupTitle)">
|
||||
<h3>{+member.groupTitle+}</h3>
|
||||
</if>
|
||||
|
||||
<!-- ============================== event details ========================= -->
|
||||
<if test="defined(ownEvents) && ownEvents.length">
|
||||
<div class="sectionTitle">
|
||||
Event Detail
|
||||
</div>
|
||||
<for each="member" in="ownEvents">
|
||||
<a name="{+Link.symbolNameToLinkName(member)+}"> </a>
|
||||
<div class="fixedFont">{!
|
||||
if (member.isPrivate) output += "<private> ";
|
||||
if (member.isInner) output += "<inner> ";
|
||||
// if (member.isStatic) output += "<static> ";
|
||||
!}
|
||||
|
||||
<if test="member.type"><span class="light">{{+new Link().toSymbol(member.type)+}}</span></if>
|
||||
<if test="member.isStatic && member.memberOf != '_global_'"><span class="light">{+member.memberOf+}.</span></if><b>{+member.name+}</b>{+makeSignature(member.params)+}
|
||||
|
||||
</div>
|
||||
<div class="description">
|
||||
{+resolveLinks(member.desc)+}
|
||||
<if test="member.srcFile != data.srcFile">
|
||||
<br />
|
||||
<i>Defined in: </i> {+new Link().toSrc(member.srcFile)+}.
|
||||
</if>
|
||||
<if test="member.author"><br /><i>Author: </i>{+member.author+}.</if>
|
||||
</div>
|
||||
|
||||
<if test="member.example.length">
|
||||
<for each="example" in="member.example">
|
||||
<pre class="code">{+example+}</pre>
|
||||
</for>
|
||||
</if>
|
||||
|
||||
<if test="member.params.length">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Parameters:</dt>
|
||||
<for each="item" in="member.params">
|
||||
<dt>
|
||||
<b>{+item.name+}</b>{+((item.type)?"<span class=\"light fixedFont\">{"+(new Link().toSymbol(item.type))+"}</span> " : "")+}
|
||||
<if test="item.isOptional"><i>Optional<if test="item.defaultValue">, Default: {+item.defaultValue+}</if></i></if>
|
||||
</dt>
|
||||
<dd>{+ resolveLinks(item.desc) +}</dd>
|
||||
</for>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="member.deprecated">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Deprecated:</dt>
|
||||
<dt>
|
||||
{+ resolveLinks(member.deprecated) +}
|
||||
</dt>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="member.since">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Since:</dt>
|
||||
<dd>{+ member.since +}</dd>
|
||||
</dl>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="member.exceptions.length">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Throws:</dt>
|
||||
<for each="item" in="member.exceptions">
|
||||
<dt>
|
||||
{+((item.type)?"<span class=\"light fixedFont\">{"+(new Link().toSymbol(item.type))+"}</span> " : "")+} <b>{+item.name+}</b>
|
||||
</dt>
|
||||
<dd>{+ resolveLinks(item.desc) +}</dd>
|
||||
</for>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="member.returns.length">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Returns:</dt>
|
||||
<for each="item" in="member.returns">
|
||||
<dd>{+((item.type)?"<span class=\"light fixedFont\">{"+(new Link().toSymbol(item.type))+"}</span> " : "")+}{+resolveLinks(item.desc)+}</dd>
|
||||
</for>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="member.requires.length">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">Requires:</dt>
|
||||
<for each="item" in="member.requires">
|
||||
<dd>{+ resolveLinks(item) +}</dd>
|
||||
</for>
|
||||
</dl>
|
||||
</if>
|
||||
<if test="member.see.length">
|
||||
<dl class="detailList">
|
||||
<dt class="heading">See:</dt>
|
||||
<for each="item" in="member.see">
|
||||
<dd>{+ new Link().toSymbol(item) +}</dd>
|
||||
</for>
|
||||
</dl>
|
||||
</if>
|
||||
{+ templates.method.process(member) +}
|
||||
</for>
|
||||
</div>
|
||||
</if>
|
||||
<if test="defined(staticMethods) && staticMethods.length">
|
||||
<div class="reference-members"><h2>Static Functions</h2>
|
||||
<for each="member" in="staticMethods">
|
||||
{+ templates.method.process(member) +}
|
||||
</for>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<if test="!$member_last"><hr /></if>
|
||||
</for>
|
||||
</if>
|
||||
|
||||
<hr />
|
||||
</div>
|
||||
|
||||
|
||||
<!-- ============================== footer ================================= -->
|
||||
<div class="fineprint" style="clear:both">
|
||||
<if test="JSDOC.opt.D.copyright">©{+JSDOC.opt.D.copyright+}<br /></if>
|
||||
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> {+JSDOC.VERSION+} on {+new Date()+}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</body>
|
29
build/jsdoc-toolkit/templates/jsdoc/classorder.txt
Normal file
29
build/jsdoc-toolkit/templates/jsdoc/classorder.txt
Normal file
|
@ -0,0 +1,29 @@
|
|||
Point
|
||||
Rectangle
|
||||
Size
|
||||
Matrix
|
||||
Color
|
||||
GrayColor
|
||||
RGBColor
|
||||
GradientColor
|
||||
Item
|
||||
PathItem
|
||||
Path
|
||||
CompoundPath
|
||||
TextItem
|
||||
PointText
|
||||
Raster
|
||||
Group
|
||||
Layer
|
||||
PlacedItem
|
||||
Symbol
|
||||
Project
|
||||
ProjectView
|
||||
Segment
|
||||
Curve
|
||||
PathStyle
|
||||
CharacterStyle
|
||||
ParagraphStyle
|
||||
Gradient
|
||||
GradientStop
|
||||
Symbol
|
6
build/jsdoc-toolkit/templates/jsdoc/examples.tmpl
Normal file
6
build/jsdoc-toolkit/templates/jsdoc/examples.tmpl
Normal file
|
@ -0,0 +1,6 @@
|
|||
<if test="data.example.length">
|
||||
<for each="example" in="data.example">
|
||||
<p>Sample code:</p>
|
||||
<pre>{+example+}</pre>
|
||||
</for>
|
||||
</if>
|
|
@ -25,7 +25,7 @@
|
|||
<for each="thisClass" in="data">
|
||||
<div>
|
||||
<h2>{+(new Link().toSymbol(thisClass.alias))+}</h2>
|
||||
{+resolveLinks(summarize(thisClass.classDesc))+}
|
||||
{+processInlineTags(summarize(thisClass.classDesc))+}
|
||||
</div>
|
||||
<hr />
|
||||
</for>
|
||||
|
|
43
build/jsdoc-toolkit/templates/jsdoc/method.tmpl
Normal file
43
build/jsdoc-toolkit/templates/jsdoc/method.tmpl
Normal file
|
@ -0,0 +1,43 @@
|
|||
{!
|
||||
var memberId = Helpers.getSymbolId(data);
|
||||
var functionTitle = '<b>' + data.name.replace(/\^\d+$/, '') + '</b>' + makeSignature(data.params);
|
||||
if (data.isStatic)
|
||||
functionTitle = '<b>' + data.memberOf + '.</b>' + functionTitle;
|
||||
!}
|
||||
|
||||
<div id="{+ memberId +}" class="member">
|
||||
<div id="{+ memberId +}-link" class="member-link">
|
||||
<a name="{+ memberId +}" href="#" onClick="return toggleMember('{+ memberId +}', false);"><tt>{+ functionTitle +}</tt></a>
|
||||
</div>
|
||||
<div id="{+ memberId +}-description" class="member-description hidden">
|
||||
<div class="member-header">
|
||||
<div class="member-title">
|
||||
<div class="member-link">
|
||||
<a href="#" onClick="return toggleMember('{+ memberId +}', false);"><tt>{+ functionTitle +}</tt></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="member-close"><input type="button" value="Close" onClick="toggleMember('{+ memberId +}', false);"></div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<div class="member-text"><p>{+processInlineTags(data.desc)+}</p>
|
||||
{+ new JSDOC.JsPlate(publish.conf.templatesDir+"examples.tmpl").process(data) +}
|
||||
{+ new JSDOC.JsPlate(publish.conf.templatesDir+"parameters.tmpl").process(data) +}
|
||||
<if test="data.returns.length">
|
||||
<ul><b>Returns:</b>
|
||||
<for each="item" in="data.returns">
|
||||
<li>
|
||||
<tt><if test="defined(item.type)">{+ new Link().toSymbol(item.type) +}<if test="item.desc"> — </if></if>{+processInlineTags(item.desc)+}</tt>
|
||||
</li>
|
||||
</for>
|
||||
</ul>
|
||||
</if>
|
||||
<if test="data.see.length">
|
||||
<p><b>See also:</b>
|
||||
<for each="item" in="data.see">
|
||||
<tt>{+ new Link().toSymbol(item) +}</tt>
|
||||
</for>
|
||||
</p>
|
||||
</if>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
52
build/jsdoc-toolkit/templates/jsdoc/operators.tmpl
Normal file
52
build/jsdoc-toolkit/templates/jsdoc/operators.tmpl
Normal file
|
@ -0,0 +1,52 @@
|
|||
{!
|
||||
var operatorCount = 0;
|
||||
var operatorTitle = [];
|
||||
for (var i = 0, l = data.length; i < l; i++) {
|
||||
var type = data[i].params[0].type;
|
||||
type = type.charAt(0).toUpperCase() + type.slice(1);
|
||||
operatorTitle.push('<tt><b>' + Operator.getOperator(data[i]) + '</b> ' + type + '</tt>');
|
||||
}
|
||||
operatorTitle = operatorTitle.join(', ');
|
||||
!}
|
||||
<for each="operator" in="data">
|
||||
{!
|
||||
var type = operator.params[0].type;
|
||||
type = type.charAt(0).toUpperCase() + type.slice(1);
|
||||
var functionTitle = '<b>' + Operator.getOperator(operator) + '</b> ' + type;
|
||||
!}
|
||||
<if test="operatorCount == 0">
|
||||
{!
|
||||
var memberId = operator.name.toLowerCase().replace(/\^[0-9]$/,'');
|
||||
!}
|
||||
<div id="{+ memberId +}" class="member">
|
||||
<div id="{+ memberId +}-link" class="member-link">
|
||||
<a name="{+ memberId +}" href="#" onClick="return toggleMember('{+ memberId +}', false);"><tt>{+ operatorTitle +}</tt></a>
|
||||
</div>
|
||||
<div id="{+ memberId +}-description" class="member-description hidden">
|
||||
</if>
|
||||
<div class="member-header">
|
||||
<div class="member-title">
|
||||
<div class="member-link">
|
||||
<a href="#" onClick="return toggleMember('{+ memberId +}', false);"><tt>{+ functionTitle +}</tt></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="member-close"><input type="button" value="Close" onClick="toggleMember('{+ memberId +}', false);"></div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<if test="operator.type">
|
||||
<div class="member-text"><p>{+processInlineTags(operator.desc)+}</p>
|
||||
{+ new JSDOC.JsPlate(publish.conf.templatesDir+"examples.tmpl").process(operator) +}
|
||||
<ul><b>Returns:</b>
|
||||
<for each="item" in="operator.returns">
|
||||
<li>
|
||||
<tt><if test="defined(item.type)">{+ new Link().toSymbol(item.type) +} — </if>{+processInlineTags(item.desc)+}</tt>
|
||||
</li>
|
||||
</for>
|
||||
</ul></div>
|
||||
</if>
|
||||
<if test="operatorCount == data.length - 1">
|
||||
</div>
|
||||
</div>
|
||||
</if>
|
||||
{! operatorCount++; !}
|
||||
</for>
|
11
build/jsdoc-toolkit/templates/jsdoc/parameters.tmpl
Normal file
11
build/jsdoc-toolkit/templates/jsdoc/parameters.tmpl
Normal file
|
@ -0,0 +1,11 @@
|
|||
<if test="data.params.length">
|
||||
<ul><b>Parameters:</b>
|
||||
<for each="parameter" in="data.params">
|
||||
<li>
|
||||
<tt>{+ parameter.name +}: </tt>
|
||||
{+ new Link().toSymbol(parameter.type) +}
|
||||
<if test="parameter.defaultValue">— optional, default: <tt>{+parameter.defaultValue+}</tt></if>
|
||||
</li>
|
||||
</for>
|
||||
</ul>
|
||||
</if>
|
45
build/jsdoc-toolkit/templates/jsdoc/property.tmpl
Normal file
45
build/jsdoc-toolkit/templates/jsdoc/property.tmpl
Normal file
|
@ -0,0 +1,45 @@
|
|||
{!
|
||||
data.desc = processGroupTitle(data.desc, data);
|
||||
|
||||
var memberId = Helpers.getSymbolId(data);
|
||||
var title = '<b>' + data.name.replace(/\^\d+$/, '') + '</b>';
|
||||
if (data.isStatic)
|
||||
title = '<b>' + data.memberOf + '.</b>' + title;
|
||||
|
||||
!}
|
||||
<if test="defined(data.groupTitle)">
|
||||
<h3>{+data.groupTitle+}</h3>
|
||||
</if>
|
||||
<div id="{+ memberId +}" class="member">
|
||||
<div id="{+ memberId +}-link" class="member-link">
|
||||
<a name="{+ memberId +}" href="#" onClick="return toggleMember('{+ memberId +}', false);"><tt>{+ title +}</tt></a>
|
||||
</div>
|
||||
<div id="{+ memberId +}-description" class="member-description hidden">
|
||||
<div class="member-header">
|
||||
<div class="member-title">
|
||||
<div class="member-link">
|
||||
<a href="#" onClick="return toggleMember('{+ memberId +}', false);"><tt>{+ title +}</tt></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="member-close"><input type="button" value="Close" onClick="toggleMember('{+ memberId +}', false);"></div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<if test="data.type">
|
||||
<div class="member-text"><p>
|
||||
{+processInlineTags(data.desc)+}<if test="data.readOnly"> Read only.</if></p>
|
||||
{+ new JSDOC.JsPlate(publish.conf.templatesDir+"examples.tmpl").process(data) +}
|
||||
<if test="data.defaultValue">
|
||||
<ul><b>Default:</b>
|
||||
<li>
|
||||
<tt>{+data.defaultValue+}</tt>
|
||||
</li>
|
||||
</ul>
|
||||
</if>
|
||||
<ul><b>Type:</b>
|
||||
<li>
|
||||
<tt>{+new Link().toSymbol(data.type)+}</tt>
|
||||
</li>
|
||||
</ul></div>
|
||||
</if>
|
||||
</div>
|
||||
</div>
|
|
@ -1,11 +1,73 @@
|
|||
var templates;
|
||||
|
||||
var Operator = new function() {
|
||||
var operators = {
|
||||
add: '+', subtract: '-', multiply: '*', divide: '/', equals: '==',
|
||||
modulo: '%'
|
||||
};
|
||||
var operatorNames = {
|
||||
add: 'Addition', subtract: 'Subtraction', multiply: 'Multiplication',
|
||||
divide: 'Division', equals: 'Comparison', modulo: 'Modulo'
|
||||
};
|
||||
|
||||
var operatorClasses = {
|
||||
Point: true,
|
||||
Size: true
|
||||
};
|
||||
|
||||
return {
|
||||
isOperator: function(symbol) {
|
||||
// As a convention, only add non static bean properties to
|
||||
// the documentation. static properties are all supposed to
|
||||
// be uppercae and constants.
|
||||
if (symbol.operator == 'none')
|
||||
print(!(symbol.operator && symbol.operator != 'none'));
|
||||
return symbol.params.length == 1 && !symbol.isStatic && (
|
||||
/^(add|subtract|multiply|divide|modulo)(\^[0-9])*$/.test(symbol.name)
|
||||
&& (symbol.operator != 'none')
|
||||
) || ( // equals
|
||||
symbol.name == 'equals'
|
||||
&& symbol.returns.length && symbol.returns[0].type == 'boolean'
|
||||
);
|
||||
},
|
||||
|
||||
getOperator: function(symbol) {
|
||||
return operators[symbol.name.replace(/\^[0-9]$/,'')];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var Helpers = {
|
||||
getSymbolId: function(symbol) {
|
||||
var id = [symbol.name.toLowerCase().replace(/[\^][0-9]/g, '')];
|
||||
if (symbol.params) {
|
||||
for (var i = 0, l = symbol.params.length; i < l; i++) {
|
||||
var param = symbol.params[i];
|
||||
if (!param.isOptional)
|
||||
id.push(param.name);
|
||||
}
|
||||
}
|
||||
return id.join('-');
|
||||
}
|
||||
};
|
||||
|
||||
/** Called automatically by JsDoc Toolkit. */
|
||||
function publish(symbolSet) {
|
||||
publish.conf = { // trailing slash expected for dirs
|
||||
ext: ".html",
|
||||
outDir: JSDOC.opt.d || SYS.pwd+"../out/jsdoc/",
|
||||
ext: ".html",
|
||||
outDir: JSDOC.opt.d || SYS.pwd+"../out/jsdoc/",
|
||||
templatesDir: JSDOC.opt.t || SYS.pwd+"../templates/jsdoc/",
|
||||
symbolsDir: "symbols/",
|
||||
srcDir: "symbols/src/"
|
||||
srcDir: "symbols/src/"
|
||||
};
|
||||
|
||||
templates = {
|
||||
_class: new JSDOC.JsPlate(publish.conf.templatesDir + "class.tmpl"),
|
||||
method: new JSDOC.JsPlate(publish.conf.templatesDir + "method.tmpl"),
|
||||
property: new JSDOC.JsPlate(publish.conf.templatesDir + "property.tmpl"),
|
||||
parameters: new JSDOC.JsPlate(publish.conf.templatesDir + "parameters.tmpl"),
|
||||
operators: new JSDOC.JsPlate(publish.conf.templatesDir + "operators.tmpl"),
|
||||
examples: new JSDOC.JsPlate(publish.conf.templatesDir + "examples.tmpl")
|
||||
};
|
||||
|
||||
// is source output is suppressed, just display the links to the source file
|
||||
|
@ -14,10 +76,13 @@ function publish(symbolSet) {
|
|||
return "<"+srcFilePath+">";
|
||||
}
|
||||
}
|
||||
|
||||
// Copy over the static files
|
||||
copyDirectory(
|
||||
new java.io.File(publish.conf.templatesDir + 'resources/'),
|
||||
new java.io.File(publish.conf.outDir + 'resources/')
|
||||
);
|
||||
|
||||
// create the folders and subfolders to hold the output
|
||||
IO.mkPath((publish.conf.outDir+"symbols/src").split("/"));
|
||||
|
||||
// used to allow Link to check the details of things being linked to
|
||||
Link.symbolSet = symbolSet;
|
||||
|
||||
|
@ -41,11 +106,11 @@ function publish(symbolSet) {
|
|||
|
||||
// create the hilited source code files
|
||||
var files = JSDOC.opt.srcFiles;
|
||||
for (var i = 0, l = files.length; i < l; i++) {
|
||||
var file = files[i];
|
||||
var srcDir = publish.conf.outDir + "symbols/src/";
|
||||
for (var i = 0, l = files.length; i < l; i++) {
|
||||
var file = files[i];
|
||||
var srcDir = publish.conf.outDir + "symbols/src/";
|
||||
makeSrcFile(file, srcDir);
|
||||
}
|
||||
}
|
||||
|
||||
// get a list of all the classes in the symbolset
|
||||
var classes = symbols.filter(isaClass).sort(makeSortby("alias"));
|
||||
|
@ -76,6 +141,10 @@ function publish(symbolSet) {
|
|||
|
||||
symbol.events = symbol.getEvents(); // 1 order matters
|
||||
symbol.methods = symbol.getMethods(); // 2
|
||||
for (var j = 0; j < symbol.methods.length; j++) {
|
||||
var method = symbol.methods[j];
|
||||
method.isOperator = Operator.isOperator(method);
|
||||
}
|
||||
|
||||
Link.currentSymbol= symbol;
|
||||
var output = "";
|
||||
|
@ -173,29 +242,80 @@ function makeSrcFile(path, srcDir, name) {
|
|||
/** Build output for displaying function parameters. */
|
||||
function makeSignature(params) {
|
||||
if (!params) return "()";
|
||||
var signature = "("
|
||||
+
|
||||
params.filter(
|
||||
var postString = '';
|
||||
var first = true;
|
||||
params = params.filter(
|
||||
function($) {
|
||||
return $.name.indexOf(".") == -1; // don't show config params in signature
|
||||
}
|
||||
).map(
|
||||
function($) {
|
||||
return $.name;
|
||||
);
|
||||
var signature = '';
|
||||
var postSignature = '';
|
||||
for (var i = 0, l = params.length; i < l; i++) {
|
||||
var param = params[i];
|
||||
if (param.isOptional) {
|
||||
signature += '[';
|
||||
postSignature += ']';
|
||||
}
|
||||
).join(", ")
|
||||
+
|
||||
")";
|
||||
return signature;
|
||||
if (i > 0)
|
||||
signature += ', ';
|
||||
signature += param.name;
|
||||
}
|
||||
return '(' + signature + postSignature + ')';
|
||||
}
|
||||
|
||||
/** Find symbol {@link ...} strings in text and turn into html links */
|
||||
function resolveLinks(str, from) {
|
||||
str = str.replace(/\{@link ([^} ]+) ?\}/gi,
|
||||
function(match, symbolName) {
|
||||
return new Link().toSymbol(symbolName);
|
||||
}
|
||||
);
|
||||
|
||||
function processGroupTitle(str, symbol) {
|
||||
// if (/grouptitle/.test(str))
|
||||
// print('yeah');
|
||||
// print(str);
|
||||
var groupTitle = str.match(/\{@grouptitle ([^}]+)\}/);
|
||||
if (groupTitle) {
|
||||
symbol.groupTitle = groupTitle[1];
|
||||
str = str.replace(/\{@grouptitle ([^}]+)\}/, '');
|
||||
}
|
||||
return str;
|
||||
}
|
||||
|
||||
function processInlineTags(str) {
|
||||
|
||||
// {@link ...} -> html links
|
||||
str = str.replace(/\{@link ([^} ]+) ?\}/gi,
|
||||
function(match, symbolName) {
|
||||
return new Link().toSymbol(symbolName.replace(/[\^]/g, '-'));
|
||||
}
|
||||
);
|
||||
// {@code ...} -> code blocks
|
||||
str = str.replace(/\{@code[\s]([^}]+)\}/gi,
|
||||
function(match, code) {
|
||||
return '<tt>' + code + '</tt>';
|
||||
}
|
||||
);
|
||||
return str;
|
||||
}
|
||||
|
||||
function copyStatic(dir) {
|
||||
var dir = publish.conf.templatesDir + 'resources/';
|
||||
|
||||
}
|
||||
|
||||
function copyDirectory(sourceLocation, targetLocation) {
|
||||
if (sourceLocation.isDirectory()) {
|
||||
if (!targetLocation.exists()) {
|
||||
targetLocation.mkdir();
|
||||
}
|
||||
|
||||
var children = sourceLocation.list();
|
||||
for (var i = 0; i < children.length; i++) {
|
||||
copyDirectory(new File(sourceLocation, children[i]),
|
||||
new File(targetLocation, children[i]));
|
||||
}
|
||||
} else {
|
||||
// Copy the file with FileChannels:
|
||||
targetLocation.createNewFile();
|
||||
var src = new java.io.FileInputStream(sourceLocation).getChannel();
|
||||
var dst = new java.io.FileOutputStream(targetLocation).getChannel();
|
||||
var amount = dst.transferFrom(src, 0, src.size());
|
||||
src.close();
|
||||
dst.close();
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 62 B |
Binary file not shown.
After Width: | Height: | Size: 62 B |
BIN
build/jsdoc-toolkit/templates/jsdoc/resources/assets/dotted.gif
Normal file
BIN
build/jsdoc-toolkit/templates/jsdoc/resources/assets/dotted.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 60 B |
Binary file not shown.
After Width: | Height: | Size: 88 B |
BIN
build/jsdoc-toolkit/templates/jsdoc/resources/assets/spacer.gif
Normal file
BIN
build/jsdoc-toolkit/templates/jsdoc/resources/assets/spacer.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 49 B |
115
build/jsdoc-toolkit/templates/jsdoc/resources/css/lighter.css
Normal file
115
build/jsdoc-toolkit/templates/jsdoc/resources/css/lighter.css
Normal file
|
@ -0,0 +1,115 @@
|
|||
ol.ltLighter {
|
||||
font-family: Menlo, Consolas, "Vera Mono", monospace;
|
||||
font-size: 10px;
|
||||
overflow: auto;
|
||||
white-space: pre-wrap;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
ol.ltLighter {
|
||||
white-space: -moz-pre-wrap;
|
||||
}
|
||||
|
||||
ol.ltLighter {
|
||||
white-space: -pre-wrap;
|
||||
}
|
||||
|
||||
ol.ltLighter {
|
||||
white-space: -o-pre-wrap;
|
||||
}
|
||||
|
||||
ol.ltLighter {
|
||||
color: #939393;
|
||||
list-style: decimal-leading-zero;
|
||||
background-color: #f4f4f4;
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
ol.ltLighter li {
|
||||
border-left: 1px solid #939393;
|
||||
padding: 0 3px 0 10px;
|
||||
background-color: #fff;
|
||||
padding-left: 15px;
|
||||
padding-right: 5px;
|
||||
margin-left: 40px;
|
||||
}
|
||||
|
||||
ol.ltLighter .ltfirst {
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
ol.ltLighter .ltlast {
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
ol.ltLighter .alt {
|
||||
background-color: #edf5fc;
|
||||
}
|
||||
|
||||
ol.ltLighter span {
|
||||
color: black;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
ol.ltLighter .de1 {
|
||||
}
|
||||
|
||||
ol.ltLighter .de2 {
|
||||
}
|
||||
|
||||
ol.ltLighter .kw1 {
|
||||
color: #1b609a;
|
||||
}
|
||||
|
||||
ol.ltLighter .kw2 {
|
||||
color: #9a6f1b;
|
||||
}
|
||||
|
||||
ol.ltLighter .kw3 {
|
||||
color: #784e0c;
|
||||
}
|
||||
|
||||
ol.ltLighter .co1 {
|
||||
color: #888888;
|
||||
}
|
||||
|
||||
ol.ltLighter .co2 {
|
||||
color: #888888;
|
||||
}
|
||||
|
||||
ol.ltLighter .st0 {
|
||||
color: #489a1b;
|
||||
}
|
||||
|
||||
ol.ltLighter .st1 {
|
||||
color: #70483d;
|
||||
}
|
||||
|
||||
ol.ltLighter .st2 {
|
||||
color: #70483d;
|
||||
}
|
||||
|
||||
ol.ltLighter .nu0 {
|
||||
color: #70483d;
|
||||
}
|
||||
|
||||
ol.ltLighter .me0 {
|
||||
color: #666666;
|
||||
}
|
||||
|
||||
ol.ltLighter .br0 {
|
||||
color: #444444;
|
||||
}
|
||||
|
||||
ol.ltLighter .sy0 {
|
||||
color: #444444;
|
||||
}
|
||||
|
||||
ol.ltLighter .es0 {
|
||||
color: #444444;
|
||||
}
|
||||
|
||||
ol.ltLighter .re0 {
|
||||
color: #784e0c;
|
||||
}
|
120
build/jsdoc-toolkit/templates/jsdoc/resources/css/reference.css
Normal file
120
build/jsdoc-toolkit/templates/jsdoc/resources/css/reference.css
Normal file
|
@ -0,0 +1,120 @@
|
|||
.reference h1, .reference h2, .reference h3 {
|
||||
font-size: 12px;
|
||||
font-weight: normal;
|
||||
display: block;
|
||||
margin: 0 0 16px 0;
|
||||
height: 17px; /* -1 for border */
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
|
||||
.reference h3 {
|
||||
margin-top: 16px;
|
||||
border-bottom-style: dotted;
|
||||
}
|
||||
|
||||
.reference a tt, .reference a tt b {
|
||||
padding-bottom: 1px;
|
||||
}
|
||||
|
||||
.reference pre {
|
||||
margin: 0 0 18px 0;
|
||||
}
|
||||
|
||||
.reference ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.reference-list ul, .reference-inherited ul {
|
||||
margin-left: 16px;
|
||||
}
|
||||
|
||||
.reference hr {
|
||||
border: none;
|
||||
border-bottom: 1px dotted #000;
|
||||
}
|
||||
|
||||
.reference-packages {
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
.reference-packages h2, .reference-packages h3, .reference-packages hr {
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
.reference-packages .first h2 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
* html .reference-packages img {
|
||||
margin-top: 5px;
|
||||
}
|
||||
.reference-packages li {
|
||||
list-style: none;
|
||||
list-style-image: none; /* needed for ie 6 */
|
||||
}
|
||||
|
||||
.reference-end {
|
||||
height: 600px;
|
||||
}
|
||||
|
||||
.reference-members {
|
||||
padding-bottom: 16px;
|
||||
}
|
||||
|
||||
.member-group-text {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.member-description {
|
||||
border: 1px solid #999;
|
||||
/* .member-header defines border-top for operator lists */
|
||||
border-top: 0;
|
||||
margin: 16px 0 16px 0;
|
||||
}
|
||||
|
||||
.member-header {
|
||||
border-top: 1px solid #999;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.member-title {
|
||||
float: left;
|
||||
width: 400px;
|
||||
}
|
||||
|
||||
.member-close {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.member-text {
|
||||
border-top: 1px dashed #999;
|
||||
padding: 10px 10px 0 10px;
|
||||
}
|
||||
|
||||
.member-link {
|
||||
text-indent: -30px;
|
||||
padding-left: 30px;
|
||||
}
|
||||
|
||||
.reference-inherited ul li {
|
||||
text-indent: -30px;
|
||||
padding-left: 30px;
|
||||
}
|
||||
|
||||
.member-text ul {
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
ul.package-classes {
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
|
||||
.package-classes li {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.package-classes li h2 {
|
||||
margin-left: -10px;
|
||||
}
|
85
build/jsdoc-toolkit/templates/jsdoc/resources/css/style.css
Normal file
85
build/jsdoc-toolkit/templates/jsdoc/resources/css/style.css
Normal file
|
@ -0,0 +1,85 @@
|
|||
body {
|
||||
background: #fff;
|
||||
margin: 16px;
|
||||
font-family: "Lucida Grande", Geneva, Verdana, Arial, sans-serif;
|
||||
font-size: 12px;
|
||||
line-height: 19px;
|
||||
color: #000;
|
||||
max-width: 540px;
|
||||
}
|
||||
|
||||
select, input, textarea {
|
||||
font-family: "Lucida Grande", Geneva, Verdana, Arial, sans-serif;
|
||||
font-size: 11px;
|
||||
margin: 0;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
p tt, pre {
|
||||
font-family: Menlo, Consolas, "Vera Mono", monospace;
|
||||
font-size: 11px;
|
||||
line-height: 19px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
padding-bottom: 1px;
|
||||
border-bottom: 1px solid #000;
|
||||
}
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
background: #e5e5e5;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0 0 19px 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0 0 19px 16px;
|
||||
list-style: disc outside url(../assets/bullet.gif);
|
||||
}
|
||||
|
||||
ol {
|
||||
padding: 0;
|
||||
margin: 0 0 19px 0;
|
||||
}
|
||||
|
||||
.clear {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.reference-packages, .reference-packages a {
|
||||
color: #009dec;
|
||||
border-bottom: 0px;
|
||||
}
|
||||
|
||||
/* border-bottom color for headers and ruler */
|
||||
.reference-packages h2, .reference-packages h3, .reference-packages hr {
|
||||
border-color: #009dec;
|
||||
}
|
||||
|
||||
.reference-packages a:hover {
|
||||
background: #e3f4fc;
|
||||
}
|
||||
|
||||
.reference h1 {
|
||||
font-size: 18px;
|
||||
font-weight: normal;
|
||||
line-height: 24px;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.footer {
|
||||
margin-top: 20px;
|
||||
}
|
4003
build/jsdoc-toolkit/templates/jsdoc/resources/js/bootstrap.js
vendored
Normal file
4003
build/jsdoc-toolkit/templates/jsdoc/resources/js/bootstrap.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
826
build/jsdoc-toolkit/templates/jsdoc/resources/js/lighter.js
Normal file
826
build/jsdoc-toolkit/templates/jsdoc/resources/js/lighter.js
Normal file
|
@ -0,0 +1,826 @@
|
|||
/**
|
||||
* Script:
|
||||
* Fuel.js - Language definition engine for Lighter.js
|
||||
*
|
||||
* License:
|
||||
* MIT-style license.
|
||||
*
|
||||
* Author:
|
||||
* José Prado
|
||||
*
|
||||
* Copyright:
|
||||
* Copyright (©) 2009 [Jose Prado](http://pradador.com/).
|
||||
*
|
||||
* Changelog:
|
||||
* 2009/03/21 (1.0.0)
|
||||
* - Initial Release
|
||||
*
|
||||
*/
|
||||
Fuel = Base.extend(Callback, {
|
||||
|
||||
options: {
|
||||
matchType: 'standard',
|
||||
strict: false
|
||||
},
|
||||
language: '',
|
||||
defaultFlame: 'standard',
|
||||
|
||||
patterns: new Hash(),
|
||||
keywords: new Hash(),
|
||||
rules: new Hash(),
|
||||
delimiters: new Hash({
|
||||
start: null,
|
||||
end: null
|
||||
}),
|
||||
|
||||
/************************
|
||||
* Common Regex Rules
|
||||
***********************/
|
||||
common: {
|
||||
slashComments: /(?:^|[^\\])\/\/.*$/gm, // Matches a C style single-line comment.
|
||||
poundComments: /#.*$/gm, // Matches a Perl style single-line comment.
|
||||
multiComments: /\/\*[\s\S]*?\*\//gm, // Matches a C style multi-line comment.
|
||||
aposStrings: /'[^'\\]*(?:\\.[^'\\]*)*'/gm, // Matches a string enclosed by single quotes.
|
||||
quotedStrings: /"[^"\\]*(?:\\.[^"\\]*)*"/gm, // Matches a string enclosed by double quotes.
|
||||
strings: /'[^'\\]*(?:\\.[^'\\]*)*'|"[^"\\]*(?:\\.[^"\\]*)*"/gm, // Matches both.
|
||||
properties: /\.([\w]+)\s*/gi, // Matches a property: .property style.
|
||||
methodCalls: /\.([\w]+)\s*\(/gm, // Matches a method call: .methodName() style.
|
||||
functionCalls: /\b([\w]+)\s*\(/gm, // Matches a function call: functionName() style.
|
||||
brackets: /\{|\}|\(|\)|\[|\]/g, // Matches any of the common brackets.
|
||||
numbers: /\b((?:(\d+)?\.)?[0-9]+|0x[0-9A-F]+)\b/gi // Matches integers, decimals, hexadecimals.
|
||||
},
|
||||
|
||||
/************************
|
||||
* Fuel Constructor
|
||||
***********************/
|
||||
initialize: function(lighter, flame, options, wicks) {
|
||||
this.setOptions(options);
|
||||
this.wicks = wicks || [];
|
||||
// Set Lighter/Fuel/Flame relationship.
|
||||
this.lighter = lighter;
|
||||
this.flame = flame;
|
||||
|
||||
// Set builder object for matchType.
|
||||
this.builder = new Hash({
|
||||
'standard': this.findMatches,
|
||||
'lazy': this.findMatchesLazy
|
||||
});
|
||||
|
||||
// Add delimiter rules if not in strict mode
|
||||
if (!options.strict) {
|
||||
if (this.delimiters.start) this.addFuel('delimBeg', this.delimiters.start, 'de1');
|
||||
if (this.delimiters.end) this.addFuel('delimEnd', this.delimiters.end, 'de2');
|
||||
}
|
||||
|
||||
// Set Keyword Rules from this.keywords object.
|
||||
this.keywords.each(function(keywordSet, ruleName) {
|
||||
if (keywordSet.csv != '') {
|
||||
this.addFuel(ruleName, this.csvToRegExp(keywordSet.csv, "g"), keywordSet.alias);
|
||||
}
|
||||
}, this);
|
||||
|
||||
// Set Rules from this.patterns object.
|
||||
this.patterns.each(function(regex, ruleName) {
|
||||
this.addFuel(ruleName, regex.pattern, regex.alias);
|
||||
}, this);
|
||||
|
||||
/** Process source code based on match type. */
|
||||
var codeBeg = 0,
|
||||
codeEnd = lighter.code.length,
|
||||
codeSeg = '',
|
||||
delim = this.delimiters,
|
||||
matches = [],
|
||||
match = null,
|
||||
endMatch = null;
|
||||
|
||||
if (!options.strict) {
|
||||
// Find matches through the complete source code.
|
||||
matches.append(this.builder[options.matchType].bind(this, lighter.code)());
|
||||
} else if (delim.start && delim.end) {
|
||||
// Find areas between language delimiters and find matches there.
|
||||
while ((match = delim.start.exec(lighter.code)) != null ) {
|
||||
delim.end.lastIndex = delim.start.lastIndex;
|
||||
if ((endMatch = delim.end.exec(lighter.code)) != null ) {
|
||||
matches.push(new Wick(match[0], 'de1', match.index));
|
||||
codeBeg = delim.start.lastIndex;
|
||||
codeEnd = endMatch.index-1;
|
||||
codeSeg = lighter.code.substring(codeBeg, codeEnd);
|
||||
matches.append(this.builder[options.matchType].bind(this, codeSeg, codeBeg)());
|
||||
matches.push(new Wick(endMatch[0], 'de2', endMatch.index));
|
||||
}
|
||||
}
|
||||
}
|
||||
this.wicks = matches;
|
||||
},
|
||||
|
||||
/************************
|
||||
* Regex Helper methods.
|
||||
***********************/
|
||||
addFuel: function(fuelName, RegEx, className) {
|
||||
this.rules[fuelName] = RegEx;
|
||||
this.flame.addAlias(fuelName, className);
|
||||
},
|
||||
csvToRegExp: function(csv, mod) {return new RegExp('\\b(' + csv.replace(/,\s*/g, '|') + ')\\b', mod);},
|
||||
delimitedRegex: function(beg, esc, end, mod, suffix) {
|
||||
beg = beg.escapeRegExp();
|
||||
if (esc) esc = esc.escapeRegExp();
|
||||
end = (end) ? end.escapeRegExp() : beg;
|
||||
pat = (esc) ? beg+"[^"+end+esc+'\\n]*(?:'+esc+'.[^'+end+esc+'\\n]*)*'+end : beg+"[^"+end+'\\n]*'+end;
|
||||
return new RegExp(pat+(suffix || ''), mod || '');
|
||||
},
|
||||
strictRegex: function() {
|
||||
var regex = '(';
|
||||
for (var i = 0; i < arguments.length; i++) {
|
||||
regex += arguments[i].escapeRegExp();
|
||||
regex += (i < arguments.length - 1) ? '|' : '';
|
||||
}
|
||||
regex += ')';
|
||||
return new RegExp(regex, "gim");
|
||||
},
|
||||
|
||||
/************************
|
||||
* Match finding Methods
|
||||
***********************/
|
||||
findMatches: function(code, offset) {
|
||||
var wicks = [],
|
||||
startIndex = 0,
|
||||
matchIndex = code.length
|
||||
insertIndex = 0,
|
||||
match = null,
|
||||
type = null,
|
||||
newWick = null,
|
||||
rule = null,
|
||||
rules = {},
|
||||
currentMatch = null,
|
||||
futureMatch = null;
|
||||
|
||||
offset = (offset) ? offset : 0;
|
||||
this.rules.each(function(regex, rule) {
|
||||
rules[rule] = {pattern: regex, enabled: true, lastIndex: 0};
|
||||
}, this);
|
||||
|
||||
while(startIndex < code.length) {
|
||||
matchIndex = code.length;
|
||||
match = null;
|
||||
for (rule in rules) {
|
||||
rules[rule].pattern.lastIndex = startIndex;
|
||||
currentMatch = rules[rule].pattern.exec(code);
|
||||
if (currentMatch === null) {
|
||||
delete rules[rule];
|
||||
} else {
|
||||
if (currentMatch.index < matchIndex) {
|
||||
match = currentMatch;
|
||||
type = rule;
|
||||
matchIndex = currentMatch.index;
|
||||
} else if (currentMatch.index == matchIndex && match[0].length < currentMatch[0].length) {
|
||||
match = currentMatch;
|
||||
type = rule;
|
||||
matchIndex = currentMatch.index;
|
||||
}
|
||||
rules[rule].nextIndex = rules[rule].pattern.lastIndex - currentMatch[0].length;
|
||||
}
|
||||
}
|
||||
if (match != null) {
|
||||
index = (match[1] && match[0].contains(match[1])) ? match.index + match[0].indexOf(match[1]) : match.index;
|
||||
newWick = new Wick(match[1] || match[0], type, index+offset);
|
||||
wicks.push(newWick);
|
||||
|
||||
futureMatch = rules[type].pattern.exec(code);
|
||||
if (!futureMatch) {
|
||||
rules[type].nextIndex = code.length;
|
||||
} else {
|
||||
rules[type].nextIndex = rules[type].pattern.lastIndex - futureMatch[0].length;
|
||||
}
|
||||
|
||||
var min = code.length;
|
||||
for (rule in rules) {
|
||||
if (rules[rule].nextIndex < min) {
|
||||
min = rules[rule].nextIndex;
|
||||
}
|
||||
}
|
||||
startIndex = Math.max(min, newWick.end - offset);
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return wicks;
|
||||
},
|
||||
findMatchesLazy: function(code, offset) {
|
||||
var wicks = this.wicks,
|
||||
match = null
|
||||
index = 0;
|
||||
|
||||
offset = (offset) ? offset : 0;
|
||||
|
||||
this.rules.each(function(regex, rule) {
|
||||
while ((match = regex.exec(code)) != null) {
|
||||
index = (match[1] && match[0].contains(match[1])) ? match.index + match[0].indexOf(match[1]) : match.index;
|
||||
wicks.push(new Wick(match[1] || match[0], rule, index + offset));
|
||||
}
|
||||
}, this);
|
||||
return this.purgeWicks(wicks);
|
||||
},
|
||||
purgeWicks: function(wicks) {
|
||||
wicks = wicks.sort(this.compareWicks);
|
||||
for (var i = 0, j = 0; i < wicks.length; i++) {
|
||||
if (wicks[i] == null) continue;
|
||||
for (j = i+1; j < wicks.length && wicks[i] != null; j++) {
|
||||
if (wicks[j] == null) {continue;}
|
||||
else if (wicks[j].isBeyond(wicks[i])) {break;}
|
||||
else if (wicks[j].overlaps(wicks[i])) {wicks[i] = null;}
|
||||
else if (wicks[i].contains(wicks[j])) {wicks[j] = null;}
|
||||
}
|
||||
}
|
||||
return wicks.compact();
|
||||
},
|
||||
compareWicks: function(wick1, wick2) {return wick1.index - wick2.index;}
|
||||
});
|
||||
|
||||
Fuel.standard = Fuel.extend({initialize: function(lighter, flame, options, wicks) {this.base(lighter, flame, options, wicks);}});
|
||||
|
||||
var Wick = Base.extend({
|
||||
|
||||
initialize: function(match, type, index) {
|
||||
this.text = match;
|
||||
this.type = type;
|
||||
this.index = index;
|
||||
this.length = this.text.length;
|
||||
this.end = this.index + this.length;
|
||||
},
|
||||
contains: function(wick) {return (wick.index >= this.index && wick.index < this.end);},
|
||||
isBeyond: function(wick) {return (this.index >= wick.end);},
|
||||
overlaps: function(wick) {return (this.index == wick.index && this.length > wick.length);},
|
||||
toString: function() {return this.index+' - '+this.text+' - '+this.end;}
|
||||
});
|
||||
|
||||
|
||||
/**
|
||||
* Script:
|
||||
* Flame.js - Theme Engine for Lighter.js
|
||||
*
|
||||
* License:
|
||||
* MIT-style license.
|
||||
*
|
||||
* Author:
|
||||
* José Prado
|
||||
*
|
||||
* Copyright:
|
||||
* Copyright (©) 2009 [Jose Prado](http://pradador.com/).
|
||||
*
|
||||
* Changelog:
|
||||
* 2009/03/21 (1.0.0)
|
||||
* - Initial Release
|
||||
*
|
||||
*/
|
||||
Flame = Base.extend(Callback, {
|
||||
|
||||
shortName: 'lt',
|
||||
aliases: new Hash(),
|
||||
containers: new Hash(),
|
||||
common: new Hash(),
|
||||
layout: new Hash(),
|
||||
styles: new Hash(),
|
||||
|
||||
|
||||
defaultStyles: new Hash({
|
||||
de1: new Hash({}), // Beginning delimiter
|
||||
de2: new Hash({}), // End delimiter
|
||||
kw1: new Hash({'color': '#1b609a'}), // Keywords 1
|
||||
kw2: new Hash({'color': '#9a6f1b'}), // Keywords 2
|
||||
kw3: new Hash({'color': '#784e0c'}), // Keywords 3
|
||||
co1: new Hash({'color': '#888888'}), // Comments 1
|
||||
co2: new Hash({'color': '#888888'}), // Comments 2
|
||||
st0: new Hash({'color': '#489a1b'}), // Strings 1
|
||||
st1: new Hash({'color': '#70483d'}), // Strings 2
|
||||
st2: new Hash({'color': '#70483d'}), // Strings 3
|
||||
nu0: new Hash({'color': '#70483d'}), // Numbers
|
||||
me0: new Hash({'color': '#666666'}), // Methods and Functions
|
||||
br0: new Hash({'color': '#444444'}), // Brackets
|
||||
sy0: new Hash({'color': '#444444'}), // Symbols
|
||||
es0: new Hash({'color': '#444444'}), // Escape characters
|
||||
re0: new Hash({'color': '#784e0c'}) // Regular Expressions
|
||||
}),
|
||||
defaultCommon: new Hash({
|
||||
'font-family': 'Monaco, Courier, Monospace',
|
||||
'font-size': '10px',
|
||||
'overflow': 'auto',
|
||||
'white-space': 'pre-wrap',
|
||||
'word-wrap': 'break-word'
|
||||
}),
|
||||
layout: new Hash({
|
||||
'numColor': new Hash({'background-color': '#f2f2f2'}),
|
||||
'lineColor': new Hash({'background-color': '#fff'}),
|
||||
'numStyles': new Hash({
|
||||
'color': '#939393',
|
||||
'font-size': '10px',
|
||||
'list-style': 'decimal-leading-zero'
|
||||
}),
|
||||
'lineStyles': new Hash({
|
||||
'border-top': '1px solid #fff',
|
||||
'border-bottom': '1px solid #fff',
|
||||
'border-left': '1px solid #939393',
|
||||
'padding': '0 3px 0 10px'
|
||||
}),
|
||||
'alt': new Hash({
|
||||
'border-top': '1px solid #eee',
|
||||
'border-bottom': '1px solid #eee',
|
||||
'background-color': '#F4F8FC'
|
||||
}),
|
||||
'top': new Hash({'padding-top': '5px'}),
|
||||
'right': new Hash({'padding-right': '5px'}),
|
||||
'bottom': new Hash({'padding-bottom': '5px'}),
|
||||
'left': new Hash({'padding-left': '15px'}),
|
||||
'codeStyles': new Hash({
|
||||
'color': 'black',
|
||||
'font-size': '10px'
|
||||
})
|
||||
}),
|
||||
fixes: new Hash({
|
||||
'div': new Hash({
|
||||
'div': new Hash({
|
||||
'clear': 'left',
|
||||
'overflow': 'auto'
|
||||
}),
|
||||
'num': new Hash({
|
||||
'display': 'block',
|
||||
'float': 'left',
|
||||
'text-align': 'center',
|
||||
'width': '30px'
|
||||
}),
|
||||
'line': new Hash({
|
||||
'display': 'block',
|
||||
'margin-left': '30px'
|
||||
})
|
||||
}),
|
||||
'table': new Hash({
|
||||
'num': new Hash({
|
||||
'text-align': 'center',
|
||||
'width': '30px'
|
||||
})
|
||||
}),
|
||||
'ol': new Hash({
|
||||
'ol': new Hash({
|
||||
'margin-left': '0',
|
||||
'padding-left': '0'
|
||||
}),
|
||||
'li': new Hash({
|
||||
'margin-left': '40px'
|
||||
})
|
||||
})
|
||||
}),
|
||||
|
||||
initialize: function(lighter, fuel) {
|
||||
|
||||
// Setup Lighter/Fuel/Flame trio.
|
||||
this.lighter = lighter;
|
||||
this.fuel = fuel;
|
||||
|
||||
this.common.merge(this.defaultCommon);
|
||||
this.styles.merge(this.defaultStyles);
|
||||
|
||||
// Map general styles to their aliases.
|
||||
this.defaultStyles.each(function(style, key) {
|
||||
this.addAlias(key);
|
||||
}, this);
|
||||
|
||||
// Insert stylesheet if in jsStyles mode
|
||||
if (this.lighter.options.jsStyles && !$('style#lighter_' + this.lighter.options.mode)) this.injectTag();
|
||||
},
|
||||
addAlias: function(key, alias) {this.aliases[key] = alias || key;},
|
||||
injectTag: function() {
|
||||
var type = this.lighter.options.mode,
|
||||
pfx = type+'.'+this.shortName+this.lighter.name,
|
||||
pfx2 = pfx+' .'+this.shortName,
|
||||
|
||||
numCSS = this.layout['numStyles'].merge(this.layout.numColor),
|
||||
lineCSS = this.layout['lineStyles'].merge(this.layout.lineColor),
|
||||
padCSS = this.layout.left.merge(this.layout.right);
|
||||
this.styleTag = new HtmlElement("style").setProperty('type','text/css').setProperty('id', 'lighter_' + this.lighter.options.mode).insertInside(DomElement.get('head'));
|
||||
|
||||
// General white-space/font styles.
|
||||
this.addCSS(pfx, this.common);
|
||||
this.addCSS(pfx, new Hash({'white-space': '-moz-pre-wrap'}));
|
||||
this.addCSS(pfx, new Hash({'white-space': '-pre-wrap'}));
|
||||
this.addCSS(pfx, new Hash({'white-space': '-o-pre-wrap'}));
|
||||
|
||||
// Case specific styles for a common general style.
|
||||
switch (type) {
|
||||
case "pre":
|
||||
padCSS = padCSS.merge(this.layout.top).merge(this.layout.bottom);
|
||||
this.addCSS(pfx, this.layout.lineColor.merge(padCSS));
|
||||
this.addCSS(pfx+' span', this.layout['codeStyles']);
|
||||
break;
|
||||
case "ol":
|
||||
this.addCSS(pfx, numCSS.merge(this.fixes['ol']['ol']));
|
||||
this.addCSS(pfx+' li', lineCSS.merge(padCSS).merge(this.fixes['ol']['li']));
|
||||
this.addCSS(pfx2+'first', this.layout['top']);
|
||||
this.addCSS(pfx2+'last', this.layout['bottom']);
|
||||
this.addCSS(pfx+' .alt', this.layout['alt']);
|
||||
this.addCSS(pfx+' span', this.layout['codeStyles']);
|
||||
break;
|
||||
case "div":
|
||||
numCSS = numCSS.merge(this.fixes.div.num),
|
||||
lineCSS = lineCSS.merge(this.fixes.div.line);
|
||||
this.addCSS(pfx2+'num', numCSS);
|
||||
this.addCSS(pfx2+'line', lineCSS.merge(padCSS));
|
||||
this.addCSS(pfx+' div', this.fixes['div']['div'].merge(this.layout.numColor));
|
||||
this.addCSS(pfx2+'first', this.layout['top']);
|
||||
this.addCSS(pfx2+'last', this.layout['bottom']);
|
||||
this.addCSS(pfx+' .alt', this.layout['alt']);
|
||||
this.addCSS(pfx+' span', this.layout['codeStyles']);
|
||||
break;
|
||||
case "table":
|
||||
numCSS = numCSS.merge(this.fixes['table']['num']);
|
||||
this.addCSS(pfx2+'num', numCSS);
|
||||
this.addCSS(pfx2+'line', lineCSS.merge(padCSS));
|
||||
this.addCSS(pfx2+'first', this.layout['top']);
|
||||
this.addCSS(pfx2+'last', this.layout['bottom']);
|
||||
this.addCSS(pfx+' .alt', this.layout['alt']);
|
||||
this.addCSS(pfx+' span', this.layout['codeStyles']);
|
||||
break;
|
||||
default:
|
||||
}
|
||||
|
||||
this.styles.each(function(stylesHash, styleName) {
|
||||
this.addCSS(pfx+' .'+styleName, stylesHash);
|
||||
}, this);
|
||||
},
|
||||
/** Code from horseweapon @ http://forum.mootools.net/viewtopic.php?id=6635 */
|
||||
addCSS: function(styleName, stylesHash) {
|
||||
//Create the CSS rule
|
||||
var newStyle = "\n" + styleName + " {\n";
|
||||
if (stylesHash) {
|
||||
stylesHash.each(function(value, attribute) {
|
||||
newStyle += "\t" + attribute + ": " + value + ";\n";
|
||||
});
|
||||
}
|
||||
newStyle += "}\n";
|
||||
// Insert into Flame's styleTag.
|
||||
if (browserTrident()) {
|
||||
this.styleTag.$.styleSheet.cssText += newStyle;
|
||||
} else {
|
||||
this.styleTag.appendText(newStyle);
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
Flame.standard = Flame.extend({initialize: function(lighter, fuel) {this.base(lighter, fuel);}});
|
||||
|
||||
|
||||
/**
|
||||
* Script:
|
||||
* Flame.js - Syntax Highlighter written in MooTools.
|
||||
*
|
||||
* License:
|
||||
* MIT-style license.
|
||||
*
|
||||
* Author:
|
||||
* José Prado
|
||||
*
|
||||
* Copyright:
|
||||
* Copyright (©) 2009 [Jose Prado](http://pradador.com/).
|
||||
*
|
||||
* Changelog:
|
||||
* 2009/03/21 (1.0.0)
|
||||
* - Initial Release
|
||||
*
|
||||
*/
|
||||
|
||||
var $time = Date.now || function(){
|
||||
return +new Date;
|
||||
};
|
||||
|
||||
function browserTrident(){
|
||||
return (!window.ActiveXObject) ? false : ((window.XMLHttpRequest) ? 5 : 4);
|
||||
}
|
||||
|
||||
Lighter = Base.extend(Callback, {
|
||||
name: 'Lighter',
|
||||
options: {
|
||||
altLines: '', // Pseudo-selector enabled.
|
||||
container: null,
|
||||
editable: false,
|
||||
flame: 'standard',
|
||||
fuel: 'standard',
|
||||
id: null,
|
||||
indent: -1,
|
||||
jsStyles: true,
|
||||
matchType: "standard",
|
||||
mode: "pre",
|
||||
path: "./",
|
||||
strict: false
|
||||
},
|
||||
|
||||
/***************************
|
||||
* Lighter Initialization
|
||||
**************************/
|
||||
initialize: function(codeblock, options) {
|
||||
this.setOptions(options);
|
||||
options = this.options;
|
||||
this.id = options.id || this.name + '_' + $time();
|
||||
this.codeblock = $(codeblock)
|
||||
this.code = codeblock.get('html').chop().replace(/</gim, '<').replace(/>/gim, '>').replace(/&/gim, '&');
|
||||
if(this.options.container)
|
||||
this.container = $(this.options.container);
|
||||
// Indent code if user option is set.
|
||||
if (options.indent > -1) this.code = this.code.tabToSpaces(options.indent);
|
||||
|
||||
// Set builder options.
|
||||
this.builder = new Hash({
|
||||
'pre': this.createLighter.bind(this),
|
||||
'ol': this.createLighterWithLines.bind(this, ['ol'], ['li']),
|
||||
'div': this.createLighterWithLines.bind(this, ['div'], ['div', 'span'], true, 'span'),
|
||||
'table': this.createLighterWithLines.bind(this, ['table', 'tbody'], ['tr', 'td'], true, 'td')
|
||||
});
|
||||
|
||||
// Extract fuel/flame names. Precedence: className > options > standard.
|
||||
var ff = this.codeblock.get('class').split(':');
|
||||
if (!ff[0]) ff[0] = this.options.fuel;
|
||||
if (!ff[1]) ff[1] = this.options.flame;
|
||||
|
||||
// Load flame to start chain of loads.
|
||||
this.loadFlameSrc(ff);
|
||||
},
|
||||
loadFlameSrc: function(ff) {
|
||||
if (!$check(Flame[ff[1]])) {
|
||||
var flameScript = Asset.script(this.options.path+'Flames/Flame.'+ff[1]+'.js', {
|
||||
onLoad: function() {
|
||||
this.loadFlame(ff);
|
||||
}.bind(this),
|
||||
onError: function() {
|
||||
ff[1] = 'standard';
|
||||
this.loadFlame(ff)
|
||||
}.bind(this)
|
||||
});
|
||||
} else {
|
||||
this.loadFlame(ff);
|
||||
}
|
||||
},
|
||||
loadFlame: function(ff) {
|
||||
this.flame = new Flame[ff[1]](this);
|
||||
this.loadFuelSrc(ff);
|
||||
},
|
||||
loadFuelSrc: function(ff) {
|
||||
if (!$check(Fuel[ff[0]])) {
|
||||
var fuelScript = Asset.script(this.options.path+'Fuels/Fuel.'+ff[0]+'.js', {
|
||||
onLoad: function() {
|
||||
this.loadFuel(ff);
|
||||
}.bind(this),
|
||||
onError: function() {
|
||||
ff[0] = 'standard';
|
||||
this.loadFuel(ff);
|
||||
}.bind(this)
|
||||
});
|
||||
} else {
|
||||
this.loadFuel(ff);
|
||||
}
|
||||
},
|
||||
loadFuel: function(ff) {
|
||||
this.fuel = new Fuel[ff[0]](this, this.flame, {
|
||||
matchType: this.options.matchType,
|
||||
strict: this.options.strict
|
||||
});
|
||||
this.light();
|
||||
},
|
||||
light: function() {
|
||||
// Build highlighted code object.
|
||||
this.element = this.toElement();
|
||||
// Insert lighter in the right spot.
|
||||
if (this.container) {
|
||||
this.container.removeChildren();
|
||||
this.element.insertInside(this.container);
|
||||
} else {
|
||||
this.codeblock.setStyle('display', 'none');
|
||||
this.codeblock.injectAfter(this.element);
|
||||
}
|
||||
},
|
||||
|
||||
/***************************
|
||||
* Lighter creation methods
|
||||
**************************/
|
||||
createLighter: function() {
|
||||
var lighter = new HtmlElement('pre', {'class': this.flame.shortName + this.name}),
|
||||
pointer = 0;
|
||||
|
||||
// If no matches were found, insert code plain text.
|
||||
if (this.fuel.wicks[0] == undefined) {
|
||||
lighter.appendText(this.code);
|
||||
} else {
|
||||
this.fuel.wicks.each(function(match) {
|
||||
lighter.appendText(this.code.substring(pointer, match.index));
|
||||
this.insertAndKeepEl(lighter, match.text, match.type);
|
||||
pointer = match.index + match.text.length;
|
||||
}, this);
|
||||
// Add last unmatched code segment if it exists.
|
||||
if (pointer < this.code.length) {
|
||||
lighter.appendText(this.code.substring(pointer, this.code.length));
|
||||
}
|
||||
}
|
||||
|
||||
//lighter.set('text', lighter.get('html'));
|
||||
return lighter;
|
||||
},
|
||||
createLighterWithLines: function(parent, child, addLines, lineType) {
|
||||
var lighter = new HtmlElement(parent[0], {'class': this.flame.shortName + this.name, 'id': this.id}),
|
||||
newLine = new HtmlElement(child[0]),
|
||||
lineNum = 1,
|
||||
pointer = 0,
|
||||
text = null;
|
||||
if (parent[0] == "table") lighter.set("cellpadding", 0).set("cellspacing", 0).set("border", 0);
|
||||
if (parent[1]) lighter = new HtmlElement(parent[1]).insertInside(lighter);
|
||||
if (child[1]) newLine = new HtmlElement(child[1]).insertInside(newLine);
|
||||
newLine.addClass(this.flame.shortName + 'line');
|
||||
if (addLines) lineNum = this.insertLineNum(newLine, lineNum, lineType);
|
||||
this.fuel.wicks.each(function(match) {
|
||||
// Create and insert un-matched source code bits.
|
||||
if (pointer != match.index) {
|
||||
text = this.code.substring(pointer, match.index).split('\n');
|
||||
for (var i = 0; i < text.length; i++) {
|
||||
if (i < text.length - 1) {
|
||||
if (text[i] == '') text[i] = ' ';
|
||||
newLine = this.insertAndMakeEl(newLine, lighter, text[i], child);
|
||||
if (addLines) lineNum = this.insertLineNum(newLine, lineNum, lineType);
|
||||
} else {
|
||||
this.insertAndKeepEl(newLine, text[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Create and insert matched symbol.
|
||||
text = match.text.split('\n');
|
||||
for (i = 0; i < text.length; i++) {
|
||||
if (i < text.length - 1) {
|
||||
newLine = this.insertAndMakeEl(newLine, lighter, text[i], child, match.type);
|
||||
|
||||
if (addLines) lineNum = this.insertLineNum(newLine, lineNum, lineType);
|
||||
} else {
|
||||
this.insertAndKeepEl(newLine, text[i], match.type);
|
||||
}
|
||||
}
|
||||
|
||||
pointer = match.end;
|
||||
}, this);
|
||||
|
||||
// Add last unmatched code segment if it exists.
|
||||
if (pointer <= this.code.length) {
|
||||
text = this.code.substring(pointer, this.code.length).split('\n');
|
||||
for (var i = 0; i < text.length; i++) {
|
||||
newLine = this.insertAndMakeEl(newLine, lighter, text[i], child);
|
||||
if (addLines) lineNum = this.insertLineNum(newLine, lineNum, lineType);
|
||||
}
|
||||
}
|
||||
|
||||
// Add alternate line styles based on pseudo-selector.
|
||||
if (this.options.altLines !== '') {
|
||||
if (this.options.altLines == 'hover') {
|
||||
lighter.getElements('.'+this.flame.shortName+'line').addEvents({
|
||||
'mouseover': function() {this.toggleClass('alt');},
|
||||
'mouseout': function() {this.toggleClass('alt');}
|
||||
});
|
||||
} else {
|
||||
if (child[1]) {
|
||||
lighter.getChildren(':'+this.options.altLines).getElement('.'+this.flame.shortName+'line').addClass('alt');
|
||||
} else {
|
||||
lighter.getChildren(':'+this.options.altLines).addClass('alt');
|
||||
}
|
||||
}
|
||||
}
|
||||
// Add first/last line classes based on mode.
|
||||
if (child[1]) {
|
||||
lighter.getFirst().getChildren().addClass(this.flame.shortName+'first');
|
||||
lighter.getLast().getChildren().addClass(this.flame.shortName+'last');
|
||||
} else {
|
||||
lighter.getFirst().addClass(this.flame.shortName+'first');
|
||||
lighter.getLast().addClass(this.flame.shortName+'last');
|
||||
}
|
||||
|
||||
if (parent[1]) lighter = lighter.getParent();
|
||||
return lighter;
|
||||
},
|
||||
/** Helper function to insert new code segment into existing line. */
|
||||
insertAndKeepEl: function(el, text, alias) {
|
||||
if (text.length > 0) {
|
||||
var span = new HtmlElement('span');
|
||||
span.set('text', text);
|
||||
if (alias) {span.addClass(this.flame.aliases[alias]);}
|
||||
span.insertInside(el);
|
||||
}
|
||||
},
|
||||
/** Helper function to insert new code segment into existing line and create new line. */
|
||||
insertAndMakeEl: function(el, group, text, child, alias) {
|
||||
this.insertAndKeepEl(el, text, alias);
|
||||
if (child[1]) el = el.getParent();
|
||||
el.insertInside(group);
|
||||
|
||||
var newLine = new HtmlElement(child[0]);
|
||||
if (child[1]) newLine = new HtmlElement(child[1]).insertInside(newLine);
|
||||
newLine.addClass(this.flame.shortName+'line');
|
||||
return newLine;
|
||||
},
|
||||
/** Helper funciton to insert line number into line. */
|
||||
insertLineNum: function(el, lineNum, lineType) {
|
||||
var newNum = new HtmlElement(lineType, {
|
||||
'text': lineNum++,
|
||||
'class': this.flame.shortName+ 'num'
|
||||
});
|
||||
newNum.insertTop(el.getParent());
|
||||
return lineNum;
|
||||
},
|
||||
|
||||
/******************
|
||||
* Element Methods
|
||||
******************/
|
||||
toElement: function() {
|
||||
if (!this.element) {
|
||||
this.element = this.builder[this.options.mode]();
|
||||
if (this.options.editable) {this.element.set('contenteditable', 'true');}
|
||||
}
|
||||
|
||||
return this.element;
|
||||
},
|
||||
replaces: function(element){
|
||||
element = $(element, true);
|
||||
element.parentNode.replaceChild(this.toElement(), element);
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
});
|
||||
/** Element Native extensions */
|
||||
HtmlElement.inject({
|
||||
light: function(options) {
|
||||
return new Lighter(this, options);
|
||||
}
|
||||
});
|
||||
|
||||
/** String Native extensions */
|
||||
String.inject({
|
||||
chop: function() {return this.replace(/(^\s*\n|\n\s*$)/gi, '');},
|
||||
tabToSpaces: function(spaces) {
|
||||
for (var i = 0, indent = ''; i < spaces; i++) {indent += ' ';}
|
||||
return this.replace(/\t/g, indent);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
/**
|
||||
* Script:
|
||||
* Fuel.js.js - JavaScript language file for Lighter.js
|
||||
*
|
||||
* License:
|
||||
* MIT-style license.
|
||||
*
|
||||
* Author:
|
||||
* José Prado
|
||||
*
|
||||
* Copyright:
|
||||
* Copyright (©) 2009 [Jose Prado](http://pradador.com/).
|
||||
*
|
||||
* Changelog:
|
||||
* 2009/03/21 (1.0.0)
|
||||
* - Initial Release
|
||||
*
|
||||
*/
|
||||
Fuel.js = Fuel.extend({
|
||||
language: 'js',
|
||||
|
||||
initialize: function(lighter, flame, options) {
|
||||
|
||||
// Keywords Rule Set
|
||||
this.keywords = new Hash({
|
||||
commonKeywords: {
|
||||
csv: "as, break, case, catch, continue, delete, do, else, eval, finally, for, if, in, is, instanceof, return, switch, this, throw, try, typeof, void, while, write, with",
|
||||
alias: 'kw1'
|
||||
},
|
||||
langKeywords: {
|
||||
csv: "class, const, default, debugger, export, extends, false, function, import, namespace, new, null, package, private, protected, public, super, true, use, var",
|
||||
alias: 'kw2'
|
||||
},
|
||||
windowKeywords: {
|
||||
csv: "alert, back, blur, close, confirm, focus, forward, home, navigate, onblur, onerror, onfocus, onload, onmove, onresize, onunload, open, print, prompt, scroll, status, stop",
|
||||
alias: 'kw3'
|
||||
}
|
||||
});
|
||||
|
||||
// RegEx Rule Set
|
||||
this.patterns = new Hash({
|
||||
'slashComments': {pattern: this.common.slashComments, alias: 'co1'},
|
||||
'multiComments': {pattern: this.common.multiComments, alias: 'co2'},
|
||||
'strings': {pattern: this.common.strings, alias: 'st0'},
|
||||
'methodCalls': {pattern: this.common.properties, alias: 'me0'},
|
||||
'brackets': {pattern: this.common.brackets, alias: 'br0'},
|
||||
'numbers': {pattern: /\b((([0-9]+)?\.)?[0-9_]+([e][-+]?[0-9]+)?|0x[A-F0-9]+)\b/gi, alias: 'nu0'},
|
||||
'regex': {pattern: this.delimitedRegex("/", "\\", "/", "g", "[gimy]*"), alias: 're0'},
|
||||
'symbols': {pattern: /\+|-|\*|\/|%|!|@|&|\||\^|\<|\>|=|,|\.|;|\?|:/g, alias: 'sy0'}
|
||||
});
|
||||
|
||||
// Delimiters
|
||||
this.delimiters = new Hash({
|
||||
start: this.strictRegex('<script type="text/javascript">', '<script language="javascript">'),
|
||||
end: this.strictRegex('</script>')
|
||||
});
|
||||
|
||||
this.base(lighter, flame, options);
|
||||
}
|
||||
});
|
|
@ -0,0 +1,72 @@
|
|||
// This is identical with server sided code
|
||||
var lighterSettings = {
|
||||
altLines: 'hover',
|
||||
indent: 4,
|
||||
mode: 'ol',
|
||||
fuel: 'js',
|
||||
jsStyles: false
|
||||
};
|
||||
|
||||
$document.addEvent('domready', function() {
|
||||
var h = unescape(document.location.hash);
|
||||
if (h) scrollToElement(h.substring(1));
|
||||
var code = $$('.text pre, .reference-class pre');
|
||||
if (code.length) {
|
||||
code.light(lighterSettings).each(function(obj, i) {
|
||||
var start =code[i].getProperty('start');
|
||||
if (start)
|
||||
obj.element.setProperty('start', start);
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
var lastMemberId = null;
|
||||
function toggleMember(id, scrollTo) {
|
||||
if (lastMemberId && lastMemberId != id) {
|
||||
var prevId = lastMemberId;
|
||||
lastMemberId = null;
|
||||
toggleMember(prevId);
|
||||
}
|
||||
var link = $('#' + id + '-link');
|
||||
if (link) {
|
||||
var desc = $('#' + id + '-description');
|
||||
var v = !link.hasClass('hidden');
|
||||
lastMemberId = v && id;
|
||||
link.modifyClass('hidden', v);
|
||||
desc.modifyClass('hidden', !v);
|
||||
if (!desc.code && v)
|
||||
desc.code = $$('pre', desc).light(lighterSettings);
|
||||
if (scrollTo)
|
||||
scrollToMember(id);
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
function scrollToElement(id) {
|
||||
var e = $('#' + id);
|
||||
if (e) {
|
||||
var offs = e.getOffset();
|
||||
$window.setScrollOffset(offs);
|
||||
if (e.hasClass('member'))
|
||||
toggleMember(id);
|
||||
} else {
|
||||
document.location.hash = id;
|
||||
}
|
||||
}
|
||||
|
||||
function togglePackage(id, def) {
|
||||
var e = $('#package-' + id);
|
||||
if (e) {
|
||||
var v = !e.hasClass('hidden');
|
||||
e.modifyClass('hidden', v);
|
||||
var img = document.images['arrow-' + id];
|
||||
if (img) img.src = img.src.replace(/open|close/, v ? 'close' : 'open');
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
function toggleThumbnail(id, over) {
|
||||
$('#' + id).modifyClass('hidden', over);
|
||||
$('#' + id + '_over').modifyClass('hidden', !over);
|
||||
}
|
Loading…
Reference in a new issue