Merge lp:~abreu-alexandre/unity-js-scopes/doc into lp:unity-js-scopes

Proposed by Marcus Tomlinson
Status: Merged
Approved by: Alexandre Abreu
Approved revision: 96
Merged at revision: 96
Proposed branch: lp:~abreu-alexandre/unity-js-scopes/doc
Merge into: lp:unity-js-scopes
Diff against target: 17435 lines (+16840/-46)
74 files modified
CMakeLists.txt (+1/-0)
debian/control (+10/-0)
debian/copyright (+35/-0)
debian/unity-js-scopes-doc.install (+1/-0)
doc/CMakeLists.txt (+25/-0)
doc/docbuild/api.js (+57/-0)
doc/docbuild/assets/css/main.css (+783/-0)
doc/docbuild/assets/index.html (+10/-0)
doc/docbuild/assets/js/api-filter.js (+79/-0)
doc/docbuild/assets/js/api-list.js (+278/-0)
doc/docbuild/assets/js/api-search.js (+125/-0)
doc/docbuild/assets/js/apidocs.js (+397/-0)
doc/docbuild/assets/js/yui-prettify.js (+44/-0)
doc/docbuild/assets/vendor/prettify/CHANGES.html (+130/-0)
doc/docbuild/assets/vendor/prettify/COPYING (+202/-0)
doc/docbuild/assets/vendor/prettify/README.html (+203/-0)
doc/docbuild/assets/vendor/prettify/prettify-min.css (+1/-0)
doc/docbuild/assets/vendor/prettify/prettify-min.js (+28/-0)
doc/docbuild/classes/ActionMetadata.html (+365/-0)
doc/docbuild/classes/ActivationQuery.html (+479/-0)
doc/docbuild/classes/CategorisedResult.html (+1205/-0)
doc/docbuild/classes/Category.html (+343/-0)
doc/docbuild/classes/CategoryRenderer.html (+203/-0)
doc/docbuild/classes/ColumnLayout.html (+376/-0)
doc/docbuild/classes/PreviewQuery.html (+341/-0)
doc/docbuild/classes/PreviewReply.html (+363/-0)
doc/docbuild/classes/PreviewWidget.html (+637/-0)
doc/docbuild/classes/Result.html (+987/-0)
doc/docbuild/classes/Scope.html (+423/-0)
doc/docbuild/classes/SearchMetaData.html (+1130/-0)
doc/docbuild/classes/SearchQuery.html (+342/-0)
doc/docbuild/classes/SearchReply.html (+453/-0)
doc/docbuild/classes/index.html (+10/-0)
doc/docbuild/data.json (+1875/-0)
doc/docbuild/files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_index.js.html (+314/-0)
doc/docbuild/files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_action-metadata.js.html (+150/-0)
doc/docbuild/files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_activation-query.js.html (+174/-0)
doc/docbuild/files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html (+286/-0)
doc/docbuild/files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_category-renderer.js.html (+134/-0)
doc/docbuild/files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_category.js.html (+156/-0)
doc/docbuild/files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_column-layout.js.html (+156/-0)
doc/docbuild/files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_preview-query.js.html (+189/-0)
doc/docbuild/files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_preview-reply.js.html (+154/-0)
doc/docbuild/files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_preview-widget.js.html (+191/-0)
doc/docbuild/files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_result.js.html (+241/-0)
doc/docbuild/files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_search-metadata.js.html (+266/-0)
doc/docbuild/files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_search-query.js.html (+192/-0)
doc/docbuild/files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_search-reply.js.html (+162/-0)
doc/docbuild/files/index.html (+10/-0)
doc/docbuild/index.html (+128/-0)
doc/docbuild/modules/ScopeJS.html (+230/-0)
doc/docbuild/modules/index.html (+10/-0)
doc/generate-doc.py (+164/-0)
doc/index.handlebars (+1/-0)
doc/yuidoc.json (+8/-0)
src/bindings/index.js (+88/-4)
src/bindings/src/action-metadata.cc (+1/-1)
src/bindings/src/action-metadata.h (+46/-0)
src/bindings/src/activation-query.h (+78/-0)
src/bindings/src/addon.cc (+21/-17)
src/bindings/src/categorised-result.h (+219/-0)
src/bindings/src/category-renderer.h (+48/-0)
src/bindings/src/category.h (+73/-0)
src/bindings/src/column-layout.h (+77/-0)
src/bindings/src/preview-query.h (+93/-0)
src/bindings/src/preview-reply.h (+53/-0)
src/bindings/src/preview-widget.h (+99/-0)
src/bindings/src/result.h (+164/-0)
src/bindings/src/scope-base.cc (+2/-2)
src/bindings/src/search-metadata.cc (+133/-14)
src/bindings/src/search-metadata.h (+224/-5)
src/bindings/src/search-query.cc (+2/-2)
src/bindings/src/search-query.h (+99/-1)
src/bindings/src/search-reply.h (+63/-0)
To merge this branch: bzr merge lp:~abreu-alexandre/unity-js-scopes/doc
Reviewer Review Type Date Requested Status
PS Jenkins bot (community) continuous-integration Approve
Marcus Tomlinson (community) Approve
Review via email: mp+275489@code.launchpad.net

Commit message

API Documentation

Description of the change

API Documentation

To post a comment you must log in.
Revision history for this message
Marcus Tomlinson (marcustomlinson) wrote :

Resubmitted this MP in hopes that Jenkins will wake up again.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Alexandre Abreu (abreu-alexandre) wrote :

could you re-review the branch? (or re-approve if it applies?)

Revision history for this message
Marcus Tomlinson (marcustomlinson) wrote :

> could you re-review the branch? (or re-approve if it applies?)

Well sure, this branch is fine except for the copyright issues. So yeah, approved on condition that these copyright errors are fixed and no other changes are made.

review: Approve
91. By Alexandre Abreu

try fix for bad license tag in debian copyright

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
92. By Alexandre Abreu

merge trunk

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
93. By Alexandre Abreu

tweaks copyright headers

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
94. By Alexandre Abreu

tweak license string

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
95. By Alexandre Abreu

fix copyright file

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
96. By Alexandre Abreu

