You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/backend/upgrading/version-specific-migration/upgrade-to-61.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -126,33 +126,33 @@ A Plone distribution is a Python package that defines specific features, themes,
126
126
Now it is available in core Plone as the recommended way for {doc}`creating a new Plone site </install/add-site>`.
127
127
128
128
```{seealso}
129
-
For more information, see {doc}`/conceptual-guides/distributions`.
129
+
For more information about distribution concepts, see {doc}`/conceptual-guides/distributions`.
130
130
```
131
131
132
132
Distributions are optional.
133
133
If your project only uses the `Products.CMFPlone` Python package, you can still create a Plone site in the old way.
134
-
Consider, however, the following differences from distributions and from Plone 6.0.
134
+
Consider, however, that doing so you will have the following differences when compared to using distributions.
135
135
136
136
- The configuration form is simpler and shorter.
137
137
- The created site has no content, and therefore no {guilabel}`News` or {guilabel}`Events` folders.
138
138
- You must activate add-ons through the {guilabel}`Add-ons` control panel.
139
139
140
-
There are a few things you should consider when upgrading a project to, or making an add-on compatible with, Plone 6.1:
140
+
There are a few things you should consider when upgrading a project to, or making an add-on compatible with, Plone 6.1.
141
141
142
142
- In general, you don't need to change anything.
143
143
Your existing site will keep working.
144
144
But adding a new site may change in the ways described earlier.
145
-
- Do you want to use the `Products.CMFPlone` package (0 distributions), either `plone.volto` or `plone.classicui` (1 distribution), or `Plone` (2 distributions)?
146
-
- If your site uses the default Volto frontend, you will already have `plone.volto` as a dependency.
145
+
- Do you want to use the `Products.CMFPlone` package (no distributions), either `plone.volto` or `plone.classicui` (one distribution), or `Plone` (two distributions)?
146
+
- If your site uses Volto for the frontend, you will already have `plone.volto` as a dependency.
147
147
This can stay the same.
148
148
- If your site uses only the `Products.CMFPlone` package, the frontend is Classic UI.
149
149
This can stay the same, but you may want to depend on `plone.classicui`.
150
150
With that package you can still create a new site and have the same content as before.
151
151
- If your site uses the `Plone` package, you will have the two new distributions available.
152
152
This is fine.
153
-
If you know you only need `plone.volto` or only need `plone.classicui`, you can switch to only that one.
153
+
If you know you only need `plone.volto` or only need `plone.classicui`, you can switch to only one or the other.
154
154
You can also limit the options for selecting a distribution by setting the environment variable `ALLOWED_DISTRIBUTIONS` with fewer options.
155
-
Set `ALLOWED_DISTRIBUTIONS=default` for the distribution targeting the default Volto frontend (`plone.volto`).
155
+
Set `ALLOWED_DISTRIBUTIONS=default` for the distribution targeting the Volto frontend (`plone.volto`).
156
156
Set `ALLOWED_DISTRIBUTIONS=classic` for the distribution with the Classic UI frontend (`plone.classicui`).
157
157
- If you switch from `Plone` to `plone.volto` or `plone.classicui`, you might want to install extra core add-ons, for example `plone.app.upgrade` or `plone.app.caching`.
158
158
- If your add-on is only for Volto, you might want to add `plone.volto` as a dependency.
0 commit comments