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/p4x-to-p5x-upgrade.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ These are about larger changes to Plone, discussed beforehand by the community.
44
44
In Plone 5, the custom fields displayed in the user profile and registration forms are managed by `plone.schemaeditor`.
45
45
46
46
They are dynamically editable from the Plone control panel.
47
-
They can be imported from a Generic Setup profile file named `userschema.xml`.
47
+
They can be imported from a `GenericSetup` profile file named `userschema.xml`.
48
48
49
49
If you have some custom member properties in your Plone site, be aware of the following.
50
50
@@ -247,7 +247,7 @@ It also would combine and minify them for you in deployment mode.
247
247
248
248
#### Registration Changes
249
249
250
-
Prior to Plone 5, JavaScript files were added to the registry by using a [Generic Setup Profile](https://docs.plone.org/develop/addons/components/genericsetup.html) and including a `jsregistry.xml` file to it.
250
+
Prior to Plone 5, JavaScript files were added to the registry by using a [`GenericSetup` Profile](https://docs.plone.org/develop/addons/components/genericsetup.html) and including a `jsregistry.xml` file to it.
251
251
252
252
This would add your JavaScript to the registry, with some options and potentially set ordering.
253
253
@@ -552,9 +552,9 @@ In addition, you can control whether non-folders will create entries with the pr
552
552
If you want to `disable_folder_sections`, you will want to set `plone.generate_tabs` to `False`.
553
553
554
554
555
-
### Generic Setup
555
+
### `GenericSetup`
556
556
557
-
All settings for control panels are stored in the {file}`registry.xml`Generic Setup file.
557
+
All settings for control panels are stored in the {file}`registry.xml``GenericSetup` file.
558
558
This file can be exported through the Management Interface.
559
559
560
560
Go to the Plone Site Setup, choose {guilabel}`Management Interface` from the {guilabel}`Advanced` section.
@@ -580,14 +580,14 @@ The {file}`registry.xml` file will contain entries such as the following:
580
580
</record>
581
581
```
582
582
583
-
Drop the settings you want to change into {file}`registry.xml` in your Generic Setup profile folder.
583
+
Drop the settings you want to change into {file}`registry.xml` in your `GenericSetup` profile folder.
584
584
585
585
Reinstall your add-on product, and the settings will be available.
586
586
587
587
588
588
### Python Code
589
589
590
-
All Generic Setup settings can be looked up with Python code.
590
+
All `GenericSetup` settings can be looked up with Python code.
Copy file name to clipboardExpand all lines: docs/backend/upgrading/version-specific-migration/upgrade-to-51.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -236,7 +236,7 @@ Then press the {guilabel}`Add field` button.
236
236
237
237
#### For Developers
238
238
239
-
Instead of storing registry entries in a single, large {file}`registry.xml` file, you can have Generic Setup load and process registry entries from multiple files.
239
+
Instead of storing registry entries in a single, large {file}`registry.xml` file, you can have `GenericSetup` load and process registry entries from multiple files.
240
240
This makes it easier to manage and organize the registry entries provided by your applications and add-ons.
241
241
242
242
Your add-on should include a folder named `registry` in its profile folder, for example `profiles/default/registry`.
0 commit comments