Skip to content

Commit 3b11647

Browse files
committed
Glossary termify server-side rendering and update definition.
1 parent ff60bb6 commit 3b11647

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

docs/glossary.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -212,13 +212,20 @@ Express
212212
A JavaScript HTTP server with a simple API to build custom applications.
213213
Volto uses it as its server.
214214
215-
Server-Side Rendering (SSR)
216-
When first loading any Plone page, users will get HTML markup that closely matches the final DOM structure of the React components used to render that page.
215+
SSR
216+
server-side rendering
217+
When first loading any Plone page, SSR will send HTML markup that closely matches the final DOM structure of the React components used to render that page.
217218
218-
Single Page Application (SPA)
219+
More generally, when a client sends a request to an SSR page, the HTML for the page is created on the server on each request.
220+
SSR enables a developer to customize a website per request and per user.
221+
In addition, SSR can improve performance and search engine optimization (SEO) for a website.
222+
223+
SPA
224+
Single Page Application
219225
A type of JavaScript application that aims to provide a better user experience by avoiding unnecessary reloading of the browser page, instead using AJAX to load backend information.
220226
221-
Hot Module Replacement (HMR)
227+
HMR
228+
Hot Module Replacement
222229
A development feature provided by Webpack that automatically reloads, in the browser, the JavaScript modules that have changed on disk.
223230
224231
Yeoman

docs/overview/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Plone is easy to set up compared to other CMSs in its category, extremely flexib
7474
Plone is a content management platform with its backend written in Python.
7575
It is built on top of the open source Zope web application server and development system.
7676
Plone makes use of the pluggable Zope Component Architecture (ZCA) to provide a highly modular and extensible system.
77-
Throughout its history, Plone has used server-side rendering to generate HTML-based content, with advanced resource management features for adding and bundling CSS and JavaScript.
77+
Throughout its history, Plone has used {term}`server-side rendering` to generate HTML-based content, with advanced resource management features for adding and bundling CSS and JavaScript.
7878
Additionally, Plone's use of a component architecture makes it easy to extend and customize, allowing users to create unique, feature rich websites that are tailored to their specific needs.
7979

8080
With the release of Plone 6, you now have the option to choose from two different out-of-the-box supported configurations when setting up a new Plone website.

0 commit comments

Comments
 (0)