Skip to content

Commit a575d65

Browse files
committed
Merge pull request #243 from smashwilson/addenda
Addenda
2 parents 2764f35 + 16d3add commit a575d65

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

developing/architecture.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ When a content consumer initiates an HTTPS request:
6868
#. :term:`nginx` terminates TLS and, in turn, proxies the request to its linked :term:`presenter`.
6969
#. The :term:`presenter` queries its content map with the :term:`presented URL` to discover the :term:`content ID` of the content that should be rendered at that path.
7070
#. Next, the presenter queries the :term:`content service` to acquire the content for that ID. The content service locates the appropriate :term:`metadata envelope`, all site-wide assets, and performs any necessary post-processing.
71-
#. Armed with the content ID and a layout key from the metadata envelope, the presenter locates the Nunjucks :term:`template` that should be used to decorate the raw content. If no template is routed, this request is skipped and a null layout (that renders the envelope's body directly) is used.
72-
#. Meanwhile, any "related documents" that are requested by the envelope will be queried from the :term:`content service`.
71+
#. If any :term:`addenda` are requested by the current envelope, each addenda envelope is fetched from the content service.
72+
#. The presenter locates the Nunjucks :term:`template` that should be used to decorate the raw content based on a regular expression match on the presented URL. If no template is routed, this request is skipped and a null layout (that renders the envelope's body directly) is used.
7373
#. The presenter renders the metadata envelope using the layout. The resulting HTML document is returned to the user.
7474

7575
Lifecycle of a Control Repository Update

developing/envelope.rst

+7
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ This is an example envelope that demonstrates the full document structure, inclu
3333
"title": "The previous article",
3434
"url": "/blog/previous-article"
3535
},
36+
"addenda": {
37+
"arbitrary_name": "content-id",
38+
"repository_toc": "https://github.com/deconst/deconst-docs/_toc"
39+
},
3640
"asset_offsets": {
3741
"local/path/image.jpg": [23, 1456],
3842
"other/asset.gif": [451]
@@ -100,6 +104,9 @@ This is an example envelope that demonstrates the full document structure, inclu
100104
101105
If the ``url`` key is absolute (rooted at the document root, like ``/blog/other-post``), the presenter will re-root it based on the current mapping of the content repository. If it's relative, it will be left as-is.
102106

107+
addenda
108+
Cross-references to related documents that should be fetched along with this envelope to be made available to the template. Each document's envelope is available as ``deconst.addenda.<name>.envelope``. Most likely, the attribute you want is ``deconst.addenda.<name>.envelope.body``.
109+
103110
asset_offsets
104111
This key must only be present in the intermediate representation used to communicate between a preparer and the submitter. Its keys are local paths to asset files relative to the asset directory. Each value is an array of character offsets into ``body`` that should be replaced by the full, public URL of the asset.
105112

writing-docs/coordinator/templates.rst

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ There are several special helpers and variables that are made available to each
1515
* ``{{ deconst.content.envelope.body }}``: This one is very important: it'll be replaced by the actual content of the page.
1616
* ``{{ deconst.content.envelope.title }}``: The name of the page, if one has been provided.
1717
* ``{{ deconst.content.envelope.toc }}``: The *local* table of contents for the current page, if one is available.
18+
* ``{{ deconst.addenda.<name>.envelope.body }}``: The body of a requested *addenda envelope*. For example, the Sphinx preparer cross references a repository-wide table of contents as ``deconst.addenda.repository_toc.envelope.body``.
1819
* ``{{{ deconst.assets.js_xyz_url }}}``: The final https CDN URL of the JavaScript asset bundle from the "xyz" subdirectory. See :ref:`the assets section <control-template-assets>` for more details.
1920
* ``{{{ deconst.assets.css_xyz_url }}}``: The same thing a CSS asset bundle.
2021
* ``{{{ deconst.assets.image_xyz_jpg_url }}}``: The asset URL for an image asset.

0 commit comments

Comments
 (0)