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: modules/ROOT/pages/suggestededits.adoc
+8-10Lines changed: 8 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,9 +32,9 @@ The {pluginname} plugin provides a dedicated `'suggestededits'` xref:custom-view
32
32
33
33
The view contains a few controls to manage the review process:
34
34
35
-
* Show edits: A toggle button which hides/unhides the highlighted annotations.
36
-
* Complete review: Ends the review, applying the resolved changes to the document.
37
-
* Cancel: Exits the review with no change to the document.
35
+
* Show edits: Toggles whether suggested edits are shown. When hidden, the view shows what the document will look like if the review is completed.
36
+
* Complete review: Ends the review, applying resolved suggestions to the document.
37
+
* Cancel: Ignores any resolved suggestions and makes no change to the document. Feedback given on suggestions will be retained.
38
38
39
39
=== Document
40
40
@@ -50,9 +50,9 @@ Replaced content is represented as both added and removed content, and indicates
50
50
51
51
Each suggested edit is listed as a card in the sidebar and color coded by the type of change, along with the user who made the suggestion, when the edit was made, and any feedback provided on that suggestion. When selected, each suggestion can be handled in the following ways:
52
52
53
-
* Accept: Resolves the edit and will be applied to the document when .
54
-
* Reject: Removes the change from the document.
55
-
* Revert: Undoes a previously accepted or rejected change.
53
+
* Accept: Resolves the suggestion, applying the edit to the document when the review is completed.
54
+
* Reject: Resolves the suggestion, turning back the edit to the original state.
55
+
* Revert: Reverts the current "Accept" or "Reject" resolution on the suggestion.
56
56
* Provide feedback: Opens a text area for you to provide feedback on the suggestion.
57
57
58
58
Any feedback will be stored in the model and displayed underneath the card details and in chronological order. This feedback thread can be used to discuss the suggestion with the author or other reviewers. The feedback author can edit or delete their own feedback.
@@ -99,13 +99,11 @@ tinymce.init({
99
99
});
100
100
----
101
101
102
-
This configuration will add {pluginname} to the editor toolbar, allowing users to access the plugin features. However, to fully utilize the plugin, you will need to provide additional configuration options.
103
-
104
-
102
+
This configuration adds {pluginname} to the editor toolbar, enabling access to the plugin features. To fully utilize the plugin, additional configuration options must be provided.
105
103
106
104
== Options
107
105
108
-
The {pluginname} plugin requires a model to store. If the model is not provided in the editor configuration, or is `+undefined+`, the plugin will generate a new model. The model contains all the current suggested edits, so unless you are starting a new document, the current model for the document should always be provided. This model can be retrieved from the editor at any time using the xref:#get_model[`getModel` API], and should be saved externally alongside the document.
106
+
The {pluginname} plugin requires a model for storing suggestions. If a model is not provided in the editor configuration or is set to `+undefined+`, the plugin generates a new model. This model contains all current suggested edits. To maintain continuity across sessions, the current model for the document should always be supplied unless initializing a new document. The model can be retrieved from the editor at any time using the xref:#get_model[getModel API], and should be saved externally alongside the document.
109
107
110
108
Both the xref:#user_id[`+user_id+`] and xref:#fetch_users[`+fetch_users+`] options are required to configure the xref:userlookup.adoc[User Lookup API]. This API is used in the {pluginname} plugin to provide user information for each user who has made a change, allowing other users to see who made which suggestion.
IMPORTANT: This option has been deprecated in {productname}8.0 and may be removed in a future major {productname} release. Use a combination of `user_id` and `fetch_users` instead. | `xref:apis/tinymce.editor.userlookup.adoc[UserLookup]`
1
+
IMPORTANT: This option has been deprecated in {productname}{productmajorversion} and may be removed in a future major {productname} release. Use a combination of `user_id` and `fetch_users` instead. | `xref:apis/tinymce.editor.userlookup.adoc[UserLookup]`
Copy file name to clipboardExpand all lines: modules/ROOT/partials/configuration/suggestededits_content.adoc
+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
@@ -6,7 +6,7 @@ In a `'html'`-first approach, the editor loads content normally and the {pluginn
6
6
7
7
If a model is not provided the plugin will generate a new one from the initial content of the editor.
8
8
9
-
When `suggestededits_content` is set to `'model'`, the plugin bypasses the editor's content load procedures and instead uses the `suggestededits_model` option to generate initial content. This would allow an integrator to only require the model for document tracking, and treat the editor content as simply a rendering of it.
9
+
When `suggestededits_content` is set to `'model'`, the plugin bypasses the editor's content load procedures and instead uses the `suggestededits_model` option to generate the initial content. This would allow an integrator to only require the model for document tracking, and treat the editor content as simply a rendering of it.
10
10
11
11
If a model is not provided, the plugin will allow the editor to load content normally and generate a new model from there (the same way `html` works).
Copy file name to clipboardExpand all lines: modules/ROOT/partials/configuration/tinycomments_can_delete.adoc
+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
@@ -1,7 +1,7 @@
1
1
[[tinycomments_can_delete]]
2
2
== `+tinycomments_can_delete+`
3
3
4
-
_Optional_: This option sets the author permissions for _deleting comment conversations_. If the `+tinycomments_can_delete+` option is not included, the current author (`+user_id+`) cannot delete comment conversations created by other authors.
4
+
_Optional_: This option sets the author permissions for _deleting comment conversations_. If the `+tinycomments_can_delete+` option is **not included**, the current author (`+user_id+`) cannot delete comment conversations created by other authors.
Copy file name to clipboardExpand all lines: modules/ROOT/partials/configuration/tinycomments_can_delete_comment.adoc
+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
@@ -1,7 +1,7 @@
1
1
[[tinycomments_can_delete_comment]]
2
2
== `+tinycomments_can_delete_comment+`
3
3
4
-
_Optional_: This option sets the author permissions for _deleting comments_. If the `+tinycomments_can_delete_comment+` option is not included, the current author (`+user_id+`) **cannot** delete comments added by other authors.
4
+
_Optional_: This option sets the author permissions for _deleting comments_. If the `+tinycomments_can_delete_comment+` option is **not included**, the current author (`+user_id+`) **cannot** delete comments added by other authors.
Copy file name to clipboardExpand all lines: modules/ROOT/partials/configuration/tinycomments_can_edit_comment.adoc
+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
@@ -1,7 +1,7 @@
1
1
[[tinycomments_can_edit_comment]]
2
2
== `+tinycomments_can_edit_comment+`
3
3
4
-
_Optional_: This option sets the author permissions for _editing comments_. If the `+tinycomments_can_edit_comment+` option is not included, the current author (`+user_id+`) cannot edit comments added by other authors.
4
+
_Optional_: This option sets the author permissions for _editing comments_. If the `+tinycomments_can_edit_comment+` option is **not included**, the current author (`+user_id+`) cannot edit comments added by other authors.
0 commit comments