ragaskar-jsdoc_helper 0.0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +64 -0
- data/bin/jsdoc_helper +8 -0
- data/ext/jsdoc-toolkit/README.txt +146 -0
- data/ext/jsdoc-toolkit/app/frame.js +33 -0
- data/ext/jsdoc-toolkit/app/frame/Chain.js +102 -0
- data/ext/jsdoc-toolkit/app/frame/Dumper.js +144 -0
- data/ext/jsdoc-toolkit/app/frame/Hash.js +84 -0
- data/ext/jsdoc-toolkit/app/frame/Link.js +148 -0
- data/ext/jsdoc-toolkit/app/frame/Namespace.js +10 -0
- data/ext/jsdoc-toolkit/app/frame/Opt.js +134 -0
- data/ext/jsdoc-toolkit/app/frame/Reflection.js +26 -0
- data/ext/jsdoc-toolkit/app/frame/String.js +93 -0
- data/ext/jsdoc-toolkit/app/frame/Testrun.js +129 -0
- data/ext/jsdoc-toolkit/app/handlers/FOODOC.js +26 -0
- data/ext/jsdoc-toolkit/app/handlers/XMLDOC.js +26 -0
- data/ext/jsdoc-toolkit/app/handlers/XMLDOC/DomReader.js +159 -0
- data/ext/jsdoc-toolkit/app/handlers/XMLDOC/XMLDoc.js +16 -0
- data/ext/jsdoc-toolkit/app/handlers/XMLDOC/XMLParse.js +292 -0
- data/ext/jsdoc-toolkit/app/lib/JSDOC.js +101 -0
- data/ext/jsdoc-toolkit/app/lib/JSDOC/DocComment.js +200 -0
- data/ext/jsdoc-toolkit/app/lib/JSDOC/DocTag.js +294 -0
- data/ext/jsdoc-toolkit/app/lib/JSDOC/JsDoc.js +126 -0
- data/ext/jsdoc-toolkit/app/lib/JSDOC/JsPlate.js +109 -0
- data/ext/jsdoc-toolkit/app/lib/JSDOC/Lang.js +144 -0
- data/ext/jsdoc-toolkit/app/lib/JSDOC/Parser.js +107 -0
- data/ext/jsdoc-toolkit/app/lib/JSDOC/PluginManager.js +33 -0
- data/ext/jsdoc-toolkit/app/lib/JSDOC/Symbol.js +643 -0
- data/ext/jsdoc-toolkit/app/lib/JSDOC/SymbolSet.js +229 -0
- data/ext/jsdoc-toolkit/app/lib/JSDOC/TextStream.js +41 -0
- data/ext/jsdoc-toolkit/app/lib/JSDOC/Token.js +18 -0
- data/ext/jsdoc-toolkit/app/lib/JSDOC/TokenReader.js +332 -0
- data/ext/jsdoc-toolkit/app/lib/JSDOC/TokenStream.js +133 -0
- data/ext/jsdoc-toolkit/app/lib/JSDOC/Util.js +32 -0
- data/ext/jsdoc-toolkit/app/lib/JSDOC/Walker.js +459 -0
- data/ext/jsdoc-toolkit/app/main.js +111 -0
- data/ext/jsdoc-toolkit/app/plugins/commentSrcJson.js +20 -0
- data/ext/jsdoc-toolkit/app/plugins/frameworkPrototype.js +16 -0
- data/ext/jsdoc-toolkit/app/plugins/functionCall.js +10 -0
- data/ext/jsdoc-toolkit/app/plugins/publishSrcHilite.js +62 -0
- data/ext/jsdoc-toolkit/app/plugins/symbolLink.js +9 -0
- data/ext/jsdoc-toolkit/app/plugins/tagParamConfig.js +31 -0
- data/ext/jsdoc-toolkit/app/plugins/tagSynonyms.js +43 -0
- data/ext/jsdoc-toolkit/app/run.js +348 -0
- data/ext/jsdoc-toolkit/app/t/TestDoc.js +144 -0
- data/ext/jsdoc-toolkit/app/t/runner.js +13 -0
- data/ext/jsdoc-toolkit/app/test.js +307 -0
- data/ext/jsdoc-toolkit/app/test/addon.js +24 -0
- data/ext/jsdoc-toolkit/app/test/anon_inner.js +14 -0
- data/ext/jsdoc-toolkit/app/test/augments.js +31 -0
- data/ext/jsdoc-toolkit/app/test/augments2.js +26 -0
- data/ext/jsdoc-toolkit/app/test/borrows.js +41 -0
- data/ext/jsdoc-toolkit/app/test/borrows2.js +23 -0
- data/ext/jsdoc-toolkit/app/test/config.js +22 -0
- data/ext/jsdoc-toolkit/app/test/constructs.js +18 -0
- data/ext/jsdoc-toolkit/app/test/encoding.js +10 -0
- data/ext/jsdoc-toolkit/app/test/encoding_other.js +12 -0
- data/ext/jsdoc-toolkit/app/test/event.js +54 -0
- data/ext/jsdoc-toolkit/app/test/functions_anon.js +39 -0
- data/ext/jsdoc-toolkit/app/test/functions_nested.js +33 -0
- data/ext/jsdoc-toolkit/app/test/global.js +13 -0
- data/ext/jsdoc-toolkit/app/test/globals.js +25 -0
- data/ext/jsdoc-toolkit/app/test/ignore.js +10 -0
- data/ext/jsdoc-toolkit/app/test/inner.js +16 -0
- data/ext/jsdoc-toolkit/app/test/jsdoc_test.js +477 -0
- data/ext/jsdoc-toolkit/app/test/lend.js +33 -0
- data/ext/jsdoc-toolkit/app/test/memberof.js +19 -0
- data/ext/jsdoc-toolkit/app/test/memberof_constructor.js +17 -0
- data/ext/jsdoc-toolkit/app/test/name.js +19 -0
- data/ext/jsdoc-toolkit/app/test/namespace_nested.js +23 -0
- data/ext/jsdoc-toolkit/app/test/nocode.js +13 -0
- data/ext/jsdoc-toolkit/app/test/oblit_anon.js +20 -0
- data/ext/jsdoc-toolkit/app/test/overview.js +20 -0
- data/ext/jsdoc-toolkit/app/test/param_inline.js +37 -0
- data/ext/jsdoc-toolkit/app/test/params_optional.js +8 -0
- data/ext/jsdoc-toolkit/app/test/prototype.js +17 -0
- data/ext/jsdoc-toolkit/app/test/prototype_nested.js +9 -0
- data/ext/jsdoc-toolkit/app/test/prototype_oblit.js +13 -0
- data/ext/jsdoc-toolkit/app/test/prototype_oblit_constructor.js +24 -0
- data/ext/jsdoc-toolkit/app/test/public.js +10 -0
- data/ext/jsdoc-toolkit/app/test/shared.js +42 -0
- data/ext/jsdoc-toolkit/app/test/shared2.js +2 -0
- data/ext/jsdoc-toolkit/app/test/shortcuts.js +22 -0
- data/ext/jsdoc-toolkit/app/test/static_this.js +13 -0
- data/ext/jsdoc-toolkit/app/test/synonyms.js +31 -0
- data/ext/jsdoc-toolkit/app/test/tosource.js +23 -0
- data/ext/jsdoc-toolkit/app/test/variable_redefine.js +14 -0
- data/ext/jsdoc-toolkit/changes.txt +75 -0
- data/ext/jsdoc-toolkit/conf/sample.conf +31 -0
- data/ext/jsdoc-toolkit/java/build.xml +36 -0
- data/ext/jsdoc-toolkit/java/build_1.4.xml +36 -0
- data/ext/jsdoc-toolkit/java/classes/js.jar +0 -0
- data/ext/jsdoc-toolkit/java/src/JsDebugRun.java +21 -0
- data/ext/jsdoc-toolkit/java/src/JsRun.java +21 -0
- data/ext/jsdoc-toolkit/jsdebug.jar +0 -0
- data/ext/jsdoc-toolkit/jsrun.jar +0 -0
- data/ext/jsdoc-toolkit/out/jsdoc/files.html +216 -0
- data/ext/jsdoc-toolkit/out/jsdoc/index.html +210 -0
- data/ext/jsdoc-toolkit/out/jsdoc/symbols/_global_.html +306 -0
- data/ext/jsdoc-toolkit/out/jsdoc/symbols/src/lib_test.js.html +13 -0
- data/ext/jsdoc-toolkit/templates/jsdoc/allclasses.tmpl +17 -0
- data/ext/jsdoc-toolkit/templates/jsdoc/allfiles.tmpl +56 -0
- data/ext/jsdoc-toolkit/templates/jsdoc/class.tmpl +646 -0
- data/ext/jsdoc-toolkit/templates/jsdoc/index.tmpl +39 -0
- data/ext/jsdoc-toolkit/templates/jsdoc/publish.js +184 -0
- data/ext/jsdoc-toolkit/templates/jsdoc/static/default.css +162 -0
- data/ext/jsdoc-toolkit/templates/jsdoc/static/header.html +2 -0
- data/ext/jsdoc-toolkit/templates/jsdoc/static/index.html +19 -0
- data/ext/jsdoc-toolkit/templates/jsdoc/symbol.tmpl +35 -0
- data/lib/jsdoc_helper.rb +50 -0
- data/lib/jsdoc_helper/rake/task.rb +43 -0
- data/lib/jsdoc_helper/rake/task/runner.rb +85 -0
- data/spec/jsdoc_helper/jsdoc_helper_spec.rb +4 -0
- data/spec/jsdoc_helper/rake/task/runner_spec.rb +45 -0
- data/spec/jsdoc_helper/support/file_helper_spec.rb +93 -0
- data/spec/spec_helper.rb +25 -0
- metadata +168 -0
@@ -0,0 +1,75 @@
|
|
1
|
+
== 2.1.0 ==
|
2
|
+
|
3
|
+
* Added support for the @event tag.
|
4
|
+
* Fixed bug that prevented the : character from appearing in symbol names.
|
5
|
+
* Fixed bug that prevented underscored symbols marked with @public being tagged as private. (issue #184 )
|
6
|
+
* Fixed bug that randomly affected the @memberOf tag when the name of the symbol did not include the parent name.
|
7
|
+
* Fixed bug that prevented templates that were not in the jsdoc-toolkit folder from being found. ( issue #176 )
|
8
|
+
* Added ability to check for trailing slash on template path. ( issue #177 )
|
9
|
+
* Modified classDesc so that it no longer is appended with the constructor desc.
|
10
|
+
* Fixed call to plugin onDocCommentSrc.
|
11
|
+
* Added missing support for inline doc comments for function return types. ( issue #189 )
|
12
|
+
* Added command line option -q, --quiet.
|
13
|
+
* Added command line option -E, --exclude. ( issue #143 )
|
14
|
+
* Added 2 more hooks for plugins. ( issue #163 )
|
15
|
+
* Added support for extending built-ins. ( issue #160 )
|
16
|
+
* Added "compact" option to JSDOC.JsPlate.prototype.process. ( issue #159 )
|
17
|
+
* @augments no longer documents static members as inherited. ( issue #138 )
|
18
|
+
* @link to a class now goes to the page for that class, not the constructor. ( issue #178 )
|
19
|
+
* Warnings of mismatched curly brace now include filename. ( issue #166 )
|
20
|
+
* Fixed bug affecting template paths loaded via a configuration file when the trailing slash is missing. ( issue #191 )
|
21
|
+
* Minor optimizations.
|
22
|
+
|
23
|
+
== 2.0.2 ==
|
24
|
+
|
25
|
+
* Fixed bug that sometimes caused an example of division in the source code to be interpretted as a regex by the JsDoc Toolkit analyzer. ( issue #158 )
|
26
|
+
* Fixed a bug that prevented private variables marked as @public from appearing in the documentation. ( issue #161 )
|
27
|
+
* Fixed bug that prevented variable names with underscored properties from appearing in summaries. ( issue #173 )
|
28
|
+
|
29
|
+
== 2.0.1 ==
|
30
|
+
|
31
|
+
* Fixed bug that prevented @fileOverview tag from being recognized.
|
32
|
+
* Added support for @fieldOf as a synonym for @field plus @memberOf.
|
33
|
+
* Added support for @name tag in a @fileOverview comment to control the displayed name of the file.
|
34
|
+
* Added support for multiple @example tags. ( issue #152 )
|
35
|
+
* Modified style sheet of jsdoc template to make more readable. ( issue #151 )
|
36
|
+
* Fixed bug that prevented @since documentation from displaying correctly when it appeared in a class. ( issue #150 )
|
37
|
+
* Fixed bug that caused inhertited properties to sometimes not resolve correctly. ( issue #144 )
|
38
|
+
* Modified so that trailing whitespace in @example is always trimmed. ( issue #153 )
|
39
|
+
* Added support for elseif to JsPlate. (hat tip to fredck)
|
40
|
+
* Added support for @location urls in the @overview comment to the jsdoc template.
|
41
|
+
|
42
|
+
== Changes From Versions 1.4.0 to 2.0.0 ==
|
43
|
+
|
44
|
+
* Upgraded included version of Rhino from 1.6 to 1.7R1.
|
45
|
+
* Removed circular references in parsed documentation objects.
|
46
|
+
* Improved inheritance handling, now properties and events can be inherited same as methods.
|
47
|
+
* Improved handling of cross-file relationships, now having two related objects in separate files is not a problem.
|
48
|
+
* Improved ability to recognize membership of previously defined objects.
|
49
|
+
* Added ability to redefine parsing behavior with plugins.
|
50
|
+
* @methodOf is a synonym for @function and @memberOf.
|
51
|
+
* Added @default to document default values of members that are objects.
|
52
|
+
* Added ability to parse and refer to inner functions.
|
53
|
+
* Fixed bug that appeared when calling a method to set properties of the instance referred to by "this".
|
54
|
+
* Added ability to automatically create links to other symbols.
|
55
|
+
* New "jsdoc" template now produces fully W3C valid XHTML.
|
56
|
+
* Inline parameter type hint comments are now documented.
|
57
|
+
* Fixed error: Locally scoped variables (declared with var) no longer appear as global.
|
58
|
+
* It is now possible to run JsDoc Toolkit from any directory.
|
59
|
+
* Added support for inline {@link ...} tags.
|
60
|
+
* Added support for the -H command-line option to allow for custom content handlers.
|
61
|
+
* Tag names @inherits and @scope changed to @borrows and @lends.
|
62
|
+
? Combining @constructor in a doclet with @lends now supported.
|
63
|
+
* Multiple @lend tags now supported.
|
64
|
+
* Added support for the @constructs tag, used inside a @lends block.
|
65
|
+
* Added support for the @constant tag.
|
66
|
+
* Fixed bug that prevented the use of [] as a default value.
|
67
|
+
* Added support for the @field tag.
|
68
|
+
* Added support for the @public tag (applied to inner functions).
|
69
|
+
* @namespace tag can now be applied to functions, not just object literals.
|
70
|
+
* Added support for the -s command line option to suppress source code output.
|
71
|
+
* Added new unit test framework.
|
72
|
+
* Underscored symbols are now treated as if they have a @private tag by default.
|
73
|
+
* Improved support for anonymous constructors.
|
74
|
+
* Added support for the nocode meta tag.
|
75
|
+
|
@@ -0,0 +1,31 @@
|
|
1
|
+
/*
|
2
|
+
This is an example of one way you could set up a configuration file to more
|
3
|
+
conveniently define some commandline options. You might like to do this if
|
4
|
+
you frequently reuse the same options. Note that you don't need to define
|
5
|
+
every option in this file, you can combine a configuration file with
|
6
|
+
additional options on the commandline if your wish.
|
7
|
+
|
8
|
+
You would include this configuration file by running JsDoc Toolkit like so:
|
9
|
+
java -jar jsrun.jar app/run.js -c=conf/sample.conf
|
10
|
+
|
11
|
+
*/
|
12
|
+
|
13
|
+
{
|
14
|
+
// source files to use
|
15
|
+
_: ['app/test/jsdoc_test.js'],
|
16
|
+
|
17
|
+
// document all functions, even uncommented ones
|
18
|
+
a: true,
|
19
|
+
|
20
|
+
// including those marked @private
|
21
|
+
p: true,
|
22
|
+
|
23
|
+
// some extra variables I want to include
|
24
|
+
D: {generatedBy: "Michael Mathews", copyright: "2008"},
|
25
|
+
|
26
|
+
// use this directory as the output directory
|
27
|
+
d: "docs",
|
28
|
+
|
29
|
+
// use this template
|
30
|
+
t: "templates/jsdoc"
|
31
|
+
}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<project>
|
2
|
+
<target name="clean">
|
3
|
+
<delete dir="build"/>
|
4
|
+
</target>
|
5
|
+
|
6
|
+
<target name="compile">
|
7
|
+
<mkdir dir="build/classes"/>
|
8
|
+
<javac
|
9
|
+
srcdir="src" destdir="build/classes"
|
10
|
+
classpath="./classes/js.jar"
|
11
|
+
/>
|
12
|
+
</target>
|
13
|
+
|
14
|
+
<target name="jar">
|
15
|
+
<mkdir dir="build/jar"/>
|
16
|
+
<jar destfile="build/jar/jsrun.jar" basedir="build/classes">
|
17
|
+
<manifest>
|
18
|
+
<attribute name="Main-Class" value="JsRun"/>
|
19
|
+
<attribute name="Class-Path" value="./java/classes/js.jar"/>
|
20
|
+
</manifest>
|
21
|
+
</jar>
|
22
|
+
</target>
|
23
|
+
|
24
|
+
<target name="debugjar">
|
25
|
+
<mkdir dir="build/jar"/>
|
26
|
+
<jar destfile="build/jar/jsdebug.jar" basedir="build/classes">
|
27
|
+
<manifest>
|
28
|
+
<attribute name="Main-Class" value="JsDebugRun"/>
|
29
|
+
<attribute name="Class-Path" value="./java/classes/js.jar"/>
|
30
|
+
</manifest>
|
31
|
+
</jar>
|
32
|
+
</target>
|
33
|
+
|
34
|
+
<target name="clean-build" depends="clean,compile,jar"/>
|
35
|
+
<target name="clean-debug" depends="clean,compile,debugjar"/>
|
36
|
+
</project>
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<project default="clean-build"><!-- use this build script if you are stuck with ant version 1.4 -->
|
2
|
+
<target name="clean">
|
3
|
+
<delete dir="build"/>
|
4
|
+
</target>
|
5
|
+
|
6
|
+
<target name="compile">
|
7
|
+
<mkdir dir="build/classes"/>
|
8
|
+
<javac
|
9
|
+
srcdir="src" destdir="build/classes"
|
10
|
+
classpath="./classes/js.jar"
|
11
|
+
/>
|
12
|
+
</target>
|
13
|
+
|
14
|
+
<target name="jar">
|
15
|
+
<mkdir dir="build/jar"/>
|
16
|
+
<jar jarfile="build/jar/jsrun.jar" basedir="build/classes">
|
17
|
+
<manifest>
|
18
|
+
<attribute name="Main-Class" value="JsRun"/>
|
19
|
+
<attribute name="Class-Path" value="./java/classes/js.jar"/>
|
20
|
+
</manifest>
|
21
|
+
</jar>
|
22
|
+
</target>
|
23
|
+
|
24
|
+
<target name="debugjar">
|
25
|
+
<mkdir dir="build/jar"/>
|
26
|
+
<jar jarfile="build/jar/jsdebug.jar" basedir="build/classes">
|
27
|
+
<manifest>
|
28
|
+
<attribute name="Main-Class" value="JsDebugRun"/>
|
29
|
+
<attribute name="Class-Path" value="./java/classes/js.jar"/>
|
30
|
+
</manifest>
|
31
|
+
</jar>
|
32
|
+
</target>
|
33
|
+
|
34
|
+
<target name="clean-build" depends="clean,compile,jar"/>
|
35
|
+
<target name="clean-debug" depends="clean,compile,debugjar"/>
|
36
|
+
</project>
|
Binary file
|
@@ -0,0 +1,21 @@
|
|
1
|
+
/**
|
2
|
+
* A trivial bootstrap class that simply adds the path to the
|
3
|
+
* .js file as an argument to the Rhino call. This little hack
|
4
|
+
* allows the code in the .js file to have access to it's own
|
5
|
+
* path via the Rhino arguments object. This is necessary to
|
6
|
+
* allow the .js code to find resource files in a location
|
7
|
+
* relative to itself.
|
8
|
+
*
|
9
|
+
* USAGE: java -jar jsdebug.jar path/to/file.js
|
10
|
+
*/
|
11
|
+
public class JsDebugRun {
|
12
|
+
public static void main(String[] args) {
|
13
|
+
String[] jsargs = {"-j="+args[0]};
|
14
|
+
|
15
|
+
String[] allArgs = new String[jsargs.length + args.length];
|
16
|
+
System.arraycopy(args, 0, allArgs, 0, args.length);
|
17
|
+
System.arraycopy(jsargs, 0, allArgs, args.length ,jsargs.length);
|
18
|
+
|
19
|
+
org.mozilla.javascript.tools.debugger.Main.main(allArgs);
|
20
|
+
}
|
21
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
/**
|
2
|
+
* A trivial bootstrap class that simply adds the path to the
|
3
|
+
* .js file as an argument to the Rhino call. This little hack
|
4
|
+
* allows the code in the .js file to have access to it's own
|
5
|
+
* path via the Rhino arguments object. This is necessary to
|
6
|
+
* allow the .js code to find resource files in a location
|
7
|
+
* relative to itself.
|
8
|
+
*
|
9
|
+
* USAGE: java -jar jsrun.jar path/to/file.js
|
10
|
+
*/
|
11
|
+
public class JsRun {
|
12
|
+
public static void main(String[] args) {
|
13
|
+
String[] jsargs = {"-j="+args[0]};
|
14
|
+
|
15
|
+
String[] allArgs = new String[jsargs.length + args.length];
|
16
|
+
System.arraycopy(args, 0, allArgs, 0, args.length);
|
17
|
+
System.arraycopy(jsargs, 0, allArgs, args.length ,jsargs.length);
|
18
|
+
|
19
|
+
org.mozilla.javascript.tools.shell.Main.main(allArgs);
|
20
|
+
}
|
21
|
+
}
|
Binary file
|
Binary file
|
@@ -0,0 +1,216 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="content-type" content="text/html; charset=utf-8"" />
|
6
|
+
|
7
|
+
<title>JsDoc Reference - File Index</title>
|
8
|
+
<meta name="generator" content="JsDoc Toolkit" />
|
9
|
+
|
10
|
+
<style type="text/css">
|
11
|
+
/* default.css */
|
12
|
+
body
|
13
|
+
{
|
14
|
+
font: 12px "Lucida Grande", Tahoma, Arial, Helvetica, sans-serif;
|
15
|
+
width: 800px;
|
16
|
+
}
|
17
|
+
|
18
|
+
.header
|
19
|
+
{
|
20
|
+
clear: both;
|
21
|
+
background-color: #ccc;
|
22
|
+
padding: 8px;
|
23
|
+
}
|
24
|
+
|
25
|
+
h1
|
26
|
+
{
|
27
|
+
font-size: 150%;
|
28
|
+
font-weight: bold;
|
29
|
+
padding: 0;
|
30
|
+
margin: 1em 0 0 .3em;
|
31
|
+
}
|
32
|
+
|
33
|
+
hr
|
34
|
+
{
|
35
|
+
border: none 0;
|
36
|
+
border-top: 1px solid #7F8FB1;
|
37
|
+
height: 1px;
|
38
|
+
}
|
39
|
+
|
40
|
+
pre.code
|
41
|
+
{
|
42
|
+
display: block;
|
43
|
+
padding: 8px;
|
44
|
+
border: 1px dashed #ccc;
|
45
|
+
}
|
46
|
+
|
47
|
+
#index
|
48
|
+
{
|
49
|
+
margin-top: 24px;
|
50
|
+
float: left;
|
51
|
+
width: 160px;
|
52
|
+
position: absolute;
|
53
|
+
left: 8px;
|
54
|
+
background-color: #F3F3F3;
|
55
|
+
padding: 8px;
|
56
|
+
}
|
57
|
+
|
58
|
+
#content
|
59
|
+
{
|
60
|
+
margin-left: 190px;
|
61
|
+
width: 600px;
|
62
|
+
}
|
63
|
+
|
64
|
+
.classList
|
65
|
+
{
|
66
|
+
list-style-type: none;
|
67
|
+
padding: 0;
|
68
|
+
margin: 0 0 0 8px;
|
69
|
+
font-family: arial, sans-serif;
|
70
|
+
font-size: 1em;
|
71
|
+
overflow: auto;
|
72
|
+
}
|
73
|
+
|
74
|
+
.classList li
|
75
|
+
{
|
76
|
+
padding: 0;
|
77
|
+
margin: 0 0 8px 0;
|
78
|
+
}
|
79
|
+
|
80
|
+
.summaryTable { width: 100%; }
|
81
|
+
|
82
|
+
h1.classTitle
|
83
|
+
{
|
84
|
+
font-size:170%;
|
85
|
+
line-height:130%;
|
86
|
+
}
|
87
|
+
|
88
|
+
h2 { font-size: 110%; }
|
89
|
+
caption, div.sectionTitle
|
90
|
+
{
|
91
|
+
background-color: #7F8FB1;
|
92
|
+
color: #fff;
|
93
|
+
font-size:130%;
|
94
|
+
text-align: left;
|
95
|
+
padding: 2px 6px 2px 6px;
|
96
|
+
border: 1px #7F8FB1 solid;
|
97
|
+
}
|
98
|
+
|
99
|
+
div.sectionTitle { margin-bottom: 8px; }
|
100
|
+
.summaryTable thead { display: none; }
|
101
|
+
|
102
|
+
.summaryTable td
|
103
|
+
{
|
104
|
+
vertical-align: top;
|
105
|
+
padding: 4px;
|
106
|
+
border-bottom: 1px #7F8FB1 solid;
|
107
|
+
border-right: 1px #7F8FB1 solid;
|
108
|
+
}
|
109
|
+
|
110
|
+
/*col#summaryAttributes {}*/
|
111
|
+
.summaryTable td.attributes
|
112
|
+
{
|
113
|
+
border-left: 1px #7F8FB1 solid;
|
114
|
+
width: 140px;
|
115
|
+
text-align: right;
|
116
|
+
}
|
117
|
+
|
118
|
+
td.attributes, .fixedFont
|
119
|
+
{
|
120
|
+
line-height: 15px;
|
121
|
+
color: #002EBE;
|
122
|
+
font-family: "Courier New",Courier,monospace;
|
123
|
+
font-size: 13px;
|
124
|
+
}
|
125
|
+
|
126
|
+
.summaryTable td.nameDescription
|
127
|
+
{
|
128
|
+
text-align: left;
|
129
|
+
font-size: 13px;
|
130
|
+
line-height: 15px;
|
131
|
+
}
|
132
|
+
|
133
|
+
.summaryTable td.nameDescription, .description
|
134
|
+
{
|
135
|
+
line-height: 15px;
|
136
|
+
padding: 4px;
|
137
|
+
padding-left: 4px;
|
138
|
+
}
|
139
|
+
|
140
|
+
.summaryTable { margin-bottom: 8px; }
|
141
|
+
|
142
|
+
ul.inheritsList
|
143
|
+
{
|
144
|
+
list-style: square;
|
145
|
+
margin-left: 20px;
|
146
|
+
padding-left: 0;
|
147
|
+
}
|
148
|
+
|
149
|
+
.detailList {
|
150
|
+
margin-left: 20px;
|
151
|
+
line-height: 15px;
|
152
|
+
}
|
153
|
+
.detailList dt { margin-left: 20px; }
|
154
|
+
|
155
|
+
.detailList .heading
|
156
|
+
{
|
157
|
+
font-weight: bold;
|
158
|
+
padding-bottom: 6px;
|
159
|
+
margin-left: 0;
|
160
|
+
}
|
161
|
+
|
162
|
+
.light, td.attributes, .light a:link, .light a:visited
|
163
|
+
{
|
164
|
+
color: #777;
|
165
|
+
font-style: italic;
|
166
|
+
}
|
167
|
+
|
168
|
+
.fineprint
|
169
|
+
{
|
170
|
+
text-align: right;
|
171
|
+
font-size: 10px;
|
172
|
+
}
|
173
|
+
</style>
|
174
|
+
</head>
|
175
|
+
|
176
|
+
<body>
|
177
|
+
<div id="header">
|
178
|
+
</div>
|
179
|
+
|
180
|
+
<div id="index">
|
181
|
+
<div align="center"><a href="index.html">Class Index</a>
|
182
|
+
| <a href="files.html">File Index</a></div>
|
183
|
+
<hr />
|
184
|
+
<h2>Classes</h2>
|
185
|
+
<ul class="classList">
|
186
|
+
|
187
|
+
<li><i><a href="symbols/_global_.html">_global_</a></i></li>
|
188
|
+
|
189
|
+
</ul>
|
190
|
+
<hr />
|
191
|
+
</div>
|
192
|
+
|
193
|
+
<div id="content">
|
194
|
+
<h1 class="classTitle">File Index</h1>
|
195
|
+
|
196
|
+
|
197
|
+
<div>
|
198
|
+
<h2><a href="symbols/src/lib_test.js.html">lib/test.js</a></h2>
|
199
|
+
|
200
|
+
<dl>
|
201
|
+
|
202
|
+
|
203
|
+
|
204
|
+
|
205
|
+
</dl>
|
206
|
+
</div>
|
207
|
+
<hr />
|
208
|
+
|
209
|
+
|
210
|
+
</div>
|
211
|
+
<div class="fineprint" style="clear:both">
|
212
|
+
|
213
|
+
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blankt">JsDoc Toolkit</a> 2.1.0 on Wed Jul 29 2009 11:57:29 GMT-0400 (EDT)
|
214
|
+
</div>
|
215
|
+
</body>
|
216
|
+
</html>
|