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: 15/umbraco-cms/reference/configuration/contentsettings.md
+18-9Lines changed: 18 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,8 @@ The following snippet will give an overview of the keys and values in the conten
48
48
"PreviewBadge": "<![CDATA[<b>My HTML here</b>]]>",
49
49
"ResolveUrlsFromTextString": false,
50
50
"ShowDeprecatedPropertyEditors": false,
51
-
"ShowDomainWarnings": true
51
+
"ShowDomainWarnings": true,
52
+
"ShowUnroutableContentWarnings": true
52
53
}
53
54
}
54
55
}
@@ -165,15 +166,23 @@ This setting is used for controlling whether or not the Data Types marked as obs
165
166
166
167
By default this is set to `false`. To make the obsolete data types visible in the dropdown change the value to `true`.
167
168
168
-
### Show Domain Warnings
169
+
### Show domain warnings
169
170
170
171
If you do not configure Domains for each language in a multilingual site then every time you publish your content you get this warning:
171
172
172
173
`Content published: Domains are not configured for multilingual site, please contact an administrator, see log for more information.`
173
174
174
175
If you have a use case for not setting the domains, you can set this setting **ShowDomainWarnings** to `false` to stop the warning from displaying.
175
176
176
-
## ContentVersionCleanupPolicy
177
+
### Show unroutable content warnings
178
+
179
+
If your routing setup leads to more than one document having the same URL, on publish a warning will be displayed:
180
+
181
+
`Content published: The document does not have a URL, possibly due to a naming collision with another document. More details can be found under Info.`
182
+
183
+
To suppress these warnings, set this option to `false`.
184
+
185
+
## Content version cleanup policy
177
186
178
187
The global settings for the scheduled job which cleans historic content versions. These settings can be overridden per Document Type.
179
188
@@ -191,19 +200,19 @@ See [Content Version Cleanup](../../fundamentals/data/content-version-cleanup.md
191
200
192
201
If you don't wish to retain any content versions except for the current draft and currently published you can set both of the "keep" settings values to 0. After doing this, the next time the scheduled job runs (hourly) all non-current versions (except those marked "prevent cleanup") will be removed.
193
202
194
-
### EnableCleanup
203
+
### Enable cleanup
195
204
196
205
When `true` a scheduled job will delete historic content versions that are not kept according to the policy every hour.
197
206
198
207
When `false`, the scheduled job will never delete any content versions regardless of overridden settings for a Document Type.
199
208
200
-
This defaults to `false` when not set in the configuration which will be the case for those upgrading from v9.0.0. However, the dotnet new template will supply an appsettings.json with the value set to true for all sites starting from Umbraco 9.1.0.
209
+
This defaults to `false` when not set in the configuration which will be the case for those upgrading from v9.0.0. However, the dotnet new template will supply an `appsettings.json` with the value set to true for all sites starting from Umbraco 9.1.0.
201
210
202
-
### KeepAllVersionsNewerThanDays
211
+
### Keep all versions newer than days
203
212
204
213
All versions that fall in this period will be kept.
205
214
206
-
### KeepLatestVersionPerDayForDays
215
+
### Keep latest version per day for days
207
216
208
217
For content versions that fall in this period, the most recent version for each day is kept. All previous versions for that day are removed unless marked as preventCleanup.
209
218
@@ -228,11 +237,11 @@ This section is used for managing how Umbraco handles images, allowed attributes
228
237
229
238
Let's break it down.
230
239
231
-
### ImageFileTypes
240
+
### Image file types
232
241
233
242
This is a separated list of accepted image formats
234
243
235
-
### AutoFillImageProperties
244
+
### Auto fill image properties
236
245
237
246
You can define what properties should be automatically updated when an image is being uploaded. This means that if you decide to rename the default **umbracoWidth** and **umbracoHeight** properties the values in **`"WidthFieldAlias"`** and **`"HeightFieldAlias"`** need to be updated. This needs to happen in order to automatically populate the values when the image is being uploaded.
Copy file name to clipboardExpand all lines: 15/umbraco-cms/tutorials/editors-manual/getting-started-with-umbraco/creating-saving-and-publishing-content.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,8 +60,9 @@ To publish the node with descendants, follow these steps:
60
60
2. Select the arrow next to the **Save and Publish** button.
61
61
3. Select **Publish with descendants**.
62
62
63
-

63
+

64
64
4. Toggle the option to **Include unpublished content items** if you wish to. This option includes all unpublished content items for the selected page and the available linked pages.
65
+
5. Toggle the option to **Publish unchanged items** if you wish to. This option will trigger a re-publish of all the selected page and all descendant pages even if no changes are pending.
0 commit comments