in api-docs/0.6/lib/template.js [107:128]
$(".members > ol > li").each(function(){
var vis1 = $(this).attr("visbl");
var qualName1 = $(this).attr("name");
var owner1 = qualName1.slice(0, qualName1.indexOf("#"));
//var name1 = qualName1.slice(qualName1.indexOf("#") + 1);
var showByOwned = true;
for (out in outOwners) {
if (outOwners[out] == owner1) {
showByOwned = false;
};
};
var showByVis = true
if (vis1 == "prt") {
showByVis = prtVisbl;
};
if (showByOwned && showByVis) {
$(this).show();
}
else {
$(this).hide();
};
});