About this bundle
This view is a content view: a self-contained HTML file that carries no
bundle data of its own and asks the shell for none. It is promoted and served exactly like
any other bundle view — versioned, attributed, and portable as a plain HTML file — but it
declares access: none in its registry doc, so the shell refuses every bundle-data
request on its behalf. It may still ask the trusted shell to open another registered View.
Two kinds of view, one mechanism
- Data views (
access: bundle-read) — read live bundle data through the shell's read-only postMessage bridge. Pulse and Roadmap are data views. - Content views (
access: none, this view) — arbitrary self-contained HTML: a report, a rendered design doc, a diagram, a note. No bridge calls, no bundle access, enforced by the shell rather than left to convention.
Nothing below was fetched from anywhere — it is inert markup toggled by a few lines of
inline JS. A content view may still use scripts for local interaction (this button, for
instance); what it cannot do is reach the bundle's data API, because the shell denies every
bundle-data request an access: none view sends, regardless of what the view's own
script asks for. View navigation reveals only whether the requested registered View exists;
it does not expose that View's data or HTML.