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
@@ -597,7 +597,7 @@ The logic for this is provided by the package [z3c.relationfield](https://pypi.o
597
597
This package contains the `RelationValue` object and everything needed to define a relation schema, and all the code that is necessary to automatically update the catalog.
598
598
599
599
A `RelationValue` object does not reference all objects directly.
600
-
For the target, it uses an ID it gets from the `IntId` utility.
600
+
For the target, it uses an ID that it gets from the `IntId` utility.
601
601
This ID allows direct recovery of the object.
602
602
The source object stores it directly.
603
603
@@ -607,8 +607,8 @@ Because of this, the following happens when saving a relation via a form:
607
607
608
608
1. The HTML shows some nice representation of selectable objects.
609
609
2. When the user submits the form, selected items are submitted by their UUIDs.
610
-
3. The Widget retrieves the original object with the UUID.
611
-
4. Some data manager gets another unique ID from an IntID Tool.
610
+
3. The widget retrieves the original object with the UUID.
611
+
4. Some data manager gets another unique ID from the `IntID` utility.
612
612
5. The same data manager creates a `RelationValue` from this ID, and stores this relation value on the source object.
613
613
6. Some event handlers update the catalogs.
614
614
@@ -645,4 +645,4 @@ Thus the API for getting the target uses:
645
645
646
646
In addition, the relation value knows under which attribute it has been stored as `from_attribute`.
647
647
It is usually the name of the field with which the relation is created.
648
-
But it can also be the name of a relation that is created by code, for example, through linkintegrity relations (`isReferencing`) or the relation between a working copy and the original (`iterate-working-copy`).
648
+
But it can also be the name of a relation that is created by code, for example, through link integrity relations (`isReferencing`) or the relation between a working copy and the original (`iterate-working-copy`).
0 commit comments