| 
									
										
										
										
											2016-09-09 12:47:20 +01:00
										 |  |  | {% import "lib/githubLinks.html" as github -%} | 
					
						
							|  |  |  | {% import "lib/paramList.html" as params -%} | 
					
						
							| 
									
										
										
										
											2015-09-15 23:21:55 -07:00
										 |  |  | <!DOCTYPE html> | 
					
						
							|  |  |  | <html> | 
					
						
							|  |  |  | <head> | 
					
						
							|  |  |  |   <title></title> | 
					
						
							|  |  |  |   <style> | 
					
						
							| 
									
										
										
										
											2015-11-13 16:34:57 +00:00
										 |  |  |     body { | 
					
						
							|  |  |  |       max-width: 1000px; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-09-15 23:21:55 -07:00
										 |  |  |     h2 { | 
					
						
							| 
									
										
										
										
											2015-11-13 16:34:57 +00:00
										 |  |  |       margin-top: 20px; | 
					
						
							|  |  |  |       margin-bottom: 0; | 
					
						
							|  |  |  |       border-bottom: solid 1px black; | 
					
						
							| 
									
										
										
										
											2015-09-15 23:21:55 -07:00
										 |  |  |     } | 
					
						
							|  |  |  |     h3 { | 
					
						
							| 
									
										
										
										
											2015-11-13 16:34:57 +00:00
										 |  |  |       margin-top: 10px; | 
					
						
							|  |  |  |       margin-bottom: 0; | 
					
						
							|  |  |  |       padding-left: 20px; | 
					
						
							| 
									
										
										
										
											2015-09-15 23:21:55 -07:00
										 |  |  |     } | 
					
						
							|  |  |  |     h4 { | 
					
						
							| 
									
										
										
										
											2015-11-13 16:34:57 +00:00
										 |  |  |       padding-left: 30px; | 
					
						
							|  |  |  |       margin: 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     .not-documented::after { | 
					
						
							|  |  |  |       content: "(not documented)"; | 
					
						
							|  |  |  |       font-size: small; | 
					
						
							|  |  |  |       font-style: italic; | 
					
						
							|  |  |  |       color: red; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     a { | 
					
						
							|  |  |  |       color: black; | 
					
						
							|  |  |  |       text-decoration: none; | 
					
						
							| 
									
										
										
										
											2015-09-15 23:21:55 -07:00
										 |  |  |     } | 
					
						
							|  |  |  |   </style> | 
					
						
							|  |  |  | </head> | 
					
						
							|  |  |  | <body> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-13 16:34:57 +00:00
										 |  |  | <h1>Module Overview</h1> | 
					
						
							| 
									
										
										
										
											2015-09-15 23:21:55 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | {% for module in doc.modules %} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-13 16:34:57 +00:00
										 |  |  | <h2> | 
					
						
							|  |  |  |   <code>{$ module.id $}{%- if module.public %} (public){% endif %}</code> | 
					
						
							|  |  |  | </h2> | 
					
						
							| 
									
										
										
										
											2015-09-15 23:21:55 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   {% for export in module.exports %} | 
					
						
							| 
									
										
										
										
											2015-11-13 16:34:57 +00:00
										 |  |  |   <h3 {% if export.notYetDocumented %}class="not-documented"{% endif %}> | 
					
						
							| 
									
										
										
										
											2016-09-14 07:50:02 +01:00
										 |  |  |     <a href="{$ github.githubHref(export, versionInfo) $}"> | 
					
						
							| 
									
										
										
										
											2015-11-13 16:34:57 +00:00
										 |  |  |     <code>{$ export.docType $} {$ export.name $}</code> | 
					
						
							|  |  |  |     </a> | 
					
						
							|  |  |  |   </h3> | 
					
						
							|  |  |  |       {%- if export.constructorDoc %} | 
					
						
							|  |  |  |       <h4  {% if export.constructorDoc.notYetDocumented %}class="not-documented"{% endif %}> | 
					
						
							| 
									
										
										
										
											2016-09-14 07:50:02 +01:00
										 |  |  |         <a href="{$ github.githubHref(export.constructorDoc, versionInfo) $}"> | 
					
						
							| 
									
										
										
										
											2016-09-09 12:47:20 +01:00
										 |  |  |         <code>{$ export.constructorDoc.name $}{$ params.paramList(export.constructorDoc.params) $}</code> | 
					
						
							| 
									
										
										
										
											2015-11-13 16:34:57 +00:00
										 |  |  |         </a> | 
					
						
							|  |  |  |       </h4> | 
					
						
							| 
									
										
										
										
											2015-09-15 23:21:55 -07:00
										 |  |  |     {% endif -%} | 
					
						
							|  |  |  |     {%- for member in export.members %} | 
					
						
							| 
									
										
										
										
											2015-11-13 16:34:57 +00:00
										 |  |  |       <h4 {% if member.notYetDocumented %}class="not-documented"{% endif %}> | 
					
						
							| 
									
										
										
										
											2016-09-14 07:50:02 +01:00
										 |  |  |         <a href="{$ github.githubHref(member, versionInfo) $}"> | 
					
						
							| 
									
										
										
										
											2016-09-09 12:47:20 +01:00
										 |  |  |         <code>{$ member.name $}{$ params.paramList(member.params) $}</code> | 
					
						
							| 
									
										
										
										
											2015-11-13 16:34:57 +00:00
										 |  |  |         </a> | 
					
						
							|  |  |  |       </h4> | 
					
						
							| 
									
										
										
										
											2015-09-15 23:21:55 -07:00
										 |  |  |     {% endfor %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   {% endfor %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% endfor %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </body> | 
					
						
							|  |  |  | </html> |