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
<iclass="fa fa-info-circle"data-toggle="tooltip"data-placement="right"title="Recursively includes all child topics—including nested topics—in the export."></i>
<iclass="fa fa-info-circle"data-toggle="tooltip"data-placement="right"title="Includes nested topics that are part of the current topic to be included in the export."></i>
<iclass="fa fa-info-circle"data-toggle="tooltip"data-placement="right"title="Includes relationships even if the topic they are referencing falls outside the scope of the export."></i>
<iclass="fa fa-info-circle"data-toggle="tooltip"data-placement="right"title="Adds missing attributes; replaces existing attributes if the imported value is newer."></i>
<iclass="fa fa-info-circle"data-toggle="tooltip"data-placement="right"title="Overwrites all attributes. Deletes unmatched attributes, relationships, and topics."></i>
Offers granular control over how the byline ("Last Modified By") and dateline ("Last Modified") are updated as part of the import process.
86
+
</p>
87
+
88
+
<h3>Byline</h3>
89
+
<sectionclass="attribute">
90
+
<label>
91
+
<inputtype="radio"asp-for="ImportOptions.LastModifiedByStrategy"value="@LastModifiedImportStrategy.Inherit" /> Use Import Strategy
92
+
<iclass="fa fa-info-circle"data-toggle="tooltip"data-placement="right"title="Will treat the byline just like any other attribute, merging it according to the import strategy."></i>
93
+
</label>
94
+
<br />
95
+
<label>
96
+
<inputtype="radio"asp-for="ImportOptions.LastModifiedByStrategy"value="@LastModifiedImportStrategy.TargetValue" /> Previous Value
97
+
<iclass="fa fa-info-circle"data-toggle="tooltip"data-placement="right"title="Will always retain the existing byline, if present."></i>
98
+
</label>
99
+
<br />
100
+
<label>
101
+
<inputtype="radio"asp-for="ImportOptions.LastModifiedByStrategy"value="@LastModifiedImportStrategy.Current" /> Current User (@(Context.User.Identity.Name??"System"))
102
+
<iclass="fa fa-info-circle"data-toggle="tooltip"data-placement="right"title="Updates the byline to the current user, just like it would when manually updating a topic via the editor."></i>
103
+
</label>
104
+
<br />
105
+
<label>
106
+
<inputtype="radio"asp-for="ImportOptions.LastModifiedByStrategy"value="@LastModifiedImportStrategy.System" /> System
107
+
<iclass="fa fa-info-circle"data-toggle="tooltip"data-placement="right"title="Updates the byline to 'System', which indicates that this was part of a system update and shouldn't be assigned to a specific contributor."></i>
108
+
</label>
109
+
</section>
110
+
111
+
<h3>Dateline</h3>
112
+
<sectionclass="attribute">
113
+
<label>
114
+
<inputtype="radio"asp-for="ImportOptions.LastModifiedStrategy"value="@LastModifiedImportStrategy.Inherit" /> Use Import Strategy
115
+
<iclass="fa fa-info-circle"data-toggle="tooltip"data-placement="right"title="Will treat the dateline just like any other attribute, merging it according to the import strategy."></i>
116
+
</label>
117
+
<br />
118
+
<label>
119
+
<inputtype="radio"asp-for="ImportOptions.LastModifiedStrategy"value="@LastModifiedImportStrategy.TargetValue" /> Previous Value
120
+
<iclass="fa fa-info-circle"data-toggle="tooltip"data-placement="right"title="Will always retain the existing last modified date, if present."></i>
121
+
</label>
122
+
<br />
123
+
<label>
124
+
<inputtype="radio"asp-for="ImportOptions.LastModifiedStrategy"value="@LastModifiedImportStrategy.Current" /> Current Time (@DateTime.Now.ToString("g"))
125
+
<iclass="fa fa-info-circle"data-toggle="tooltip"data-placement="right"title="Updates the dateline to the current time, just like it would when manually updating a topic via the editor."></i>
The following options are usually determined by the merge strategy, but can optionally be set individually if you require fine-tuned control during an import.
138
+
139
+
<h3>Overwrite…?</h3>
140
+
<sectionclass="attribute">
141
+
<label>
142
+
<inputtype="checkbox"asp-for="ImportOptions.OverwriteContentType" /> Content Type
143
+
<iclass="fa fa-info-circle"data-toggle="tooltip"data-placement="right"title="Overwrites the content type if imported content type differs from the existing content type. Implicit if the merge strategy is set to overwrite or replace."></i>
<iclass="fa fa-info-circle"data-toggle="tooltip"data-placement="right"title="Deletes existing attributes if they aren't included in the import. Implicit if the merge strategy is set to replace."></i>
<iclass="fa fa-info-circle"data-toggle="tooltip"data-placement="right"title="Deletes existing relationships if they aren't included in the import. Implicit if the merge strategy is set to replace."></i>
<iclass="fa fa-info-circle"data-toggle="tooltip"data-placement="right"title="Deletes existing nested topics if they aren't included in the import. Implicit if the merge strategy is set to replace."></i>
162
+
</label>
163
+
<br />
164
+
<label>
165
+
<inputtype="checkbox"name="@nameof(ImportOptions).@nameof(ImportOptions.DeleteUnmatchedChildren)"value="true" /> Children
166
+
<iclass="fa fa-info-circle"data-toggle="tooltip"data-placement="right"title="Deletes existing children—including nested topics—if they aren't included in the import. Implicit if the merge strategy is set to replace."></i>
0 commit comments