Sorry I wasn't more specific. I'm talking more about omitting sections of individual records, or possibly of the page, in response to data.
Say you have a list of items, each of which contains a table of child data. If there are no children, the child rows inherently won't render, but ideally you wouldn't render the whole table and its header row. Similarly, if a record isn't editable, all the edit controls shouldn't be there. Or if a person isn't an admin, whole sections of a dashboard page might be omitted.
Yes, those sections could be hidden with classes, but in at least some security-related cases, it's better not to reveal anything about what goes there, not even hidden labels for unpopulated content. And if there *is* data there, but it shouldn't be shown for permission, workflow, or other reasons, hiding it with css may not be sufficient, since it's still visible in the html source.
Also, Transparency has to do the work to populate those hidden sections.
Don't get me wrong, I love whole idea and the performance of Transparency. I'm just trying to understand what its limitations are before diving in, and wondering how to deal with them.
Thanks again for your replies,
Dave Merrill