blob: b1b975975660c80539e064517e8b622b9ea5092b [file] [log] [blame]
## -*- coding: utf-8 -*-
<!DOCTYPE html>
<html>
<!-- Copyright (C) 2012 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<head>
<!-- automatically generated from html.mako. do NOT edit directly -->
<meta charset="utf-8" />
<title>Android Camera HAL2.0 Properties</title>
<style type="text/css">
.section { font-size: 1.5em; font-weight: bold; background-color: beige; padding: 0.5em 0em 0.5em 0.1em }
.kind { font-size: 1.2em; font-weight: bold; padding-left: 0.5em; background-color: gray }
.entry { background-color: burlywood }
/* table column sizes */
table { table-layout: fixed; width: 100%; word-wrap: break-word }
td,th { border: 1px solid; }
.th_name { width: 20% }
.th_units { width: 10% }
.th_tags { width: 5% }
.th_notes { width: 30% }
.th_type { width: 20% }
td { font-size: 0.9em; }
/* hide the first thead, we need it there only to enforce column sizes */
.thead_dummy { visibility: hidden; }
/* Entry flair */
.entry_name { font-family: monospace; font-style: italic; }
/* Entry type flair */
.entry_type_name { color: darkgreen; font-weight: bold; }
.entry_type_name_enum:after { color: darkgreen; font-weight: bold; content:" (enum)" }
.entry_type_enum_name { font-family: monospace; font-weight: bolder; }
.entry_type_enum_notes:before { content:" - " }
.entry_type_enum_value:before { content:" = " }
.entry_type_enum_value { font-family: monospace; }
.entry ul { margin: 0 0 0 0; list-style-position: inside; padding-left: 0.5em; }
.entry ul li { padding: 0 0 0 0; margin: 0 0 0 0;}
/* Entry tags flair */
.entry_tags ul { list-style-type: none; }
/* TODO: generate abbr element for each tag link? */
/* TODO for each x.y.z try to link it to the entry */
</style>
<style>
{
/* broken...
supposedly there is a bug in chrome that it lays out tables before
it knows its being printed, so the page-break-* styles are ignored
*/
tr { page-break-after: always; page-break-inside: avoid; }
}
</style>
</head>
<%!
import re
# insert word break hints for the browser
def wbr(text):
new_txt = text
# for johnyOrange.appleCider.redGuardian also insert wbr before the caps
# => johny<wbr>Orange.apple<wbr>Cider.red<wbr>Guardian
for words in text.split(" "):
if len(words.split(".")) >= 3: # match only x.y.z
addwbr = lambda x: i.isupper() and ("<wbr>" + i) or i
new_word = "".join([addwbr(i) for i in words])
new_txt = new_txt.replace(words, new_word)
# e.g. X/Y/Z -> X/<wbr>Y/<wbr>/Z. also for X.Y.Z, X_Y_Z.
replace_chars=['.', '/', '_', ',']
for i in replace_chars:
new_txt = new_txt.replace(i, i + "<wbr>")
return new_txt
# insert line breaks after every two \n\n
def br(text):
return re.sub(r"(\r?\n)(\r?\n)", r"\1<br>\2<br>", text)
%>
<body>
<h1>Android Camera HAL2.0 Properties</h1>
<h2>Table of Contents</h2>
<ul class="toc">
<li><a href="#tag_index">Tags</a></li>
% for section in metadata.find_all(lambda x: isinstance(x, metadata_model.Section)):
<li><p class="toc_section"><a href="#section_${section.name}">${section.name}</a></p>
<ul class="toc_section">
% for prop in section.find_all(lambda x: isinstance(x, metadata_model.Entry)):
<li><a href="#${prop.kind}_${prop.name}">${prop.name}</a> (${prop.kind})</li>
% endfor
</ul>
</li> <!-- toc_section -->
% endfor
</ul>
<h1>Properties</h1>
<table class="properties">
<thead class="thead_dummy">
<tr>
<th class="th_name">Property Name</th>
<th class="th_type">Type</th>
<th class="th_description">Description</th>
<th class="th_units">Units</th>
<th class="th_range">Range</th>
<th class="th_notes">Notes</th>
<th class="th_tags">Tags</th>
</tr>
</thead> <!-- so that the first occurrence of thead is not
above the first occurrence of tr -->
% for root in metadata.outer_namespaces:
<!-- <namespace name="${root.name}"> -->
% for section in root.sections:
<tr><td colspan="7" id="section_${section.name}" class="section">${section.name}</td></tr>
% if section.description is not None:
<tr class="description"><td>${section.description}</td></tr>
% endif
% for kind in section.merged_kinds: # dynamic,static,controls
<tr><td colspan="7" class="kind">${kind.name}</td></tr>
<thead>
<tr>
<th class="th_name">Property Name</th>
<th class="th_type">Type</th>
<th class="th_description">Description</th>
<th class="th_units">Units</th>
<th class="th_range">Range</th>
<th class="th_notes">Notes</th>
<th class="th_tags">Tags</th>
</tr>
</thead>
<tbody>
<%def name="insert_body(node)">
% for nested in node.namespaces:
${insert_namespace(nested)}
% endfor
% for entry in node.merged_entries:
${insert_entry(entry)}
% endfor
</%def>
<%def name="insert_namespace(namespace)">
${insert_body(namespace)}
</%def>
<%def name="insert_entry(prop)">
% if False: #prop.is_clone():
<clone entry="${prop.name}" kind="${prop.target_kind}">
% if prop.notes is not None:
<notes>${prop.notes | h,wbr}</notes>
% endif
% for tag in prop.tags:
<tag id="${tag.id}" />
% endfor
</clone>
% else:
<tr class="entry" id="${prop.kind}_${prop.name}">
<td class="entry_name">${prop.name | wbr}</td>
<td class="entry_type">
% if prop.enum:
<span class="entry_type_name entry_type_name_enum">${prop.type}</span>
% else:
<span class="entry_type_name">${prop.type}</span>
% endif
% if prop.container is not None:
<span class="entry_type_container">x</span>
% endif
% if prop.container == 'array':
<span class="entry_type_array">
${" x ".join(prop.container_sizes)}
</span>
% elif prop.container == 'tuple':
<ul class="entry_type_tuple">
% for val in prop.tuple_values:
<li>${val}</li>
% endfor
</ul>
% endif
% if prop.type_notes is not None:
<div class="entry_type_notes">${prop.type_notes | wbr}</div>
% endif
% if prop.enum:
<ul class="entry_type_enum">
% for value in prop.enum.values:
<li>
<span class="entry_type_enum_name">${value.name}</span>
% if value.optional:
<span class="entry_type_enum_optional">optional</span>
% endif:
% if value.id is not None:
<span class="entry_type_enum_value">${value.id}</span>
% endif
% if value.notes is not None:
<span class="entry_type_enum_notes">${value.notes | wbr}</span>
% endif
</li>
% endfor
</ul>
% endif
</td> <!-- entry_type -->
<td class="entry_description">
% if prop.description is not None:
${prop.description | wbr, br}
% endif
</td>
<td class="entry_units">
% if prop.units is not None:
${prop.units | wbr}
% endif
</td>
<td class="entry_range">
% if prop.range is not None:
${prop.range | wbr}
% endif
</td>
<td class="entry_notes">
% if prop.notes is not None:
${prop.notes | wbr, br}
% endif
</td>
<td class="entry_tags">
% if next(prop.tags, None):
<ul class="entry_tags">
% for tag in prop.tags:
<li><a href="#tag_${tag.id}">${tag.id}</a></li>
% endfor
</ul>
% endif
</td>
</tr> <!-- end of entry -->
% endif
</%def>
${insert_body(kind)}
<!-- end of kind -->
</tbody>
% endfor # for each kind
<!-- end of section -->
% endfor
<!-- </namespace> -->
% endfor
</table>
<div class="tags" id="tag_index">
<h2>Tags</h2>
<ul>
% for tag in metadata.tags:
<li id="tag_${tag.id}">${tag.id} - ${tag.description}
<ul class="tags_entries">
% for prop in tag.entries:
<li><a href="#${prop.kind}_${prop.name}">${prop.name}</a> (${prop.kind})</li>
% endfor
</ul>
</li> <!-- tag_${tag.id} -->
% endfor
</ul>
</div>
[ <a href="#">top</a> ]
</body>
</html>