Skip to content

Commit

Permalink
Doc Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
davglass committed Apr 20, 2012
1 parent 151e9c8 commit 03c68d2
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 14 deletions.
10 changes: 5 additions & 5 deletions output/api/classes/DocBuilder.html
Expand Up @@ -652,7 +652,7 @@ <h3 class="name"><code>compile</code></h3>



<a href="..&#x2F;files&#x2F;lib_builder.js.html#l1288"><code>lib&#x2F;builder.js:1288</code></a>
<a href="..&#x2F;files&#x2F;lib_builder.js.html#l1306"><code>lib&#x2F;builder.js:1306</code></a>

</p>

Expand Down Expand Up @@ -741,7 +741,7 @@ <h3 class="name"><code>filterFileName</code></h3>



<a href="..&#x2F;files&#x2F;lib_builder.js.html#l1275"><code>lib&#x2F;builder.js:1275</code></a>
<a href="..&#x2F;files&#x2F;lib_builder.js.html#l1293"><code>lib&#x2F;builder.js:1293</code></a>

</p>

Expand Down Expand Up @@ -1256,7 +1256,7 @@ <h3 class="name"><code>nameSort</code></h3>



<a href="..&#x2F;files&#x2F;lib_builder.js.html#l1148"><code>lib&#x2F;builder.js:1148</code></a>
<a href="..&#x2F;files&#x2F;lib_builder.js.html#l1160"><code>lib&#x2F;builder.js:1160</code></a>

</p>

Expand Down Expand Up @@ -2000,7 +2000,7 @@ <h3 class="name"><code>writeClasses</code></h3>



<a href="..&#x2F;files&#x2F;lib_builder.js.html#l1119"><code>lib&#x2F;builder.js:1119</code></a>
<a href="..&#x2F;files&#x2F;lib_builder.js.html#l1125"><code>lib&#x2F;builder.js:1125</code></a>

</p>

Expand Down Expand Up @@ -2085,7 +2085,7 @@ <h3 class="name"><code>writeFiles</code></h3>



<a href="..&#x2F;files&#x2F;lib_builder.js.html#l1171"><code>lib&#x2F;builder.js:1171</code></a>
<a href="..&#x2F;files&#x2F;lib_builder.js.html#l1183"><code>lib&#x2F;builder.js:1183</code></a>

</p>

Expand Down
10 changes: 5 additions & 5 deletions output/api/data.json
Expand Up @@ -639,7 +639,7 @@
},
{
"file": "lib/builder.js",
"line": 1119,
"line": 1125,
"description": "Generates the class files under \"out\"/classes/",
"itemtype": "method",
"name": "writeClasses",
Expand All @@ -655,7 +655,7 @@
},
{
"file": "lib/builder.js",
"line": 1148,
"line": 1160,
"description": "Sort method of array of objects with a property called __name__",
"itemtype": "method",
"name": "nameSort",
Expand All @@ -680,7 +680,7 @@
},
{
"file": "lib/builder.js",
"line": 1171,
"line": 1183,
"description": "Generates the syntax files under `\"out\"/files/`",
"itemtype": "method",
"name": "writeFiles",
Expand All @@ -696,7 +696,7 @@
},
{
"file": "lib/builder.js",
"line": 1275,
"line": 1293,
"description": "Normalizes a file path to a writable filename:\n\n var path = 'lib/file.js';\n returns 'lib_file.js';",
"itemtype": "method",
"name": "filterFileName",
Expand All @@ -716,7 +716,7 @@
},
{
"file": "lib/builder.js",
"line": 1288,
"line": 1306,
"description": "Compiles the templates from the meta-data provided by DocParser",
"itemtype": "method",
"name": "compile",
Expand Down
26 changes: 22 additions & 4 deletions output/api/files/lib_builder.js.html
Expand Up @@ -889,8 +889,14 @@ <h1 class="file-heading">File: lib&#x2F;builder.js</h1>
stack = new Y.Parallel();
stack.html = [];
stack.view = [];

Y.log(&#x27;Rendering and writing &#x27; + Object.keys(self.data.modules).length + &#x27; modules pages.&#x27;, &#x27;info&#x27;, &#x27;builder&#x27;);

var counter = 0;
Object.keys(self.data.modules).forEach(function(k) {
if (!self.data.modules[k].external) {
counter++;
}
});
Y.log(&#x27;Rendering and writing &#x27; + counter + &#x27; modules pages.&#x27;, &#x27;info&#x27;, &#x27;builder&#x27;);
Y.each(self.data.modules, function(v) {
if (v.external) { return }
self.renderModule(function(html, view) {
Expand Down Expand Up @@ -1230,7 +1236,13 @@ <h1 class="file-heading">File: lib&#x2F;builder.js</h1>
stack.html = [];
stack.view = [];

Y.log(&#x27;Rendering and writing &#x27; + Object.keys(self.data.classes).length + &#x27; class pages.&#x27;, &#x27;info&#x27;, &#x27;builder&#x27;);
var counter = 0;
Object.keys(self.data.classes).forEach(function(k) {
if (!self.data.classes[k].external) {
counter++;
}
});
Y.log(&#x27;Rendering and writing &#x27; + counter + &#x27; class pages.&#x27;, &#x27;info&#x27;, &#x27;builder&#x27;);
Y.each(self.data.classes, function(v) {
if (v.external) { return }
self.renderClass(stack.add(function(html, view) {
Expand Down Expand Up @@ -1282,7 +1294,13 @@ <h1 class="file-heading">File: lib&#x2F;builder.js</h1>
stack.html = [];
stack.view = [];

Y.log(&#x27;Rendering and writing &#x27; + Object.keys(self.data.files).length + &#x27; source files.&#x27;, &#x27;info&#x27;, &#x27;builder&#x27;);
var counter = 0;
Object.keys(self.data.files).forEach(function(k) {
if (!self.data.files[k].external) {
counter++;
}
});
Y.log(&#x27;Rendering and writing &#x27; + counter + &#x27; source files.&#x27;, &#x27;info&#x27;, &#x27;builder&#x27;);
Y.each(self.data.files, function(v) {
if (v.external) { return }
self.renderFile(stack.add(function(html, view, data) {
Expand Down

0 comments on commit 03c68d2

Please sign in to comment.