tweak license

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'CMakeLists.txt'
2--- CMakeLists.txt 2015-10-22 06:23:52 +0000
3+++ CMakeLists.txt 2015-10-23 18:57:47 +0000
4@@ -60,6 +60,7 @@
5 endif()
6
7 add_subdirectory(src)
8+add_subdirectory(doc)
9
10 install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/examples
11 DESTINATION ${CMAKE_INSTALL_DATADIR}/unity-js-scopes)
12
13=== modified file 'debian/control'
14--- debian/control 2015-10-22 05:41:05 +0000
15+++ debian/control 2015-10-23 18:57:47 +0000
16@@ -6,6 +6,7 @@
17 cmake (>= 2.8.9),
18 debhelper (>= 9),
19 pkg-config,
20+ python3,
21 g++,
22 libboost-filesystem-dev,
23 libunity-scopes-dev,
24@@ -56,3 +57,12 @@
25 Description: Development files for Unity JavaScript Scopes
26 Provides a set of Qt Creator templates and examples for Ubuntu Scopes
27 written in JavaScript.
28+
29+Package: unity-js-scopes-doc
30+Architecture: any
31+Multi-Arch: foreign
32+Depends: ${misc:Depends},
33+ ${shlibs:Depends},
34+ unity-js-scopes-bindings (= ${binary:Version}),
35+Description: Documentation for javascript unity scopes
36+ Provides the documenttaion for unity scopes javascript API.
37
38=== modified file 'debian/copyright'
39--- debian/copyright 2015-07-09 01:02:19 +0000
40+++ debian/copyright 2015-10-23 18:57:47 +0000
41@@ -18,3 +18,38 @@
42 On Debian systems, the full text of the GNU General Public License
43 version 3 can be found in the file /usr/share/common-licenses/GPL-3.
44
45+Files: doc/docbuild/assets/js/yui-prettify.js
46+ doc/docbuild/assets/js/api-list.js
47+ doc/docbuild/assets/js/apidocs.js
48+ doc/docbuild/assets/js/api-search.js
49+ doc/docbuild/assets/js/api-filter.js
50+ doc/docbuild/assets/vendor/prettify/prettify-min.js
51+ doc/docbuild/api.js
52+Copyright: 2011 Yahoo! Inc.
53+License: BSD-3-Clause
54+ Redistribution and use in source and binary forms, with or without
55+ modification, are permitted provided that the following conditions are
56+ met:
57+ .
58+ * Redistributions of source code must retain the above copyright notice,
59+ this list of conditions and the following disclaimer.
60+ .
61+ * Redistributions in binary form must reproduce the above copyright notice,
62+ this list of conditions and the following disclaimer in the documentation
63+ and/or other materials provided with the distribution.
64+ .
65+ * The names of Kitware, Inc., the Insight Consortium, or the names of
66+ any consortium members, or of any contributors, may not be used to
67+ endorse or promote products derived from this software without
68+ specific prior written permission.
69+ .
70+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS ``AS IS''
71+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
72+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
73+ ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
74+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
75+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
76+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
77+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
78+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
79+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
80
81=== added file 'debian/unity-js-scopes-doc.install'
82--- debian/unity-js-scopes-doc.install 1970-01-01 00:00:00 +0000
83+++ debian/unity-js-scopes-doc.install 2015-10-23 18:57:47 +0000
84@@ -0,0 +1,1 @@
85+usr/share/unity-js-scopes/doc
86\ No newline at end of file
87
88=== added file 'doc/CMakeLists.txt'
89--- doc/CMakeLists.txt 1970-01-01 00:00:00 +0000
90+++ doc/CMakeLists.txt 2015-10-23 18:57:47 +0000
91@@ -0,0 +1,25 @@
92+# vim:expandtab:shiftwidth=2:tabstop=2:
93+
94+# Copyright (C) 2015 Canonical Ltd.
95+
96+# This library is free software; you can redistribute it and/or
97+# modify it under the terms of the GNU Lesser General Public
98+# License as published by the Free Software Foundation; either
99+# version 2.1 of the License, or (at your option) any later version.
100+
101+# This library is distributed in the hope that it will be useful,
102+# but WITHOUT ANY WARRANTY; without even the implied warranty of
103+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
104+# Lesser General Public License for more details.
105+
106+# You should have received a copy of the GNU Lesser General Public
107+# License along with this library; if not, write to the Free Software
108+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
109+
110+add_custom_target(
111+ doc
112+ ./generate-doc.py ${CMAKE_CURRENT_SOURCE_DIR}/../src/bindings/src ${CMAKE_BINARY_DIR}/doc/docbuild
113+ )
114+
115+install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/docbuild
116+ DESTINATION ${CMAKE_INSTALL_DATADIR}/unity-js-scopes/doc)
117
118=== added directory 'doc/docbuild'
119=== added file 'doc/docbuild/api.js'
120--- doc/docbuild/api.js 1970-01-01 00:00:00 +0000
121+++ doc/docbuild/api.js 2015-10-23 18:57:47 +0000
122@@ -0,0 +1,57 @@
123+/*
124+ * Copyright 2011 Yahoo! Inc.
125+ * All rights reserved.
126+ *
127+ * Redistribution and use in source and binary forms, with or without
128+ * modification, are permitted provided that the following conditions are met:
129+ * * Redistributions of source code must retain the above copyright
130+ * notice, this list of conditions and the following disclaimer.
131+ * * Redistributions in binary form must reproduce the above copyright
132+ * notice, this list of conditions and the following disclaimer in the
133+ * documentation and/or other materials provided with the distribution.
134+ * * Neither the name of the Yahoo! Inc. nor the
135+ * names of its contributors may be used to endorse or promote products
136+ * derived from this software without specific prior written permission.
137+ *
138+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
139+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
140+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
141+ * DISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY
142+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
143+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
144+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
145+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
146+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
147+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
148+ */
149+
150+YUI.add("yuidoc-meta", function(Y) {
151+ Y.YUIDoc = { meta: {
152+ "classes": [
153+ "ActionMetadata",
154+ "ActivationQuery",
155+ "CategorisedResult",
156+ "Category",
157+ "CategoryRenderer",
158+ "ColumnLayout",
159+ "PreviewQuery",
160+ "PreviewReply",
161+ "PreviewWidget",
162+ "Result",
163+ "Scope",
164+ "SearchMetaData",
165+ "SearchQuery",
166+ "SearchReply"
167+ ],
168+ "modules": [
169+ "ScopeJS"
170+ ],
171+ "allModules": [
172+ {
173+ "displayName": "ScopeJS",
174+ "name": "ScopeJS",
175+ "description": "Metadata passed to scopes for preview and activation"
176+ }
177+ ]
178+} };
179+});
180
181=== added directory 'doc/docbuild/assets'
182=== added directory 'doc/docbuild/assets/css'
183=== added file 'doc/docbuild/assets/css/external-small.png'
184Binary files doc/docbuild/assets/css/external-small.png 1970-01-01 00:00:00 +0000 and doc/docbuild/assets/css/external-small.png 2015-10-23 18:57:47 +0000 differ
185=== added file 'doc/docbuild/assets/css/logo.png'
186Binary files doc/docbuild/assets/css/logo.png 1970-01-01 00:00:00 +0000 and doc/docbuild/assets/css/logo.png 2015-10-23 18:57:47 +0000 differ
187=== added file 'doc/docbuild/assets/css/main.css'
188--- doc/docbuild/assets/css/main.css 1970-01-01 00:00:00 +0000
189+++ doc/docbuild/assets/css/main.css 2015-10-23 18:57:47 +0000
190@@ -0,0 +1,783 @@
191+/*
192+Font sizes for all selectors other than the body are given in percentages,
193+with 100% equal to 13px. To calculate a font size percentage, multiply the
194+desired size in pixels by 7.6923076923.
195+
196+Here's a quick lookup table:
197+
198+10px - 76.923%
199+11px - 84.615%
200+12px - 92.308%
201+13px - 100%
202+14px - 107.692%
203+15px - 115.385%
204+16px - 123.077%
205+17px - 130.769%
206+18px - 138.462%
207+19px - 146.154%
208+20px - 153.846%
209+*/
210+
211+html {
212+ background: #fff;
213+ color: #333;
214+ overflow-y: scroll;
215+}
216+
217+body {
218+ /*font: 13px/1.4 'Lucida Grande', 'Lucida Sans Unicode', 'DejaVu Sans', 'Bitstream Vera Sans', 'Helvetica', 'Arial', sans-serif;*/
219+ font: 13px/1.4 'Helvetica', 'Arial', sans-serif;
220+ margin: 0;
221+ padding: 0;
222+}
223+
224+/* -- Links ----------------------------------------------------------------- */
225+a {
226+ color: #356de4;
227+ text-decoration: none;
228+}
229+
230+.hidden {
231+ display: none;
232+}
233+
234+a:hover { text-decoration: underline; }
235+
236+/* "Jump to Table of Contents" link is shown to assistive tools, but hidden from
237+ sight until it's focused. */
238+.jump {
239+ position: absolute;
240+ padding: 3px 6px;
241+ left: -99999px;
242+ top: 0;
243+}
244+
245+.jump:focus { left: 40%; }
246+
247+/* -- Paragraphs ------------------------------------------------------------ */
248+p { margin: 1.3em 0; }
249+dd p, td p { margin-bottom: 0; }
250+dd p:first-child, td p:first-child { margin-top: 0; }
251+
252+/* -- Headings -------------------------------------------------------------- */
253+h1, h2, h3, h4, h5, h6 {
254+ color: #D98527;/*was #f80*/
255+ font-family: 'Trebuchet MS', sans-serif;
256+ font-weight: bold;
257+ line-height: 1.1;
258+ margin: 1.1em 0 0.5em;
259+}
260+
261+h1 {
262+ font-size: 184.6%;
263+ color: #30418C;
264+ margin: 0.75em 0 0.5em;
265+}
266+
267+h2 {
268+ font-size: 153.846%;
269+ color: #E48A2B;
270+}
271+
272+h3 { font-size: 138.462%; }
273+
274+h4 {
275+ border-bottom: 1px solid #DBDFEA;
276+ color: #E48A2B;
277+ font-size: 115.385%;
278+ font-weight: normal;
279+ padding-bottom: 2px;
280+}
281+
282+h5, h6 { font-size: 107.692%; }
283+
284+/* -- Code and examples ----------------------------------------------------- */
285+code, kbd, pre, samp {
286+ font-family: Menlo, Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;
287+ font-size: 92.308%;
288+ line-height: 1.35;
289+}
290+
291+p code, p kbd, p samp, li code {
292+ background: #FCFBFA;
293+ border: 1px solid #EFEEED;
294+ padding: 0 3px;
295+}
296+
297+a code, a kbd, a samp,
298+pre code, pre kbd, pre samp,
299+table code, table kbd, table samp,
300+.intro code, .intro kbd, .intro samp,
301+.toc code, .toc kbd, .toc samp {
302+ background: none;
303+ border: none;
304+ padding: 0;
305+}
306+
307+pre.code, pre.terminal, pre.cmd {
308+ overflow-x: auto;
309+ *overflow-x: scroll;
310+ padding: 0.3em 0.6em;
311+}
312+
313+pre.code {
314+ background: #FCFBFA;
315+ border: 1px solid #EFEEED;
316+ border-left-width: 5px;
317+}
318+
319+pre.terminal, pre.cmd {
320+ background: #F0EFFC;
321+ border: 1px solid #D0CBFB;
322+ border-left: 5px solid #D0CBFB;
323+}
324+
325+/* Don't reduce the font size of <code>/<kbd>/<samp> elements inside <pre>
326+ blocks. */
327+pre code, pre kbd, pre samp { font-size: 100%; }
328+
329+/* Used to denote text that shouldn't be selectable, such as line numbers or
330+ shell prompts. Guess which browser this doesn't work in. */
331+.noselect {
332+ -moz-user-select: -moz-none;
333+ -khtml-user-select: none;
334+ -webkit-user-select: none;
335+ -o-user-select: none;
336+ user-select: none;
337+}
338+
339+/* -- Lists ----------------------------------------------------------------- */
340+dd { margin: 0.2em 0 0.7em 1em; }
341+dl { margin: 1em 0; }
342+dt { font-weight: bold; }
343+
344+/* -- Tables ---------------------------------------------------------------- */
345+caption, th { text-align: left; }
346+
347+table {
348+ border-collapse: collapse;
349+ width: 100%;
350+}
351+
352+td, th {
353+ border: 1px solid #fff;
354+ padding: 5px 12px;
355+ vertical-align: top;
356+}
357+
358+td { background: #E6E9F5; }
359+td dl { margin: 0; }
360+td dl dl { margin: 1em 0; }
361+td pre:first-child { margin-top: 0; }
362+
363+th {
364+ background: #D2D7E6;/*#97A0BF*/
365+ border-bottom: none;
366+ border-top: none;
367+ color: #000;/*#FFF1D5*/
368+ font-family: 'Trebuchet MS', sans-serif;
369+ font-weight: bold;
370+ line-height: 1.3;
371+ white-space: nowrap;
372+}
373+
374+
375+/* -- Layout and Content ---------------------------------------------------- */
376+#doc {
377+ margin: auto;
378+ min-width: 1024px;
379+}
380+
381+.content { padding: 0 20px 0 25px; }
382+
383+.sidebar {
384+ padding: 0 15px 0 10px;
385+}
386+#bd {
387+ padding: 7px 0 130px;
388+ position: relative;
389+ width: 99%;
390+}
391+
392+/* -- Table of Contents ----------------------------------------------------- */
393+
394+/* The #toc id refers to the single global table of contents, while the .toc
395+ class refers to generic TOC lists that could be used throughout the page. */
396+
397+.toc code, .toc kbd, .toc samp { font-size: 100%; }
398+.toc li { font-weight: bold; }
399+.toc li li { font-weight: normal; }
400+
401+/* -- Intro and Example Boxes ----------------------------------------------- */
402+/*
403+.intro, .example { margin-bottom: 2em; }
404+.example {
405+ -moz-border-radius: 4px;
406+ -webkit-border-radius: 4px;
407+ border-radius: 4px;
408+ -moz-box-shadow: 0 0 5px #bfbfbf;
409+ -webkit-box-shadow: 0 0 5px #bfbfbf;
410+ box-shadow: 0 0 5px #bfbfbf;
411+ padding: 1em;
412+}
413+.intro {
414+ background: none repeat scroll 0 0 #F0F1F8; border: 1px solid #D4D8EB; padding: 0 1em;
415+}
416+*/
417+
418+/* -- Other Styles ---------------------------------------------------------- */
419+
420+/* These are probably YUI-specific, and should be moved out of Selleck's default
421+ theme. */
422+
423+.button {
424+ border: 1px solid #dadada;
425+ -moz-border-radius: 3px;
426+ -webkit-border-radius: 3px;
427+ border-radius: 3px;
428+ color: #444;
429+ display: inline-block;
430+ font-family: Helvetica, Arial, sans-serif;
431+ font-size: 92.308%;
432+ font-weight: bold;
433+ padding: 4px 13px 3px;
434+ -moz-text-shadow: 1px 1px 0 #fff;
435+ -webkit-text-shadow: 1px 1px 0 #fff;
436+ text-shadow: 1px 1px 0 #fff;
437+ white-space: nowrap;
438+
439+ background: #EFEFEF; /* old browsers */
440+ background: -moz-linear-gradient(top, #f5f5f5 0%, #efefef 50%, #e5e5e5 51%, #dfdfdf 100%); /* firefox */
441+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(50%,#efefef), color-stop(51%,#e5e5e5), color-stop(100%,#dfdfdf)); /* webkit */
442+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#dfdfdf',GradientType=0 ); /* ie */
443+}
444+
445+.button:hover {
446+ border-color: #466899;
447+ color: #fff;
448+ text-decoration: none;
449+ -moz-text-shadow: 1px 1px 0 #222;
450+ -webkit-text-shadow: 1px 1px 0 #222;
451+ text-shadow: 1px 1px 0 #222;
452+
453+ background: #6396D8; /* old browsers */
454+ background: -moz-linear-gradient(top, #6396D8 0%, #5A83BC 50%, #547AB7 51%, #466899 100%); /* firefox */
455+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6396D8), color-stop(50%,#5A83BC), color-stop(51%,#547AB7), color-stop(100%,#466899)); /* webkit */
456+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6396D8', endColorstr='#466899',GradientType=0 ); /* ie */
457+}
458+
459+.newwindow { text-align: center; }
460+
461+.header .version em {
462+ display: block;
463+ text-align: right;
464+}
465+
466+
467+#classdocs .item {
468+ border-bottom: 1px solid #466899;
469+ margin: 1em 0;
470+ padding: 1.5em;
471+}
472+
473+#classdocs .item .params p,
474+ #classdocs .item .returns p,{
475+ display: inline;
476+}
477+
478+#classdocs .item em code, #classdocs .item em.comment {
479+ color: green;
480+}
481+
482+#classdocs .item em.comment a {
483+ color: green;
484+ text-decoration: underline;
485+}
486+
487+#classdocs .foundat {
488+ font-size: 11px;
489+ font-style: normal;
490+}
491+
492+.attrs .emits {
493+ margin-left: 2em;
494+ padding: .5em;
495+ border-left: 1px dashed #ccc;
496+}
497+
498+abbr {
499+ border-bottom: 1px dashed #ccc;
500+ font-size: 80%;
501+ cursor: help;
502+}
503+
504+.prettyprint li.L0,
505+.prettyprint li.L1,
506+.prettyprint li.L2,
507+.prettyprint li.L3,
508+.prettyprint li.L5,
509+.prettyprint li.L6,
510+.prettyprint li.L7,
511+.prettyprint li.L8 {
512+ list-style: decimal;
513+}
514+
515+ul li p {
516+ margin-top: 0;
517+}
518+
519+.method .name {
520+ font-size: 110%;
521+}
522+
523+.apidocs .methods .extends .method,
524+.apidocs .properties .extends .property,
525+.apidocs .attrs .extends .attr,
526+.apidocs .events .extends .event {
527+ font-weight: bold;
528+}
529+
530+.apidocs .methods .extends .inherited,
531+.apidocs .properties .extends .inherited,
532+.apidocs .attrs .extends .inherited,
533+.apidocs .events .extends .inherited {
534+ font-weight: normal;
535+}
536+
537+#hd {
538+ background: whiteSmoke;
539+ background: -moz-linear-gradient(top,#DCDBD9 0,#F6F5F3 100%);
540+ background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#DCDBD9),color-stop(100%,#F6F5F3));
541+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dcdbd9',endColorstr='#F6F5F3',GradientType=0);
542+ border-bottom: 1px solid #DFDFDF;
543+ padding: 0 15px 1px 20px;
544+ margin-bottom: 15px;
545+}
546+
547+#hd img {
548+ margin-right: 10px;
549+ vertical-align: middle;
550+}
551+
552+
553+/* -- API Docs CSS ---------------------------------------------------------- */
554+
555+/*
556+This file is organized so that more generic styles are nearer the top, and more
557+specific styles are nearer the bottom of the file. This allows us to take full
558+advantage of the cascade to avoid redundant style rules. Please respect this
559+convention when making changes.
560+*/
561+
562+/* -- Generic TabView styles ------------------------------------------------ */
563+
564+/*
565+These styles apply to all API doc tabviews. To change styles only for a
566+specific tabview, see the other sections below.
567+*/
568+
569+.yui3-js-enabled .apidocs .tabview {
570+ visibility: hidden; /* Hide until the TabView finishes rendering. */
571+ _visibility: visible;
572+}
573+
574+.apidocs .tabview.yui3-tabview-content { visibility: visible; }
575+.apidocs .tabview .yui3-tabview-panel { background: #fff; }
576+
577+/* -- Generic Content Styles ------------------------------------------------ */
578+
579+/* Headings */
580+h2, h3, h4, h5, h6 {
581+ border: none;
582+ color: #30418C;
583+ font-weight: bold;
584+ text-decoration: none;
585+}
586+
587+.link-docs {
588+ float: right;
589+ font-size: 15px;
590+ margin: 4px 4px 6px;
591+ padding: 6px 30px 5px;
592+}
593+
594+.apidocs { zoom: 1; }
595+
596+/* Generic box styles. */
597+.apidocs .box {
598+ border: 1px solid;
599+ border-radius: 3px;
600+ margin: 1em 0;
601+ padding: 0 1em;
602+}
603+
604+/* A flag is a compact, capsule-like indicator of some kind. It's used to
605+ indicate private and protected items, item return types, etc. in an
606+ attractive and unobtrusive way. */
607+.apidocs .flag {
608+ background: #bababa;
609+ border-radius: 3px;
610+ color: #fff;
611+ font-size: 11px;
612+ margin: 0 0.5em;
613+ padding: 2px 4px 1px;
614+}
615+
616+/* Class/module metadata such as "Uses", "Extends", "Defined in", etc. */
617+.apidocs .meta {
618+ background: #f9f9f9;
619+ border-color: #efefef;
620+ color: #555;
621+ font-size: 11px;
622+ padding: 3px 6px;
623+}
624+
625+.apidocs .meta p { margin: 0; }
626+
627+/* Deprecation warning. */
628+.apidocs .box.deprecated,
629+.apidocs .flag.deprecated {
630+ background: #fdac9f;
631+ border: 1px solid #fd7775;
632+}
633+
634+.apidocs .box.deprecated p { margin: 0.5em 0; }
635+.apidocs .flag.deprecated { color: #333; }
636+
637+/* Module/Class intro description. */
638+.apidocs .intro {
639+ background: #f0f1f8;
640+ border-color: #d4d8eb;
641+}
642+
643+/* Loading spinners. */
644+#bd.loading .apidocs,
645+#api-list.loading .yui3-tabview-panel {
646+ background: #fff url(../img/spinner.gif) no-repeat center 70px;
647+ min-height: 150px;
648+}
649+
650+#bd.loading .apidocs .content,
651+#api-list.loading .yui3-tabview-panel .apis {
652+ display: none;
653+}
654+
655+.apidocs .no-visible-items { color: #666; }
656+
657+/* Generic inline list. */
658+.apidocs ul.inline {
659+ display: inline;
660+ list-style: none;
661+ margin: 0;
662+ padding: 0;
663+}
664+
665+.apidocs ul.inline li { display: inline; }
666+
667+/* Comma-separated list. */
668+.apidocs ul.commas li:after { content: ','; }
669+.apidocs ul.commas li:last-child:after { content: ''; }
670+
671+/* Keyboard shortcuts. */
672+kbd .cmd { font-family: Monaco, Helvetica; }
673+
674+/* -- Generic Access Level styles ------------------------------------------- */
675+.apidocs .item.protected,
676+.apidocs .item.private,
677+.apidocs .index-item.protected,
678+.apidocs .index-item.deprecated,
679+.apidocs .index-item.private {
680+ display: none;
681+}
682+
683+.show-deprecated .item.deprecated,
684+.show-deprecated .index-item.deprecated,
685+.show-protected .item.protected,
686+.show-protected .index-item.protected,
687+.show-private .item.private,
688+.show-private .index-item.private {
689+ display: block;
690+}
691+
692+.hide-inherited .item.inherited,
693+.hide-inherited .index-item.inherited {
694+ display: none;
695+}
696+
697+/* -- Generic Item Index styles --------------------------------------------- */
698+.apidocs .index { margin: 1.5em 0 3em; }
699+
700+.apidocs .index h3 {
701+ border-bottom: 1px solid #efefef;
702+ color: #333;
703+ font-size: 13px;
704+ margin: 2em 0 0.6em;
705+ padding-bottom: 2px;
706+}
707+
708+.apidocs .index .no-visible-items { margin-top: 2em; }
709+
710+.apidocs .index-list {
711+ border-color: #efefef;
712+ font-size: 12px;
713+ list-style: none;
714+ margin: 0;
715+ padding: 0;
716+ -moz-column-count: 4;
717+ -moz-column-gap: 10px;
718+ -moz-column-width: 170px;
719+ -ms-column-count: 4;
720+ -ms-column-gap: 10px;
721+ -ms-column-width: 170px;
722+ -o-column-count: 4;
723+ -o-column-gap: 10px;
724+ -o-column-width: 170px;
725+ -webkit-column-count: 4;
726+ -webkit-column-gap: 10px;
727+ -webkit-column-width: 170px;
728+ column-count: 4;
729+ column-gap: 10px;
730+ column-width: 170px;
731+}
732+
733+.apidocs .no-columns .index-list {
734+ -moz-column-count: 1;
735+ -ms-column-count: 1;
736+ -o-column-count: 1;
737+ -webkit-column-count: 1;
738+ column-count: 1;
739+}
740+
741+.apidocs .index-item { white-space: nowrap; }
742+
743+.apidocs .index-item .flag {
744+ background: none;
745+ border: none;
746+ color: #afafaf;
747+ display: inline;
748+ margin: 0 0 0 0.2em;
749+ padding: 0;
750+}
751+
752+/* -- Generic API item styles ----------------------------------------------- */
753+.apidocs .args {
754+ display: inline;
755+ margin: 0 0.5em;
756+}
757+
758+.apidocs .flag.chainable { background: #46ca3b; }
759+.apidocs .flag.protected { background: #9b86fc; }
760+.apidocs .flag.private { background: #fd6b1b; }
761+.apidocs .flag.async { background: #356de4; }
762+.apidocs .flag.required { background: #e60923; }
763+
764+.apidocs .item {
765+ border-bottom: 1px solid #efefef;
766+ margin: 1.5em 0 2em;
767+ padding-bottom: 2em;
768+}
769+
770+.apidocs .item h4,
771+.apidocs .item h5,
772+.apidocs .item h6 {
773+ color: #333;
774+ font-family: inherit;
775+ font-size: 100%;
776+}
777+
778+.apidocs .item .description p,
779+.apidocs .item pre.code {
780+ margin: 1em 0 0;
781+}
782+
783+.apidocs .item .meta {
784+ background: none;
785+ border: none;
786+ padding: 0;
787+}
788+
789+.apidocs .item .name {
790+ display: inline;
791+ font-size: 14px;
792+}
793+
794+.apidocs .item .type,
795+.apidocs .item .type a,
796+.apidocs .returns-inline {
797+ color: #555;
798+}
799+
800+.apidocs .item .type,
801+.apidocs .returns-inline {
802+ font-size: 11px;
803+ margin: 0 0 0 0;
804+}
805+
806+.apidocs .item .type a { border-bottom: 1px dotted #afafaf; }
807+.apidocs .item .type a:hover { border: none; }
808+
809+/* -- Item Parameter List --------------------------------------------------- */
810+.apidocs .params-list {
811+ list-style: square;
812+ margin: 1em 0 0 2em;
813+ padding: 0;
814+}
815+
816+.apidocs .param { margin-bottom: 1em; }
817+
818+.apidocs .param .type,
819+.apidocs .param .type a {
820+ color: #666;
821+}
822+
823+.apidocs .param .type {
824+ margin: 0 0 0 0.5em;
825+ *margin-left: 0.5em;
826+}
827+
828+.apidocs .param-name { font-weight: bold; }
829+
830+/* -- Item "Emits" block ---------------------------------------------------- */
831+.apidocs .item .emits {
832+ background: #f9f9f9;
833+ border-color: #eaeaea;
834+}
835+
836+/* -- Item "Returns" block -------------------------------------------------- */
837+.apidocs .item .returns .type,
838+.apidocs .item .returns .type a {
839+ font-size: 100%;
840+ margin: 0;
841+}
842+
843+/* -- Class Constructor block ----------------------------------------------- */
844+.apidocs .constructor .item {
845+ border: none;
846+ padding-bottom: 0;
847+}
848+
849+/* -- File Source View ------------------------------------------------------ */
850+.apidocs .file pre.code,
851+#doc .apidocs .file pre.prettyprint {
852+ background: inherit;
853+ border: none;
854+ overflow: visible;
855+ padding: 0;
856+}
857+
858+.apidocs .L0,
859+.apidocs .L1,
860+.apidocs .L2,
861+.apidocs .L3,
862+.apidocs .L4,
863+.apidocs .L5,
864+.apidocs .L6,
865+.apidocs .L7,
866+.apidocs .L8,
867+.apidocs .L9 {
868+ background: inherit;
869+}
870+
871+/* -- Submodule List -------------------------------------------------------- */
872+.apidocs .module-submodule-description {
873+ font-size: 12px;
874+ margin: 0.3em 0 1em;
875+}
876+
877+.apidocs .module-submodule-description p:first-child { margin-top: 0; }
878+
879+/* -- Sidebar TabView ------------------------------------------------------- */
880+#api-tabview { margin-top: 0.6em; }
881+
882+#api-tabview-filter,
883+#api-tabview-panel {
884+ border: 1px solid #dfdfdf;
885+}
886+
887+#api-tabview-filter {
888+ border-bottom: none;
889+ border-top: none;
890+ padding: 0.6em 10px 0 10px;
891+}
892+
893+#api-tabview-panel { border-top: none; }
894+#api-filter { width: 97%; }
895+
896+/* -- Content TabView ------------------------------------------------------- */
897+#classdocs .yui3-tabview-panel { border: none; }
898+
899+/* -- Source File Contents -------------------------------------------------- */
900+.prettyprint li.L0,
901+.prettyprint li.L1,
902+.prettyprint li.L2,
903+.prettyprint li.L3,
904+.prettyprint li.L5,
905+.prettyprint li.L6,
906+.prettyprint li.L7,
907+.prettyprint li.L8 {
908+ list-style: decimal;
909+}
910+
911+/* -- API options ----------------------------------------------------------- */
912+#api-options {
913+ font-size: 11px;
914+ margin-top: 2.2em;
915+ position: absolute;
916+ right: 1.5em;
917+}
918+
919+/*#api-options label { margin-right: 0.6em; }*/
920+
921+/* -- API list -------------------------------------------------------------- */
922+#api-list {
923+ margin-top: 1.5em;
924+ *zoom: 1;
925+}
926+
927+.apis {
928+ font-size: 12px;
929+ line-height: 1.4;
930+ list-style: none;
931+ margin: 0;
932+ padding: 0.5em 0 0.5em 0.4em;
933+}
934+
935+.apis a {
936+ border: 1px solid transparent;
937+ display: block;
938+ margin: 0 0 0 -4px;
939+ padding: 1px 4px 0;
940+ text-decoration: none;
941+ _border: none;
942+ _display: inline;
943+}
944+
945+.apis a:hover,
946+.apis a:focus {
947+ background: #E8EDFC;
948+ background: -moz-linear-gradient(top, #e8edfc 0%, #becef7 100%);
949+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#E8EDFC), color-stop(100%,#BECEF7));
950+ border-color: #AAC0FA;
951+ border-radius: 3px;
952+ color: #333;
953+ outline: none;
954+}
955+
956+.api-list-item a:hover,
957+.api-list-item a:focus {
958+ font-weight: bold;
959+ text-shadow: 1px 1px 1px #fff;
960+}
961+
962+.apis .message { color: #888; }
963+.apis .result a { padding: 3px 5px 2px; }
964+
965+.apis .result .type {
966+ right: 4px;
967+ top: 7px;
968+}
969+
970+.api-list-item .yui3-highlight {
971+ font-weight: bold;
972+}
973+
974
975=== added file 'doc/docbuild/assets/favicon.ico'
976Binary files doc/docbuild/assets/favicon.ico 1970-01-01 00:00:00 +0000 and doc/docbuild/assets/favicon.ico 2015-10-23 18:57:47 +0000 differ
977=== added directory 'doc/docbuild/assets/img'
978=== added file 'doc/docbuild/assets/img/spinner.gif'
979Binary files doc/docbuild/assets/img/spinner.gif 1970-01-01 00:00:00 +0000 and doc/docbuild/assets/img/spinner.gif 2015-10-23 18:57:47 +0000 differ
980=== added file 'doc/docbuild/assets/index.html'
981--- doc/docbuild/assets/index.html 1970-01-01 00:00:00 +0000
982+++ doc/docbuild/assets/index.html 2015-10-23 18:57:47 +0000
983@@ -0,0 +1,10 @@
984+<!doctype html>
985+<html>
986+ <head>
987+ <title>Redirector</title>
988+ <meta http-equiv="refresh" content="0;url=../">
989+ </head>
990+ <body>
991+ <a href="../">Click here to redirect</a>
992+ </body>
993+</html>
994
995=== added directory 'doc/docbuild/assets/js'
996=== added file 'doc/docbuild/assets/js/api-filter.js'
997--- doc/docbuild/assets/js/api-filter.js 1970-01-01 00:00:00 +0000
998+++ doc/docbuild/assets/js/api-filter.js 2015-10-23 18:57:47 +0000
999@@ -0,0 +1,79 @@
1000+/*
1001+ * Copyright 2011 Yahoo! Inc.
1002+ * All rights reserved.
1003+ *
1004+ * Redistribution and use in source and binary forms, with or without
1005+ * modification, are permitted provided that the following conditions are met:
1006+ * * Redistributions of source code must retain the above copyright
1007+ * notice, this list of conditions and the following disclaimer.
1008+ * * Redistributions in binary form must reproduce the above copyright
1009+ * notice, this list of conditions and the following disclaimer in the
1010+ * documentation and/or other materials provided with the distribution.
1011+ * * Neither the name of the Yahoo! Inc. nor the
1012+ * names of its contributors may be used to endorse or promote products
1013+ * derived from this software without specific prior written permission.
1014+ *
1015+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1016+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1017+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1018+ * DISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY
1019+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1020+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1021+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1022+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1023+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1024+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1025+ */
1026+
1027+YUI.add('api-filter', function (Y) {
1028+
1029+Y.APIFilter = Y.Base.create('apiFilter', Y.Base, [Y.AutoCompleteBase], {
1030+ // -- Initializer ----------------------------------------------------------
1031+ initializer: function () {
1032+ this._bindUIACBase();
1033+ this._syncUIACBase();
1034+ },
1035+ getDisplayName: function(name) {
1036+
1037+ Y.each(Y.YUIDoc.meta.allModules, function(i) {
1038+ if (i.name === name && i.displayName) {
1039+ name = i.displayName;
1040+ }
1041+ });
1042+
1043+ return name;
1044+ }
1045+
1046+}, {
1047+ // -- Attributes -----------------------------------------------------------
1048+ ATTRS: {
1049+ resultHighlighter: {
1050+ value: 'phraseMatch'
1051+ },
1052+
1053+ // May be set to "classes" or "modules".
1054+ queryType: {
1055+ value: 'classes'
1056+ },
1057+
1058+ source: {
1059+ valueFn: function() {
1060+ var self = this;
1061+ return function(q) {
1062+ var data = Y.YUIDoc.meta[self.get('queryType')],
1063+ out = [];
1064+ Y.each(data, function(v) {
1065+ if (v.toLowerCase().indexOf(q.toLowerCase()) > -1) {
1066+ out.push(v);
1067+ }
1068+ });
1069+ return out;
1070+ };
1071+ }
1072+ }
1073+ }
1074+});
1075+
1076+}, '3.4.0', {requires: [
1077+ 'autocomplete-base', 'autocomplete-highlighters', 'autocomplete-sources'
1078+]});
1079
1080=== added file 'doc/docbuild/assets/js/api-list.js'
1081--- doc/docbuild/assets/js/api-list.js 1970-01-01 00:00:00 +0000
1082+++ doc/docbuild/assets/js/api-list.js 2015-10-23 18:57:47 +0000
1083@@ -0,0 +1,278 @@
1084+/*
1085+ * Copyright 2011 Yahoo! Inc.
1086+ * All rights reserved.
1087+ *
1088+ * Redistribution and use in source and binary forms, with or without
1089+ * modification, are permitted provided that the following conditions are met:
1090+ * * Redistributions of source code must retain the above copyright
1091+ * notice, this list of conditions and the following disclaimer.
1092+ * * Redistributions in binary form must reproduce the above copyright
1093+ * notice, this list of conditions and the following disclaimer in the
1094+ * documentation and/or other materials provided with the distribution.
1095+ * * Neither the name of the Yahoo! Inc. nor the
1096+ * names of its contributors may be used to endorse or promote products
1097+ * derived from this software without specific prior written permission.
1098+ *
1099+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1100+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1101+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1102+ * DISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY
1103+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1104+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1105+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1106+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1107+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1108+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1109+ */
1110+
1111+YUI.add('api-list', function (Y) {
1112+
1113+var Lang = Y.Lang,
1114+ YArray = Y.Array,
1115+
1116+ APIList = Y.namespace('APIList'),
1117+
1118+ classesNode = Y.one('#api-classes'),
1119+ inputNode = Y.one('#api-filter'),
1120+ modulesNode = Y.one('#api-modules'),
1121+ tabviewNode = Y.one('#api-tabview'),
1122+
1123+ tabs = APIList.tabs = {},
1124+
1125+ filter = APIList.filter = new Y.APIFilter({
1126+ inputNode : inputNode,
1127+ maxResults: 1000,
1128+
1129+ on: {
1130+ results: onFilterResults
1131+ }
1132+ }),
1133+
1134+ search = APIList.search = new Y.APISearch({
1135+ inputNode : inputNode,
1136+ maxResults: 100,
1137+
1138+ on: {
1139+ clear : onSearchClear,
1140+ results: onSearchResults
1141+ }
1142+ }),
1143+
1144+ tabview = APIList.tabview = new Y.TabView({
1145+ srcNode : tabviewNode,
1146+ panelNode: '#api-tabview-panel',
1147+ render : true,
1148+
1149+ on: {
1150+ selectionChange: onTabSelectionChange
1151+ }
1152+ }),
1153+
1154+ focusManager = APIList.focusManager = tabviewNode.plug(Y.Plugin.NodeFocusManager, {
1155+ circular : true,
1156+ descendants: '#api-filter, .yui3-tab-panel-selected .api-list-item a, .yui3-tab-panel-selected .result a',
1157+ keys : {next: 'down:40', previous: 'down:38'}
1158+ }).focusManager,
1159+
1160+ LIST_ITEM_TEMPLATE =
1161+ '<li class="api-list-item {typeSingular}">' +
1162+ '<a href="{rootPath}{typePlural}/{name}.html">{displayName}</a>' +
1163+ '</li>';
1164+
1165+// -- Init ---------------------------------------------------------------------
1166+
1167+// Duckpunch FocusManager's key event handling to prevent it from handling key
1168+// events when a modifier is pressed.
1169+Y.before(function (e, activeDescendant) {
1170+ if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey) {
1171+ return new Y.Do.Prevent();
1172+ }
1173+}, focusManager, '_focusPrevious', focusManager);
1174+
1175+Y.before(function (e, activeDescendant) {
1176+ if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey) {
1177+ return new Y.Do.Prevent();
1178+ }
1179+}, focusManager, '_focusNext', focusManager);
1180+
1181+// Create a mapping of tabs in the tabview so we can refer to them easily later.
1182+tabview.each(function (tab, index) {
1183+ var name = tab.get('label').toLowerCase();
1184+
1185+ tabs[name] = {
1186+ index: index,
1187+ name : name,
1188+ tab : tab
1189+ };
1190+});
1191+
1192+// Switch tabs on Ctrl/Cmd-Left/Right arrows.
1193+tabviewNode.on('key', onTabSwitchKey, 'down:37,39');
1194+
1195+// Focus the filter input when the `/` key is pressed.
1196+Y.one(Y.config.doc).on('key', onSearchKey, 'down:83');
1197+
1198+// Keep the Focus Manager up to date.
1199+inputNode.on('focus', function () {
1200+ focusManager.set('activeDescendant', inputNode);
1201+});
1202+
1203+// Update all tabview links to resolved URLs.
1204+tabview.get('panelNode').all('a').each(function (link) {
1205+ link.setAttribute('href', link.get('href'));
1206+});
1207+
1208+// -- Private Functions --------------------------------------------------------
1209+function getFilterResultNode() {
1210+ return filter.get('queryType') === 'classes' ? classesNode : modulesNode;
1211+}
1212+
1213+// -- Event Handlers -----------------------------------------------------------
1214+function onFilterResults(e) {
1215+ var frag = Y.one(Y.config.doc.createDocumentFragment()),
1216+ resultNode = getFilterResultNode(),
1217+ typePlural = filter.get('queryType'),
1218+ typeSingular = typePlural === 'classes' ? 'class' : 'module';
1219+
1220+ if (e.results.length) {
1221+ YArray.each(e.results, function (result) {
1222+ frag.append(Lang.sub(LIST_ITEM_TEMPLATE, {
1223+ rootPath : APIList.rootPath,
1224+ displayName : filter.getDisplayName(result.highlighted),
1225+ name : result.text,
1226+ typePlural : typePlural,
1227+ typeSingular: typeSingular
1228+ }));
1229+ });
1230+ } else {
1231+ frag.append(
1232+ '<li class="message">' +
1233+ 'No ' + typePlural + ' found.' +
1234+ '</li>'
1235+ );
1236+ }
1237+
1238+ resultNode.empty(true);
1239+ resultNode.append(frag);
1240+
1241+ focusManager.refresh();
1242+}
1243+
1244+function onSearchClear(e) {
1245+
1246+ focusManager.refresh();
1247+}
1248+
1249+function onSearchKey(e) {
1250+ var target = e.target;
1251+
1252+ if (target.test('input,select,textarea')
1253+ || target.get('isContentEditable')) {
1254+ return;
1255+ }
1256+
1257+ e.preventDefault();
1258+
1259+ inputNode.focus();
1260+ focusManager.refresh();
1261+}
1262+
1263+function onSearchResults(e) {
1264+ var frag = Y.one(Y.config.doc.createDocumentFragment());
1265+
1266+ if (e.results.length) {
1267+ YArray.each(e.results, function (result) {
1268+ frag.append(result.display);
1269+ });
1270+ } else {
1271+ frag.append(
1272+ '<li class="message">' +
1273+ 'No results found. Maybe you\'ll have better luck with a ' +
1274+ 'different query?' +
1275+ '</li>'
1276+ );
1277+ }
1278+
1279+
1280+ focusManager.refresh();
1281+}
1282+
1283+function onTabSelectionChange(e) {
1284+ var tab = e.newVal,
1285+ name = tab.get('label').toLowerCase();
1286+
1287+ tabs.selected = {
1288+ index: tab.get('index'),
1289+ name : name,
1290+ tab : tab
1291+ };
1292+
1293+ switch (name) {
1294+ case 'classes': // fallthru
1295+ case 'modules':
1296+ filter.setAttrs({
1297+ minQueryLength: 0,
1298+ queryType : name
1299+ });
1300+
1301+ search.set('minQueryLength', -1);
1302+
1303+ // Only send a request if this isn't the initially-selected tab.
1304+ if (e.prevVal) {
1305+ filter.sendRequest(filter.get('value'));
1306+ }
1307+ break;
1308+
1309+ case 'everything':
1310+ filter.set('minQueryLength', -1);
1311+ search.set('minQueryLength', 1);
1312+
1313+ if (search.get('value')) {
1314+ search.sendRequest(search.get('value'));
1315+ } else {
1316+ inputNode.focus();
1317+ }
1318+ break;
1319+
1320+ default:
1321+ // WTF? We shouldn't be here!
1322+ filter.set('minQueryLength', -1);
1323+ search.set('minQueryLength', -1);
1324+ }
1325+
1326+ if (focusManager) {
1327+ setTimeout(function () {
1328+ focusManager.refresh();
1329+ }, 1);
1330+ }
1331+}
1332+
1333+function onTabSwitchKey(e) {
1334+ var currentTabIndex = tabs.selected.index;
1335+
1336+ if (!(e.ctrlKey || e.metaKey)) {
1337+ return;
1338+ }
1339+
1340+ e.preventDefault();
1341+
1342+ switch (e.keyCode) {
1343+ case 37: // left arrow
1344+ if (currentTabIndex > 0) {
1345+ tabview.selectChild(currentTabIndex - 1);
1346+ inputNode.focus();
1347+ }
1348+ break;
1349+
1350+ case 39: // right arrow
1351+ if (currentTabIndex < (Y.Object.size(tabs) - 2)) {
1352+ tabview.selectChild(currentTabIndex + 1);
1353+ inputNode.focus();
1354+ }
1355+ break;
1356+ }
1357+}
1358+
1359+}, '3.4.0', {requires: [
1360+ 'api-filter', 'api-search', 'event-key', 'node-focusmanager', 'tabview'
1361+]});
1362
1363=== added file 'doc/docbuild/assets/js/api-search.js'
1364--- doc/docbuild/assets/js/api-search.js 1970-01-01 00:00:00 +0000
1365+++ doc/docbuild/assets/js/api-search.js 2015-10-23 18:57:47 +0000
1366@@ -0,0 +1,125 @@
1367+/*
1368+ * Copyright 2011 Yahoo! Inc.
1369+ * All rights reserved.
1370+ *
1371+ * Redistribution and use in source and binary forms, with or without
1372+ * modification, are permitted provided that the following conditions are met:
1373+ * * Redistributions of source code must retain the above copyright
1374+ * notice, this list of conditions and the following disclaimer.
1375+ * * Redistributions in binary form must reproduce the above copyright
1376+ * notice, this list of conditions and the following disclaimer in the
1377+ * documentation and/or other materials provided with the distribution.
1378+ * * Neither the name of the Yahoo! Inc. nor the
1379+ * names of its contributors may be used to endorse or promote products
1380+ * derived from this software without specific prior written permission.
1381+ *
1382+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1383+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1384+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1385+ * DISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY
1386+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1387+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1388+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1389+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1390+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1391+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1392+ */
1393+
1394+YUI.add('api-search', function (Y) {
1395+
1396+var Lang = Y.Lang,
1397+ Node = Y.Node,
1398+ YArray = Y.Array;
1399+
1400+Y.APISearch = Y.Base.create('apiSearch', Y.Base, [Y.AutoCompleteBase], {
1401+ // -- Public Properties ----------------------------------------------------
1402+ RESULT_TEMPLATE:
1403+ '<li class="result {resultType}">' +
1404+ '<a href="{url}">' +
1405+ '<h3 class="title">{name}</h3>' +
1406+ '<span class="type">{resultType}</span>' +
1407+ '<div class="description">{description}</div>' +
1408+ '<span class="className">{class}</span>' +
1409+ '</a>' +
1410+ '</li>',
1411+
1412+ // -- Initializer ----------------------------------------------------------
1413+ initializer: function () {
1414+ this._bindUIACBase();
1415+ this._syncUIACBase();
1416+ },
1417+
1418+ // -- Protected Methods ----------------------------------------------------
1419+ _apiResultFilter: function (query, results) {
1420+ // Filter components out of the results.
1421+ return YArray.filter(results, function (result) {
1422+ return result.raw.resultType === 'component' ? false : result;
1423+ });
1424+ },
1425+
1426+ _apiResultFormatter: function (query, results) {
1427+ return YArray.map(results, function (result) {
1428+ var raw = Y.merge(result.raw), // create a copy
1429+ desc = raw.description || '';
1430+
1431+ // Convert description to text and truncate it if necessary.
1432+ desc = Node.create('<div>' + desc + '</div>').get('text');
1433+
1434+ if (desc.length > 65) {
1435+ desc = Y.Escape.html(desc.substr(0, 65)) + ' &hellip;';
1436+ } else {
1437+ desc = Y.Escape.html(desc);
1438+ }
1439+
1440+ raw['class'] || (raw['class'] = '');
1441+ raw.description = desc;
1442+
1443+ // Use the highlighted result name.
1444+ raw.name = result.highlighted;
1445+
1446+ return Lang.sub(this.RESULT_TEMPLATE, raw);
1447+ }, this);
1448+ },
1449+
1450+ _apiTextLocator: function (result) {
1451+ return result.displayName || result.name;
1452+ }
1453+}, {
1454+ // -- Attributes -----------------------------------------------------------
1455+ ATTRS: {
1456+ resultFormatter: {
1457+ valueFn: function () {
1458+ return this._apiResultFormatter;
1459+ }
1460+ },
1461+
1462+ resultFilters: {
1463+ valueFn: function () {
1464+ return this._apiResultFilter;
1465+ }
1466+ },
1467+
1468+ resultHighlighter: {
1469+ value: 'phraseMatch'
1470+ },
1471+
1472+ resultListLocator: {
1473+ value: 'data.results'
1474+ },
1475+
1476+ resultTextLocator: {
1477+ valueFn: function () {
1478+ return this._apiTextLocator;
1479+ }
1480+ },
1481+
1482+ source: {
1483+ value: '/api/v1/search?q={query}&count={maxResults}'
1484+ }
1485+ }
1486+});
1487+
1488+}, '3.4.0', {requires: [
1489+ 'autocomplete-base', 'autocomplete-highlighters', 'autocomplete-sources',
1490+ 'escape'
1491+]});
1492
1493=== added file 'doc/docbuild/assets/js/apidocs.js'
1494--- doc/docbuild/assets/js/apidocs.js 1970-01-01 00:00:00 +0000
1495+++ doc/docbuild/assets/js/apidocs.js 2015-10-23 18:57:47 +0000
1496@@ -0,0 +1,397 @@
1497+/*
1498+ * Copyright 2011 Yahoo! Inc.
1499+ * All rights reserved.
1500+ *
1501+ * Redistribution and use in source and binary forms, with or without
1502+ * modification, are permitted provided that the following conditions are met:
1503+ * * Redistributions of source code must retain the above copyright
1504+ * notice, this list of conditions and the following disclaimer.
1505+ * * Redistributions in binary form must reproduce the above copyright
1506+ * notice, this list of conditions and the following disclaimer in the
1507+ * documentation and/or other materials provided with the distribution.
1508+ * * Neither the name of the Yahoo! Inc. nor the
1509+ * names of its contributors may be used to endorse or promote products
1510+ * derived from this software without specific prior written permission.
1511+ *
1512+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1513+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1514+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1515+ * DISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY
1516+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1517+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1518+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1519+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1520+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1521+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1522+ */
1523+
1524+YUI().use(
1525+ 'yuidoc-meta',
1526+ 'api-list', 'history-hash', 'node-screen', 'node-style', 'pjax',
1527+function (Y) {
1528+
1529+var win = Y.config.win,
1530+ localStorage = win.localStorage,
1531+
1532+ bdNode = Y.one('#bd'),
1533+
1534+ pjax,
1535+ defaultRoute,
1536+
1537+ classTabView,
1538+ selectedTab;
1539+
1540+// Kill pjax functionality unless serving over HTTP.
1541+if (!Y.getLocation().protocol.match(/^https?\:/)) {
1542+ Y.Router.html5 = false;
1543+}
1544+
1545+// Create the default route with middleware which enables syntax highlighting
1546+// on the loaded content.
1547+defaultRoute = Y.Pjax.defaultRoute.concat(function (req, res, next) {
1548+ prettyPrint();
1549+ bdNode.removeClass('loading');
1550+
1551+ next();
1552+});
1553+
1554+pjax = new Y.Pjax({
1555+ container : '#docs-main',
1556+ contentSelector: '#docs-main > .content',
1557+ linkSelector : '#bd a',
1558+ titleSelector : '#xhr-title',
1559+
1560+ navigateOnHash: true,
1561+ root : '/',
1562+ routes : [
1563+ // -- / ----------------------------------------------------------------
1564+ {
1565+ path : '/(index.html)?',
1566+ callbacks: defaultRoute
1567+ },
1568+
1569+ // -- /classes/* -------------------------------------------------------
1570+ {
1571+ path : '/classes/:class.html*',
1572+ callbacks: [defaultRoute, 'handleClasses']
1573+ },
1574+
1575+ // -- /files/* ---------------------------------------------------------
1576+ {
1577+ path : '/files/*file',
1578+ callbacks: [defaultRoute, 'handleFiles']
1579+ },
1580+
1581+ // -- /modules/* -------------------------------------------------------
1582+ {
1583+ path : '/modules/:module.html*',
1584+ callbacks: defaultRoute
1585+ }
1586+ ]
1587+});
1588+
1589+// -- Utility Functions --------------------------------------------------------
1590+
1591+pjax.checkVisibility = function (tab) {
1592+ tab || (tab = selectedTab);
1593+
1594+ if (!tab) { return; }
1595+
1596+ var panelNode = tab.get('panelNode'),
1597+ visibleItems;
1598+
1599+ // If no items are visible in the tab panel due to the current visibility
1600+ // settings, display a message to that effect.
1601+ visibleItems = panelNode.all('.item,.index-item').some(function (itemNode) {
1602+ if (itemNode.getComputedStyle('display') !== 'none') {
1603+ return true;
1604+ }
1605+ });
1606+
1607+ panelNode.all('.no-visible-items').remove();
1608+
1609+ if (!visibleItems) {
1610+ if (Y.one('#index .index-item')) {
1611+ panelNode.append(
1612+ '<div class="no-visible-items">' +
1613+ '<p>' +
1614+ 'Some items are not shown due to the current visibility ' +
1615+ 'settings. Use the checkboxes at the upper right of this ' +
1616+ 'page to change the visibility settings.' +
1617+ '</p>' +
1618+ '</div>'
1619+ );
1620+ } else {
1621+ panelNode.append(
1622+ '<div class="no-visible-items">' +
1623+ '<p>' +
1624+ 'This class doesn\'t provide any methods, properties, ' +
1625+ 'attributes, or events.' +
1626+ '</p>' +
1627+ '</div>'
1628+ );
1629+ }
1630+ }
1631+
1632+ // Hide index sections without any visible items.
1633+ Y.all('.index-section').each(function (section) {
1634+ var items = 0,
1635+ visibleItems = 0;
1636+
1637+ section.all('.index-item').each(function (itemNode) {
1638+ items += 1;
1639+
1640+ if (itemNode.getComputedStyle('display') !== 'none') {
1641+ visibleItems += 1;
1642+ }
1643+ });
1644+
1645+ section.toggleClass('hidden', !visibleItems);
1646+ section.toggleClass('no-columns', visibleItems < 4);
1647+ });
1648+};
1649+
1650+pjax.initClassTabView = function () {
1651+ if (!Y.all('#classdocs .api-class-tab').size()) {
1652+ return;
1653+ }
1654+
1655+ if (classTabView) {
1656+ classTabView.destroy();
1657+ selectedTab = null;
1658+ }
1659+
1660+ classTabView = new Y.TabView({
1661+ srcNode: '#classdocs',
1662+
1663+ on: {
1664+ selectionChange: pjax.onTabSelectionChange
1665+ }
1666+ });
1667+
1668+ pjax.updateTabState();
1669+ classTabView.render();
1670+};
1671+
1672+pjax.initLineNumbers = function () {
1673+ var hash = win.location.hash.substring(1),
1674+ container = pjax.get('container'),
1675+ hasLines, node;
1676+
1677+ // Add ids for each line number in the file source view.
1678+ container.all('.linenums>li').each(function (lineNode, index) {
1679+ lineNode.set('id', 'l' + (index + 1));
1680+ lineNode.addClass('file-line');
1681+ hasLines = true;
1682+ });
1683+
1684+ // Scroll to the desired line.
1685+ if (hasLines && /^l\d+$/.test(hash)) {
1686+ if ((node = container.getById(hash))) {
1687+ win.scroll(0, node.getY());
1688+ }
1689+ }
1690+};
1691+
1692+pjax.initRoot = function () {
1693+ var terminators = /^(?:classes|files|modules)$/,
1694+ parts = pjax._getPathRoot().split('/'),
1695+ root = [],
1696+ i, len, part;
1697+
1698+ for (i = 0, len = parts.length; i < len; i += 1) {
1699+ part = parts[i];
1700+
1701+ if (part.match(terminators)) {
1702+ // Makes sure the path will end with a "/".
1703+ root.push('');
1704+ break;
1705+ }
1706+
1707+ root.push(part);
1708+ }
1709+
1710+ pjax.set('root', root.join('/'));
1711+};
1712+
1713+pjax.updateTabState = function (src) {
1714+ var hash = win.location.hash.substring(1),
1715+ defaultTab, node, tab, tabPanel;
1716+
1717+ function scrollToNode() {
1718+ if (node.hasClass('protected')) {
1719+ Y.one('#api-show-protected').set('checked', true);
1720+ pjax.updateVisibility();
1721+ }
1722+
1723+ if (node.hasClass('private')) {
1724+ Y.one('#api-show-private').set('checked', true);
1725+ pjax.updateVisibility();
1726+ }
1727+
1728+ setTimeout(function () {
1729+ // For some reason, unless we re-get the node instance here,
1730+ // getY() always returns 0.
1731+ var node = Y.one('#classdocs').getById(hash);
1732+ win.scrollTo(0, node.getY() - 70);
1733+ }, 1);
1734+ }
1735+
1736+ if (!classTabView) {
1737+ return;
1738+ }
1739+
1740+ if (src === 'hashchange' && !hash) {
1741+ defaultTab = 'index';
1742+ } else {
1743+ if (localStorage) {
1744+ defaultTab = localStorage.getItem('tab_' + pjax.getPath()) ||
1745+ 'index';
1746+ } else {
1747+ defaultTab = 'index';
1748+ }
1749+ }
1750+
1751+ if (hash && (node = Y.one('#classdocs').getById(hash))) {
1752+ if ((tabPanel = node.ancestor('.api-class-tabpanel', true))) {
1753+ if ((tab = Y.one('#classdocs .api-class-tab.' + tabPanel.get('id')))) {
1754+ if (classTabView.get('rendered')) {
1755+ Y.Widget.getByNode(tab).set('selected', 1);
1756+ } else {
1757+ tab.addClass('yui3-tab-selected');
1758+ }
1759+ }
1760+ }
1761+
1762+ // Scroll to the desired element if this is a hash URL.
1763+ if (node) {
1764+ if (classTabView.get('rendered')) {
1765+ scrollToNode();
1766+ } else {
1767+ classTabView.once('renderedChange', scrollToNode);
1768+ }
1769+ }
1770+ } else {
1771+ tab = Y.one('#classdocs .api-class-tab.' + defaultTab);
1772+
1773+ // When the `defaultTab` node isn't found, `localStorage` is stale.
1774+ if (!tab && defaultTab !== 'index') {
1775+ tab = Y.one('#classdocs .api-class-tab.index');
1776+ }
1777+
1778+ if (classTabView.get('rendered')) {
1779+ Y.Widget.getByNode(tab).set('selected', 1);
1780+ } else {
1781+ tab.addClass('yui3-tab-selected');
1782+ }
1783+ }
1784+};
1785+
1786+pjax.updateVisibility = function () {
1787+ var container = pjax.get('container');
1788+
1789+ container.toggleClass('hide-inherited',
1790+ !Y.one('#api-show-inherited').get('checked'));
1791+
1792+ container.toggleClass('show-deprecated',
1793+ Y.one('#api-show-deprecated').get('checked'));
1794+
1795+ container.toggleClass('show-protected',
1796+ Y.one('#api-show-protected').get('checked'));
1797+
1798+ container.toggleClass('show-private',
1799+ Y.one('#api-show-private').get('checked'));
1800+
1801+ pjax.checkVisibility();
1802+};
1803+
1804+// -- Route Handlers -----------------------------------------------------------
1805+
1806+pjax.handleClasses = function (req, res, next) {
1807+ var status = res.ioResponse.status;
1808+
1809+ // Handles success and local filesystem XHRs.
1810+ if (res.ioResponse.readyState === 4 && (!status || (status >= 200 && status < 300))) {
1811+ pjax.initClassTabView();
1812+ }
1813+
1814+ next();
1815+};
1816+
1817+pjax.handleFiles = function (req, res, next) {
1818+ var status = res.ioResponse.status;
1819+
1820+ // Handles success and local filesystem XHRs.
1821+ if (res.ioResponse.readyState === 4 && (!status || (status >= 200 && status < 300))) {
1822+ pjax.initLineNumbers();
1823+ }
1824+
1825+ next();
1826+};
1827+
1828+// -- Event Handlers -----------------------------------------------------------
1829+
1830+pjax.onNavigate = function (e) {
1831+ var hash = e.hash,
1832+ originTarget = e.originEvent && e.originEvent.target,
1833+ tab;
1834+
1835+ if (hash) {
1836+ tab = originTarget && originTarget.ancestor('.yui3-tab', true);
1837+
1838+ if (hash === win.location.hash) {
1839+ pjax.updateTabState('hashchange');
1840+ } else if (!tab) {
1841+ win.location.hash = hash;
1842+ }
1843+
1844+ e.preventDefault();
1845+ return;
1846+ }
1847+
1848+ // Only scroll to the top of the page when the URL doesn't have a hash.
1849+ this.set('scrollToTop', !e.url.match(/#.+$/));
1850+
1851+ bdNode.addClass('loading');
1852+};
1853+
1854+pjax.onOptionClick = function (e) {
1855+ pjax.updateVisibility();
1856+};
1857+
1858+pjax.onTabSelectionChange = function (e) {
1859+ var tab = e.newVal,
1860+ tabId = tab.get('contentBox').getAttribute('href').substring(1);
1861+
1862+ selectedTab = tab;
1863+
1864+ // If switching from a previous tab (i.e., this is not the default tab),
1865+ // replace the history entry with a hash URL that will cause this tab to
1866+ // be selected if the user navigates away and then returns using the back
1867+ // or forward buttons.
1868+ if (e.prevVal && localStorage) {
1869+ localStorage.setItem('tab_' + pjax.getPath(), tabId);
1870+ }
1871+
1872+ pjax.checkVisibility(tab);
1873+};
1874+
1875+// -- Init ---------------------------------------------------------------------
1876+
1877+pjax.on('navigate', pjax.onNavigate);
1878+
1879+pjax.initRoot();
1880+pjax.upgrade();
1881+pjax.initClassTabView();
1882+pjax.initLineNumbers();
1883+pjax.updateVisibility();
1884+
1885+Y.APIList.rootPath = pjax.get('root');
1886+
1887+Y.one('#api-options').delegate('click', pjax.onOptionClick, 'input');
1888+
1889+Y.on('hashchange', function (e) {
1890+ pjax.updateTabState('hashchange');
1891+}, win);
1892+
1893+});
1894
1895=== added file 'doc/docbuild/assets/js/yui-prettify.js'
1896--- doc/docbuild/assets/js/yui-prettify.js 1970-01-01 00:00:00 +0000
1897+++ doc/docbuild/assets/js/yui-prettify.js 2015-10-23 18:57:47 +0000
1898@@ -0,0 +1,44 @@
1899+/*
1900+ * Copyright 2011 Yahoo! Inc.
1901+ * All rights reserved.
1902+ *
1903+ * Redistribution and use in source and binary forms, with or without
1904+ * modification, are permitted provided that the following conditions are met:
1905+ * * Redistributions of source code must retain the above copyright
1906+ * notice, this list of conditions and the following disclaimer.
1907+ * * Redistributions in binary form must reproduce the above copyright
1908+ * notice, this list of conditions and the following disclaimer in the
1909+ * documentation and/or other materials provided with the distribution.
1910+ * * Neither the name of the Yahoo! Inc. nor the
1911+ * names of its contributors may be used to endorse or promote products
1912+ * derived from this software without specific prior written permission.
1913+ *
1914+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1915+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1916+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1917+ * DISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY
1918+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1919+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1920+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1921+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1922+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1923+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1924+ */
1925+
1926+YUI().use('node', function(Y) {
1927+ var code = Y.all('.prettyprint.linenums');
1928+ if (code.size()) {
1929+ code.each(function(c) {
1930+ var lis = c.all('ol li'),
1931+ l = 1;
1932+ lis.each(function(n) {
1933+ n.prepend('<a name="LINENUM_' + l + '"></a>');
1934+ l++;
1935+ });
1936+ });
1937+ var h = location.hash;
1938+ location.hash = '';
1939+ h = h.replace('LINE_', 'LINENUM_');
1940+ location.hash = h;
1941+ }
1942+});
1943
1944=== added directory 'doc/docbuild/assets/vendor'
1945=== added directory 'doc/docbuild/assets/vendor/prettify'
1946=== added file 'doc/docbuild/assets/vendor/prettify/CHANGES.html'
1947--- doc/docbuild/assets/vendor/prettify/CHANGES.html 1970-01-01 00:00:00 +0000
1948+++ doc/docbuild/assets/vendor/prettify/CHANGES.html 2015-10-23 18:57:47 +0000
1949@@ -0,0 +1,130 @@
1950+<html>
1951+ <head>
1952+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
1953+ <title>Change Log</title>
1954+ </head>
1955+ <body bgcolor="white">
1956+ <a style="float:right" href="README.html">README</a>
1957+
1958+ <h1>Known Issues</h1>
1959+ <ul>
1960+ <li>Perl formatting is really crappy. Partly because the author is lazy and
1961+ partly because Perl is
1962+ <a href="http://www.perlmonks.org/?node_id=663393">hard</a> to parse.
1963+ <li>On some browsers, <code>&lt;code&gt;</code> elements with newlines in the text
1964+ which use CSS to specify <code>white-space:pre</code> will have the newlines
1965+ improperly stripped if the element is not attached to the document at the time
1966+ the stripping is done. Also, on IE 6, all newlines will be stripped from
1967+ <code>&lt;code&gt;</code> elements because of the way IE6 produces
1968+ <code>innerHTML</code>. Workaround: use <code>&lt;pre&gt;</code> for code with
1969+ newlines.
1970+ </ul>
1971+
1972+ <h1>Change Log</h1>
1973+ <h2>29 March 2007</h2>
1974+ <ul>
1975+ <li>Added <a href="tests/prettify_test.html#PHP">tests</a> for PHP support
1976+ to address
1977+ <a href="http://code.google.com/p/google-code-prettify/issues/detail?id=3"
1978+ >issue 3</a>.
1979+ <li>Fixed
1980+ <a href="http://code.google.com/p/google-code-prettify/issues/detail?id=6"
1981+ >bug</a>: <code>prettyPrintOne</code> was not halting. This was not
1982+ reachable through the normal entry point.
1983+ <li>Fixed
1984+ <a href="http://code.google.com/p/google-code-prettify/issues/detail?id=4"
1985+ >bug</a>: recursing into a script block or PHP tag that was not properly
1986+ closed would not silently drop the content.
1987+ (<a href="tests/prettify_test.html#issue4">test</a>)
1988+ <li>Fixed
1989+ <a href="http://code.google.com/p/google-code-prettify/issues/detail?id=8"
1990+ >bug</a>: was eating tabs
1991+ (<a href="tests/prettify_test.html#issue8">test</a>)
1992+ <li>Fixed entity handling so that the caveat
1993+ <blockquote>
1994+ <p>Caveats: please properly escape less-thans. <tt>x&amp;lt;y</tt>
1995+ instead of <tt>x&lt;y</tt>, and use <tt>&quot;</tt> instead of
1996+ <tt>&amp;quot;</tt> for string delimiters.</p>
1997+ </blockquote>
1998+ is no longer applicable.
1999+ <li>Added noisefree's C#
2000+ <a href="http://code.google.com/p/google-code-prettify/issues/detail?id=4"
2001+ >patch</a>
2002+ <li>Added a <a href="http://google-code-prettify.googlecode.com/files/prettify-small.zip">distribution</a> that has comments and
2003+ whitespace removed to reduce download size from 45.5kB to 12.8kB.
2004+ </ul>
2005+ <h2>4 Jul 2008</h2>
2006+ <ul>
2007+ <li>Added <a href="http://code.google.com/p/google-code-prettify/issues/detail?id=17">language specific formatters</a> that are triggered by the presence
2008+ of a <code>lang-&lt;language-file-extension&gt;</code></li>
2009+ <li>Fixed <a href="http://code.google.com/p/google-code-prettify/issues/detail?id=29">bug</a>: python handling of <code>'''string'''</code>
2010+ <li>Fixed bug: <code>/</code> in regex <code>[charsets] should not end regex</code>
2011+ </ul>
2012+ <h2>5 Jul 2008</h2>
2013+ <ul>
2014+ <li>Defined language extensions for Lisp and Lua</code>
2015+ </ul>
2016+ <h2>14 Jul 2008</h2>
2017+ <ul>
2018+ <li>Language handlers for F#, OCAML, SQL</code>
2019+ <li>Support for <code>nocode</code> spans to allow embedding of line
2020+ numbers and code annotations which should not be styled or otherwise
2021+ affect the tokenization of prettified code.
2022+ See the issue 22
2023+ <a href="tests/prettify_test.html#issue22">testcase</a>.</code>
2024+ </ul>
2025+ <h2>6 Jan 2009</h2>
2026+ <ul>
2027+ <li>Language handlers for Visual Basic, Haskell, CSS, and WikiText</li>
2028+ <li>Added <tt>.mxml</tt> extension to the markup style handler for
2029+ Flex <a href="http://en.wikipedia.org/wiki/MXML">MXML files</a>. See
2030+ <a
2031+ href="http://code.google.com/p/google-code-prettify/issues/detail?id=37"
2032+ >issue 37</a>.
2033+ <li>Added <tt>.m</tt> extension to the C style handler so that Objective
2034+ C source files properly highlight. See
2035+ <a
2036+ href="http://code.google.com/p/google-code-prettify/issues/detail?id=58"
2037+ >issue 58</a>.
2038+ <li>Changed HTML lexer to use the same embedded source mechanism as the
2039+ wiki language handler, and changed to use the registered
2040+ CSS handler for STYLE element content.
2041+ </ul>
2042+ <h2>21 May 2009</h2>
2043+ <ul>
2044+ <li>Rewrote to improve performance on large files.
2045+ See <a href="http://mikesamuel.blogspot.com/2009/05/efficient-parsing-in-javascript.html">benchmarks</a>.</li>
2046+ <li>Fixed bugs with highlighting of Haskell line comments, Lisp
2047+ number literals, Lua strings, C preprocessor directives,
2048+ newlines in Wiki code on Windows, and newlines in IE6.</li>
2049+ </ul>
2050+ <h2>14 August 2009</h2>
2051+ <ul>
2052+ <li>Fixed prettifying of <code>&lt;code&gt;</code> blocks with embedded newlines.
2053+ </ul>
2054+ <h2>3 October 2009</h2>
2055+ <ul>
2056+ <li>Fixed prettifying of XML/HTML tags that contain uppercase letters.
2057+ </ul>
2058+ <h2>19 July 2010</h2>
2059+ <ul>
2060+ <li>Added support for line numbers. Bug
2061+ <a href="http://code.google.com/p/google-code-prettify/issues/detail?id=22"
2062+ >22</a></li>
2063+ <li>Added YAML support. Bug
2064+ <a href="http://code.google.com/p/google-code-prettify/issues/detail?id=123"
2065+ >123</a></li>
2066+ <li>Added VHDL support courtesy Le Poussin.</li>
2067+ <li>IE performance improvements. Bug
2068+ <a href="http://code.google.com/p/google-code-prettify/issues/detail?id=102"
2069+ >102</a> courtesy jacobly.</li>
2070+ <li>A variety of markup formatting fixes courtesy smain and thezbyg.</li>
2071+ <li>Fixed copy and paste in IE[678].
2072+ <li>Changed output to use <code>&amp;#160;</code> instead of
2073+ <code>&amp;nbsp;</code> so that the output works when embedded in XML.
2074+ Bug
2075+ <a href="http://code.google.com/p/google-code-prettify/issues/detail?id=108"
2076+ >108</a>.</li>
2077+ </ul>
2078+ </body>
2079+</html>
2080
2081=== added file 'doc/docbuild/assets/vendor/prettify/COPYING'
2082--- doc/docbuild/assets/vendor/prettify/COPYING 1970-01-01 00:00:00 +0000
2083+++ doc/docbuild/assets/vendor/prettify/COPYING 2015-10-23 18:57:47 +0000
2084@@ -0,0 +1,202 @@
2085+
2086+ Apache License
2087+ Version 2.0, January 2004
2088+ http://www.apache.org/licenses/
2089+
2090+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2091+
2092+ 1. Definitions.
2093+
2094+ "License" shall mean the terms and conditions for use, reproduction,
2095+ and distribution as defined by Sections 1 through 9 of this document.
2096+
2097+ "Licensor" shall mean the copyright owner or entity authorized by
2098+ the copyright owner that is granting the License.
2099+
2100+ "Legal Entity" shall mean the union of the acting entity and all
2101+ other entities that control, are controlled by, or are under common
2102+ control with that entity. For the purposes of this definition,
2103+ "control" means (i) the power, direct or indirect, to cause the
2104+ direction or management of such entity, whether by contract or
2105+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
2106+ outstanding shares, or (iii) beneficial ownership of such entity.
2107+
2108+ "You" (or "Your") shall mean an individual or Legal Entity
2109+ exercising permissions granted by this License.
2110+
2111+ "Source" form shall mean the preferred form for making modifications,
2112+ including but not limited to software source code, documentation
2113+ source, and configuration files.
2114+
2115+ "Object" form shall mean any form resulting from mechanical
2116+ transformation or translation of a Source form, including but
2117+ not limited to compiled object code, generated documentation,
2118+ and conversions to other media types.
2119+
2120+ "Work" shall mean the work of authorship, whether in Source or
2121+ Object form, made available under the License, as indicated by a
2122+ copyright notice that is included in or attached to the work
2123+ (an example is provided in the Appendix below).
2124+
2125+ "Derivative Works" shall mean any work, whether in Source or Object
2126+ form, that is based on (or derived from) the Work and for which the
2127+ editorial revisions, annotations, elaborations, or other modifications
2128+ represent, as a whole, an original work of authorship. For the purposes
2129+ of this License, Derivative Works shall not include works that remain
2130+ separable from, or merely link (or bind by name) to the interfaces of,
2131+ the Work and Derivative Works thereof.
2132+
2133+ "Contribution" shall mean any work of authorship, including
2134+ the original version of the Work and any modifications or additions
2135+ to that Work or Derivative Works thereof, that is intentionally
2136+ submitted to Licensor for inclusion in the Work by the copyright owner
2137+ or by an individual or Legal Entity authorized to submit on behalf of
2138+ the copyright owner. For the purposes of this definition, "submitted"
2139+ means any form of electronic, verbal, or written communication sent
2140+ to the Licensor or its representatives, including but not limited to
2141+ communication on electronic mailing lists, source code control systems,
2142+ and issue tracking systems that are managed by, or on behalf of, the
2143+ Licensor for the purpose of discussing and improving the Work, but
2144+ excluding communication that is conspicuously marked or otherwise
2145+ designated in writing by the copyright owner as "Not a Contribution."
2146+
2147+ "Contributor" shall mean Licensor and any individual or Legal Entity
2148+ on behalf of whom a Contribution has been received by Licensor and
2149+ subsequently incorporated within the Work.
2150+
2151+ 2. Grant of Copyright License. Subject to the terms and conditions of
2152+ this License, each Contributor hereby grants to You a perpetual,
2153+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2154+ copyright license to reproduce, prepare Derivative Works of,
2155+ publicly display, publicly perform, sublicense, and distribute the
2156+ Work and such Derivative Works in Source or Object form.
2157+
2158+ 3. Grant of Patent License. Subject to the terms and conditions of
2159+ this License, each Contributor hereby grants to You a perpetual,
2160+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2161+ (except as stated in this section) patent license to make, have made,
2162+ use, offer to sell, sell, import, and otherwise transfer the Work,
2163+ where such license applies only to those patent claims licensable
2164+ by such Contributor that are necessarily infringed by their
2165+ Contribution(s) alone or by combination of their Contribution(s)
2166+ with the Work to which such Contribution(s) was submitted. If You
2167+ institute patent litigation against any entity (including a
2168+ cross-claim or counterclaim in a lawsuit) alleging that the Work
2169+ or a Contribution incorporated within the Work constitutes direct
2170+ or contributory patent infringement, then any patent licenses
2171+ granted to You under this License for that Work shall terminate
2172+ as of the date such litigation is filed.
2173+
2174+ 4. Redistribution. You may reproduce and distribute copies of the
2175+ Work or Derivative Works thereof in any medium, with or without
2176+ modifications, and in Source or Object form, provided that You
2177+ meet the following conditions:
2178+
2179+ (a) You must give any other recipients of the Work or
2180+ Derivative Works a copy of this License; and
2181+
2182+ (b) You must cause any modified files to carry prominent notices
2183+ stating that You changed the files; and
2184+
2185+ (c) You must retain, in the Source form of any Derivative Works
2186+ that You distribute, all copyright, patent, trademark, and
2187+ attribution notices from the Source form of the Work,
2188+ excluding those notices that do not pertain to any part of
2189+ the Derivative Works; and
2190+
2191+ (d) If the Work includes a "NOTICE" text file as part of its
2192+ distribution, then any Derivative Works that You distribute must
2193+ include a readable copy of the attribution notices contained
2194+ within such NOTICE file, excluding those notices that do not
2195+ pertain to any part of the Derivative Works, in at least one
2196+ of the following places: within a NOTICE text file distributed
2197+ as part of the Derivative Works; within the Source form or
2198+ documentation, if provided along with the Derivative Works; or,
2199+ within a display generated by the Derivative Works, if and
2200+ wherever such third-party notices normally appear. The contents
2201+ of the NOTICE file are for informational purposes only and
2202+ do not modify the License. You may add Your own attribution
2203+ notices within Derivative Works that You distribute, alongside
2204+ or as an addendum to the NOTICE text from the Work, provided
2205+ that such additional attribution notices cannot be construed
2206+ as modifying the License.
2207+
2208+ You may add Your own copyright statement to Your modifications and
2209+ may provide additional or different license terms and conditions
2210+ for use, reproduction, or distribution of Your modifications, or
2211+ for any such Derivative Works as a whole, provided Your use,
2212+ reproduction, and distribution of the Work otherwise complies with
2213+ the conditions stated in this License.
2214+
2215+ 5. Submission of Contributions. Unless You explicitly state otherwise,
2216+ any Contribution intentionally submitted for inclusion in the Work
2217+ by You to the Licensor shall be under the terms and conditions of
2218+ this License, without any additional terms or conditions.
2219+ Notwithstanding the above, nothing herein shall supersede or modify
2220+ the terms of any separate license agreement you may have executed
2221+ with Licensor regarding such Contributions.
2222+
2223+ 6. Trademarks. This License does not grant permission to use the trade
2224+ names, trademarks, service marks, or product names of the Licensor,
2225+ except as required for reasonable and customary use in describing the
2226+ origin of the Work and reproducing the content of the NOTICE file.
2227+
2228+ 7. Disclaimer of Warranty. Unless required by applicable law or
2229+ agreed to in writing, Licensor provides the Work (and each
2230+ Contributor provides its Contributions) on an "AS IS" BASIS,
2231+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
2232+ implied, including, without limitation, any warranties or conditions
2233+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
2234+ PARTICULAR PURPOSE. You are solely responsible for determining the
2235+ appropriateness of using or redistributing the Work and assume any
2236+ risks associated with Your exercise of permissions under this License.
2237+
2238+ 8. Limitation of Liability. In no event and under no legal theory,
2239+ whether in tort (including negligence), contract, or otherwise,
2240+ unless required by applicable law (such as deliberate and grossly
2241+ negligent acts) or agreed to in writing, shall any Contributor be
2242+ liable to You for damages, including any direct, indirect, special,
2243+ incidental, or consequential damages of any character arising as a
2244+ result of this License or out of the use or inability to use the
2245+ Work (including but not limited to damages for loss of goodwill,
2246+ work stoppage, computer failure or malfunction, or any and all
2247+ other commercial damages or losses), even if such Contributor
2248+ has been advised of the possibility of such damages.
2249+
2250+ 9. Accepting Warranty or Additional Liability. While redistributing
2251+ the Work or Derivative Works thereof, You may choose to offer,
2252+ and charge a fee for, acceptance of support, warranty, indemnity,
2253+ or other liability obligations and/or rights consistent with this
2254+ License. However, in accepting such obligations, You may act only
2255+ on Your own behalf and on Your sole responsibility, not on behalf
2256+ of any other Contributor, and only if You agree to indemnify,
2257+ defend, and hold each Contributor harmless for any liability
2258+ incurred by, or claims asserted against, such Contributor by reason
2259+ of your accepting any such warranty or additional liability.
2260+
2261+ END OF TERMS AND CONDITIONS
2262+
2263+ APPENDIX: How to apply the Apache License to your work.
2264+
2265+ To apply the Apache License to your work, attach the following
2266+ boilerplate notice, with the fields enclosed by brackets "[]"
2267+ replaced with your own identifying information. (Don't include
2268+ the brackets!) The text should be enclosed in the appropriate
2269+ comment syntax for the file format. We also recommend that a
2270+ file or class name and description of purpose be included on the
2271+ same "printed page" as the copyright notice for easier
2272+ identification within third-party archives.
2273+
2274+ Copyright [yyyy] [name of copyright owner]
2275+
2276+ Licensed under the Apache License, Version 2.0 (the "License");
2277+ you may not use this file except in compliance with the License.
2278+ You may obtain a copy of the License at
2279+
2280+ http://www.apache.org/licenses/LICENSE-2.0
2281+
2282+ Unless required by applicable law or agreed to in writing, software
2283+ distributed under the License is distributed on an "AS IS" BASIS,
2284+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2285+ See the License for the specific language governing permissions and
2286+ limitations under the License.
2287
2288=== added file 'doc/docbuild/assets/vendor/prettify/README.html'
2289--- doc/docbuild/assets/vendor/prettify/README.html 1970-01-01 00:00:00 +0000
2290+++ doc/docbuild/assets/vendor/prettify/README.html 2015-10-23 18:57:47 +0000
2291@@ -0,0 +1,203 @@
2292+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2293+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2294+
2295+<html>
2296+ <head>
2297+ <title>Javascript code prettifier</title>
2298+
2299+ <link href="src/prettify.css" type="text/css" rel="stylesheet" />
2300+
2301+ <script src="src/prettify.js" type="text/javascript"></script>
2302+
2303+ <style type="text/css">
2304+ body { margin-left: .5in }
2305+ h1, h2, h3, h4, .footer { margin-left: -.4in; }
2306+ </style>
2307+ </head>
2308+
2309+ <body onload="prettyPrint()" bgcolor="white">
2310+ <small style="float: right">Languages : <a href="README-zh-Hans.html">CH</a></small>
2311+ <h1>Javascript code prettifier</h1>
2312+
2313+ <h2>Setup</h2>
2314+ <ol>
2315+ <li><a href="http://code.google.com/p/google-code-prettify/downloads/list">Download</a> a distribution
2316+ <li>Include the script and stylesheets in your document
2317+ (you will need to make sure the css and js file are on your server, and
2318+ adjust the paths in the <tt>script</tt> and <tt>link</tt> tag)
2319+ <pre class="prettyprint">
2320+&lt;link href="prettify.css" type="text/css" rel="stylesheet" />
2321+&lt;script type="text/javascript" src="prettify.js">&lt;/script></pre>
2322+ <li>Add <code class="prettyprint lang-html">onload="prettyPrint()"</code> to your
2323+ document's body tag.
2324+ <li>Modify the stylesheet to get the coloring you prefer</li>
2325+ </ol>
2326+
2327+ <h2>Usage</h2>
2328+ <p>Put code snippets in
2329+ <tt>&lt;pre class="prettyprint"&gt;...&lt;/pre&gt;</tt>
2330+ or <tt>&lt;code class="prettyprint"&gt;...&lt;/code&gt;</tt>
2331+ and it will automatically be pretty printed.
2332+
2333+ <table summary="code examples">
2334+ <tr>
2335+ <th>The original
2336+ <th>Prettier
2337+ <tr>
2338+ <td><pre style="border: 1px solid #888;padding: 2px"
2339+ ><a name="voila1"></a>class Voila {
2340+public:
2341+ // Voila
2342+ static const string VOILA = "Voila";
2343+
2344+ // will not interfere with embedded <a href="#voila1">tags</a>.
2345+}</pre>
2346+
2347+ <td><pre class="prettyprint"><a name="voila2"></a>class Voila {
2348+public:
2349+ // Voila
2350+ static const string VOILA = "Voila";
2351+
2352+ // will not interfere with embedded <a href="#voila2">tags</a>.
2353+}</pre>
2354+ </table>
2355+
2356+ <h2>FAQ</h2>
2357+ <h3 id="langs">Which languages does it work for?</h3>
2358+ <p>The comments in <tt>prettify.js</tt> are authoritative but the lexer
2359+ should work on a number of languages including C and friends,
2360+ Java, Python, Bash, SQL, HTML, XML, CSS, Javascript, and Makefiles.
2361+ It works passably on Ruby, PHP, VB, and Awk and a decent subset of Perl
2362+ and Ruby, but, because of commenting conventions, doesn't work on
2363+ Smalltalk, or CAML-like languages.</p>
2364+
2365+ <p>LISPy languages are supported via an extension:
2366+ <a href="http://code.google.com/p/google-code-prettify/source/browse/trunk/src/lang-lisp.js"
2367+ ><code>lang-lisp.js</code></a>.</p>
2368+ <p>And similarly for
2369+ <a href="http://code.google.com/p/google-code-prettify/source/browse/trunk/src/lang-css.js"
2370+ ><code>CSS</code></a>,
2371+ <a href="http://code.google.com/p/google-code-prettify/source/browse/trunk/src/lang-hs.js"
2372+ ><code>Haskell</code></a>,
2373+ <a href="http://code.google.com/p/google-code-prettify/source/browse/trunk/src/lang-lua.js"
2374+ ><code>Lua</code></a>,
2375+ <a href="http://code.google.com/p/google-code-prettify/source/browse/trunk/src/lang-ml.js"
2376+ ><code>OCAML, SML, F#</code></a>,
2377+ <a href="http://code.google.com/p/google-code-prettify/source/browse/trunk/src/lang-vb.js"
2378+ ><code>Visual Basic</code></a>,
2379+ <a href="http://code.google.com/p/google-code-prettify/source/browse/trunk/src/lang-sql.js"
2380+ ><code>SQL</code></a>,
2381+ <a href="http://code.google.com/p/google-code-prettify/source/browse/trunk/src/lang-proto.js"
2382+ ><code>Protocol Buffers</code></a>, and
2383+ <a href="http://code.google.com/p/google-code-prettify/source/browse/trunk/src/lang-wiki.js"
2384+ ><code>WikiText</code></a>..
2385+
2386+ <p>If you'd like to add an extension for your favorite language, please
2387+ look at <tt>src/lang-lisp.js</tt> and file an
2388+ <a href="http://code.google.com/p/google-code-prettify/issues/list"
2389+ >issue</a> including your language extension, and a testcase.</p>
2390+
2391+ <h3>How do I specify which language my code is in?</h3>
2392+ <p>You don't need to specify the language since <code>prettyprint()</code>
2393+ will guess. You can specify a language by specifying the language extension
2394+ along with the <code>prettyprint</code> class like so:</p>
2395+ <pre class="prettyprint lang-html"
2396+>&lt;pre class=&quot;prettyprint <b>lang-html</b>&quot;&gt;
2397+ The lang-* class specifies the language file extensions.
2398+ File extensions supported by default include
2399+ "bsh", "c", "cc", "cpp", "cs", "csh", "cyc", "cv", "htm", "html",
2400+ "java", "js", "m", "mxml", "perl", "pl", "pm", "py", "rb", "sh",
2401+ "xhtml", "xml", "xsl".
2402+&lt;/pre&gt;</pre>
2403+
2404+ <h3>It doesn't work on <tt>&lt;obfuscated code sample&gt;</tt>?</h3>
2405+ <p>Yes. Prettifying obfuscated code is like putting lipstick on a pig
2406+ &mdash; i.e. outside the scope of this tool.</p>
2407+
2408+ <h3>Which browsers does it work with?</h3>
2409+ <p>It's been tested with IE 6, Firefox 1.5 &amp; 2, and Safari 2.0.4.
2410+ Look at <a href="tests/prettify_test.html">the test page</a> to see if it
2411+ works in your browser.</p>
2412+
2413+ <h3>What's changed?</h3>
2414+ <p>See the <a href="CHANGES.html">change log</a></p>
2415+
2416+ <h3>Why doesn't Prettyprinting of strings work on WordPress?</h3>
2417+ <p>Apparently wordpress does "smart quoting" which changes close quotes.
2418+ This causes end quotes to not match up with open quotes.
2419+ <p>This breaks prettifying as well as copying and pasting of code samples.
2420+ See
2421+ <a href="http://wordpress.org/support/topic/125038"
2422+ >WordPress's help center</a> for info on how to stop smart quoting of code
2423+ snippets.</p>
2424+
2425+ <h3 id="linenums">How do I put line numbers in my code?</h3>
2426+ <p>You can use the <code>linenums</code> class to turn on line
2427+ numbering. If your code doesn't start at line number 1, you can
2428+ add a colon and a line number to the end of that class as in
2429+ <code>linenums:52</code>.
2430+
2431+ <p>For example
2432+<pre class="prettyprint">&lt;pre class="prettyprint linenums:<b>4</b>"
2433+&gt;// This is line 4.
2434+foo();
2435+bar();
2436+baz();
2437+boo();
2438+far();
2439+faz();
2440+&lt;pre&gt;</pre>
2441+ produces
2442+<pre class="prettyprint linenums:4"
2443+>// This is line 4.
2444+foo();
2445+bar();
2446+baz();
2447+boo();
2448+far();
2449+faz();
2450+</pre>
2451+
2452+ <h3>How do I prevent a portion of markup from being marked as code?</h3>
2453+ <p>You can use the <code>nocode</code> class to identify a span of markup
2454+ that is not code.
2455+<pre class="prettyprint">&lt;pre class=prettyprint&gt;
2456+int x = foo(); /* This is a comment &lt;span class="nocode"&gt;This is not code&lt;/span&gt;
2457+ Continuation of comment */
2458+int y = bar();
2459+&lt;/pre&gt;</pre>
2460+produces
2461+<pre class="prettyprint">
2462+int x = foo(); /* This is a comment <span class="nocode">This is not code</span>
2463+ Continuation of comment */
2464+int y = bar();
2465+</pre>
2466+
2467+ <p>For a more complete example see the issue22
2468+ <a href="tests/prettify_test.html#issue22">testcase</a>.</p>
2469+
2470+ <h3>I get an error message "a is not a function" or "opt_whenDone is not a function"</h3>
2471+ <p>If you are calling <code>prettyPrint</code> via an event handler, wrap it in a function.
2472+ Instead of doing
2473+ <blockquote>
2474+ <code class="prettyprint lang-js"
2475+ >addEventListener('load', prettyPrint, false);</code>
2476+ </blockquote>
2477+ wrap it in a closure like
2478+ <blockquote>
2479+ <code class="prettyprint lang-js"
2480+ >addEventListener('load', function (event) { prettyPrint() }, false);</code>
2481+ </blockquote>
2482+ so that the browser does not pass an event object to <code>prettyPrint</code> which
2483+ will confuse it.
2484+
2485+ <br><br><br>
2486+
2487+ <div class="footer">
2488+<!-- Created: Tue Oct 3 17:51:56 PDT 2006 -->
2489+<!-- hhmts start -->
2490+Last modified: Wed Jul 19 13:56:00 PST 2010
2491+<!-- hhmts end -->
2492+ </div>
2493+ </body>
2494+</html>
2495
2496=== added file 'doc/docbuild/assets/vendor/prettify/prettify-min.css'
2497--- doc/docbuild/assets/vendor/prettify/prettify-min.css 1970-01-01 00:00:00 +0000
2498+++ doc/docbuild/assets/vendor/prettify/prettify-min.css 2015-10-23 18:57:47 +0000
2499@@ -0,0 +1,1 @@
2500+.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee}
2501\ No newline at end of file
2502
2503=== added file 'doc/docbuild/assets/vendor/prettify/prettify-min.js'
2504--- doc/docbuild/assets/vendor/prettify/prettify-min.js 1970-01-01 00:00:00 +0000
2505+++ doc/docbuild/assets/vendor/prettify/prettify-min.js 2015-10-23 18:57:47 +0000
2506@@ -0,0 +1,28 @@
2507+/*
2508+ * Copyright 2011 Yahoo! Inc.
2509+ * All rights reserved.
2510+ *
2511+ * Redistribution and use in source and binary forms, with or without
2512+ * modification, are permitted provided that the following conditions are met:
2513+ * * Redistributions of source code must retain the above copyright
2514+ * notice, this list of conditions and the following disclaimer.
2515+ * * Redistributions in binary form must reproduce the above copyright
2516+ * notice, this list of conditions and the following disclaimer in the
2517+ * documentation and/or other materials provided with the distribution.
2518+ * * Neither the name of the Yahoo! Inc. nor the
2519+ * names of its contributors may be used to endorse or promote products
2520+ * derived from this software without specific prior written permission.
2521+ *
2522+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
2523+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
2524+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
2525+ * DISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY
2526+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2527+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
2528+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
2529+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2530+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
2531+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2532+ */
2533+
2534+window.PR_SHOULD_USE_CONTINUATION=true;var prettyPrintOne;var prettyPrint;(function(){var O=window;var j=["break,continue,do,else,for,if,return,while"];var v=[j,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"];var q=[v,"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"];var m=[q,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"];var y=[q,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"];var T=[y,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,let,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var,virtual,where"];var s="all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,throw,true,try,unless,until,when,while,yes";var x=[q,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"];var t="caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END";var J=[j,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"];var g=[j,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"];var I=[j,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"];var B=[m,T,x,t+J,g,I];var f=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)\b/;var D="str";var A="kwd";var k="com";var Q="typ";var H="lit";var M="pun";var G="pln";var n="tag";var F="dec";var K="src";var R="atn";var o="atv";var P="nocode";var N="(?:^^\\.?|[+-]|[!=]=?=?|\\#|%=?|&&?=?|\\(|\\*=?|[+\\-]=|->|\\/=?|::?|<<?=?|>>?>?=?|,|;|\\?|@|\\[|~|{|\\^\\^?=?|\\|\\|?=?|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*";function l(ab){var af=0;var U=false;var ae=false;for(var X=0,W=ab.length;X<W;++X){var ag=ab[X];if(ag.ignoreCase){ae=true}else{if(/[a-z]/i.test(ag.source.replace(/\\u[0-9a-f]{4}|\\x[0-9a-f]{2}|\\[^ux]/gi,""))){U=true;ae=false;break}}}var aa={b:8,t:9,n:10,v:11,f:12,r:13};function ad(aj){var ai=aj.charCodeAt(0);if(ai!==92){return ai}var ah=aj.charAt(1);ai=aa[ah];if(ai){return ai}else{if("0"<=ah&&ah<="7"){return parseInt(aj.substring(1),8)}else{if(ah==="u"||ah==="x"){return parseInt(aj.substring(2),16)}else{return aj.charCodeAt(1)}}}}function V(ah){if(ah<32){return(ah<16?"\\x0":"\\x")+ah.toString(16)}var ai=String.fromCharCode(ah);return(ai==="\\"||ai==="-"||ai==="]"||ai==="^")?"\\"+ai:ai}function Z(an){var ar=an.substring(1,an.length-1).match(new RegExp("\\\\u[0-9A-Fa-f]{4}|\\\\x[0-9A-Fa-f]{2}|\\\\[0-3][0-7]{0,2}|\\\\[0-7]{1,2}|\\\\[\\s\\S]|-|[^-\\\\]","g"));var ah=[];var ap=ar[0]==="^";var ao=["["];if(ap){ao.push("^")}for(var at=ap?1:0,al=ar.length;at<al;++at){var aj=ar[at];if(/\\[bdsw]/i.test(aj)){ao.push(aj)}else{var ai=ad(aj);var am;if(at+2<al&&"-"===ar[at+1]){am=ad(ar[at+2]);at+=2}else{am=ai}ah.push([ai,am]);if(!(am<65||ai>122)){if(!(am<65||ai>90)){ah.push([Math.max(65,ai)|32,Math.min(am,90)|32])}if(!(am<97||ai>122)){ah.push([Math.max(97,ai)&~32,Math.min(am,122)&~32])}}}}ah.sort(function(aw,av){return(aw[0]-av[0])||(av[1]-aw[1])});var ak=[];var aq=[];for(var at=0;at<ah.length;++at){var au=ah[at];if(au[0]<=aq[1]+1){aq[1]=Math.max(aq[1],au[1])}else{ak.push(aq=au)}}for(var at=0;at<ak.length;++at){var au=ak[at];ao.push(V(au[0]));if(au[1]>au[0]){if(au[1]+1>au[0]){ao.push("-")}ao.push(V(au[1]))}}ao.push("]");return ao.join("")}function Y(an){var al=an.source.match(new RegExp("(?:\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]|\\\\u[A-Fa-f0-9]{4}|\\\\x[A-Fa-f0-9]{2}|\\\\[0-9]+|\\\\[^ux0-9]|\\(\\?[:!=]|[\\(\\)\\^]|[^\\x5B\\x5C\\(\\)\\^]+)","g"));var aj=al.length;var ap=[];for(var am=0,ao=0;am<aj;++am){var ai=al[am];if(ai==="("){++ao}else{if("\\"===ai.charAt(0)){var ah=+ai.substring(1);if(ah){if(ah<=ao){ap[ah]=-1}else{al[am]=V(ah)}}}}}for(var am=1;am<ap.length;++am){if(-1===ap[am]){ap[am]=++af}}for(var am=0,ao=0;am<aj;++am){var ai=al[am];if(ai==="("){++ao;if(!ap[ao]){al[am]="(?:"}}else{if("\\"===ai.charAt(0)){var ah=+ai.substring(1);if(ah&&ah<=ao){al[am]="\\"+ap[ah]}}}}for(var am=0;am<aj;++am){if("^"===al[am]&&"^"!==al[am+1]){al[am]=""}}if(an.ignoreCase&&U){for(var am=0;am<aj;++am){var ai=al[am];var ak=ai.charAt(0);if(ai.length>=2&&ak==="["){al[am]=Z(ai)}else{if(ak!=="\\"){al[am]=ai.replace(/[a-zA-Z]/g,function(aq){var ar=aq.charCodeAt(0);return"["+String.fromCharCode(ar&~32,ar|32)+"]"})}}}}return al.join("")}var ac=[];for(var X=0,W=ab.length;X<W;++X){var ag=ab[X];if(ag.global||ag.multiline){throw new Error(""+ag)}ac.push("(?:"+Y(ag)+")")}return new RegExp(ac.join("|"),ae?"gi":"g")}function b(aa,Y){var W=/(?:^|\s)nocode(?:\s|$)/;var ab=[];var Z=0;var X=[];var V=0;function U(ac){switch(ac.nodeType){case 1:if(W.test(ac.className)){return}for(var af=ac.firstChild;af;af=af.nextSibling){U(af)}var ae=ac.nodeName.toLowerCase();if("br"===ae||"li"===ae){ab[V]="\n";X[V<<1]=Z++;X[(V++<<1)|1]=ac}break;case 3:case 4:var ad=ac.nodeValue;if(ad.length){if(!Y){ad=ad.replace(/[ \t\r\n]+/g," ")}else{ad=ad.replace(/\r\n?/g,"\n")}ab[V]=ad;X[V<<1]=Z;Z+=ad.length;X[(V++<<1)|1]=ac}break}}U(aa);return{sourceCode:ab.join("").replace(/\n$/,""),spans:X}}function C(U,W,Y,V){if(!W){return}var X={sourceCode:W,basePos:U};Y(X);V.push.apply(V,X.decorations)}var w=/\S/;function p(U){var X=undefined;for(var W=U.firstChild;W;W=W.nextSibling){var V=W.nodeType;X=(V===1)?(X?U:W):(V===3)?(w.test(W.nodeValue)?U:X):X}return X===U?undefined:X}function h(W,V){var U={};var X;(function(){var af=W.concat(V);var aj=[];var ai={};for(var ad=0,ab=af.length;ad<ab;++ad){var aa=af[ad];var ae=aa[3];if(ae){for(var ag=ae.length;--ag>=0;){U[ae.charAt(ag)]=aa}}var ah=aa[1];var ac=""+ah;if(!ai.hasOwnProperty(ac)){aj.push(ah);ai[ac]=null}}aj.push(/[\0-\uffff]/);X=l(aj)})();var Z=V.length;var Y=function(aj){var ab=aj.sourceCode,aa=aj.basePos;var af=[aa,G];var ah=0;var ap=ab.match(X)||[];var al={};for(var ag=0,at=ap.length;ag<at;++ag){var ai=ap[ag];var ar=al[ai];var ak=void 0;var ao;if(typeof ar==="string"){ao=false}else{var ac=U[ai.charAt(0)];if(ac){ak=ai.match(ac[1]);ar=ac[0]}else{for(var aq=0;aq<Z;++aq){ac=V[aq];ak=ai.match(ac[1]);if(ak){ar=ac[0];break}}if(!ak){ar=G}}ao=ar.length>=5&&"lang-"===ar.substring(0,5);if(ao&&!(ak&&typeof ak[1]==="string")){ao=false;ar=K}if(!ao){al[ai]=ar}}var ad=ah;ah+=ai.length;if(!ao){af.push(aa+ad,ar)}else{var an=ak[1];var am=ai.indexOf(an);var ae=am+an.length;if(ak[2]){ae=ai.length-ak[2].length;am=ae-an.length}var au=ar.substring(5);C(aa+ad,ai.substring(0,am),Y,af);C(aa+ad+am,an,r(au,an),af);C(aa+ad+ae,ai.substring(ae),Y,af)}}aj.decorations=af};return Y}function i(V){var Y=[],U=[];if(V.tripleQuotedStrings){Y.push([D,/^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,null,"'\""])}else{if(V.multiLineStrings){Y.push([D,/^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,null,"'\"`"])}else{Y.push([D,/^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,null,"\"'"])}}if(V.verbatimStrings){U.push([D,/^@\"(?:[^\"]|\"\")*(?:\"|$)/,null])}var ab=V.hashComments;if(ab){if(V.cStyleComments){if(ab>1){Y.push([k,/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,null,"#"])}else{Y.push([k,/^#(?:(?:define|e(?:l|nd)if|else|error|ifn?def|include|line|pragma|undef|warning)\b|[^\r\n]*)/,null,"#"])}U.push([D,/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h(?:h|pp|\+\+)?|[a-z]\w*)>/,null])}else{Y.push([k,/^#[^\r\n]*/,null,"#"])}}if(V.cStyleComments){U.push([k,/^\/\/[^\r\n]*/,null]);U.push([k,/^\/\*[\s\S]*?(?:\*\/|$)/,null])}if(V.regexLiterals){var aa=("/(?=[^/*])(?:[^/\\x5B\\x5C]|\\x5C[\\s\\S]|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+/");U.push(["lang-regex",new RegExp("^"+N+"("+aa+")")])}var X=V.types;if(X){U.push([Q,X])}var W=(""+V.keywords).replace(/^ | $/g,"");if(W.length){U.push([A,new RegExp("^(?:"+W.replace(/[\s,]+/g,"|")+")\\b"),null])}Y.push([G,/^\s+/,null," \r\n\t\xA0"]);var Z=/^.[^\s\w\.$@\'\"\`\/\\]*/;U.push([H,/^@[a-z_$][a-z_$@0-9]*/i,null],[Q,/^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/,null],[G,/^[a-z_$][a-z_$@0-9]*/i,null],[H,new RegExp("^(?:0x[a-f0-9]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+\\-]?\\d+)?)[a-z]*","i"),null,"0123456789"],[G,/^\\[\s\S]?/,null],[M,Z,null]);return h(Y,U)}var L=i({keywords:B,hashComments:true,cStyleComments:true,multiLineStrings:true,regexLiterals:true});function S(W,ah,aa){var V=/(?:^|\s)nocode(?:\s|$)/;var ac=/\r\n?|\n/;var ad=W.ownerDocument;var ag=ad.createElement("li");while(W.firstChild){ag.appendChild(W.firstChild)}var X=[ag];function af(am){switch(am.nodeType){case 1:if(V.test(am.className)){break}if("br"===am.nodeName){ae(am);if(am.parentNode){am.parentNode.removeChild(am)}}else{for(var ao=am.firstChild;ao;ao=ao.nextSibling){af(ao)}}break;case 3:case 4:if(aa){var an=am.nodeValue;var ak=an.match(ac);if(ak){var aj=an.substring(0,ak.index);am.nodeValue=aj;var ai=an.substring(ak.index+ak[0].length);if(ai){var al=am.parentNode;al.insertBefore(ad.createTextNode(ai),am.nextSibling)}ae(am);if(!aj){am.parentNode.removeChild(am)}}}break}}function ae(al){while(!al.nextSibling){al=al.parentNode;if(!al){return}}function aj(am,at){var ar=at?am.cloneNode(false):am;var ap=am.parentNode;if(ap){var aq=aj(ap,1);var ao=am.nextSibling;aq.appendChild(ar);for(var an=ao;an;an=ao){ao=an.nextSibling;aq.appendChild(an)}}return ar}var ai=aj(al.nextSibling,0);for(var ak;(ak=ai.parentNode)&&ak.nodeType===1;){ai=ak}X.push(ai)}for(var Z=0;Z<X.length;++Z){af(X[Z])}if(ah===(ah|0)){X[0].setAttribute("value",ah)}var ab=ad.createElement("ol");ab.className="linenums";var Y=Math.max(0,((ah-1))|0)||0;for(var Z=0,U=X.length;Z<U;++Z){ag=X[Z];ag.className="L"+((Z+Y)%10);if(!ag.firstChild){ag.appendChild(ad.createTextNode("\xA0"))}ab.appendChild(ag)}W.appendChild(ab)}function E(af){var X=/\bMSIE\s(\d+)/.exec(navigator.userAgent);X=X&&+X[1]<=8;var ao=/\n/g;var an=af.sourceCode;var ap=an.length;var Y=0;var ad=af.spans;var V=ad.length;var aj=0;var aa=af.decorations;var ab=aa.length;var ac=0;aa[ab]=ap;var av,at;for(at=av=0;at<ab;){if(aa[at]!==aa[at+2]){aa[av++]=aa[at++];aa[av++]=aa[at++]}else{at+=2}}ab=av;for(at=av=0;at<ab;){var aw=aa[at];var ae=aa[at+1];var Z=at+2;while(Z+2<=ab&&aa[Z+1]===ae){Z+=2}aa[av++]=aw;aa[av++]=ae;at=Z}ab=aa.length=av;var au=af.sourceNode;var ak;if(au){ak=au.style.display;au.style.display="none"}try{var ah=null;while(aj<V){var ai=ad[aj];var U=ad[aj+2]||ap;var ar=aa[ac+2]||ap;var Z=Math.min(U,ar);var am=ad[aj+1];var W;if(am.nodeType!==1&&(W=an.substring(Y,Z))){if(X){W=W.replace(ao,"\r")}am.nodeValue=W;var al=am.ownerDocument;var aq=al.createElement("span");aq.className=aa[ac+1];var ag=am.parentNode;ag.replaceChild(aq,am);aq.appendChild(am);if(Y<U){ad[aj+1]=am=al.createTextNode(an.substring(Z,U));ag.insertBefore(am,aq.nextSibling)}}Y=Z;if(Y>=U){aj+=2}if(Y>=ar){ac+=2}}}finally{if(au){au.style.display=ak}}}var u={};function d(W,X){for(var U=X.length;--U>=0;){var V=X[U];if(!u.hasOwnProperty(V)){u[V]=W}else{if(O.console){console.warn("cannot override language handler %s",V)}}}}function r(V,U){if(!(V&&u.hasOwnProperty(V))){V=/^\s*</.test(U)?"default-markup":"default-code"}return u[V]}d(L,["default-code"]);d(h([],[[G,/^[^<?]+/],[F,/^<!\w[^>]*(?:>|$)/],[k,/^<\!--[\s\S]*?(?:-\->|$)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],[M,/^(?:<[%?]|[%?]>)/],["lang-",/^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-js",/^<script\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]);d(h([[G,/^[\s]+/,null," \t\r\n"],[o,/^(?:\"[^\"]*\"?|\'[^\']*\'?)/,null,"\"'"]],[[n,/^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],[R,/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],[M,/^[=<>\/]+/],["lang-js",/^on\w+\s*=\s*\"([^\"]+)\"/i],["lang-js",/^on\w+\s*=\s*\'([^\']+)\'/i],["lang-js",/^on\w+\s*=\s*([^\"\'>\s]+)/i],["lang-css",/^style\s*=\s*\"([^\"]+)\"/i],["lang-css",/^style\s*=\s*\'([^\']+)\'/i],["lang-css",/^style\s*=\s*([^\"\'>\s]+)/i]]),["in.tag"]);d(h([],[[o,/^[\s\S]+/]]),["uq.val"]);d(i({keywords:m,hashComments:true,cStyleComments:true,types:f}),["c","cc","cpp","cxx","cyc","m"]);d(i({keywords:"null,true,false"}),["json"]);d(i({keywords:T,hashComments:true,cStyleComments:true,verbatimStrings:true,types:f}),["cs"]);d(i({keywords:y,cStyleComments:true}),["java"]);d(i({keywords:I,hashComments:true,multiLineStrings:true}),["bsh","csh","sh"]);d(i({keywords:J,hashComments:true,multiLineStrings:true,tripleQuotedStrings:true}),["cv","py"]);d(i({keywords:t,hashComments:true,multiLineStrings:true,regexLiterals:true}),["perl","pl","pm"]);d(i({keywords:g,hashComments:true,multiLineStrings:true,regexLiterals:true}),["rb"]);d(i({keywords:x,cStyleComments:true,regexLiterals:true}),["js"]);d(i({keywords:s,hashComments:3,cStyleComments:true,multilineStrings:true,tripleQuotedStrings:true,regexLiterals:true}),["coffee"]);d(h([],[[D,/^[\s\S]+/]]),["regex"]);function e(X){var W=X.langExtension;try{var U=b(X.sourceNode,X.pre);var V=U.sourceCode;X.sourceCode=V;X.spans=U.spans;X.basePos=0;r(W,V)(X);E(X)}catch(Y){if(O.console){console.log(Y&&Y.stack?Y.stack:Y)}}}function z(Y,X,W){var U=document.createElement("pre");U.innerHTML=Y;if(W){S(U,W,true)}var V={langExtension:X,numberLines:W,sourceNode:U,pre:1};e(V);return U.innerHTML}function c(aj){function ab(al){return document.getElementsByTagName(al)}var ah=[ab("pre"),ab("code"),ab("xmp")];var V=[];for(var ae=0;ae<ah.length;++ae){for(var ac=0,Y=ah[ae].length;ac<Y;++ac){V.push(ah[ae][ac])}}ah=null;var Z=Date;if(!Z.now){Z={now:function(){return +(new Date)}}}var aa=0;var U;var af=/\blang(?:uage)?-([\w.]+)(?!\S)/;var ak=/\bprettyprint\b/;var W=/\bprettyprinted\b/;var ag=/pre|xmp/i;var ai=/^code$/i;var ad=/^(?:pre|code|xmp)$/i;function X(){var ar=(O.PR_SHOULD_USE_CONTINUATION?Z.now()+250:Infinity);for(;aa<V.length&&Z.now()<ar;aa++){var at=V[aa];var au=at.className;if(ak.test(au)&&!W.test(au)){var aw=false;for(var ao=at.parentNode;ao;ao=ao.parentNode){var ax=ao.tagName;if(ad.test(ax)&&ao.className&&ak.test(ao.className)){aw=true;break}}if(!aw){at.className+=" prettyprinted";var aq=au.match(af);var am;if(!aq&&(am=p(at))&&ai.test(am.tagName)){aq=am.className.match(af)}if(aq){aq=aq[1]}var ap;if(ag.test(at.tagName)){ap=1}else{var an=at.currentStyle;var al=(an?an.whiteSpace:(document.defaultView&&document.defaultView.getComputedStyle)?document.defaultView.getComputedStyle(at,null).getPropertyValue("white-space"):0);ap=al&&"pre"===al.substring(0,3)}var av=at.className.match(/\blinenums\b(?::(\d+))?/);av=av?av[1]&&av[1].length?+av[1]:true:false;if(av){S(at,av,ap)}U={langExtension:aq,sourceNode:at,numberLines:av,pre:ap};e(U)}}}if(aa<V.length){setTimeout(X,250)}else{if(aj){aj()}}}X()}var a=O.PR={createSimpleLexer:h,registerLangHandler:d,sourceDecorator:i,PR_ATTRIB_NAME:R,PR_ATTRIB_VALUE:o,PR_COMMENT:k,PR_DECLARATION:F,PR_KEYWORD:A,PR_LITERAL:H,PR_NOCODE:P,PR_PLAIN:G,PR_PUNCTUATION:M,PR_SOURCE:K,PR_STRING:D,PR_TAG:n,PR_TYPE:Q,prettyPrintOne:O.prettyPrintOne=z,prettyPrint:O.prettyPrint=c};if(typeof define==="function"&&define.amd){define("google-code-prettify",[],function(){return a})}})();PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_DECLARATION,/^<!\w[^>]*(?:>|$)/],[PR.PR_COMMENT,/^<\!--[\s\S]*?(?:-\->|$)/],[PR.PR_PUNCTUATION,/^(?:<[%?]|[%?]>)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],["lang-",/^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-handlebars",/^<script\b[^>]*type\s*=\s*['"]?text\/x-handlebars-template['"]?\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-js",/^<script\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i],[PR.PR_DECLARATION,/^{{[#^>/]?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{&?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{{>?\s*[\w.][^}]*}}}/],[PR.PR_COMMENT,/^{{![^}]*}}/]]),["handlebars","hbs"]);PR.registerLangHandler(PR.createSimpleLexer([[PR.PR_PLAIN,/^[ \t\r\n\f]+/,null," \t\r\n\f"]],[[PR.PR_STRING,/^\"(?:[^\n\r\f\\\"]|\\(?:\r\n?|\n|\f)|\\[\s\S])*\"/,null],[PR.PR_STRING,/^\'(?:[^\n\r\f\\\']|\\(?:\r\n?|\n|\f)|\\[\s\S])*\'/,null],["lang-css-str",/^url\(([^\)\"\']*)\)/i],[PR.PR_KEYWORD,/^(?:url|rgb|\!important|@import|@page|@media|@charset|inherit)(?=[^\-\w]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|(?:\\[0-9a-f]+ ?))(?:[_a-z0-9\-]|\\(?:\\[0-9a-f]+ ?))*)\s*:/i],[PR.PR_COMMENT,/^\/\*[^*]*\*+(?:[^\/*][^*]*\*+)*\//],[PR.PR_COMMENT,/^(?:<!--|-->)/],[PR.PR_LITERAL,/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],[PR.PR_LITERAL,/^#(?:[0-9a-f]{3}){1,2}/i],[PR.PR_PLAIN,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i],[PR.PR_PUNCTUATION,/^[^\s\w\'\"]+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_KEYWORD,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_STRING,/^[^\)\"\']+/]]),["css-str"]);
2535
2536=== added directory 'doc/docbuild/classes'
2537=== added file 'doc/docbuild/classes/ActionMetadata.html'
2538--- doc/docbuild/classes/ActionMetadata.html 1970-01-01 00:00:00 +0000
2539+++ doc/docbuild/classes/ActionMetadata.html 2015-10-23 18:57:47 +0000
2540@@ -0,0 +1,365 @@
2541+<!DOCTYPE html>
2542+<html lang="en">
2543+<head>
2544+ <meta charset="utf-8">
2545+ <title>ActionMetadata - Javascript Scopes API</title>
2546+ <link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/build/cssgrids/cssgrids-min.css">
2547+ <link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
2548+ <link rel="stylesheet" href="../assets/css/main.css" id="site_styles">
2549+ <link rel="icon" href="../assets/favicon.ico">
2550+ <script src="http://yui.yahooapis.com/combo?3.9.1/build/yui/yui-min.js"></script>
2551+</head>
2552+<body class="yui3-skin-sam">
2553+
2554+<div id="doc">
2555+ <div id="hd" class="yui3-g header">
2556+ <div class="yui3-u-3-4">
2557+ <h1><img src="../assets/css/logo.png" title="Javascript Scopes API" width="117" height="52"></h1>
2558+ </div>
2559+ <div class="yui3-u-1-4 version">
2560+ <em>API Docs for: 0.1</em>
2561+ </div>
2562+ </div>
2563+ <div id="bd" class="yui3-g">
2564+
2565+ <div class="yui3-u-1-4">
2566+ <div id="docs-sidebar" class="sidebar apidocs">
2567+ <div id="api-list">
2568+ <h2 class="off-left">APIs</h2>
2569+ <div id="api-tabview" class="tabview">
2570+ <ul class="tabs">
2571+ <li><a href="#api-classes">Classes</a></li>
2572+ <li><a href="#api-modules">Modules</a></li>
2573+ </ul>
2574+
2575+ <div id="api-tabview-filter">
2576+ <input type="search" id="api-filter" placeholder="Type to filter APIs">
2577+ </div>
2578+
2579+ <div id="api-tabview-panel">
2580+ <ul id="api-classes" class="apis classes">
2581+ <li><a href="../classes/ActionMetadata.html">ActionMetadata</a></li>
2582+ <li><a href="../classes/ActivationQuery.html">ActivationQuery</a></li>
2583+ <li><a href="../classes/CategorisedResult.html">CategorisedResult</a></li>
2584+ <li><a href="../classes/Category.html">Category</a></li>
2585+ <li><a href="../classes/CategoryRenderer.html">CategoryRenderer</a></li>
2586+ <li><a href="../classes/ColumnLayout.html">ColumnLayout</a></li>
2587+ <li><a href="../classes/PreviewQuery.html">PreviewQuery</a></li>
2588+ <li><a href="../classes/PreviewReply.html">PreviewReply</a></li>
2589+ <li><a href="../classes/PreviewWidget.html">PreviewWidget</a></li>
2590+ <li><a href="../classes/Result.html">Result</a></li>
2591+ <li><a href="../classes/Scope.html">Scope</a></li>
2592+ <li><a href="../classes/SearchMetaData.html">SearchMetaData</a></li>
2593+ <li><a href="../classes/SearchQuery.html">SearchQuery</a></li>
2594+ <li><a href="../classes/SearchReply.html">SearchReply</a></li>
2595+ </ul>
2596+
2597+ <ul id="api-modules" class="apis modules">
2598+ <li><a href="../modules/ScopeJS.html">ScopeJS</a></li>
2599+ </ul>
2600+ </div>
2601+ </div>
2602+ </div>
2603+ </div>
2604+ </div>
2605+ <div class="yui3-u-3-4">
2606+ <div id="api-options">
2607+ Show:
2608+ <label for="api-show-inherited">
2609+ <input type="checkbox" id="api-show-inherited" checked>
2610+ Inherited
2611+ </label>
2612+
2613+ <label for="api-show-protected">
2614+ <input type="checkbox" id="api-show-protected">
2615+ Protected
2616+ </label>
2617+
2618+ <label for="api-show-private">
2619+ <input type="checkbox" id="api-show-private">
2620+ Private
2621+ </label>
2622+ <label for="api-show-deprecated">
2623+ <input type="checkbox" id="api-show-deprecated">
2624+ Deprecated
2625+ </label>
2626+
2627+ </div>
2628+
2629+ <div class="apidocs">
2630+ <div id="docs-main">
2631+ <div class="content">
2632+<h1>ActionMetadata Class</h1>
2633+<div class="box meta">
2634+
2635+
2636+ <div class="foundat">
2637+ Defined in: <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_action-metadata.js.html#l1"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;action-metadata.js:1</code></a>
2638+ </div>
2639+
2640+ Module: <a href="../modules/ScopeJS.html">ScopeJS</a>
2641+
2642+</div>
2643+
2644+
2645+<div class="box intro">
2646+ <p>Metadata passed to scopes for preview and activation</p>
2647+
2648+</div>
2649+
2650+
2651+<div id="classdocs" class="tabview">
2652+ <ul class="api-class-tabs">
2653+ <li class="api-class-tab index"><a href="#index">Index</a></li>
2654+
2655+ <li class="api-class-tab methods"><a href="#methods">Methods</a></li>
2656+ </ul>
2657+
2658+ <div>
2659+ <div id="index" class="api-class-tabpanel index">
2660+ <h2 class="off-left">Item Index</h2>
2661+
2662+ <div class="index-section methods">
2663+ <h3>Methods</h3>
2664+
2665+ <ul class="index-list methods">
2666+ <li class="index-item method">
2667+ <a href="#method_contains_hint">contains_hint</a>
2668+
2669+ </li>
2670+ <li class="index-item method">
2671+ <a href="#method_get">get</a>
2672+
2673+ </li>
2674+ <li class="index-item method">
2675+ <a href="#method_set">set</a>
2676+
2677+ </li>
2678+ </ul>
2679+ </div>
2680+
2681+
2682+
2683+ </div>
2684+
2685+ <div id="methods" class="api-class-tabpanel">
2686+ <h2 class="off-left">Methods</h2>
2687+
2688+<div id="method_contains_hint" class="method item">
2689+ <h3 class="name"><code>contains_hint</code></h3>
2690+
2691+ <div class="args">
2692+ <span class="paren">(</span><ul class="args-list inline commas">
2693+ <li class="arg">
2694+ <code>hint</code>
2695+ </li>
2696+ </ul><span class="paren">)</span>
2697+ </div>
2698+
2699+ <span class="returns-inline">
2700+ <span class="type"></span>
2701+ </span>
2702+
2703+
2704+
2705+
2706+
2707+
2708+
2709+ <div class="meta">
2710+ <p>
2711+ Defined in
2712+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_action-metadata.js.html#l12"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;action-metadata.js:12</code></a>
2713+ </p>
2714+
2715+
2716+
2717+ </div>
2718+
2719+ <div class="description">
2720+ <p>Check if this ActionMetadata has a hint</p>
2721+
2722+ </div>
2723+
2724+ <div class="params">
2725+ <h4>Parameters:</h4>
2726+
2727+ <ul class="params-list">
2728+ <li class="param">
2729+ <code class="param-name">hint</code>
2730+ <span class="type">String</span>
2731+
2732+
2733+ <div class="param-description">
2734+
2735+ </div>
2736+
2737+ </li>
2738+ </ul>
2739+ </div>
2740+
2741+ <div class="returns">
2742+ <h4>Returns:</h4>
2743+
2744+ <div class="returns-description">
2745+ <p>Boolean</p>
2746+
2747+ </div>
2748+ </div>
2749+
2750+
2751+</div>
2752+<div id="method_get" class="method item">
2753+ <h3 class="name"><code>get</code></h3>
2754+
2755+ <div class="args">
2756+ <span class="paren">(</span><ul class="args-list inline commas">
2757+ <li class="arg">
2758+ <code>key</code>
2759+ </li>
2760+ </ul><span class="paren">)</span>
2761+ </div>
2762+
2763+ <span class="returns-inline">
2764+ <span class="type">String</span>
2765+ </span>
2766+
2767+
2768+
2769+
2770+
2771+
2772+
2773+ <div class="meta">
2774+ <p>
2775+ Defined in
2776+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_action-metadata.js.html#l28"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;action-metadata.js:28</code></a>
2777+ </p>
2778+
2779+
2780+
2781+ </div>
2782+
2783+ <div class="description">
2784+ <p>Get the value of an attribute</p>
2785+
2786+ </div>
2787+
2788+ <div class="params">
2789+ <h4>Parameters:</h4>
2790+
2791+ <ul class="params-list">
2792+ <li class="param">
2793+ <code class="param-name">key</code>
2794+ <span class="type">String</span>
2795+
2796+
2797+ <div class="param-description">
2798+
2799+ </div>
2800+
2801+ </li>
2802+ </ul>
2803+ </div>
2804+
2805+ <div class="returns">
2806+ <h4>Returns:</h4>
2807+
2808+ <div class="returns-description">
2809+ <span class="type">String</span>:
2810+ <p>, {Number} or {Object}</p>
2811+
2812+ </div>
2813+ </div>
2814+
2815+
2816+</div>
2817+<div id="method_set" class="method item">
2818+ <h3 class="name"><code>set</code></h3>
2819+
2820+ <div class="args">
2821+ <span class="paren">(</span><ul class="args-list inline commas">
2822+ <li class="arg">
2823+ <code>key</code>
2824+ </li>
2825+ <li class="arg">
2826+ <code>value</code>
2827+ </li>
2828+ </ul><span class="paren">)</span>
2829+ </div>
2830+
2831+
2832+
2833+
2834+
2835+
2836+
2837+
2838+ <div class="meta">
2839+ <p>
2840+ Defined in
2841+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_action-metadata.js.html#l20"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;action-metadata.js:20</code></a>
2842+ </p>
2843+
2844+
2845+
2846+ </div>
2847+
2848+ <div class="description">
2849+ <p>Set the value of an attribute</p>
2850+
2851+ </div>
2852+
2853+ <div class="params">
2854+ <h4>Parameters:</h4>
2855+
2856+ <ul class="params-list">
2857+ <li class="param">
2858+ <code class="param-name">key</code>
2859+ <span class="type">String</span>
2860+
2861+
2862+ <div class="param-description">
2863+
2864+ </div>
2865+
2866+ </li>
2867+ <li class="param">
2868+ <code class="param-name">value</code>
2869+ <span class="type">String</span>
2870+
2871+
2872+ <div class="param-description">
2873+ <p>, {Number} or {Object}</p>
2874+
2875+ </div>
2876+
2877+ </li>
2878+ </ul>
2879+ </div>
2880+
2881+
2882+
2883+</div>
2884+ </div>
2885+
2886+
2887+
2888+ </div>
2889+</div>
2890+ </div>
2891+ </div>
2892+ </div>
2893+ </div>
2894+ </div>
2895+</div>
2896+<script src="../assets/vendor/prettify/prettify-min.js"></script>
2897+<script>prettyPrint();</script>
2898+<script src="../assets/js/yui-prettify.js"></script>
2899+<script src="../assets/../api.js"></script>
2900+<script src="../assets/js/api-filter.js"></script>
2901+<script src="../assets/js/api-list.js"></script>
2902+<script src="../assets/js/api-search.js"></script>
2903+<script src="../assets/js/apidocs.js"></script>
2904+</body>
2905+</html>
2906
2907=== added file 'doc/docbuild/classes/ActivationQuery.html'
2908--- doc/docbuild/classes/ActivationQuery.html 1970-01-01 00:00:00 +0000
2909+++ doc/docbuild/classes/ActivationQuery.html 2015-10-23 18:57:47 +0000
2910@@ -0,0 +1,479 @@
2911+<!DOCTYPE html>
2912+<html lang="en">
2913+<head>
2914+ <meta charset="utf-8">
2915+ <title>ActivationQuery - Javascript Scopes API</title>
2916+ <link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/build/cssgrids/cssgrids-min.css">
2917+ <link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
2918+ <link rel="stylesheet" href="../assets/css/main.css" id="site_styles">
2919+ <link rel="icon" href="../assets/favicon.ico">
2920+ <script src="http://yui.yahooapis.com/combo?3.9.1/build/yui/yui-min.js"></script>
2921+</head>
2922+<body class="yui3-skin-sam">
2923+
2924+<div id="doc">
2925+ <div id="hd" class="yui3-g header">
2926+ <div class="yui3-u-3-4">
2927+ <h1><img src="../assets/css/logo.png" title="Javascript Scopes API" width="117" height="52"></h1>
2928+ </div>
2929+ <div class="yui3-u-1-4 version">
2930+ <em>API Docs for: 0.1</em>
2931+ </div>
2932+ </div>
2933+ <div id="bd" class="yui3-g">
2934+
2935+ <div class="yui3-u-1-4">
2936+ <div id="docs-sidebar" class="sidebar apidocs">
2937+ <div id="api-list">
2938+ <h2 class="off-left">APIs</h2>
2939+ <div id="api-tabview" class="tabview">
2940+ <ul class="tabs">
2941+ <li><a href="#api-classes">Classes</a></li>
2942+ <li><a href="#api-modules">Modules</a></li>
2943+ </ul>
2944+
2945+ <div id="api-tabview-filter">
2946+ <input type="search" id="api-filter" placeholder="Type to filter APIs">
2947+ </div>
2948+
2949+ <div id="api-tabview-panel">
2950+ <ul id="api-classes" class="apis classes">
2951+ <li><a href="../classes/ActionMetadata.html">ActionMetadata</a></li>
2952+ <li><a href="../classes/ActivationQuery.html">ActivationQuery</a></li>
2953+ <li><a href="../classes/CategorisedResult.html">CategorisedResult</a></li>
2954+ <li><a href="../classes/Category.html">Category</a></li>
2955+ <li><a href="../classes/CategoryRenderer.html">CategoryRenderer</a></li>
2956+ <li><a href="../classes/ColumnLayout.html">ColumnLayout</a></li>
2957+ <li><a href="../classes/PreviewQuery.html">PreviewQuery</a></li>
2958+ <li><a href="../classes/PreviewReply.html">PreviewReply</a></li>
2959+ <li><a href="../classes/PreviewWidget.html">PreviewWidget</a></li>
2960+ <li><a href="../classes/Result.html">Result</a></li>
2961+ <li><a href="../classes/Scope.html">Scope</a></li>
2962+ <li><a href="../classes/SearchMetaData.html">SearchMetaData</a></li>
2963+ <li><a href="../classes/SearchQuery.html">SearchQuery</a></li>
2964+ <li><a href="../classes/SearchReply.html">SearchReply</a></li>
2965+ </ul>
2966+
2967+ <ul id="api-modules" class="apis modules">
2968+ <li><a href="../modules/ScopeJS.html">ScopeJS</a></li>
2969+ </ul>
2970+ </div>
2971+ </div>
2972+ </div>
2973+ </div>
2974+ </div>
2975+ <div class="yui3-u-3-4">
2976+ <div id="api-options">
2977+ Show:
2978+ <label for="api-show-inherited">
2979+ <input type="checkbox" id="api-show-inherited" checked>
2980+ Inherited
2981+ </label>
2982+
2983+ <label for="api-show-protected">
2984+ <input type="checkbox" id="api-show-protected">
2985+ Protected
2986+ </label>
2987+
2988+ <label for="api-show-private">
2989+ <input type="checkbox" id="api-show-private">
2990+ Private
2991+ </label>
2992+ <label for="api-show-deprecated">
2993+ <input type="checkbox" id="api-show-deprecated">
2994+ Deprecated
2995+ </label>
2996+
2997+ </div>
2998+
2999+ <div class="apidocs">
3000+ <div id="docs-main">
3001+ <div class="content">
3002+<h1>ActivationQuery Class</h1>
3003+<div class="box meta">
3004+
3005+
3006+ <div class="foundat">
3007+ Defined in: <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_activation-query.js.html#l1"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;activation-query.js:1</code></a>
3008+ </div>
3009+
3010+ Module: <a href="../modules/ScopeJS.html">ScopeJS</a>
3011+
3012+</div>
3013+
3014+
3015+<div class="box intro">
3016+ <p>Represents an activation request that is executed inside a scope</p>
3017+
3018+</div>
3019+
3020+
3021+<div id="classdocs" class="tabview">
3022+ <ul class="api-class-tabs">
3023+ <li class="api-class-tab index"><a href="#index">Index</a></li>
3024+
3025+ <li class="api-class-tab methods"><a href="#methods">Methods</a></li>
3026+ </ul>
3027+
3028+ <div>
3029+ <div id="index" class="api-class-tabpanel index">
3030+ <h2 class="off-left">Item Index</h2>
3031+
3032+ <div class="index-section methods">
3033+ <h3>Methods</h3>
3034+
3035+ <ul class="index-list methods">
3036+ <li class="index-item method">
3037+ <a href="#method_action_id">action_id</a>
3038+
3039+ </li>
3040+ <li class="index-item method">
3041+ <a href="#method_action_metadata">action_metadata</a>
3042+
3043+ </li>
3044+ <li class="index-item method">
3045+ <a href="#method_activate">activate</a>
3046+
3047+ </li>
3048+ <li class="index-item method">
3049+ <a href="#method_result">result</a>
3050+
3051+ </li>
3052+ <li class="index-item method">
3053+ <a href="#method_settings">settings</a>
3054+
3055+ </li>
3056+ <li class="index-item method">
3057+ <a href="#method_valid">valid</a>
3058+
3059+ </li>
3060+ <li class="index-item method">
3061+ <a href="#method_widget_id">widget_id</a>
3062+
3063+ </li>
3064+ </ul>
3065+ </div>
3066+
3067+
3068+
3069+ </div>
3070+
3071+ <div id="methods" class="api-class-tabpanel">
3072+ <h2 class="off-left">Methods</h2>
3073+
3074+<div id="method_action_id" class="method item">
3075+ <h3 class="name"><code>action_id</code></h3>
3076+
3077+ <span class="paren">()</span>
3078+
3079+ <span class="returns-inline">
3080+ <span class="type"></span>
3081+ </span>
3082+
3083+
3084+
3085+
3086+
3087+
3088+
3089+ <div class="meta">
3090+ <p>
3091+ Defined in
3092+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_activation-query.js.html#l39"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;activation-query.js:39</code></a>
3093+ </p>
3094+
3095+
3096+
3097+ </div>
3098+
3099+ <div class="description">
3100+ <p>Get the action identifier for this activation request handler</p>
3101+
3102+ </div>
3103+
3104+
3105+ <div class="returns">
3106+ <h4>Returns:</h4>
3107+
3108+ <div class="returns-description">
3109+ <p>String</p>
3110+
3111+ </div>
3112+ </div>
3113+
3114+
3115+</div>
3116+<div id="method_action_metadata" class="method item">
3117+ <h3 class="name"><code>action_metadata</code></h3>
3118+
3119+ <span class="paren">()</span>
3120+
3121+ <span class="returns-inline">
3122+ <span class="type"></span>
3123+ </span>
3124+
3125+
3126+
3127+
3128+
3129+
3130+
3131+ <div class="meta">
3132+ <p>
3133+ Defined in
3134+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_activation-query.js.html#l25"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;activation-query.js:25</code></a>
3135+ </p>
3136+
3137+
3138+
3139+ </div>
3140+
3141+ <div class="description">
3142+ <p>Get the metadata for this activation request handler</p>
3143+
3144+ </div>
3145+
3146+
3147+ <div class="returns">
3148+ <h4>Returns:</h4>
3149+
3150+ <div class="returns-description">
3151+ <p>ActionMetadata</p>
3152+
3153+ </div>
3154+ </div>
3155+
3156+
3157+</div>
3158+<div id="method_activate" class="method item">
3159+ <h3 class="name"><code>activate</code></h3>
3160+
3161+ <span class="paren">()</span>
3162+
3163+ <span class="returns-inline">
3164+ <span class="type"></span>
3165+ </span>
3166+
3167+
3168+
3169+
3170+
3171+
3172+
3173+ <div class="meta">
3174+ <p>
3175+ Defined in
3176+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_activation-query.js.html#l11"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;activation-query.js:11</code></a>
3177+ </p>
3178+
3179+
3180+
3181+ </div>
3182+
3183+ <div class="description">
3184+ <p>Return response to the activation request</p>
3185+
3186+ </div>
3187+
3188+
3189+ <div class="returns">
3190+ <h4>Returns:</h4>
3191+
3192+ <div class="returns-description">
3193+ <p>ActivationResponse</p>
3194+
3195+ </div>
3196+ </div>
3197+
3198+
3199+</div>
3200+<div id="method_result" class="method item">
3201+ <h3 class="name"><code>result</code></h3>
3202+
3203+ <span class="paren">()</span>
3204+
3205+ <span class="returns-inline">
3206+ <span class="type"></span>
3207+ </span>
3208+
3209+
3210+
3211+
3212+
3213+
3214+
3215+ <div class="meta">
3216+ <p>
3217+ Defined in
3218+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_activation-query.js.html#l18"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;activation-query.js:18</code></a>
3219+ </p>
3220+
3221+
3222+
3223+ </div>
3224+
3225+ <div class="description">
3226+ <p>Get the result for this activation request handler</p>
3227+
3228+ </div>
3229+
3230+
3231+ <div class="returns">
3232+ <h4>Returns:</h4>
3233+
3234+ <div class="returns-description">
3235+ <p>Result</p>
3236+
3237+ </div>
3238+ </div>
3239+
3240+
3241+</div>
3242+<div id="method_settings" class="method item">
3243+ <h3 class="name"><code>settings</code></h3>
3244+
3245+ <span class="paren">()</span>
3246+
3247+ <span class="returns-inline">
3248+ <span class="type"></span>
3249+ </span>
3250+
3251+
3252+
3253+
3254+
3255+
3256+
3257+ <div class="meta">
3258+ <p>
3259+ Defined in
3260+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_activation-query.js.html#l53"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;activation-query.js:53</code></a>
3261+ </p>
3262+
3263+
3264+
3265+ </div>
3266+
3267+ <div class="description">
3268+ <p>Returns a dictionary with the scope's current settings</p>
3269+
3270+ </div>
3271+
3272+
3273+ <div class="returns">
3274+ <h4>Returns:</h4>
3275+
3276+ <div class="returns-description">
3277+ <p>Dictionary</p>
3278+
3279+ </div>
3280+ </div>
3281+
3282+
3283+</div>
3284+<div id="method_valid" class="method item">
3285+ <h3 class="name"><code>valid</code></h3>
3286+
3287+ <span class="paren">()</span>
3288+
3289+ <span class="returns-inline">
3290+ <span class="type"></span>
3291+ </span>
3292+
3293+
3294+
3295+
3296+
3297+
3298+
3299+ <div class="meta">
3300+ <p>
3301+ Defined in
3302+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_activation-query.js.html#l46"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;activation-query.js:46</code></a>
3303+ </p>
3304+
3305+
3306+
3307+ </div>
3308+
3309+ <div class="description">
3310+ <p>Check whether this query is still valid</p>
3311+
3312+ </div>
3313+
3314+
3315+ <div class="returns">
3316+ <h4>Returns:</h4>
3317+
3318+ <div class="returns-description">
3319+ <p>Boolean</p>
3320+
3321+ </div>
3322+ </div>
3323+
3324+
3325+</div>
3326+<div id="method_widget_id" class="method item">
3327+ <h3 class="name"><code>widget_id</code></h3>
3328+
3329+ <span class="paren">()</span>
3330+
3331+ <span class="returns-inline">
3332+ <span class="type"></span>
3333+ </span>
3334+
3335+
3336+
3337+
3338+
3339+
3340+
3341+ <div class="meta">
3342+ <p>
3343+ Defined in
3344+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_activation-query.js.html#l32"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;activation-query.js:32</code></a>
3345+ </p>
3346+
3347+
3348+
3349+ </div>
3350+
3351+ <div class="description">
3352+ <p>Get the widget identifier for this activation request handler</p>
3353+
3354+ </div>
3355+
3356+
3357+ <div class="returns">
3358+ <h4>Returns:</h4>
3359+
3360+ <div class="returns-description">
3361+ <p>String</p>
3362+
3363+ </div>
3364+ </div>
3365+
3366+
3367+</div>
3368+ </div>
3369+
3370+
3371+
3372+ </div>
3373+</div>
3374+ </div>
3375+ </div>
3376+ </div>
3377+ </div>
3378+ </div>
3379+</div>
3380+<script src="../assets/vendor/prettify/prettify-min.js"></script>
3381+<script>prettyPrint();</script>
3382+<script src="../assets/js/yui-prettify.js"></script>
3383+<script src="../assets/../api.js"></script>
3384+<script src="../assets/js/api-filter.js"></script>
3385+<script src="../assets/js/api-list.js"></script>
3386+<script src="../assets/js/api-search.js"></script>
3387+<script src="../assets/js/apidocs.js"></script>
3388+</body>
3389+</html>
3390
3391=== added file 'doc/docbuild/classes/CategorisedResult.html'
3392--- doc/docbuild/classes/CategorisedResult.html 1970-01-01 00:00:00 +0000
3393+++ doc/docbuild/classes/CategorisedResult.html 2015-10-23 18:57:47 +0000
3394@@ -0,0 +1,1205 @@
3395+<!DOCTYPE html>
3396+<html lang="en">
3397+<head>
3398+ <meta charset="utf-8">
3399+ <title>CategorisedResult - Javascript Scopes API</title>
3400+ <link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/build/cssgrids/cssgrids-min.css">
3401+ <link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
3402+ <link rel="stylesheet" href="../assets/css/main.css" id="site_styles">
3403+ <link rel="icon" href="../assets/favicon.ico">
3404+ <script src="http://yui.yahooapis.com/combo?3.9.1/build/yui/yui-min.js"></script>
3405+</head>
3406+<body class="yui3-skin-sam">
3407+
3408+<div id="doc">
3409+ <div id="hd" class="yui3-g header">
3410+ <div class="yui3-u-3-4">
3411+ <h1><img src="../assets/css/logo.png" title="Javascript Scopes API" width="117" height="52"></h1>
3412+ </div>
3413+ <div class="yui3-u-1-4 version">
3414+ <em>API Docs for: 0.1</em>
3415+ </div>
3416+ </div>
3417+ <div id="bd" class="yui3-g">
3418+
3419+ <div class="yui3-u-1-4">
3420+ <div id="docs-sidebar" class="sidebar apidocs">
3421+ <div id="api-list">
3422+ <h2 class="off-left">APIs</h2>
3423+ <div id="api-tabview" class="tabview">
3424+ <ul class="tabs">
3425+ <li><a href="#api-classes">Classes</a></li>
3426+ <li><a href="#api-modules">Modules</a></li>
3427+ </ul>
3428+
3429+ <div id="api-tabview-filter">
3430+ <input type="search" id="api-filter" placeholder="Type to filter APIs">
3431+ </div>
3432+
3433+ <div id="api-tabview-panel">
3434+ <ul id="api-classes" class="apis classes">
3435+ <li><a href="../classes/ActionMetadata.html">ActionMetadata</a></li>
3436+ <li><a href="../classes/ActivationQuery.html">ActivationQuery</a></li>
3437+ <li><a href="../classes/CategorisedResult.html">CategorisedResult</a></li>
3438+ <li><a href="../classes/Category.html">Category</a></li>
3439+ <li><a href="../classes/CategoryRenderer.html">CategoryRenderer</a></li>
3440+ <li><a href="../classes/ColumnLayout.html">ColumnLayout</a></li>
3441+ <li><a href="../classes/PreviewQuery.html">PreviewQuery</a></li>
3442+ <li><a href="../classes/PreviewReply.html">PreviewReply</a></li>
3443+ <li><a href="../classes/PreviewWidget.html">PreviewWidget</a></li>
3444+ <li><a href="../classes/Result.html">Result</a></li>
3445+ <li><a href="../classes/Scope.html">Scope</a></li>
3446+ <li><a href="../classes/SearchMetaData.html">SearchMetaData</a></li>
3447+ <li><a href="../classes/SearchQuery.html">SearchQuery</a></li>
3448+ <li><a href="../classes/SearchReply.html">SearchReply</a></li>
3449+ </ul>
3450+
3451+ <ul id="api-modules" class="apis modules">
3452+ <li><a href="../modules/ScopeJS.html">ScopeJS</a></li>
3453+ </ul>
3454+ </div>
3455+ </div>
3456+ </div>
3457+ </div>
3458+ </div>
3459+ <div class="yui3-u-3-4">
3460+ <div id="api-options">
3461+ Show:
3462+ <label for="api-show-inherited">
3463+ <input type="checkbox" id="api-show-inherited" checked>
3464+ Inherited
3465+ </label>
3466+
3467+ <label for="api-show-protected">
3468+ <input type="checkbox" id="api-show-protected">
3469+ Protected
3470+ </label>
3471+
3472+ <label for="api-show-private">
3473+ <input type="checkbox" id="api-show-private">
3474+ Private
3475+ </label>
3476+ <label for="api-show-deprecated">
3477+ <input type="checkbox" id="api-show-deprecated">
3478+ Deprecated
3479+ </label>
3480+
3481+ </div>
3482+
3483+ <div class="apidocs">
3484+ <div id="docs-main">
3485+ <div class="content">
3486+<h1>CategorisedResult Class</h1>
3487+<div class="box meta">
3488+
3489+
3490+ <div class="foundat">
3491+ Defined in: <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l1"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:1</code></a>
3492+ </div>
3493+
3494+ Module: <a href="../modules/ScopeJS.html">ScopeJS</a>
3495+
3496+</div>
3497+
3498+
3499+<div class="box intro">
3500+ <p>A result, including the category it belongs to.</p>
3501+
3502+</div>
3503+
3504+
3505+<div id="classdocs" class="tabview">
3506+ <ul class="api-class-tabs">
3507+ <li class="api-class-tab index"><a href="#index">Index</a></li>
3508+
3509+ <li class="api-class-tab methods"><a href="#methods">Methods</a></li>
3510+ </ul>
3511+
3512+ <div>
3513+ <div id="index" class="api-class-tabpanel index">
3514+ <h2 class="off-left">Item Index</h2>
3515+
3516+ <div class="index-section methods">
3517+ <h3>Methods</h3>
3518+
3519+ <ul class="index-list methods">
3520+ <li class="index-item method">
3521+ <a href="#method_art">art</a>
3522+
3523+ </li>
3524+ <li class="index-item method">
3525+ <a href="#method_category">category</a>
3526+
3527+ </li>
3528+ <li class="index-item method">
3529+ <a href="#method_contains">contains</a>
3530+
3531+ </li>
3532+ <li class="index-item method">
3533+ <a href="#method_direct_activation">direct_activation</a>
3534+
3535+ </li>
3536+ <li class="index-item method">
3537+ <a href="#method_dnd_uri">dnd_uri</a>
3538+
3539+ </li>
3540+ <li class="index-item method">
3541+ <a href="#method_get">get</a>
3542+
3543+ </li>
3544+ <li class="index-item method">
3545+ <a href="#method_has_stored_result">has_stored_result</a>
3546+
3547+ </li>
3548+ <li class="index-item method">
3549+ <a href="#method_is_account_login_result">is_account_login_result</a>
3550+
3551+ </li>
3552+ <li class="index-item method">
3553+ <a href="#method_retrieve">retrieve</a>
3554+
3555+ </li>
3556+ <li class="index-item method">
3557+ <a href="#method_set">set</a>
3558+
3559+ </li>
3560+ <li class="index-item method">
3561+ <a href="#method_set_art">set_art</a>
3562+
3563+ </li>
3564+ <li class="index-item method">
3565+ <a href="#method_set_category">set_category</a>
3566+
3567+ </li>
3568+ <li class="index-item method">
3569+ <a href="#method_set_dnd_uri">set_dnd_uri</a>
3570+
3571+ </li>
3572+ <li class="index-item method">
3573+ <a href="#method_set_intercept_activation">set_intercept_activation</a>
3574+
3575+ </li>
3576+ <li class="index-item method">
3577+ <a href="#method_set_title">set_title</a>
3578+
3579+ </li>
3580+ <li class="index-item method">
3581+ <a href="#method_set_uri">set_uri</a>
3582+
3583+ </li>
3584+ <li class="index-item method">
3585+ <a href="#method_store">store</a>
3586+
3587+ </li>
3588+ <li class="index-item method">
3589+ <a href="#method_title">title</a>
3590+
3591+ </li>
3592+ <li class="index-item method">
3593+ <a href="#method_uri">uri</a>
3594+
3595+ </li>
3596+ </ul>
3597+ </div>
3598+
3599+
3600+
3601+ </div>
3602+
3603+ <div id="methods" class="api-class-tabpanel">
3604+ <h2 class="off-left">Methods</h2>
3605+
3606+<div id="method_art" class="method item">
3607+ <h3 class="name"><code>art</code></h3>
3608+
3609+ <span class="paren">()</span>
3610+
3611+ <span class="returns-inline">
3612+ <span class="type">String</span>
3613+ </span>
3614+
3615+
3616+
3617+
3618+
3619+
3620+
3621+ <div class="meta">
3622+ <p>
3623+ Defined in
3624+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l125"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:125</code></a>
3625+ </p>
3626+
3627+
3628+
3629+ </div>
3630+
3631+ <div class="description">
3632+ <p>Get the &quot;art&quot; property of this Result.
3633+This method returns an empty string if this attribute is not of type String.</p>
3634+
3635+ </div>
3636+
3637+
3638+ <div class="returns">
3639+ <h4>Returns:</h4>
3640+
3641+ <div class="returns-description">
3642+ <span class="type">String</span>:
3643+ <p>The value of &quot;art&quot; or the empty string.</p>
3644+
3645+ </div>
3646+ </div>
3647+
3648+
3649+</div>
3650+<div id="method_category" class="method item">
3651+ <h3 class="name"><code>category</code></h3>
3652+
3653+ <span class="paren">()</span>
3654+
3655+ <span class="returns-inline">
3656+ <span class="type"><a href="../classes/Category.html" class="crosslink">Category</a></span>
3657+ </span>
3658+
3659+
3660+
3661+
3662+
3663+
3664+
3665+ <div class="meta">
3666+ <p>
3667+ Defined in
3668+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l20"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:20</code></a>
3669+ </p>
3670+
3671+
3672+
3673+ </div>
3674+
3675+ <div class="description">
3676+ <p>Get the category instance this result belongs to.</p>
3677+
3678+ </div>
3679+
3680+
3681+ <div class="returns">
3682+ <h4>Returns:</h4>
3683+
3684+ <div class="returns-description">
3685+ <span class="type"><a href="../classes/Category.html" class="crosslink">Category</a></span>:
3686+ <p>The category instance.</p>
3687+
3688+ </div>
3689+ </div>
3690+
3691+
3692+</div>
3693+<div id="method_contains" class="method item">
3694+ <h3 class="name"><code>contains</code></h3>
3695+
3696+ <div class="args">
3697+ <span class="paren">(</span><ul class="args-list inline commas">
3698+ <li class="arg">
3699+ <code>key</code>
3700+ </li>
3701+ </ul><span class="paren">)</span>
3702+ </div>
3703+
3704+ <span class="returns-inline">
3705+ <span class="type">Boolean</span>
3706+ </span>
3707+
3708+
3709+
3710+
3711+
3712+
3713+
3714+ <div class="meta">
3715+ <p>
3716+ Defined in
3717+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l141"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:141</code></a>
3718+ </p>
3719+
3720+
3721+
3722+ </div>
3723+
3724+ <div class="description">
3725+ <p>Check if this Result has an attribute.</p>
3726+
3727+ </div>
3728+
3729+ <div class="params">
3730+ <h4>Parameters:</h4>
3731+
3732+ <ul class="params-list">
3733+ <li class="param">
3734+ <code class="param-name">key</code>
3735+ <span class="type">Object</span>
3736+
3737+
3738+ <div class="param-description">
3739+ <p>The attribute name.</p>
3740+
3741+ </div>
3742+
3743+ </li>
3744+ </ul>
3745+ </div>
3746+
3747+ <div class="returns">
3748+ <h4>Returns:</h4>
3749+
3750+ <div class="returns-description">
3751+ <span class="type">Boolean</span>:
3752+ <p>True if the attribute is set.</p>
3753+
3754+ </div>
3755+ </div>
3756+
3757+
3758+</div>
3759+<div id="method_direct_activation" class="method item">
3760+ <h3 class="name"><code>direct_activation</code></h3>
3761+
3762+ <span class="paren">()</span>
3763+
3764+ <span class="returns-inline">
3765+ <span class="type">Boolean</span>
3766+ </span>
3767+
3768+
3769+
3770+
3771+
3772+
3773+
3774+ <div class="meta">
3775+ <p>
3776+ Defined in
3777+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l101"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:101</code></a>
3778+ </p>
3779+
3780+
3781+
3782+ </div>
3783+
3784+ <div class="description">
3785+ <p>Check if this result should be activated directly by the shell
3786+because the scope doesn't handle activation of this result.</p>
3787+
3788+ </div>
3789+
3790+
3791+ <div class="returns">
3792+ <h4>Returns:</h4>
3793+
3794+ <div class="returns-description">
3795+ <span class="type">Boolean</span>:
3796+ <p>True if this result needs to be activated directly.</p>
3797+
3798+ </div>
3799+ </div>
3800+
3801+
3802+</div>
3803+<div id="method_dnd_uri" class="method item">
3804+ <h3 class="name"><code>dnd_uri</code></h3>
3805+
3806+ <span class="paren">()</span>
3807+
3808+ <span class="returns-inline">
3809+ <span class="type">String</span>
3810+ </span>
3811+
3812+
3813+
3814+
3815+
3816+
3817+
3818+ <div class="meta">
3819+ <p>
3820+ Defined in
3821+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l133"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:133</code></a>
3822+ </p>
3823+
3824+
3825+
3826+ </div>
3827+
3828+ <div class="description">
3829+ <p>Get the &quot;dnd_uri&quot; property of this Result.
3830+This method returns an empty string if this attribute is not of type String.</p>
3831+
3832+ </div>
3833+
3834+
3835+ <div class="returns">
3836+ <h4>Returns:</h4>
3837+
3838+ <div class="returns-description">
3839+ <span class="type">String</span>:
3840+ <p>The value of &quot;dnd_uri&quot; or the empty string.</p>
3841+
3842+ </div>
3843+ </div>
3844+
3845+
3846+</div>
3847+<div id="method_get" class="method item">
3848+ <h3 class="name"><code>get</code></h3>
3849+
3850+ <div class="args">
3851+ <span class="paren">(</span><ul class="args-list inline commas">
3852+ <li class="arg">
3853+ <code>key</code>
3854+ </li>
3855+ </ul><span class="paren">)</span>
3856+ </div>
3857+
3858+ <span class="returns-inline">
3859+ <span class="type"></span>
3860+ </span>
3861+
3862+
3863+
3864+
3865+
3866+
3867+
3868+ <div class="meta">
3869+ <p>
3870+ Defined in
3871+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l156"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:156</code></a>
3872+ </p>
3873+
3874+
3875+
3876+ </div>
3877+
3878+ <div class="description">
3879+ <p>Gets the value of a custom metadata attribute.</p>
3880+
3881+ </div>
3882+
3883+ <div class="params">
3884+ <h4>Parameters:</h4>
3885+
3886+ <ul class="params-list">
3887+ <li class="param">
3888+ <code class="param-name">key</code>
3889+ <span class="type">String</span>
3890+
3891+
3892+ <div class="param-description">
3893+ <p>The name of the attribute.</p>
3894+
3895+ </div>
3896+
3897+ </li>
3898+ </ul>
3899+ </div>
3900+
3901+ <div class="returns">
3902+ <h4>Returns:</h4>
3903+
3904+ <div class="returns-description">
3905+ <p>Attribute value or null</p>
3906+
3907+ </div>
3908+ </div>
3909+
3910+
3911+</div>
3912+<div id="method_has_stored_result" class="method item">
3913+ <h3 class="name"><code>has_stored_result</code></h3>
3914+
3915+ <span class="paren">()</span>
3916+
3917+ <span class="returns-inline">
3918+ <span class="type">Boolean</span>
3919+ </span>
3920+
3921+
3922+
3923+
3924+
3925+
3926+
3927+ <div class="meta">
3928+ <p>
3929+ Defined in
3930+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l41"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:41</code></a>
3931+ </p>
3932+
3933+
3934+
3935+ </div>
3936+
3937+ <div class="description">
3938+ <p>Check if this Result instance has a stored result.</p>
3939+
3940+ </div>
3941+
3942+
3943+ <div class="returns">
3944+ <h4>Returns:</h4>
3945+
3946+ <div class="returns-description">
3947+ <span class="type">Boolean</span>:
3948+ <p>True if there is a stored result</p>
3949+
3950+ </div>
3951+ </div>
3952+
3953+
3954+</div>
3955+<div id="method_is_account_login_result" class="method item">
3956+ <h3 class="name"><code>is_account_login_result</code></h3>
3957+
3958+ <span class="paren">()</span>
3959+
3960+ <span class="returns-inline">
3961+ <span class="type">Boolean</span>
3962+ </span>
3963+
3964+
3965+
3966+
3967+
3968+
3969+
3970+ <div class="meta">
3971+ <p>
3972+ Defined in
3973+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l149"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:149</code></a>
3974+ </p>
3975+
3976+
3977+
3978+ </div>
3979+
3980+ <div class="description">
3981+ <p>Check if this result is an online account login result.</p>
3982+
3983+ </div>
3984+
3985+
3986+ <div class="returns">
3987+ <h4>Returns:</h4>
3988+
3989+ <div class="returns-description">
3990+ <span class="type">Boolean</span>:
3991+ <p>True if this result is an online account login result.</p>
3992+
3993+ </div>
3994+ </div>
3995+
3996+
3997+</div>
3998+<div id="method_retrieve" class="method item">
3999+ <h3 class="name"><code>retrieve</code></h3>
4000+
4001+ <span class="paren">()</span>
4002+
4003+ <span class="returns-inline">
4004+ <span class="type"><a href="../classes/Result.html" class="crosslink">Result</a></span>
4005+ </span>
4006+
4007+
4008+
4009+
4010+
4011+
4012+
4013+ <div class="meta">
4014+ <p>
4015+ Defined in
4016+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l48"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:48</code></a>
4017+ </p>
4018+
4019+
4020+
4021+ </div>
4022+
4023+ <div class="description">
4024+ <p>Get a stored result.</p>
4025+
4026+ </div>
4027+
4028+
4029+ <div class="returns">
4030+ <h4>Returns:</h4>
4031+
4032+ <div class="returns-description">
4033+ <span class="type"><a href="../classes/Result.html" class="crosslink">Result</a></span>:
4034+ <p>stored result</p>
4035+
4036+ </div>
4037+ </div>
4038+
4039+
4040+</div>
4041+<div id="method_set" class="method item">
4042+ <h3 class="name"><code>set</code></h3>
4043+
4044+ <div class="args">
4045+ <span class="paren">(</span><ul class="args-list inline commas">
4046+ <li class="arg">
4047+ <code>key</code>
4048+ </li>
4049+ <li class="arg">
4050+ <code>value</code>
4051+ </li>
4052+ </ul><span class="paren">)</span>
4053+ </div>
4054+
4055+
4056+
4057+
4058+
4059+
4060+
4061+
4062+ <div class="meta">
4063+ <p>
4064+ Defined in
4065+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l164"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:164</code></a>
4066+ </p>
4067+
4068+
4069+
4070+ </div>
4071+
4072+ <div class="description">
4073+ <p>Sets the value of a custom metadata attribute.</p>
4074+
4075+ </div>
4076+
4077+ <div class="params">
4078+ <h4>Parameters:</h4>
4079+
4080+ <ul class="params-list">
4081+ <li class="param">
4082+ <code class="param-name">key</code>
4083+ <span class="type">String</span>
4084+
4085+
4086+ <div class="param-description">
4087+ <p>The name of the attribute.</p>
4088+
4089+ </div>
4090+
4091+ </li>
4092+ <li class="param">
4093+ <code class="param-name">value</code>
4094+ <span class="type">Object</span>
4095+
4096+
4097+ <div class="param-description">
4098+ <p>The value of the attribute.</p>
4099+
4100+ </div>
4101+
4102+ </li>
4103+ </ul>
4104+ </div>
4105+
4106+
4107+
4108+</div>
4109+<div id="method_set_art" class="method item">
4110+ <h3 class="name"><code>set_art</code></h3>
4111+
4112+ <div class="args">
4113+ <span class="paren">(</span><ul class="args-list inline commas">
4114+ <li class="arg">
4115+ <code>art</code>
4116+ </li>
4117+ </ul><span class="paren">)</span>
4118+ </div>
4119+
4120+
4121+
4122+
4123+
4124+
4125+
4126+
4127+ <div class="meta">
4128+ <p>
4129+ Defined in
4130+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l69"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:69</code></a>
4131+ </p>
4132+
4133+
4134+
4135+ </div>
4136+
4137+ <div class="description">
4138+ <p>Set the &quot;art&quot; attribute of this result.</p>
4139+
4140+ </div>
4141+
4142+ <div class="params">
4143+ <h4>Parameters:</h4>
4144+
4145+ <ul class="params-list">
4146+ <li class="param">
4147+ <code class="param-name">art</code>
4148+ <span class="type">String</span>
4149+
4150+
4151+ <div class="param-description">
4152+
4153+ </div>
4154+
4155+ </li>
4156+ </ul>
4157+ </div>
4158+
4159+
4160+
4161+</div>
4162+<div id="method_set_category" class="method item">
4163+ <h3 class="name"><code>set_category</code></h3>
4164+
4165+ <div class="args">
4166+ <span class="paren">(</span><ul class="args-list inline commas">
4167+ <li class="arg">
4168+ <code>category</code>
4169+ </li>
4170+ </ul><span class="paren">)</span>
4171+ </div>
4172+
4173+
4174+
4175+
4176+
4177+
4178+
4179+
4180+ <div class="meta">
4181+ <p>
4182+ Defined in
4183+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l13"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:13</code></a>
4184+ </p>
4185+
4186+
4187+
4188+ </div>
4189+
4190+ <div class="description">
4191+ <p>Updates the category of this result.</p>
4192+
4193+ </div>
4194+
4195+ <div class="params">
4196+ <h4>Parameters:</h4>
4197+
4198+ <ul class="params-list">
4199+ <li class="param">
4200+ <code class="param-name">category</code>
4201+ <span class="type">Object</span>
4202+
4203+
4204+ <div class="param-description">
4205+ <p>The category for the result.</p>
4206+
4207+ </div>
4208+
4209+ </li>
4210+ </ul>
4211+ </div>
4212+
4213+
4214+
4215+</div>
4216+<div id="method_set_dnd_uri" class="method item">
4217+ <h3 class="name"><code>set_dnd_uri</code></h3>
4218+
4219+ <div class="args">
4220+ <span class="paren">(</span><ul class="args-list inline commas">
4221+ <li class="arg">
4222+ <code>dnd_uri</code>
4223+ </li>
4224+ </ul><span class="paren">)</span>
4225+ </div>
4226+
4227+
4228+
4229+
4230+
4231+
4232+
4233+
4234+ <div class="meta">
4235+ <p>
4236+ Defined in
4237+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l76"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:76</code></a>
4238+ </p>
4239+
4240+
4241+
4242+ </div>
4243+
4244+ <div class="description">
4245+ <p>Set the &quot;dnd_uri&quot; attribute of this result.</p>
4246+
4247+ </div>
4248+
4249+ <div class="params">
4250+ <h4>Parameters:</h4>
4251+
4252+ <ul class="params-list">
4253+ <li class="param">
4254+ <code class="param-name">dnd_uri</code>
4255+ <span class="type">String</span>
4256+
4257+
4258+ <div class="param-description">
4259+
4260+ </div>
4261+
4262+ </li>
4263+ </ul>
4264+ </div>
4265+
4266+
4267+
4268+</div>
4269+<div id="method_set_intercept_activation" class="method item">
4270+ <h3 class="name"><code>set_intercept_activation</code></h3>
4271+
4272+ <span class="paren">()</span>
4273+
4274+
4275+
4276+
4277+
4278+
4279+
4280+
4281+ <div class="meta">
4282+ <p>
4283+ Defined in
4284+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l83"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:83</code></a>
4285+ </p>
4286+
4287+
4288+
4289+ </div>
4290+
4291+ <div class="description">
4292+ <p>Indicates to the receiver that this scope should intercept
4293+activation requests for this result.
4294+By default, a scope receives preview requests for the results it
4295+creates, but does not receive activation requests (they are handled
4296+directly by the shell). Intercepting activation implies intercepting
4297+preview requests as well; this is important for scopes that forward
4298+results from other scopes and call set_intercept_activation() on these scopes.
4299+A scope that sets intercept activation flag for a result should re-implement
4300+Scope.activate() and provide an implementation of ActivationQuery that
4301+handles the actual activation. If not called, the result will be activated
4302+directly by the Unity shell whithout involving the scope, assuming an appropriate
4303+URI schema handler is present on the system.</p>
4304+
4305+ </div>
4306+
4307+
4308+
4309+
4310+</div>
4311+<div id="method_set_title" class="method item">
4312+ <h3 class="name"><code>set_title</code></h3>
4313+
4314+ <div class="args">
4315+ <span class="paren">(</span><ul class="args-list inline commas">
4316+ <li class="arg">
4317+ <code>title</code>
4318+ </li>
4319+ </ul><span class="paren">)</span>
4320+ </div>
4321+
4322+
4323+
4324+
4325+
4326+
4327+
4328+
4329+ <div class="meta">
4330+ <p>
4331+ Defined in
4332+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l62"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:62</code></a>
4333+ </p>
4334+
4335+
4336+
4337+ </div>
4338+
4339+ <div class="description">
4340+ <p>Set the &quot;title&quot; attribute of this result.</p>
4341+
4342+ </div>
4343+
4344+ <div class="params">
4345+ <h4>Parameters:</h4>
4346+
4347+ <ul class="params-list">
4348+ <li class="param">
4349+ <code class="param-name">title</code>
4350+ <span class="type">String</span>
4351+
4352+
4353+ <div class="param-description">
4354+
4355+ </div>
4356+
4357+ </li>
4358+ </ul>
4359+ </div>
4360+
4361+
4362+
4363+</div>
4364+<div id="method_set_uri" class="method item">
4365+ <h3 class="name"><code>set_uri</code></h3>
4366+
4367+ <div class="args">
4368+ <span class="paren">(</span><ul class="args-list inline commas">
4369+ <li class="arg">
4370+ <code>uri</code>
4371+ </li>
4372+ </ul><span class="paren">)</span>
4373+ </div>
4374+
4375+
4376+
4377+
4378+
4379+
4380+
4381+
4382+ <div class="meta">
4383+ <p>
4384+ Defined in
4385+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l55"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:55</code></a>
4386+ </p>
4387+
4388+
4389+
4390+ </div>
4391+
4392+ <div class="description">
4393+ <p>Set the &quot;uri&quot; attribute of this result.</p>
4394+
4395+ </div>
4396+
4397+ <div class="params">
4398+ <h4>Parameters:</h4>
4399+
4400+ <ul class="params-list">
4401+ <li class="param">
4402+ <code class="param-name">uri</code>
4403+ <span class="type">String</span>
4404+
4405+
4406+ <div class="param-description">
4407+
4408+ </div>
4409+
4410+ </li>
4411+ </ul>
4412+ </div>
4413+
4414+
4415+
4416+</div>
4417+<div id="method_store" class="method item">
4418+ <h3 class="name"><code>store</code></h3>
4419+
4420+ <div class="args">
4421+ <span class="paren">(</span><ul class="args-list inline commas">
4422+ <li class="arg">
4423+ <code>The</code>
4424+ </li>
4425+ <li class="arg">
4426+ <code>intercept_activation</code>
4427+ </li>
4428+ </ul><span class="paren">)</span>
4429+ </div>
4430+
4431+
4432+
4433+
4434+
4435+
4436+
4437+
4438+ <div class="meta">
4439+ <p>
4440+ Defined in
4441+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l27"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:27</code></a>
4442+ </p>
4443+
4444+
4445+
4446+ </div>
4447+
4448+ <div class="description">
4449+ <p>This method is meant to be used by aggregator scopes which want to modify
4450+results they receive, but want to keep a copy of the original result so
4451+that they can be correctly handled by the original scopes
4452+who created them when it comes to activation or previews.
4453+Scopes middleware will automatically pass the correct inner stored result
4454+to the activation or preview request handler</p>
4455+
4456+ </div>
4457+
4458+ <div class="params">
4459+ <h4>Parameters:</h4>
4460+
4461+ <ul class="params-list">
4462+ <li class="param">
4463+ <code class="param-name">The</code>
4464+ <span class="type"><a href="../classes/Result.html" class="crosslink">Result</a></span>
4465+
4466+
4467+ <div class="param-description">
4468+ <p>original result to store within this result.</p>
4469+
4470+ </div>
4471+
4472+ </li>
4473+ <li class="param">
4474+ <code class="param-name">intercept_activation</code>
4475+ <span class="type">Boolean</span>
4476+
4477+
4478+ <div class="param-description">
4479+ <p>True if this scope should receive activation and preview requests.</p>
4480+
4481+ </div>
4482+
4483+ </li>
4484+ </ul>
4485+ </div>
4486+
4487+
4488+
4489+</div>
4490+<div id="method_title" class="method item">
4491+ <h3 class="name"><code>title</code></h3>
4492+
4493+ <span class="paren">()</span>
4494+
4495+ <span class="returns-inline">
4496+ <span class="type">String</span>
4497+ </span>
4498+
4499+
4500+
4501+
4502+
4503+
4504+
4505+ <div class="meta">
4506+ <p>
4507+ Defined in
4508+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l117"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:117</code></a>
4509+ </p>
4510+
4511+
4512+
4513+ </div>
4514+
4515+ <div class="description">
4516+ <p>Get the &quot;title&quot; property of this Result.
4517+This method returns an empty string if this attribute is not of type String.</p>
4518+
4519+ </div>
4520+
4521+
4522+ <div class="returns">
4523+ <h4>Returns:</h4>
4524+
4525+ <div class="returns-description">
4526+ <span class="type">String</span>:
4527+ <p>The value of &quot;title&quot; or the empty string.</p>
4528+
4529+ </div>
4530+ </div>
4531+
4532+
4533+</div>
4534+<div id="method_uri" class="method item">
4535+ <h3 class="name"><code>uri</code></h3>
4536+
4537+ <span class="paren">()</span>
4538+
4539+ <span class="returns-inline">
4540+ <span class="type">String</span>
4541+ </span>
4542+
4543+
4544+
4545+
4546+
4547+
4548+
4549+ <div class="meta">
4550+ <p>
4551+ Defined in
4552+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_categorised-result.js.html#l109"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;categorised-result.js:109</code></a>
4553+ </p>
4554+
4555+
4556+
4557+ </div>
4558+
4559+ <div class="description">
4560+ <p>Get the &quot;uri&quot; property of this Result.
4561+This method returns an empty string if this attribute is not of type String.</p>
4562+
4563+ </div>
4564+
4565+
4566+ <div class="returns">
4567+ <h4>Returns:</h4>
4568+
4569+ <div class="returns-description">
4570+ <span class="type">String</span>:
4571+ <p>The value of &quot;uri&quot; or the empty string.</p>
4572+
4573+ </div>
4574+ </div>
4575+
4576+
4577+</div>
4578+ </div>
4579+
4580+
4581+
4582+ </div>
4583+</div>
4584+ </div>
4585+ </div>
4586+ </div>
4587+ </div>
4588+ </div>
4589+</div>
4590+<script src="../assets/vendor/prettify/prettify-min.js"></script>
4591+<script>prettyPrint();</script>
4592+<script src="../assets/js/yui-prettify.js"></script>
4593+<script src="../assets/../api.js"></script>
4594+<script src="../assets/js/api-filter.js"></script>
4595+<script src="../assets/js/api-list.js"></script>
4596+<script src="../assets/js/api-search.js"></script>
4597+<script src="../assets/js/apidocs.js"></script>
4598+</body>
4599+</html>
4600
4601=== added file 'doc/docbuild/classes/Category.html'
4602--- doc/docbuild/classes/Category.html 1970-01-01 00:00:00 +0000
4603+++ doc/docbuild/classes/Category.html 2015-10-23 18:57:47 +0000
4604@@ -0,0 +1,343 @@
4605+<!DOCTYPE html>
4606+<html lang="en">
4607+<head>
4608+ <meta charset="utf-8">
4609+ <title>Category - Javascript Scopes API</title>
4610+ <link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/build/cssgrids/cssgrids-min.css">
4611+ <link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
4612+ <link rel="stylesheet" href="../assets/css/main.css" id="site_styles">
4613+ <link rel="icon" href="../assets/favicon.ico">
4614+ <script src="http://yui.yahooapis.com/combo?3.9.1/build/yui/yui-min.js"></script>
4615+</head>
4616+<body class="yui3-skin-sam">
4617+
4618+<div id="doc">
4619+ <div id="hd" class="yui3-g header">
4620+ <div class="yui3-u-3-4">
4621+ <h1><img src="../assets/css/logo.png" title="Javascript Scopes API" width="117" height="52"></h1>
4622+ </div>
4623+ <div class="yui3-u-1-4 version">
4624+ <em>API Docs for: 0.1</em>
4625+ </div>
4626+ </div>
4627+ <div id="bd" class="yui3-g">
4628+
4629+ <div class="yui3-u-1-4">
4630+ <div id="docs-sidebar" class="sidebar apidocs">
4631+ <div id="api-list">
4632+ <h2 class="off-left">APIs</h2>
4633+ <div id="api-tabview" class="tabview">
4634+ <ul class="tabs">
4635+ <li><a href="#api-classes">Classes</a></li>
4636+ <li><a href="#api-modules">Modules</a></li>
4637+ </ul>
4638+
4639+ <div id="api-tabview-filter">
4640+ <input type="search" id="api-filter" placeholder="Type to filter APIs">
4641+ </div>
4642+
4643+ <div id="api-tabview-panel">
4644+ <ul id="api-classes" class="apis classes">
4645+ <li><a href="../classes/ActionMetadata.html">ActionMetadata</a></li>
4646+ <li><a href="../classes/ActivationQuery.html">ActivationQuery</a></li>
4647+ <li><a href="../classes/CategorisedResult.html">CategorisedResult</a></li>
4648+ <li><a href="../classes/Category.html">Category</a></li>
4649+ <li><a href="../classes/CategoryRenderer.html">CategoryRenderer</a></li>
4650+ <li><a href="../classes/ColumnLayout.html">ColumnLayout</a></li>
4651+ <li><a href="../classes/PreviewQuery.html">PreviewQuery</a></li>
4652+ <li><a href="../classes/PreviewReply.html">PreviewReply</a></li>
4653+ <li><a href="../classes/PreviewWidget.html">PreviewWidget</a></li>
4654+ <li><a href="../classes/Result.html">Result</a></li>
4655+ <li><a href="../classes/Scope.html">Scope</a></li>
4656+ <li><a href="../classes/SearchMetaData.html">SearchMetaData</a></li>
4657+ <li><a href="../classes/SearchQuery.html">SearchQuery</a></li>
4658+ <li><a href="../classes/SearchReply.html">SearchReply</a></li>
4659+ </ul>
4660+
4661+ <ul id="api-modules" class="apis modules">
4662+ <li><a href="../modules/ScopeJS.html">ScopeJS</a></li>
4663+ </ul>
4664+ </div>
4665+ </div>
4666+ </div>
4667+ </div>
4668+ </div>
4669+ <div class="yui3-u-3-4">
4670+ <div id="api-options">
4671+ Show:
4672+ <label for="api-show-inherited">
4673+ <input type="checkbox" id="api-show-inherited" checked>
4674+ Inherited
4675+ </label>
4676+
4677+ <label for="api-show-protected">
4678+ <input type="checkbox" id="api-show-protected">
4679+ Protected
4680+ </label>
4681+
4682+ <label for="api-show-private">
4683+ <input type="checkbox" id="api-show-private">
4684+ Private
4685+ </label>
4686+ <label for="api-show-deprecated">
4687+ <input type="checkbox" id="api-show-deprecated">
4688+ Deprecated
4689+ </label>
4690+
4691+ </div>
4692+
4693+ <div class="apidocs">
4694+ <div id="docs-main">
4695+ <div class="content">
4696+<h1>Category Class</h1>
4697+<div class="box meta">
4698+
4699+
4700+ <div class="foundat">
4701+ Defined in: <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_category.js.html#l1"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;category.js:1</code></a>
4702+ </div>
4703+
4704+ Module: <a href="../modules/ScopeJS.html">ScopeJS</a>
4705+
4706+</div>
4707+
4708+
4709+<div class="box intro">
4710+ <p>A set of related results returned by a scope
4711+and displayed within a single pane in the Unity dash.
4712+To create a Category, use SearchReply.register_category.</p>
4713+
4714+</div>
4715+
4716+
4717+<div id="classdocs" class="tabview">
4718+ <ul class="api-class-tabs">
4719+ <li class="api-class-tab index"><a href="#index">Index</a></li>
4720+
4721+ <li class="api-class-tab methods"><a href="#methods">Methods</a></li>
4722+ </ul>
4723+
4724+ <div>
4725+ <div id="index" class="api-class-tabpanel index">
4726+ <h2 class="off-left">Item Index</h2>
4727+
4728+ <div class="index-section methods">
4729+ <h3>Methods</h3>
4730+
4731+ <ul class="index-list methods">
4732+ <li class="index-item method">
4733+ <a href="#method_icon">icon</a>
4734+
4735+ </li>
4736+ <li class="index-item method">
4737+ <a href="#method_id">id</a>
4738+
4739+ </li>
4740+ <li class="index-item method">
4741+ <a href="#method_query">query</a>
4742+
4743+ </li>
4744+ <li class="index-item method">
4745+ <a href="#method_title">title</a>
4746+
4747+ </li>
4748+ </ul>
4749+ </div>
4750+
4751+
4752+
4753+ </div>
4754+
4755+ <div id="methods" class="api-class-tabpanel">
4756+ <h2 class="off-left">Methods</h2>
4757+
4758+<div id="method_icon" class="method item">
4759+ <h3 class="name"><code>icon</code></h3>
4760+
4761+ <span class="paren">()</span>
4762+
4763+ <span class="returns-inline">
4764+ <span class="type"></span>
4765+ </span>
4766+
4767+
4768+
4769+
4770+
4771+
4772+
4773+ <div class="meta">
4774+ <p>
4775+ Defined in
4776+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_category.js.html#l28"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;category.js:28</code></a>
4777+ </p>
4778+
4779+
4780+
4781+ </div>
4782+
4783+ <div class="description">
4784+ <p>Get icon of this Category</p>
4785+
4786+ </div>
4787+
4788+
4789+ <div class="returns">
4790+ <h4>Returns:</h4>
4791+
4792+ <div class="returns-description">
4793+ <p>String The category icon.</p>
4794+
4795+ </div>
4796+ </div>
4797+
4798+
4799+</div>
4800+<div id="method_id" class="method item">
4801+ <h3 class="name"><code>id</code></h3>
4802+
4803+ <span class="paren">()</span>
4804+
4805+ <span class="returns-inline">
4806+ <span class="type"></span>
4807+ </span>
4808+
4809+
4810+
4811+
4812+
4813+
4814+
4815+ <div class="meta">
4816+ <p>
4817+ Defined in
4818+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_category.js.html#l14"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;category.js:14</code></a>
4819+ </p>
4820+
4821+
4822+
4823+ </div>
4824+
4825+ <div class="description">
4826+ <p>Get identifier of this Category</p>
4827+
4828+ </div>
4829+
4830+
4831+ <div class="returns">
4832+ <h4>Returns:</h4>
4833+
4834+ <div class="returns-description">
4835+ <p>String The category identifier.</p>
4836+
4837+ </div>
4838+ </div>
4839+
4840+
4841+</div>
4842+<div id="method_query" class="method item">
4843+ <h3 class="name"><code>query</code></h3>
4844+
4845+ <span class="paren">()</span>
4846+
4847+ <span class="returns-inline">
4848+ <span class="type"></span>
4849+ </span>
4850+
4851+
4852+
4853+
4854+
4855+
4856+
4857+ <div class="meta">
4858+ <p>
4859+ Defined in
4860+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_category.js.html#l35"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;category.js:35</code></a>
4861+ </p>
4862+
4863+
4864+
4865+ </div>
4866+
4867+ <div class="description">
4868+ <p>Query to perform when this category is expanded</p>
4869+
4870+ </div>
4871+
4872+
4873+ <div class="returns">
4874+ <h4>Returns:</h4>
4875+
4876+ <div class="returns-description">
4877+ <p>CannedQuery The expansion query or null.</p>
4878+
4879+ </div>
4880+ </div>
4881+
4882+
4883+</div>
4884+<div id="method_title" class="method item">
4885+ <h3 class="name"><code>title</code></h3>
4886+
4887+ <span class="paren">()</span>
4888+
4889+ <span class="returns-inline">
4890+ <span class="type"></span>
4891+ </span>
4892+
4893+
4894+
4895+
4896+
4897+
4898+
4899+ <div class="meta">
4900+ <p>
4901+ Defined in
4902+ <a href="../files/_home_alex_dev_work_webapps_branches_scopes_doc_src_bindings_src_category.js.html#l21"><code>&#x2F;home&#x2F;alex&#x2F;dev&#x2F;work&#x2F;webapps&#x2F;branches&#x2F;scopes&#x2F;doc&#x2F;src&#x2F;bindings&#x2F;src&#x2F;category.js:21</code></a>
4903+ </p>
4904+
4905+
4906+
4907+ </div>
4908+
4909+ <div class="description">
4910+ <p>Get title of this Category</p>
4911+
4912+ </div>
4913+
4914+
4915+ <div class="returns">
4916+ <h4>Returns:</h4>
4917+
4918+ <div class="returns-description">
4919+ <p>String The category title.</p>
4920+
4921+ </div>
4922+ </div>
4923+
4924+
4925+</div>
4926+ </div>
4927+
4928+
4929+
4930+ </div>
4931+</div>
4932+ </div>
4933+ </div>
4934+ </div>
4935+ </div>
4936+ </div>
4937+</div>
4938+<script src="../assets/vendor/prettify/prettify-min.js"></script>
4939+<script>prettyPrint();</script>
4940+<script src="../assets/js/yui-prettify.js"></script>
4941+<script src="../assets/../api.js"></script>
4942+<script src="../assets/js/api-filter.js"></script>
4943+<script src="../assets/js/api-list.js"></script>
4944+<script src="../assets/js/api-search.js"></script>
4945+<script src="../assets/js/apidocs.js"></script>
4946+</body>
4947+</html>
4948
4949=== added file 'doc/docbuild/classes/CategoryRenderer.html'
4950--- doc/docbuild/classes/CategoryRenderer.html 1970-01-01 00:00:00 +0000
4951+++ doc/docbuild/classes/CategoryRenderer.html 2015-10-23 18:57:47 +0000
4952@@ -0,0 +1,203 @@
4953+<!DOCTYPE html>
4954+<html lang="en">
4955+<head>
4956+ <meta charset="utf-8">
4957+ <title>CategoryRenderer - Javascript Scopes API</title>
4958+ <link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/build/cssgrids/cssgrids-min.css">
4959+ <link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
4960+ <link rel="stylesheet" href="../assets/css/main.css" id="site_styles">
4961+ <link rel="icon" href="../assets/favicon.ico">
4962+ <script src="http://yui.yahooapis.com/combo?3.9.1/build/yui/yui-min.js"></script>
4963+</head>
4964+<body class="yui3-skin-sam">
4965+
4966+<div id="doc">
4967+ <div id="hd" class="yui3-g header">
4968+ <div class="yui3-u-3-4">
4969+ <h1><img src="../assets/css/logo.png" title="Javascript Scopes API" width="117" height="52"></h1>
4970+ </div>
4971+ <div class="yui3-u-1-4 version">
4972+ <em>API Docs for: 0.1</em>
4973+ </div>
4974+ </div>
4975+ <div id="bd" class="yui3-g">
4976+
4977+ <div class="yui3-u-1-4">
4978+ <div id="docs-sidebar" class="sidebar apidocs">
4979+ <div id="api-list">
4980+ <h2 class="off-left">APIs</h2>
4981+ <div id="api-tabview" class="tabview">
4982+ <ul class="tabs">
4983+ <li><a href="#api-classes">Classes</a></li>
4984+ <li><a href="#api-modules">Modules</a></li>
4985+ </ul>
4986+
4987+ <div id="api-tabview-filter">
4988+ <input type="search" id="api-filter" placeholder="Type to filter APIs">
4989+ </div>
4990+
4991+ <div id="api-tabview-panel">
4992+ <ul id="api-classes" class="apis classes">
4993+ <li><a href="../classes/ActionMetadata.html">ActionMetadata</a></li>
4994+ <li><a href="../classes/ActivationQuery.html">ActivationQuery</a></li>
4995+ <li><a href="../classes/CategorisedResult.html">CategorisedResult</a></li>
4996+ <li><a href="../classes/Category.html">Category</a></li>
4997+ <li><a href="../classes/CategoryRenderer.html">CategoryRenderer</a></li>
4998+ <li><a href="../classes/ColumnLayout.html">ColumnLayout</a></li>
4999+ <li><a href="../classes/PreviewQuery.html">PreviewQuery</a></li>
5000+ <li><a href="../classes/PreviewReply.html">PreviewReply</a></li>
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: