From 18ffc776e86ce935d397f05d24acd33bc750236f Mon Sep 17 00:00:00 2001 From: Andy Butland Date: Wed, 3 Jan 2024 11:03:10 +0100 Subject: [PATCH 1/2] Added details of Deploy settings included in recent versions of Deploy 4 (for Umbraco 8). --- .../Umbraco-Deploy/Deploy-Settings/index.md | 44 +++++++++++++++++-- 1 file changed, 40 insertions(+), 4 deletions(-) diff --git a/Add-ons/Umbraco-Deploy/Deploy-Settings/index.md b/Add-ons/Umbraco-Deploy/Deploy-Settings/index.md index 1893d26c67a..9dfc322f829 100644 --- a/Add-ons/Umbraco-Deploy/Deploy-Settings/index.md +++ b/Add-ons/Umbraco-Deploy/Deploy-Settings/index.md @@ -258,18 +258,54 @@ Culture and hostname settings, defined per content item for culture invariant co ```xml - + ``` To enable this, set the configuration value as appropriate for the types of domains you want to allow: -- *Culture* - the language setting for the content, defined under "Culture" -- *AbsolutePath* - values defined under "Domains" with an absolute path, e.g. "/en" -- *Hostname* - values defined under "Domains" with a full host name, e.g. "en.mysite.com" +- `Culture` - the language setting for the content, defined under "Culture" +- `AbsolutePath` - values defined under "Domains" with an absolute path, e.g. "/en" +- `Hostname` - values defined under "Domains" with a full host name, e.g. "en.mysite.com" Combinations of settings can be applied, e.g. `Hostname,AbsolutePath`. +## Deployment of public access settings + +When deploying content items, public access rules based on member groups are transferred. You can amend this behavior using this setting. + +```xml + + + + +``` + +* `None` - no public access rules will be transferred +* `AddOrUpdate` - public access rules added or updated in a source environment will be transferred to the destination +* `Remove` - public access rules removed a source environment will be removed in the destination +* `All` - all public access information will be transferred + +`AddOrUpdate` is the default setting used if no value is configured. + +## Deployment of trashed content + +Specifies options for handling trashed content (documents, media and members) on export or import: + +```xml + + + + +``` + +You can amend this behavior using this setting: + +* `None` - trashed content will not be exported or imported +* `Export` - trashed content will be included in an export +* `Import` - trashed content will be processed and moved to the recycle bin on import +* `All` - trashed content will be included in an export, processed and moved to the recycle bin on import + ## Media File Checksum Calculation Method Deploy will do comparisons between the entities in different environments to determine if they match and decide whether to include them in the operation. By default, for media files, a check is made on a portion of the initial bytes of the file. From e48a793e12844666a325d5cc8c60a71d7ab81292 Mon Sep 17 00:00:00 2001 From: Andy Butland Date: Wed, 3 Jan 2024 11:08:37 +0100 Subject: [PATCH 2/2] Removed HTML tags. --- Add-ons/Umbraco-Deploy/Deploy-Settings/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Add-ons/Umbraco-Deploy/Deploy-Settings/index.md b/Add-ons/Umbraco-Deploy/Deploy-Settings/index.md index 0e85930e12f..86b1f03aacc 100644 --- a/Add-ons/Umbraco-Deploy/Deploy-Settings/index.md +++ b/Add-ons/Umbraco-Deploy/Deploy-Settings/index.md @@ -281,10 +281,10 @@ When deploying content items, public access rules based on member groups are tra ``` -* `None` - no public access rules will be transferred -* `AddOrUpdate` - public access rules added or updated in a source environment will be transferred to the destination -* `Remove` - public access rules removed a source environment will be removed in the destination -* `All` - all public access information will be transferred +* `None` - no public access rules will be transferred +* `AddOrUpdate` - public access rules added or updated in a source environment will be transferred to the destination +* `Remove` - public access rules removed a source environment will be removed in the destination +* `All` - all public access information will be transferred `AddOrUpdate` is the default setting used if no value is configured.