3 <title>Documents
</title>
4 <link rel='stylesheet' href='../scdoc.css' type='text/css'
/>
5 <meta http-equiv='Content-Type' content='text/html; charset=UTF-
8'
/>
6 <script src=
"../docmap.js" type=
"text/javascript"></script>
7 <script src=
"../scdoc.js" type=
"text/javascript"></script>
19 border-bottom:
1px solid #ddd;
29 <p>The document index needs JavaScript.
31 <script type=
"text/javascript">
39 helpRoot
=".."; fixTOC();
40 node
= document
.getElementById("doclist");
42 for(var k
in docmap
) {
43 if(docmap
.hasOwnProperty(k
))
46 docs
= docs
.sort(function(a
,b
) {
47 a
= a
.title
.toUpperCase();
48 b
= b
.title
.toUpperCase();
56 var onChange = function() {
60 check_extensions
= document
.getElementById("check_extensions");
61 check_extensions
.onchange
= onChange
;
62 filter
= document
.getElementById("menu_filter");
63 filter
.onchange
= onChange
;
69 while(node
.hasChildNodes())
70 node
.removeChild(node
.lastChild
);
74 var div
= document
.createElement("p");
76 div
.className
= "jump";
77 div
.innerHTML
= "Jump to: ";
79 for(var i
=0;i
<docs
.length
;i
++) {
81 var x
= v
.title
[0].toUpperCase();
83 if(v
.installed
=="extension" && !check_extensions
.checked
)
86 if(filter
.value
!= "all" && v
.path
.split("/")[0].toLowerCase() != filter
.value
)
89 if(/Undocumented classes/.test(v
.categories
))
94 var a
= document
.createElement("a");
95 a
.setAttribute("href","#section_"+cap
);
98 div
.appendChild(document
.createTextNode(" "));
103 node
.appendChild(div
);
106 for(var i
=0;i
<docs2
.length
;i
++) {
108 var x
= v
.path
.split("/");
109 var c
= v
.title
[0].toUpperCase();
112 var y
= document
.createElement("h2");
113 var a
= document
.createElement("a");
114 a
.className
= "anchor";
115 a
.setAttribute("name","section_"+c
);
116 a
.innerHTML
= cap
= c
;
121 var div
= document
.createElement("div");
122 div
.className
= "result_item";
124 var n
= document
.createElement("a");
125 n
.setAttribute("href","../"+v
.path
+".html");
126 n
.innerHTML
= v
.title
;
128 div
.appendChild(document
.createTextNode(" - "+v
.summary
+" "));
130 n
= document
.createElement("span");
131 n
.className
= "soft";
133 if(v
.installed
=="extension")
135 else if(v
.installed
=="missing")
136 res
+= " - missing!";
137 n
.innerHTML
= res
+"]";
139 node
.appendChild(div
);
142 document
.getElementById("total_count").innerHTML
= count
+ " documents";
146 <ul id=
"menubar"></ul>
148 <body onload=
"did_load()">
149 <div class='contents'
>
151 <div id='label'
>SuperCollider OVERVIEWS
</div>
153 <div id='summary'
>Alphabetical index of all documents
</div>
155 <div id=
"search_checks">
157 <select id=
"menu_filter">
158 <option SELECTED
value=
"all">All documents
</option>
159 <option value=
"classes">Classes only
</option>
160 <option value=
"reference">Reference only
</option>
161 <option value=
"guides">Guides only
</option>
162 <option value=
"tutorials">Tutorials only
</option>
163 <option value=
"overviews">Overviews only
</option>
164 <option value=
"other">Other only
</option>
166 <input type=
"checkbox" id=
"check_extensions" checked=
"true">Include extensions
</input>
168 <div id=
"total_count"></div>
169 <div id='doclist'
></div>