diff --git a/.claude/skills/cf-edit/scripts/cf-edit.ps1 b/.claude/skills/cf-edit/scripts/cf-edit.ps1
index 60107d6e..3974da06 100644
--- a/.claude/skills/cf-edit/scripts/cf-edit.ps1
+++ b/.claude/skills/cf-edit/scripts/cf-edit.ps1
@@ -1,4 +1,4 @@
-# cf-edit v1.11 — Edit 1C configuration root (Configuration.xml)
+# cf-edit v1.12 — Edit 1C configuration root (Configuration.xml)
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[Parameter(Mandatory)][Alias('Path')][string]$ConfigPath,
@@ -982,6 +982,9 @@ $memStream.Close()
$text = [System.Text.Encoding]::UTF8.GetString($bytes)
if ($text.Length -gt 0 -and $text[0] -eq [char]0xFEFF) { $text = $text.Substring(1) }
$text = $text.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+# Пустой элемент: XmlWriter пишет ``, Конфигуратор — ``. Гард на CDATA/комментарии:
+# только там `>` не экранируется, и ` />` может быть содержимым, а не концом тега.
+if ($text -notmatch '', '/>') }
$utf8Bom = New-Object System.Text.UTF8Encoding($true)
[System.IO.File]::WriteAllText($resolvedPath, $text, $utf8Bom)
diff --git a/.claude/skills/cf-edit/scripts/cf-edit.py b/.claude/skills/cf-edit/scripts/cf-edit.py
index 62b88c47..4e0c11ec 100644
--- a/.claude/skills/cf-edit/scripts/cf-edit.py
+++ b/.claude/skills/cf-edit/scripts/cf-edit.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
-# cf-edit v1.11 — Edit 1C configuration root (Configuration.xml)
+# cf-edit v1.12 — Edit 1C configuration root (Configuration.xml)
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
diff --git a/.claude/skills/cfe-borrow/scripts/cfe-borrow.ps1 b/.claude/skills/cfe-borrow/scripts/cfe-borrow.ps1
index 249259d7..63910871 100644
--- a/.claude/skills/cfe-borrow/scripts/cfe-borrow.ps1
+++ b/.claude/skills/cfe-borrow/scripts/cfe-borrow.ps1
@@ -1,4 +1,4 @@
-# cfe-borrow v1.11 — Borrow objects from configuration into extension (CFE)
+# cfe-borrow v1.12 — Borrow objects from configuration into extension (CFE)
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[Parameter(Mandatory)][string]$ExtensionPath,
@@ -917,7 +917,12 @@ function Borrow-Form {
New-Item -ItemType Directory -Path $formXmlDir -Force | Out-Null
}
$formXmlFile = Join-Path $formXmlDir "Form.xml"
- [System.IO.File]::WriteAllText($formXmlFile, $formXmlSb.ToString(), $enc)
+ # Куски формы берутся из OuterXml исходного документа, а он — как и XmlWriter —
+ # отдаёт ``; Конфигуратор пишет ``. Гард на CDATA/комментарии: только там
+ # `>` не экранируется, и ` />` может быть содержимым, а не концом тега.
+ $formXmlText = $formXmlSb.ToString()
+ if ($formXmlText -notmatch '', '/>') }
+ [System.IO.File]::WriteAllText($formXmlFile, $formXmlText, $enc)
Info " Created: $formXmlFile"
# 6. Create empty Module.bsl — but NEVER overwrite an existing one (re-borrow must
@@ -1023,6 +1028,9 @@ function Register-FormInObject {
$text2 = [System.Text.Encoding]::UTF8.GetString($bytes2)
if ($text2.Length -gt 0 -and $text2[0] -eq [char]0xFEFF) { $text2 = $text2.Substring(1) }
$text2 = $text2.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+ # Пустой элемент: XmlWriter пишет ``, Конфигуратор — ``. Гард на CDATA/комментарии:
+ # только там `>` не экранируется, и ` />` может быть содержимым, а не концом тега.
+ if ($text2 -notmatch '', '/>') }
$utf8Bom2 = New-Object System.Text.UTF8Encoding($true)
[System.IO.File]::WriteAllText($objFile, $text2, $utf8Bom2)
@@ -1413,6 +1421,10 @@ function Merge-AttributesIntoObject {
# Insert attributes before
$text3 = $text3 -replace '', "${allAttrXml}`r`n`t`t"
+ # Пустой элемент: XmlWriter пишет ``, Конфигуратор — ``. После вставки реквизитов,
+ # чтобы накрыть и их. Гард на CDATA/комментарии: только там ` />` может быть содержимым.
+ if ($text3 -notmatch '', '/>') }
+
$utf8Bom3 = New-Object System.Text.UTF8Encoding($true)
[System.IO.File]::WriteAllText($objFile, $text3, $utf8Bom3)
Info " Merged $added attribute(s) into: $objFile"
@@ -1877,6 +1889,9 @@ $memStream.Close()
$text = [System.Text.Encoding]::UTF8.GetString($bytes)
if ($text.Length -gt 0 -and $text[0] -eq [char]0xFEFF) { $text = $text.Substring(1) }
$text = $text.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+# Пустой элемент: XmlWriter пишет ``, Конфигуратор — ``. Гард на CDATA/комментарии:
+# только там `>` не экранируется, и ` />` может быть содержимым, а не концом тега.
+if ($text -notmatch '', '/>') }
$utf8Bom = New-Object System.Text.UTF8Encoding($true)
[System.IO.File]::WriteAllText($extResolvedPath, $text, $utf8Bom)
diff --git a/.claude/skills/cfe-borrow/scripts/cfe-borrow.py b/.claude/skills/cfe-borrow/scripts/cfe-borrow.py
index 0e36c401..d8276db3 100644
--- a/.claude/skills/cfe-borrow/scripts/cfe-borrow.py
+++ b/.claude/skills/cfe-borrow/scripts/cfe-borrow.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
-# cfe-borrow v1.11 — Borrow objects from configuration into extension (CFE)
+# cfe-borrow v1.12 — Borrow objects from configuration into extension (CFE)
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
diff --git a/.claude/skills/form-add/scripts/form-add.ps1 b/.claude/skills/form-add/scripts/form-add.ps1
index 8200e1cc..9b27158a 100644
--- a/.claude/skills/form-add/scripts/form-add.ps1
+++ b/.claude/skills/form-add/scripts/form-add.ps1
@@ -1,4 +1,4 @@
-# form-add v1.12 — Add managed form to 1C config object
+# form-add v1.13 — Add managed form to 1C config object
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[Parameter(Mandatory)]
@@ -586,11 +586,20 @@ $settings = New-Object System.Xml.XmlWriterSettings
$settings.Encoding = $encBom
$settings.Indent = $false
-$stream = New-Object System.IO.FileStream($objectXmlFull.Path, [System.IO.FileMode]::Create)
-$writer = [System.Xml.XmlWriter]::Create($stream, $settings)
+# Через MemoryStream, а не прямо в файл: нужен шаг пост-обработки строки — XmlWriter
+# отдаёт `encoding="utf-8"` и ``, Конфигуратор пишет `encoding="UTF-8"` и ``.
+$memStream = New-Object System.IO.MemoryStream
+$writer = [System.Xml.XmlWriter]::Create($memStream, $settings)
$xmlDoc.Save($writer)
-$writer.Close()
-$stream.Close()
+$writer.Flush(); $writer.Close()
+
+$xmlText = [System.Text.Encoding]::UTF8.GetString($memStream.ToArray())
+$memStream.Close()
+if ($xmlText.Length -gt 0 -and $xmlText[0] -eq [char]0xFEFF) { $xmlText = $xmlText.Substring(1) }
+$xmlText = $xmlText.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+# Гард на CDATA/комментарии: только там `>` не экранируется, и ` />` может быть содержимым.
+if ($xmlText -notmatch '', '/>') }
+[System.IO.File]::WriteAllText($objectXmlFull.Path, $xmlText, $encBom)
# --- Фаза 5: Вывод ---
diff --git a/.claude/skills/form-add/scripts/form-add.py b/.claude/skills/form-add/scripts/form-add.py
index bb6ad167..b49a79e0 100644
--- a/.claude/skills/form-add/scripts/form-add.py
+++ b/.claude/skills/form-add/scripts/form-add.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
-# form-add v1.12 — Add managed form to 1C config object
+# form-add v1.13 — Add managed form to 1C config object
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
diff --git a/.claude/skills/form-compile/scripts/form-compile.ps1 b/.claude/skills/form-compile/scripts/form-compile.ps1
index 77f2560a..7818a7c2 100644
--- a/.claude/skills/form-compile/scripts/form-compile.ps1
+++ b/.claude/skills/form-compile/scripts/form-compile.ps1
@@ -1,4 +1,4 @@
-# form-compile v1.176 — Compile 1C managed form from JSON or object metadata
+# form-compile v1.177 — Compile 1C managed form from JSON or object metadata
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[string]$JsonPath,
@@ -6677,11 +6677,20 @@ if ($formsLeaf -eq 'Forms') {
$regSettings = New-Object System.Xml.XmlWriterSettings
$regSettings.Encoding = $regEnc
$regSettings.Indent = $false
- $regStream = New-Object System.IO.FileStream($objectXmlPath, [System.IO.FileMode]::Create)
- $regWriter = [System.Xml.XmlWriter]::Create($regStream, $regSettings)
+ # Через MemoryStream: нужен шаг пост-обработки строки — XmlWriter отдаёт
+ # `encoding="utf-8"` и ``, Конфигуратор пишет `encoding="UTF-8"` и ``.
+ $regMem = New-Object System.IO.MemoryStream
+ $regWriter = [System.Xml.XmlWriter]::Create($regMem, $regSettings)
$objDoc.Save($regWriter)
- $regWriter.Close()
- $regStream.Close()
+ $regWriter.Flush(); $regWriter.Close()
+
+ $regText = [System.Text.Encoding]::UTF8.GetString($regMem.ToArray())
+ $regMem.Close()
+ if ($regText.Length -gt 0 -and $regText[0] -eq [char]0xFEFF) { $regText = $regText.Substring(1) }
+ $regText = $regText.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+ # Гард на CDATA/комментарии: только там ` />` может быть содержимым.
+ if ($regText -notmatch '', '/>') }
+ [System.IO.File]::WriteAllText($objectXmlPath, $regText, $regEnc)
Write-Host " Registered:
in $objectName.xml"
}
diff --git a/.claude/skills/form-compile/scripts/form-compile.py b/.claude/skills/form-compile/scripts/form-compile.py
index 0702aabc..d3cc77bf 100644
--- a/.claude/skills/form-compile/scripts/form-compile.py
+++ b/.claude/skills/form-compile/scripts/form-compile.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
-# form-compile v1.176 — Compile 1C managed form from JSON or object metadata
+# form-compile v1.177 — Compile 1C managed form from JSON or object metadata
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
import copy
diff --git a/.claude/skills/form-remove/scripts/remove-form.ps1 b/.claude/skills/form-remove/scripts/remove-form.ps1
index 9f7b3925..72e8c24d 100644
--- a/.claude/skills/form-remove/scripts/remove-form.ps1
+++ b/.claude/skills/form-remove/scripts/remove-form.ps1
@@ -1,4 +1,4 @@
-# form-remove v1.4 — Remove form from 1C object
+# form-remove v1.5 — Remove form from 1C object
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[Parameter(Mandatory)]
@@ -84,10 +84,19 @@ $settings = New-Object System.Xml.XmlWriterSettings
$settings.Encoding = $encBom
$settings.Indent = $false
-$stream = New-Object System.IO.FileStream($rootXmlFull.Path, [System.IO.FileMode]::Create)
-$writer = [System.Xml.XmlWriter]::Create($stream, $settings)
+# Через MemoryStream, а не прямо в файл: нужен шаг пост-обработки строки — XmlWriter
+# отдаёт `encoding="utf-8"` и ``, Конфигуратор пишет `encoding="UTF-8"` и ``.
+$memStream = New-Object System.IO.MemoryStream
+$writer = [System.Xml.XmlWriter]::Create($memStream, $settings)
$xmlDoc.Save($writer)
-$writer.Close()
-$stream.Close()
+$writer.Flush(); $writer.Close()
+
+$xmlText = [System.Text.Encoding]::UTF8.GetString($memStream.ToArray())
+$memStream.Close()
+if ($xmlText.Length -gt 0 -and $xmlText[0] -eq [char]0xFEFF) { $xmlText = $xmlText.Substring(1) }
+$xmlText = $xmlText.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+# Гард на CDATA/комментарии: только там `>` не экранируется, и ` />` может быть содержимым.
+if ($xmlText -notmatch '', '/>') }
+[System.IO.File]::WriteAllText($rootXmlFull.Path, $xmlText, $encBom)
Write-Host "[OK] Форма $FormName удалена из $rootXmlPath"
diff --git a/.claude/skills/form-remove/scripts/remove-form.py b/.claude/skills/form-remove/scripts/remove-form.py
index c5f3c89a..31a261f4 100644
--- a/.claude/skills/form-remove/scripts/remove-form.py
+++ b/.claude/skills/form-remove/scripts/remove-form.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
-# remove-form v1.4 — Remove form from 1C object
+# remove-form v1.5 — Remove form from 1C object
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
diff --git a/.claude/skills/help-add/scripts/add-help.ps1 b/.claude/skills/help-add/scripts/add-help.ps1
index a803c30f..2b291ee5 100644
--- a/.claude/skills/help-add/scripts/add-help.ps1
+++ b/.claude/skills/help-add/scripts/add-help.ps1
@@ -1,4 +1,4 @@
-# help-add v1.9 — Add built-in help to 1C object
+# help-add v1.10 — Add built-in help to 1C object
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[Parameter(Mandatory)]
@@ -255,11 +255,20 @@ if (Test-Path $formsDir) {
$settings = New-Object System.Xml.XmlWriterSettings
$settings.Encoding = $encBom
$settings.Indent = $false
- $stream = New-Object System.IO.FileStream($formMeta.FullName, [System.IO.FileMode]::Create)
- $writer = [System.Xml.XmlWriter]::Create($stream, $settings)
+ # Через MemoryStream: нужен шаг пост-обработки строки — XmlWriter отдаёт
+ # `encoding="utf-8"` и ``, Конфигуратор пишет `encoding="UTF-8"` и ``.
+ $memStream = New-Object System.IO.MemoryStream
+ $writer = [System.Xml.XmlWriter]::Create($memStream, $settings)
$xmlDoc.Save($writer)
- $writer.Close()
- $stream.Close()
+ $writer.Flush(); $writer.Close()
+
+ $xmlText = [System.Text.Encoding]::UTF8.GetString($memStream.ToArray())
+ $memStream.Close()
+ if ($xmlText.Length -gt 0 -and $xmlText[0] -eq [char]0xFEFF) { $xmlText = $xmlText.Substring(1) }
+ $xmlText = $xmlText.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+ # Гард на CDATA/комментарии: только там ` />` может быть содержимым.
+ if ($xmlText -notmatch '', '/>') }
+ [System.IO.File]::WriteAllText($formMeta.FullName, $xmlText, $encBom)
Write-Host " IncludeHelpInContents добавлен: $($formMeta.Name)"
}
diff --git a/.claude/skills/help-add/scripts/add-help.py b/.claude/skills/help-add/scripts/add-help.py
index e4489af3..7670a33f 100644
--- a/.claude/skills/help-add/scripts/add-help.py
+++ b/.claude/skills/help-add/scripts/add-help.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
-# add-help v1.9 — Add built-in help to 1C object
+# add-help v1.10 — Add built-in help to 1C object
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
diff --git a/.claude/skills/interface-edit/scripts/interface-edit.ps1 b/.claude/skills/interface-edit/scripts/interface-edit.ps1
index d40a66a8..0b3a1f95 100644
--- a/.claude/skills/interface-edit/scripts/interface-edit.ps1
+++ b/.claude/skills/interface-edit/scripts/interface-edit.ps1
@@ -1,4 +1,4 @@
-# interface-edit v1.9 — Edit 1C CommandInterface.xml
+# interface-edit v1.10 — Edit 1C CommandInterface.xml
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[Parameter(Mandatory)][Alias('Path')][string]$CIPath,
@@ -674,6 +674,9 @@ $memStream.Close()
$text = [System.Text.Encoding]::UTF8.GetString($bytes)
if ($text.Length -gt 0 -and $text[0] -eq [char]0xFEFF) { $text = $text.Substring(1) }
$text = $text.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+# Пустой элемент: XmlWriter пишет ``, Конфигуратор — ``. Гард на CDATA/комментарии:
+# только там `>` не экранируется, и ` />` может быть содержимым, а не концом тега.
+if ($text -notmatch '', '/>') }
$utf8Bom = New-Object System.Text.UTF8Encoding($true)
[System.IO.File]::WriteAllText($resolvedPath, $text, $utf8Bom)
diff --git a/.claude/skills/interface-edit/scripts/interface-edit.py b/.claude/skills/interface-edit/scripts/interface-edit.py
index 85a3dfd0..bbf1585c 100644
--- a/.claude/skills/interface-edit/scripts/interface-edit.py
+++ b/.claude/skills/interface-edit/scripts/interface-edit.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
-# interface-edit v1.9 — Edit 1C CommandInterface.xml
+# interface-edit v1.10 — Edit 1C CommandInterface.xml
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
diff --git a/.claude/skills/meta-compile/scripts/meta-compile.ps1 b/.claude/skills/meta-compile/scripts/meta-compile.ps1
index 56267e62..1d212873 100644
--- a/.claude/skills/meta-compile/scripts/meta-compile.ps1
+++ b/.claude/skills/meta-compile/scripts/meta-compile.ps1
@@ -1,4 +1,4 @@
-# meta-compile v1.76 — Compile 1C metadata object from JSON
+# meta-compile v1.77 — Compile 1C metadata object from JSON
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[Parameter(Mandatory)]
@@ -4990,15 +4990,25 @@ if (Test-Path $configXmlPath) {
}
}
- # Save
+ # Save. Пишем через MemoryStream, а не прямо в файл: нужен шаг пост-обработки
+ # строки — XmlWriter отдаёт `encoding="utf-8"` и ``, Конфигуратор пишет
+ # `encoding="UTF-8"` и ``.
$cfgSettings = New-Object System.Xml.XmlWriterSettings
$cfgSettings.Encoding = New-Object System.Text.UTF8Encoding($true)
$cfgSettings.Indent = $false
- $stream = New-Object System.IO.FileStream($configXmlPath, [System.IO.FileMode]::Create)
- $writer = [System.Xml.XmlWriter]::Create($stream, $cfgSettings)
+ $memStream = New-Object System.IO.MemoryStream
+ $writer = [System.Xml.XmlWriter]::Create($memStream, $cfgSettings)
$configDoc.Save($writer)
- $writer.Close()
- $stream.Close()
+ $writer.Flush(); $writer.Close()
+
+ $cfgText = [System.Text.Encoding]::UTF8.GetString($memStream.ToArray())
+ $memStream.Close()
+ if ($cfgText.Length -gt 0 -and $cfgText[0] -eq [char]0xFEFF) { $cfgText = $cfgText.Substring(1) }
+ $cfgText = $cfgText.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+ # Гард на CDATA/комментарии: только там `>` не экранируется, и ` />` может
+ # быть содержимым, а не концом тега.
+ if ($cfgText -notmatch '', '/>') }
+ [System.IO.File]::WriteAllText($configXmlPath, $cfgText, (New-Object System.Text.UTF8Encoding($true)))
$regResult = "added"
}
diff --git a/.claude/skills/meta-compile/scripts/meta-compile.py b/.claude/skills/meta-compile/scripts/meta-compile.py
index fb0242ac..7ce2d946 100644
--- a/.claude/skills/meta-compile/scripts/meta-compile.py
+++ b/.claude/skills/meta-compile/scripts/meta-compile.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
-# meta-compile v1.76 — Compile 1C metadata object from JSON
+# meta-compile v1.77 — Compile 1C metadata object from JSON
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
diff --git a/.claude/skills/meta-edit/scripts/meta-edit.ps1 b/.claude/skills/meta-edit/scripts/meta-edit.ps1
index 464a1226..17b3dd02 100644
--- a/.claude/skills/meta-edit/scripts/meta-edit.ps1
+++ b/.claude/skills/meta-edit/scripts/meta-edit.ps1
@@ -1,4 +1,4 @@
-# meta-edit v1.24 — Edit existing 1C metadata object XML
+# meta-edit v1.25 — Edit existing 1C metadata object XML
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[string]$DefinitionFile,
@@ -3208,6 +3208,9 @@ if ($text.Length -gt 0 -and $text[0] -eq [char]0xFEFF) {
$text = $text.Substring(1)
}
$text = $text.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+# Пустой элемент: XmlWriter пишет ``, Конфигуратор — ``. Гард на CDATA/комментарии:
+# только там `>` не экранируется, и ` />` может быть содержимым, а не концом тега.
+if ($text -notmatch '', '/>') }
# Write with BOM
$utf8Bom = New-Object System.Text.UTF8Encoding($true)
diff --git a/.claude/skills/meta-edit/scripts/meta-edit.py b/.claude/skills/meta-edit/scripts/meta-edit.py
index 62811a41..3e6ddeb5 100644
--- a/.claude/skills/meta-edit/scripts/meta-edit.py
+++ b/.claude/skills/meta-edit/scripts/meta-edit.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
-# meta-edit v1.24 — Edit existing 1C metadata object XML
+# meta-edit v1.25 — Edit existing 1C metadata object XML
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
diff --git a/.claude/skills/meta-remove/scripts/meta-remove.ps1 b/.claude/skills/meta-remove/scripts/meta-remove.ps1
index abd2a53d..efece15a 100644
--- a/.claude/skills/meta-remove/scripts/meta-remove.ps1
+++ b/.claude/skills/meta-remove/scripts/meta-remove.ps1
@@ -1,4 +1,4 @@
-# meta-remove v1.5 — Remove metadata object from 1C configuration dump
+# meta-remove v1.6 — Remove metadata object from 1C configuration dump
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[Parameter(Mandatory)]
@@ -493,9 +493,24 @@ if (-not $cfgNode) {
# Save Configuration.xml
if ($actions -gt 0 -and -not $DryRun) {
$enc = New-Object System.Text.UTF8Encoding $true
- $sw = New-Object System.IO.StreamWriter($configXml, $false, $enc)
- $xmlDoc.Save($sw)
- $sw.Close()
+ # Через MemoryStream, а не прямо в файл: нужен шаг пост-обработки строки —
+ # XmlWriter отдаёт `encoding="utf-8"` и ``, Конфигуратор пишет
+ # `encoding="UTF-8"` и ``.
+ $settings = New-Object System.Xml.XmlWriterSettings
+ $settings.Encoding = $enc
+ $settings.Indent = $false
+ $memStream = New-Object System.IO.MemoryStream
+ $writer = [System.Xml.XmlWriter]::Create($memStream, $settings)
+ $xmlDoc.Save($writer)
+ $writer.Flush(); $writer.Close()
+
+ $xmlText = [System.Text.Encoding]::UTF8.GetString($memStream.ToArray())
+ $memStream.Close()
+ if ($xmlText.Length -gt 0 -and $xmlText[0] -eq [char]0xFEFF) { $xmlText = $xmlText.Substring(1) }
+ $xmlText = $xmlText.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+ # Гард на CDATA/комментарии: только там ` />` может быть содержимым.
+ if ($xmlText -notmatch '', '/>') }
+ [System.IO.File]::WriteAllText($configXml, $xmlText, $enc)
Write-Host "[OK] Configuration.xml saved"
}
}
@@ -559,9 +574,23 @@ function Remove-FromSubsystems {
if ($modified -and -not $DryRun) {
$enc = New-Object System.Text.UTF8Encoding $true
- $sw = New-Object System.IO.StreamWriter($xmlFile.FullName, $false, $enc)
- $ssDoc.Save($sw)
- $sw.Close()
+ # Через MemoryStream: нужен шаг пост-обработки строки — XmlWriter отдаёт
+ # `encoding="utf-8"` и ``, Конфигуратор пишет `encoding="UTF-8"` и ``.
+ $settings = New-Object System.Xml.XmlWriterSettings
+ $settings.Encoding = $enc
+ $settings.Indent = $false
+ $memStream = New-Object System.IO.MemoryStream
+ $writer = [System.Xml.XmlWriter]::Create($memStream, $settings)
+ $ssDoc.Save($writer)
+ $writer.Flush(); $writer.Close()
+
+ $xmlText = [System.Text.Encoding]::UTF8.GetString($memStream.ToArray())
+ $memStream.Close()
+ if ($xmlText.Length -gt 0 -and $xmlText[0] -eq [char]0xFEFF) { $xmlText = $xmlText.Substring(1) }
+ $xmlText = $xmlText.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+ # Гард на CDATA/комментарии: только там ` />` может быть содержимым.
+ if ($xmlText -notmatch '', '/>') }
+ [System.IO.File]::WriteAllText($xmlFile.FullName, $xmlText, $enc)
}
# Recurse into child subsystems
diff --git a/.claude/skills/meta-remove/scripts/meta-remove.py b/.claude/skills/meta-remove/scripts/meta-remove.py
index 80c9b5ee..f939af0b 100644
--- a/.claude/skills/meta-remove/scripts/meta-remove.py
+++ b/.claude/skills/meta-remove/scripts/meta-remove.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
-# meta-remove v1.5 — Remove metadata object from 1C configuration dump
+# meta-remove v1.6 — Remove metadata object from 1C configuration dump
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
diff --git a/.claude/skills/role-compile/scripts/role-compile.ps1 b/.claude/skills/role-compile/scripts/role-compile.ps1
index fd6bc394..53cbd1f2 100644
--- a/.claude/skills/role-compile/scripts/role-compile.ps1
+++ b/.claude/skills/role-compile/scripts/role-compile.ps1
@@ -1,4 +1,4 @@
-# role-compile v1.10 — Compile 1C role from JSON
+# role-compile v1.11 — Compile 1C role from JSON
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[Parameter(Mandatory)]
@@ -856,11 +856,21 @@ if (Test-Path $configXmlPath) {
$cfgSettings = New-Object System.Xml.XmlWriterSettings
$cfgSettings.Encoding = New-Object System.Text.UTF8Encoding($true)
$cfgSettings.Indent = $false
- $stream = New-Object System.IO.FileStream($configXmlPath, [System.IO.FileMode]::Create)
- $writer = [System.Xml.XmlWriter]::Create($stream, $cfgSettings)
+ # Через MemoryStream, а не прямо в файл: нужен шаг пост-обработки строки —
+ # XmlWriter отдаёт `encoding="utf-8"` и ``, Конфигуратор пишет
+ # `encoding="UTF-8"` и ``.
+ $memStream = New-Object System.IO.MemoryStream
+ $writer = [System.Xml.XmlWriter]::Create($memStream, $cfgSettings)
$configDoc.Save($writer)
- $writer.Close()
- $stream.Close()
+ $writer.Flush(); $writer.Close()
+
+ $cfgText = [System.Text.Encoding]::UTF8.GetString($memStream.ToArray())
+ $memStream.Close()
+ if ($cfgText.Length -gt 0 -and $cfgText[0] -eq [char]0xFEFF) { $cfgText = $cfgText.Substring(1) }
+ $cfgText = $cfgText.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+ # Гард на CDATA/комментарии: только там ` />` может быть содержимым.
+ if ($cfgText -notmatch '', '/>') }
+ [System.IO.File]::WriteAllText($configXmlPath, $cfgText, (New-Object System.Text.UTF8Encoding($true)))
$regResult = "added"
}
diff --git a/.claude/skills/role-compile/scripts/role-compile.py b/.claude/skills/role-compile/scripts/role-compile.py
index 34bb98ee..14e9f32a 100644
--- a/.claude/skills/role-compile/scripts/role-compile.py
+++ b/.claude/skills/role-compile/scripts/role-compile.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
-# role-compile v1.10 — Compile 1C role from JSON
+# role-compile v1.11 — Compile 1C role from JSON
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
import json
diff --git a/.claude/skills/subsystem-compile/scripts/subsystem-compile.ps1 b/.claude/skills/subsystem-compile/scripts/subsystem-compile.ps1
index d9abf8da..445bb12e 100644
--- a/.claude/skills/subsystem-compile/scripts/subsystem-compile.ps1
+++ b/.claude/skills/subsystem-compile/scripts/subsystem-compile.ps1
@@ -1,4 +1,4 @@
-# subsystem-compile v1.11 — Create 1C subsystem from JSON definition
+# subsystem-compile v1.12 — Create 1C subsystem from JSON definition
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[string]$DefinitionFile,
@@ -657,6 +657,9 @@ if ($parentXmlPath -and (Test-Path $parentXmlPath)) {
$text = [System.Text.Encoding]::UTF8.GetString($bytes)
if ($text.Length -gt 0 -and $text[0] -eq [char]0xFEFF) { $text = $text.Substring(1) }
$text = $text.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+ # Пустой элемент: XmlWriter пишет ``, Конфигуратор — ``. Гард на CDATA/комментарии:
+ # только там `>` не экранируется, и ` />` может быть содержимым, а не концом тега.
+ if ($text -notmatch '', '/>') }
[System.IO.File]::WriteAllText($parentXmlPath, $text, $utf8Bom)
Write-Host "[OK] Registered in: $parentXmlPath"
diff --git a/.claude/skills/subsystem-compile/scripts/subsystem-compile.py b/.claude/skills/subsystem-compile/scripts/subsystem-compile.py
index f640501e..9b62c868 100644
--- a/.claude/skills/subsystem-compile/scripts/subsystem-compile.py
+++ b/.claude/skills/subsystem-compile/scripts/subsystem-compile.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
-# subsystem-compile v1.11 — Create 1C subsystem from JSON definition
+# subsystem-compile v1.12 — Create 1C subsystem from JSON definition
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
import json
diff --git a/.claude/skills/subsystem-edit/scripts/subsystem-edit.ps1 b/.claude/skills/subsystem-edit/scripts/subsystem-edit.ps1
index 56e15bc2..25d0b7d3 100644
--- a/.claude/skills/subsystem-edit/scripts/subsystem-edit.ps1
+++ b/.claude/skills/subsystem-edit/scripts/subsystem-edit.ps1
@@ -1,4 +1,4 @@
-# subsystem-edit v1.8 — Edit existing 1C subsystem XML
+# subsystem-edit v1.9 — Edit existing 1C subsystem XML
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[Parameter(Mandatory)][Alias('Path')][string]$SubsystemPath,
@@ -655,6 +655,9 @@ $memStream.Close()
$text = [System.Text.Encoding]::UTF8.GetString($bytes)
if ($text.Length -gt 0 -and $text[0] -eq [char]0xFEFF) { $text = $text.Substring(1) }
$text = $text.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+# Пустой элемент: XmlWriter пишет ``, Конфигуратор — ``. Гард на CDATA/комментарии:
+# только там `>` не экранируется, и ` />` может быть содержимым, а не концом тега.
+if ($text -notmatch '', '/>') }
$utf8Bom = New-Object System.Text.UTF8Encoding($true)
[System.IO.File]::WriteAllText($resolvedPath, $text, $utf8Bom)
diff --git a/.claude/skills/subsystem-edit/scripts/subsystem-edit.py b/.claude/skills/subsystem-edit/scripts/subsystem-edit.py
index 67f63264..665e0627 100644
--- a/.claude/skills/subsystem-edit/scripts/subsystem-edit.py
+++ b/.claude/skills/subsystem-edit/scripts/subsystem-edit.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
-# subsystem-edit v1.8 — Edit existing 1C subsystem XML
+# subsystem-edit v1.9 — Edit existing 1C subsystem XML
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
diff --git a/.claude/skills/template-add/scripts/add-template.ps1 b/.claude/skills/template-add/scripts/add-template.ps1
index 8997860c..8f55d910 100644
--- a/.claude/skills/template-add/scripts/add-template.ps1
+++ b/.claude/skills/template-add/scripts/add-template.ps1
@@ -1,4 +1,4 @@
-# template-add v1.11 — Add template to 1C object
+# template-add v1.12 — Add template to 1C object
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[Parameter(Mandatory)]
@@ -392,11 +392,20 @@ $settings = New-Object System.Xml.XmlWriterSettings
$settings.Encoding = $encBom
$settings.Indent = $false
-$stream = New-Object System.IO.FileStream($rootXmlFull.Path, [System.IO.FileMode]::Create)
-$writer = [System.Xml.XmlWriter]::Create($stream, $settings)
+# Через MemoryStream, а не прямо в файл: нужен шаг пост-обработки строки — XmlWriter
+# отдаёт `encoding="utf-8"` и ``, Конфигуратор пишет `encoding="UTF-8"` и ``.
+$memStream = New-Object System.IO.MemoryStream
+$writer = [System.Xml.XmlWriter]::Create($memStream, $settings)
$xmlDoc.Save($writer)
-$writer.Close()
-$stream.Close()
+$writer.Flush(); $writer.Close()
+
+$xmlText = [System.Text.Encoding]::UTF8.GetString($memStream.ToArray())
+$memStream.Close()
+if ($xmlText.Length -gt 0 -and $xmlText[0] -eq [char]0xFEFF) { $xmlText = $xmlText.Substring(1) }
+$xmlText = $xmlText.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+# Гард на CDATA/комментарии: только там `>` не экранируется, и ` />` может быть содержимым.
+if ($xmlText -notmatch '', '/>') }
+[System.IO.File]::WriteAllText($rootXmlFull.Path, $xmlText, $encBom)
Write-Host "[OK] Создан макет: $TemplateName ($TemplateType)"
if ($alreadyRegistered) {
diff --git a/.claude/skills/template-add/scripts/add-template.py b/.claude/skills/template-add/scripts/add-template.py
index 849778d4..7527a308 100644
--- a/.claude/skills/template-add/scripts/add-template.py
+++ b/.claude/skills/template-add/scripts/add-template.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
-# add-template v1.11 — Add template to 1C object
+# add-template v1.12 — Add template to 1C object
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
diff --git a/.claude/skills/template-remove/scripts/remove-template.ps1 b/.claude/skills/template-remove/scripts/remove-template.ps1
index e02a9d90..3be48b15 100644
--- a/.claude/skills/template-remove/scripts/remove-template.ps1
+++ b/.claude/skills/template-remove/scripts/remove-template.ps1
@@ -1,4 +1,4 @@
-# template-remove v1.3 — Remove template from 1C object
+# template-remove v1.4 — Remove template from 1C object
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[Parameter(Mandatory)]
@@ -81,10 +81,19 @@ $settings = New-Object System.Xml.XmlWriterSettings
$settings.Encoding = $encBom
$settings.Indent = $false
-$stream = New-Object System.IO.FileStream($rootXmlFull.Path, [System.IO.FileMode]::Create)
-$writer = [System.Xml.XmlWriter]::Create($stream, $settings)
+# Через MemoryStream, а не прямо в файл: нужен шаг пост-обработки строки — XmlWriter
+# отдаёт `encoding="utf-8"` и ``, Конфигуратор пишет `encoding="UTF-8"` и ``.
+$memStream = New-Object System.IO.MemoryStream
+$writer = [System.Xml.XmlWriter]::Create($memStream, $settings)
$xmlDoc.Save($writer)
-$writer.Close()
-$stream.Close()
+$writer.Flush(); $writer.Close()
+
+$xmlText = [System.Text.Encoding]::UTF8.GetString($memStream.ToArray())
+$memStream.Close()
+if ($xmlText.Length -gt 0 -and $xmlText[0] -eq [char]0xFEFF) { $xmlText = $xmlText.Substring(1) }
+$xmlText = $xmlText.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+# Гард на CDATA/комментарии: только там `>` не экранируется, и ` />` может быть содержимым.
+if ($xmlText -notmatch '', '/>') }
+[System.IO.File]::WriteAllText($rootXmlFull.Path, $xmlText, $encBom)
Write-Host "[OK] Макет $TemplateName удалён из $rootXmlPath"
diff --git a/.claude/skills/template-remove/scripts/remove-template.py b/.claude/skills/template-remove/scripts/remove-template.py
index ac1da917..568ad3b9 100644
--- a/.claude/skills/template-remove/scripts/remove-template.py
+++ b/.claude/skills/template-remove/scripts/remove-template.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
-# remove-template v1.3 — Remove template from 1C object
+# remove-template v1.4 — Remove template from 1C object
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
diff --git a/.claude/skills/xdto-compile/scripts/xdto-compile.ps1 b/.claude/skills/xdto-compile/scripts/xdto-compile.ps1
index 1df055d0..cfd7818a 100644
--- a/.claude/skills/xdto-compile/scripts/xdto-compile.ps1
+++ b/.claude/skills/xdto-compile/scripts/xdto-compile.ps1
@@ -1,4 +1,4 @@
-# xdto-compile v1.2 — Build a 1C XDTO package from an XML Schema (XSD)
+# xdto-compile v1.3 — Build a 1C XDTO package from an XML Schema (XSD)
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[Parameter(Mandatory=$true, ParameterSetName='File')]
@@ -948,11 +948,21 @@ if (Test-Path $configXmlPath) {
$cfgSettings = New-Object System.Xml.XmlWriterSettings
$cfgSettings.Encoding = New-Object System.Text.UTF8Encoding($true)
$cfgSettings.Indent = $false
- $stream = New-Object System.IO.FileStream($configXmlPath, [System.IO.FileMode]::Create)
- $writer = [System.Xml.XmlWriter]::Create($stream, $cfgSettings)
+ # Через MemoryStream, а не прямо в файл: нужен шаг пост-обработки строки —
+ # XmlWriter отдаёт `encoding="utf-8"` и ``, Конфигуратор пишет
+ # `encoding="UTF-8"` и ``.
+ $memStream = New-Object System.IO.MemoryStream
+ $writer = [System.Xml.XmlWriter]::Create($memStream, $cfgSettings)
$configDoc.Save($writer)
- $writer.Close()
- $stream.Close()
+ $writer.Flush(); $writer.Close()
+
+ $cfgText = [System.Text.Encoding]::UTF8.GetString($memStream.ToArray())
+ $memStream.Close()
+ if ($cfgText.Length -gt 0 -and $cfgText[0] -eq [char]0xFEFF) { $cfgText = $cfgText.Substring(1) }
+ $cfgText = $cfgText.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+ # Гард на CDATA/комментарии: только там ` />` может быть содержимым.
+ if ($cfgText -notmatch '', '/>') }
+ [System.IO.File]::WriteAllText($configXmlPath, $cfgText, (New-Object System.Text.UTF8Encoding($true)))
$regResult = "added"
}
}
diff --git a/.claude/skills/xdto-compile/scripts/xdto-compile.py b/.claude/skills/xdto-compile/scripts/xdto-compile.py
index 788127fb..9db79ef4 100644
--- a/.claude/skills/xdto-compile/scripts/xdto-compile.py
+++ b/.claude/skills/xdto-compile/scripts/xdto-compile.py
@@ -1,4 +1,4 @@
-# xdto-compile v1.2 — Build a 1C XDTO package from an XML Schema (XSD) (Python port)
+# xdto-compile v1.3 — Build a 1C XDTO package from an XML Schema (XSD) (Python port)
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
import json
diff --git a/.claude/skills/xdto-edit/scripts/xdto-edit.ps1 b/.claude/skills/xdto-edit/scripts/xdto-edit.ps1
index d5c2c733..75845d8b 100644
--- a/.claude/skills/xdto-edit/scripts/xdto-edit.ps1
+++ b/.claude/skills/xdto-edit/scripts/xdto-edit.ps1
@@ -1,4 +1,4 @@
-# xdto-edit v1.0 — Point edits of a 1C XDTO package
+# xdto-edit v1.1 — Point edits of a 1C XDTO package
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[Parameter(Mandatory=$true)]
@@ -221,10 +221,21 @@ function Edit-Metadata([string]$field, [string]$newValue) {
$settings = New-Object System.Xml.XmlWriterSettings
$settings.Encoding = $encBom
$settings.Indent = $false
- $stream = New-Object System.IO.FileStream($mdFile, [System.IO.FileMode]::Create)
- $writer = [System.Xml.XmlWriter]::Create($stream, $settings)
+ # Через MemoryStream, а не прямо в файл: нужен шаг пост-обработки строки —
+ # XmlWriter отдаёт `encoding="utf-8"` и ``, Конфигуратор пишет
+ # `encoding="UTF-8"` и ``.
+ $memStream = New-Object System.IO.MemoryStream
+ $writer = [System.Xml.XmlWriter]::Create($memStream, $settings)
$doc.Save($writer)
- $writer.Close(); $stream.Close()
+ $writer.Flush(); $writer.Close()
+
+ $mdText = [System.Text.Encoding]::UTF8.GetString($memStream.ToArray())
+ $memStream.Close()
+ if ($mdText.Length -gt 0 -and $mdText[0] -eq [char]0xFEFF) { $mdText = $mdText.Substring(1) }
+ $mdText = $mdText.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+ # Гард на CDATA/комментарии: только там ` />` может быть содержимым.
+ if ($mdText -notmatch '', '/>') }
+ [System.IO.File]::WriteAllText($mdFile, $mdText, $encBom)
}
function Rename-Package([string]$newName) {
@@ -252,9 +263,18 @@ function Rename-Package([string]$newName) {
if ($found) {
$s = New-Object System.Xml.XmlWriterSettings
$s.Encoding = $encBom; $s.Indent = $false
- $st = New-Object System.IO.FileStream($configXml, [System.IO.FileMode]::Create)
- $w = [System.Xml.XmlWriter]::Create($st, $s)
- $cfg.Save($w); $w.Close(); $st.Close()
+ # Через MemoryStream: нужен шаг пост-обработки строки — XmlWriter отдаёт
+ # `encoding="utf-8"` и ``, Конфигуратор пишет `encoding="UTF-8"` и ``.
+ $mem = New-Object System.IO.MemoryStream
+ $w = [System.Xml.XmlWriter]::Create($mem, $s)
+ $cfg.Save($w); $w.Flush(); $w.Close()
+ $cfgText = [System.Text.Encoding]::UTF8.GetString($mem.ToArray())
+ $mem.Close()
+ if ($cfgText.Length -gt 0 -and $cfgText[0] -eq [char]0xFEFF) { $cfgText = $cfgText.Substring(1) }
+ $cfgText = $cfgText.Replace('encoding="utf-8"', 'encoding="UTF-8"')
+ # Гард на CDATA/комментарии: только там ` />` может быть содержимым.
+ if ($cfgText -notmatch '', '/>') }
+ [System.IO.File]::WriteAllText($configXml, $cfgText, $encBom)
Write-Host " Configuration.xml: переименован в $newName"
} else {
Write-Warning "В Configuration.xml не найдена запись $pkgName — зарегистрируйте пакет вручную"
diff --git a/.claude/skills/xdto-edit/scripts/xdto-edit.py b/.claude/skills/xdto-edit/scripts/xdto-edit.py
index 0a551f4a..f29ad78e 100644
--- a/.claude/skills/xdto-edit/scripts/xdto-edit.py
+++ b/.claude/skills/xdto-edit/scripts/xdto-edit.py
@@ -1,4 +1,4 @@
-# xdto-edit v1.0 — Point edits of a 1C XDTO package (Python port)
+# xdto-edit v1.1 — Point edits of a 1C XDTO package (Python port)
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
import json
diff --git a/tests/skills/cases/cf-edit/snapshots/add-bot/Configuration.xml b/tests/skills/cases/cf-edit/snapshots/add-bot/Configuration.xml
index aa522841..2e9a7fce 100644
--- a/tests/skills/cases/cf-edit/snapshots/add-bot/Configuration.xml
+++ b/tests/skills/cases/cf-edit/snapshots/add-bot/Configuration.xml
@@ -39,15 +39,15 @@
Бот демо
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
Version8_3_24
@@ -58,7 +58,7 @@
DontUse
TaxiEnableVersion8_2
Normal
-
+
Русский
diff --git a/tests/skills/cases/cf-edit/snapshots/add-default-role/Configuration.xml b/tests/skills/cases/cf-edit/snapshots/add-default-role/Configuration.xml
index 623a32aa..f9292c6e 100644
--- a/tests/skills/cases/cf-edit/snapshots/add-default-role/Configuration.xml
+++ b/tests/skills/cases/cf-edit/snapshots/add-default-role/Configuration.xml
@@ -39,8 +39,8 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
@@ -52,29 +52,29 @@
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -225,18 +225,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -244,7 +244,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cf-edit/snapshots/add-objects/Configuration.xml b/tests/skills/cases/cf-edit/snapshots/add-objects/Configuration.xml
index e43cf0c2..42f902c9 100644
--- a/tests/skills/cases/cf-edit/snapshots/add-objects/Configuration.xml
+++ b/tests/skills/cases/cf-edit/snapshots/add-objects/Configuration.xml
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cf-edit/snapshots/modify-multiple-props/Configuration.xml b/tests/skills/cases/cf-edit/snapshots/modify-multiple-props/Configuration.xml
index df6f4285..42dd28c0 100644
--- a/tests/skills/cases/cf-edit/snapshots/modify-multiple-props/Configuration.xml
+++ b/tests/skills/cases/cf-edit/snapshots/modify-multiple-props/Configuration.xml
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
ТестПоставщик
1.2.3.4
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cf-edit/snapshots/remove-object/Configuration.xml b/tests/skills/cases/cf-edit/snapshots/remove-object/Configuration.xml
index 65df87a0..a2f42fce 100644
--- a/tests/skills/cases/cf-edit/snapshots/remove-object/Configuration.xml
+++ b/tests/skills/cases/cf-edit/snapshots/remove-object/Configuration.xml
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cf-edit/snapshots/roundtrip-crlf-preserve/Configuration.xml b/tests/skills/cases/cf-edit/snapshots/roundtrip-crlf-preserve/Configuration.xml
index 5514c74f..319f0d90 100644
--- a/tests/skills/cases/cf-edit/snapshots/roundtrip-crlf-preserve/Configuration.xml
+++ b/tests/skills/cases/cf-edit/snapshots/roundtrip-crlf-preserve/Configuration.xml
@@ -39,40 +39,40 @@
КрлфКонф
-
-
+
+
Version8_3_27
ManagedApplication
PlatformApplication
Russian
-
+
1.0.0.2
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_27
-
+
Русский
diff --git a/tests/skills/cases/cf-edit/snapshots/set-default-roles/Configuration.xml b/tests/skills/cases/cf-edit/snapshots/set-default-roles/Configuration.xml
index 8c0418de..0f37d0c4 100644
--- a/tests/skills/cases/cf-edit/snapshots/set-default-roles/Configuration.xml
+++ b/tests/skills/cases/cf-edit/snapshots/set-default-roles/Configuration.xml
@@ -39,8 +39,8 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
@@ -53,29 +53,29 @@
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -226,18 +226,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -245,7 +245,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cf-edit/snapshots/set-home-page/Catalogs/Контрагенты.xml b/tests/skills/cases/cf-edit/snapshots/set-home-page/Catalogs/Контрагенты.xml
index 448b27ce..c74dc4ed 100644
--- a/tests/skills/cases/cf-edit/snapshots/set-home-page/Catalogs/Контрагенты.xml
+++ b/tests/skills/cases/cf-edit/snapshots/set-home-page/Catalogs/Контрагенты.xml
@@ -1,4 +1,4 @@
-
+
@@ -31,14 +31,14 @@
Контрагенты
-
+
false
HierarchyFoldersAndItems
false
2
true
true
-
+
ToItems
9
25
@@ -48,7 +48,7 @@
false
true
AsDescription
-
+
Auto
InDialog
false
@@ -61,25 +61,25 @@
DontUse
Directly
Catalog.Контрагенты.Form.ФормаОбъекта
-
+
Catalog.Контрагенты.Form.ФормаСписка
-
-
-
-
-
-
-
+
+
+
+
+
+
+
false
-
-
+
+
Managed
Use
-
-
-
-
-
+
+
+
+
+
Use
Auto
DontUse
diff --git a/tests/skills/cases/cf-edit/snapshots/set-home-page/Catalogs/Товары.xml b/tests/skills/cases/cf-edit/snapshots/set-home-page/Catalogs/Товары.xml
index 4bc618b7..a5cb53a9 100644
--- a/tests/skills/cases/cf-edit/snapshots/set-home-page/Catalogs/Товары.xml
+++ b/tests/skills/cases/cf-edit/snapshots/set-home-page/Catalogs/Товары.xml
@@ -1,4 +1,4 @@
-
+
@@ -31,14 +31,14 @@
Товары
-
+
false
HierarchyFoldersAndItems
false
2
true
true
-
+
ToItems
9
25
@@ -48,7 +48,7 @@
false
true
AsDescription
-
+
Auto
InDialog
false
@@ -61,25 +61,25 @@
DontUse
Directly
Catalog.Товары.Form.ФормаЭлемента
-
+
Catalog.Товары.Form.ФормаСписка
-
-
-
-
-
-
-
+
+
+
+
+
+
+
false
-
-
+
+
Managed
Use
-
-
-
-
-
+
+
+
+
+
Use
Auto
DontUse
diff --git a/tests/skills/cases/cf-edit/snapshots/set-home-page/Configuration.xml b/tests/skills/cases/cf-edit/snapshots/set-home-page/Configuration.xml
index 282d7a47..2362f097 100644
--- a/tests/skills/cases/cf-edit/snapshots/set-home-page/Configuration.xml
+++ b/tests/skills/cases/cf-edit/snapshots/set-home-page/Configuration.xml
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cf-edit/snapshots/set-home-page/DataProcessors/Поиск.xml b/tests/skills/cases/cf-edit/snapshots/set-home-page/DataProcessors/Поиск.xml
index 5735909a..5fbd26b3 100644
--- a/tests/skills/cases/cf-edit/snapshots/set-home-page/DataProcessors/Поиск.xml
+++ b/tests/skills/cases/cf-edit/snapshots/set-home-page/DataProcessors/Поиск.xml
@@ -1,4 +1,4 @@
-
+
@@ -19,13 +19,13 @@
Поиск
-
+
true
DataProcessor.Поиск.Form.ФормаПоиска
-
+
false
-
-
+
+
diff --git a/tests/skills/cases/cf-edit/snapshots/set-panels/Configuration.xml b/tests/skills/cases/cf-edit/snapshots/set-panels/Configuration.xml
index ae8620a1..8dc3db95 100644
--- a/tests/skills/cases/cf-edit/snapshots/set-panels/Configuration.xml
+++ b/tests/skills/cases/cf-edit/snapshots/set-panels/Configuration.xml
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cf-edit/snapshots/set-version/Configuration.xml b/tests/skills/cases/cf-edit/snapshots/set-version/Configuration.xml
index 0532ee99..9c16504e 100644
--- a/tests/skills/cases/cf-edit/snapshots/set-version/Configuration.xml
+++ b/tests/skills/cases/cf-edit/snapshots/set-version/Configuration.xml
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
3.0.0
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cf-info/snapshots/config-with-objects/Configuration.xml b/tests/skills/cases/cf-info/snapshots/config-with-objects/Configuration.xml
index 283f0930..330b4e31 100644
--- a/tests/skills/cases/cf-info/snapshots/config-with-objects/Configuration.xml
+++ b/tests/skills/cases/cf-info/snapshots/config-with-objects/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cf-validate/snapshots/modified-config/Configuration.xml b/tests/skills/cases/cf-validate/snapshots/modified-config/Configuration.xml
index 0ed72acd..6242429a 100644
--- a/tests/skills/cases/cf-validate/snapshots/modified-config/Configuration.xml
+++ b/tests/skills/cases/cf-validate/snapshots/modified-config/Configuration.xml
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
Тест
1.0.0
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-borrow/snapshots/catalog/Configuration.xml b/tests/skills/cases/cfe-borrow/snapshots/catalog/Configuration.xml
index 5405b1b5..df38c8e6 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/catalog/Configuration.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/catalog/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-borrow/snapshots/catalog/ext/Configuration.xml b/tests/skills/cases/cfe-borrow/snapshots/catalog/ext/Configuration.xml
index 5c0f84b5..ae9309c1 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/catalog/ext/Configuration.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/catalog/ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-borrow/snapshots/common-module/Configuration.xml b/tests/skills/cases/cfe-borrow/snapshots/common-module/Configuration.xml
index 5fddb9da..94c10ffb 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/common-module/Configuration.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/common-module/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-borrow/snapshots/common-module/ext/Configuration.xml b/tests/skills/cases/cfe-borrow/snapshots/common-module/ext/Configuration.xml
index fd508e61..1f1ca53d 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/common-module/ext/Configuration.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/common-module/ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-borrow/snapshots/container-types/Configuration.xml b/tests/skills/cases/cfe-borrow/snapshots/container-types/Configuration.xml
index 84a6e35c..5cfee30b 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/container-types/Configuration.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/container-types/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-borrow/snapshots/container-types/Ext/Configuration.xml b/tests/skills/cases/cfe-borrow/snapshots/container-types/Ext/Configuration.xml
index a94182f7..3b6d9d12 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/container-types/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/container-types/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-borrow/snapshots/dataprocessor/Configuration.xml b/tests/skills/cases/cfe-borrow/snapshots/dataprocessor/Configuration.xml
index 7259faa0..0e50a717 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/dataprocessor/Configuration.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/dataprocessor/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-borrow/snapshots/dataprocessor/Ext/Configuration.xml b/tests/skills/cases/cfe-borrow/snapshots/dataprocessor/Ext/Configuration.xml
index 72452eba..1f902c3f 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/dataprocessor/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/dataprocessor/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-borrow/snapshots/document/Configuration.xml b/tests/skills/cases/cfe-borrow/snapshots/document/Configuration.xml
index 4a4cbd9b..20f5410b 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/document/Configuration.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/document/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-borrow/snapshots/document/ext/Configuration.xml b/tests/skills/cases/cfe-borrow/snapshots/document/ext/Configuration.xml
index 9b91739a..9ba106e5 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/document/ext/Configuration.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/document/ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-borrow/snapshots/enum/Configuration.xml b/tests/skills/cases/cfe-borrow/snapshots/enum/Configuration.xml
index 67d1adcd..09029b64 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/enum/Configuration.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/enum/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-borrow/snapshots/enum/ext/Configuration.xml b/tests/skills/cases/cfe-borrow/snapshots/enum/ext/Configuration.xml
index d7c0bb17..9dde03a1 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/enum/ext/Configuration.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/enum/ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Catalogs/Товары.xml b/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Catalogs/Товары.xml
index 912f60af..7741f6d5 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Catalogs/Товары.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Catalogs/Товары.xml
@@ -1,4 +1,4 @@
-
+
@@ -31,14 +31,14 @@
Товары
-
+
false
HierarchyFoldersAndItems
false
2
true
true
-
+
ToItems
9
25
@@ -48,7 +48,7 @@
false
true
AsDescription
-
+
Auto
InDialog
false
@@ -61,25 +61,25 @@
DontUse
Directly
Catalog.Товары.Form.ФормаЭлемента
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
false
-
-
+
+
Managed
Use
-
-
-
-
-
+
+
+
+
+
Use
Auto
DontUse
@@ -96,7 +96,7 @@
Артикул
-
+
xs:string
@@ -105,25 +105,25 @@
false
-
-
-
+
+
+
false
-
+
false
false
-
-
+
+
false
-
+
DontCheck
Items
-
-
+
+
Auto
Auto
-
-
+
+
Auto
DontIndex
diff --git a/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Configuration.xml b/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Configuration.xml
index 5405b1b5..df38c8e6 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Configuration.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Ext/Catalogs/Товары.xml b/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Ext/Catalogs/Товары.xml
index 495b109a..526e43a0 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Ext/Catalogs/Товары.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Ext/Catalogs/Товары.xml
@@ -26,7 +26,7 @@
Adopted
Товары
-
+
UUID-012
false
true
diff --git a/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Ext/Catalogs/Товары/Forms/ФормаЭлемента/Ext/Form.xml b/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Ext/Catalogs/Товары/Forms/ФормаЭлемента/Ext/Form.xml
index 7383403f..234dcda4 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Ext/Catalogs/Товары/Forms/ФормаЭлемента/Ext/Form.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Ext/Catalogs/Товары/Forms/ФормаЭлемента/Ext/Form.xml
@@ -7,16 +7,16 @@
false
-
+
Объект.Артикул
-
-
+
+
-
-
+
+
@@ -25,8 +25,8 @@
Итого
-
-
+
+
@@ -44,16 +44,16 @@
false
-
+
Объект.Артикул
-
-
+
+
-
-
+
+
@@ -62,8 +62,8 @@
Итого
-
-
+
+
diff --git a/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Ext/Configuration.xml b/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Ext/Configuration.xml
index 5c0f84b5..ae9309c1 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/form-bindings/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-borrow/snapshots/multiple-objects/Configuration.xml b/tests/skills/cases/cfe-borrow/snapshots/multiple-objects/Configuration.xml
index 95db8072..362b0c9b 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/multiple-objects/Configuration.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/multiple-objects/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-borrow/snapshots/multiple-objects/ext/Configuration.xml b/tests/skills/cases/cfe-borrow/snapshots/multiple-objects/ext/Configuration.xml
index 1fcd688d..3c592c8b 100644
--- a/tests/skills/cases/cfe-borrow/snapshots/multiple-objects/ext/Configuration.xml
+++ b/tests/skills/cases/cfe-borrow/snapshots/multiple-objects/ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-diff/snapshots/with-borrowed-catalog/Configuration.xml b/tests/skills/cases/cfe-diff/snapshots/with-borrowed-catalog/Configuration.xml
index 5405b1b5..df38c8e6 100644
--- a/tests/skills/cases/cfe-diff/snapshots/with-borrowed-catalog/Configuration.xml
+++ b/tests/skills/cases/cfe-diff/snapshots/with-borrowed-catalog/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-diff/snapshots/with-borrowed-catalog/ext/Configuration.xml b/tests/skills/cases/cfe-diff/snapshots/with-borrowed-catalog/ext/Configuration.xml
index 5c0f84b5..ae9309c1 100644
--- a/tests/skills/cases/cfe-diff/snapshots/with-borrowed-catalog/ext/Configuration.xml
+++ b/tests/skills/cases/cfe-diff/snapshots/with-borrowed-catalog/ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-diff/snapshots/with-common-module/Configuration.xml b/tests/skills/cases/cfe-diff/snapshots/with-common-module/Configuration.xml
index 5fddb9da..94c10ffb 100644
--- a/tests/skills/cases/cfe-diff/snapshots/with-common-module/Configuration.xml
+++ b/tests/skills/cases/cfe-diff/snapshots/with-common-module/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-diff/snapshots/with-common-module/ext/Configuration.xml b/tests/skills/cases/cfe-diff/snapshots/with-common-module/ext/Configuration.xml
index fd508e61..1f1ca53d 100644
--- a/tests/skills/cases/cfe-diff/snapshots/with-common-module/ext/Configuration.xml
+++ b/tests/skills/cases/cfe-diff/snapshots/with-common-module/ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/actualize-batch/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/actualize-batch/Configuration.xml
index 1c06fa48..89856537 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/actualize-batch/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/actualize-batch/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/actualize-batch/Ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/actualize-batch/Ext/Configuration.xml
index 91a980e8..9416d1e8 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/actualize-batch/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/actualize-batch/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/after-handler/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/after-handler/Configuration.xml
index 5405b1b5..df38c8e6 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/after-handler/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/after-handler/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/after-handler/ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/after-handler/ext/Configuration.xml
index 5c0f84b5..ae9309c1 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/after-handler/ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/after-handler/ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/before-handler/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/before-handler/Configuration.xml
index 5405b1b5..df38c8e6 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/before-handler/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/before-handler/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/before-handler/ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/before-handler/ext/Configuration.xml
index 5c0f84b5..ae9309c1 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/before-handler/ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/before-handler/ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/check-clean/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/check-clean/Configuration.xml
index 1c06fa48..89856537 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/check-clean/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/check-clean/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/check-clean/Ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/check-clean/Ext/Configuration.xml
index 91a980e8..9416d1e8 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/check-clean/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/check-clean/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/document-manager/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/document-manager/Configuration.xml
index 4a4cbd9b..20f5410b 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/document-manager/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/document-manager/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/document-manager/ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/document-manager/ext/Configuration.xml
index 9b91739a..9ba106e5 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/document-manager/ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/document-manager/ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/filepath-mode/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/filepath-mode/Configuration.xml
index bc76ad22..11bf80fe 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/filepath-mode/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/filepath-mode/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/filepath-mode/Ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/filepath-mode/Ext/Configuration.xml
index a314da7b..976c624a 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/filepath-mode/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/filepath-mode/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Catalogs/Товары.xml b/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Catalogs/Товары.xml
index 912f60af..7741f6d5 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Catalogs/Товары.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Catalogs/Товары.xml
@@ -1,4 +1,4 @@
-
+
@@ -31,14 +31,14 @@
Товары
-
+
false
HierarchyFoldersAndItems
false
2
true
true
-
+
ToItems
9
25
@@ -48,7 +48,7 @@
false
true
AsDescription
-
+
Auto
InDialog
false
@@ -61,25 +61,25 @@
DontUse
Directly
Catalog.Товары.Form.ФормаЭлемента
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
false
-
-
+
+
Managed
Use
-
-
-
-
-
+
+
+
+
+
Use
Auto
DontUse
@@ -96,7 +96,7 @@
Артикул
-
+
xs:string
@@ -105,25 +105,25 @@
false
-
-
-
+
+
+
false
-
+
false
false
-
-
+
+
false
-
+
DontCheck
Items
-
-
+
+
Auto
Auto
-
-
+
+
Auto
DontIndex
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Configuration.xml
index 5405b1b5..df38c8e6 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Ext/Catalogs/Товары.xml b/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Ext/Catalogs/Товары.xml
index 88608a09..af6775aa 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Ext/Catalogs/Товары.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Ext/Catalogs/Товары.xml
@@ -26,7 +26,7 @@
Adopted
Товары
-
+
UUID-012
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Ext/Catalogs/Товары/Forms/ФормаЭлемента/Ext/Form.xml b/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Ext/Catalogs/Товары/Forms/ФормаЭлемента/Ext/Form.xml
index 12d767d0..337fadce 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Ext/Catalogs/Товары/Forms/ФормаЭлемента/Ext/Form.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Ext/Catalogs/Товары/Forms/ФормаЭлемента/Ext/Form.xml
@@ -7,11 +7,11 @@
false
-
+
-
-
+
+
@@ -23,11 +23,11 @@
false
-
+
-
-
+
+
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Ext/Configuration.xml
index 5c0f84b5..ae9309c1 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/form-handler/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/instead-function/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/instead-function/Configuration.xml
index c8ff820f..e41ca935 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/instead-function/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/instead-function/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/instead-function/Ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/instead-function/Ext/Configuration.xml
index 4a4a91a2..b03ef6cd 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/instead-function/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/instead-function/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/mod-and-control/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/mod-and-control/Configuration.xml
index 5fddb9da..94c10ffb 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/mod-and-control/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/mod-and-control/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/mod-and-control/ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/mod-and-control/ext/Configuration.xml
index fd508e61..1f1ca53d 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/mod-and-control/ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/mod-and-control/ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/preproc-wrap/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/preproc-wrap/Configuration.xml
index ed39461c..1db2767d 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/preproc-wrap/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/preproc-wrap/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/preproc-wrap/Ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/preproc-wrap/Ext/Configuration.xml
index 0ad08c47..5f65e601 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/preproc-wrap/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/preproc-wrap/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/reanchor-comment-stable/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/reanchor-comment-stable/Configuration.xml
index 51db5537..0aaac62c 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/reanchor-comment-stable/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/reanchor-comment-stable/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/reanchor-comment-stable/Ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/reanchor-comment-stable/Ext/Configuration.xml
index fca51fa3..210e40d2 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/reanchor-comment-stable/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/reanchor-comment-stable/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/region-reuse/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/region-reuse/Configuration.xml
index 85253811..89de26b8 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/region-reuse/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/region-reuse/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/region-reuse/Ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/region-reuse/Ext/Configuration.xml
index 366852d0..9bedefe7 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/region-reuse/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/region-reuse/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/resync-conflict/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/resync-conflict/Configuration.xml
index c7445823..f57f20d9 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/resync-conflict/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/resync-conflict/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/resync-conflict/Ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/resync-conflict/Ext/Configuration.xml
index 72db4356..c7361e88 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/resync-conflict/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/resync-conflict/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/resync-noop/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/resync-noop/Configuration.xml
index 6e981c55..4cd81016 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/resync-noop/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/resync-noop/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/resync-noop/Ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/resync-noop/Ext/Configuration.xml
index 4b34f991..ecc7bab6 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/resync-noop/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/resync-noop/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/resync-reanchor/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/resync-reanchor/Configuration.xml
index 6600d990..7d480588 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/resync-reanchor/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/resync-reanchor/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/resync-reanchor/Ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/resync-reanchor/Ext/Configuration.xml
index 5dffb5f7..2fea755d 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/resync-reanchor/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/resync-reanchor/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/transferred-blankskew/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/transferred-blankskew/Configuration.xml
index 51db5537..0aaac62c 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/transferred-blankskew/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/transferred-blankskew/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/transferred-blankskew/Ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/transferred-blankskew/Ext/Configuration.xml
index fca51fa3..210e40d2 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/transferred-blankskew/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/transferred-blankskew/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/transferred-delete/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/transferred-delete/Configuration.xml
index aa3b29a1..5fe1c0c0 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/transferred-delete/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/transferred-delete/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/transferred-delete/Ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/transferred-delete/Ext/Configuration.xml
index 146162b9..c0aeaaf8 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/transferred-delete/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/transferred-delete/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/transferred-insert/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/transferred-insert/Configuration.xml
index aa3b29a1..5fe1c0c0 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/transferred-insert/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/transferred-insert/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/transferred-insert/Ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/transferred-insert/Ext/Configuration.xml
index 146162b9..c0aeaaf8 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/transferred-insert/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/transferred-insert/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/transferred-orphan-comment/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/transferred-orphan-comment/Configuration.xml
index 51db5537..0aaac62c 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/transferred-orphan-comment/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/transferred-orphan-comment/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/transferred-orphan-comment/Ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/transferred-orphan-comment/Ext/Configuration.xml
index fca51fa3..210e40d2 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/transferred-orphan-comment/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/transferred-orphan-comment/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/transferred-partial/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/transferred-partial/Configuration.xml
index aa3b29a1..5fe1c0c0 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/transferred-partial/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/transferred-partial/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-patch-method/snapshots/transferred-partial/Ext/Configuration.xml b/tests/skills/cases/cfe-patch-method/snapshots/transferred-partial/Ext/Configuration.xml
index 146162b9..c0aeaaf8 100644
--- a/tests/skills/cases/cfe-patch-method/snapshots/transferred-partial/Ext/Configuration.xml
+++ b/tests/skills/cases/cfe-patch-method/snapshots/transferred-partial/Ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/cfe-validate/snapshots/with-borrowed-object/Configuration.xml b/tests/skills/cases/cfe-validate/snapshots/with-borrowed-object/Configuration.xml
index 5405b1b5..df38c8e6 100644
--- a/tests/skills/cases/cfe-validate/snapshots/with-borrowed-object/Configuration.xml
+++ b/tests/skills/cases/cfe-validate/snapshots/with-borrowed-object/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/cfe-validate/snapshots/with-borrowed-object/ext/Configuration.xml b/tests/skills/cases/cfe-validate/snapshots/with-borrowed-object/ext/Configuration.xml
index 5c0f84b5..ae9309c1 100644
--- a/tests/skills/cases/cfe-validate/snapshots/with-borrowed-object/ext/Configuration.xml
+++ b/tests/skills/cases/cfe-validate/snapshots/with-borrowed-object/ext/Configuration.xml
@@ -40,7 +40,7 @@
Тест
-
+
Customization
true
Тест_
@@ -56,11 +56,11 @@
Language.Русский
-
-
-
-
-
+
+
+
+
+
TaxiEnableVersion8_2
diff --git a/tests/skills/cases/epf-validate/snapshots/valid-with-form/МояОбработка.xml b/tests/skills/cases/epf-validate/snapshots/valid-with-form/МояОбработка.xml
index 7562b211..c715b21b 100644
--- a/tests/skills/cases/epf-validate/snapshots/valid-with-form/МояОбработка.xml
+++ b/tests/skills/cases/epf-validate/snapshots/valid-with-form/МояОбработка.xml
@@ -1,4 +1,4 @@
-
+
@@ -19,9 +19,9 @@
МояОбработка
-
+
ExternalDataProcessor.МояОбработка.Form.Форма
-
+
diff --git a/tests/skills/cases/epf-validate/snapshots/valid-with-template/МояОбработка.xml b/tests/skills/cases/epf-validate/snapshots/valid-with-template/МояОбработка.xml
index 2d0f8b97..64d95c5d 100644
--- a/tests/skills/cases/epf-validate/snapshots/valid-with-template/МояОбработка.xml
+++ b/tests/skills/cases/epf-validate/snapshots/valid-with-template/МояОбработка.xml
@@ -1,4 +1,4 @@
-
+
@@ -19,9 +19,9 @@
МояОбработка
-
-
-
+
+
+
Макет
diff --git a/tests/skills/cases/form-add/snapshots/basic/Catalogs/Товары.xml b/tests/skills/cases/form-add/snapshots/basic/Catalogs/Товары.xml
index a82a58a1..1561520a 100644
--- a/tests/skills/cases/form-add/snapshots/basic/Catalogs/Товары.xml
+++ b/tests/skills/cases/form-add/snapshots/basic/Catalogs/Товары.xml
@@ -1,4 +1,4 @@
-
+
@@ -31,14 +31,14 @@
Товары
-
+
false
HierarchyFoldersAndItems
false
2
true
true
-
+
ToItems
9
25
@@ -48,7 +48,7 @@
false
true
AsDescription
-
+
Auto
InDialog
false
@@ -61,25 +61,25 @@
DontUse
Directly
Catalog.Товары.Form.ФормаЭлемента
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
false
-
-
+
+
Managed
Use
-
-
-
-
-
+
+
+
+
+
Use
Auto
DontUse
diff --git a/tests/skills/cases/form-add/snapshots/basic/Configuration.xml b/tests/skills/cases/form-add/snapshots/basic/Configuration.xml
index 5405b1b5..df38c8e6 100644
--- a/tests/skills/cases/form-add/snapshots/basic/Configuration.xml
+++ b/tests/skills/cases/form-add/snapshots/basic/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/form-add/snapshots/dataprocessor-form/Configuration.xml b/tests/skills/cases/form-add/snapshots/dataprocessor-form/Configuration.xml
index 54703598..86dd840b 100644
--- a/tests/skills/cases/form-add/snapshots/dataprocessor-form/Configuration.xml
+++ b/tests/skills/cases/form-add/snapshots/dataprocessor-form/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/form-add/snapshots/dataprocessor-form/DataProcessors/МояОбработка.xml b/tests/skills/cases/form-add/snapshots/dataprocessor-form/DataProcessors/МояОбработка.xml
index ed790d5c..bbc03373 100644
--- a/tests/skills/cases/form-add/snapshots/dataprocessor-form/DataProcessors/МояОбработка.xml
+++ b/tests/skills/cases/form-add/snapshots/dataprocessor-form/DataProcessors/МояОбработка.xml
@@ -1,4 +1,4 @@
-
+
@@ -19,13 +19,13 @@
Моя обработка
-
+
true
DataProcessor.МояОбработка.Form.Форма
-
+
false
-
-
+
+
diff --git a/tests/skills/cases/form-add/snapshots/document-form/Configuration.xml b/tests/skills/cases/form-add/snapshots/document-form/Configuration.xml
index af02d5cc..9b01c66a 100644
--- a/tests/skills/cases/form-add/snapshots/document-form/Configuration.xml
+++ b/tests/skills/cases/form-add/snapshots/document-form/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/form-add/snapshots/document-form/Documents/Заказ.xml b/tests/skills/cases/form-add/snapshots/document-form/Documents/Заказ.xml
index 250155ad..3e976a09 100644
--- a/tests/skills/cases/form-add/snapshots/document-form/Documents/Заказ.xml
+++ b/tests/skills/cases/form-add/snapshots/document-form/Documents/Заказ.xml
@@ -1,4 +1,4 @@
-
+
@@ -31,17 +31,17 @@
Заказ
-
+
true
-
+
String
11
Variable
Year
true
true
-
-
+
+
Document.Заказ.StandardAttribute.Number
@@ -50,28 +50,28 @@
DontUse
Directly
Document.Заказ.Form.ФормаДокумента
-
-
-
-
-
+
+
+
+
+
Allow
Deny
AutoDelete
WriteSelected
AutoFill
-
+
true
true
false
-
+
Managed
Use
-
-
-
-
-
+
+
+
+
+
Auto
DontUse
false
diff --git a/tests/skills/cases/form-add/snapshots/epf-basic/МояОбработка.xml b/tests/skills/cases/form-add/snapshots/epf-basic/МояОбработка.xml
index 7562b211..c715b21b 100644
--- a/tests/skills/cases/form-add/snapshots/epf-basic/МояОбработка.xml
+++ b/tests/skills/cases/form-add/snapshots/epf-basic/МояОбработка.xml
@@ -1,4 +1,4 @@
-
+
@@ -19,9 +19,9 @@
МояОбработка
-
+
ExternalDataProcessor.МояОбработка.Form.Форма
-
+
diff --git a/tests/skills/cases/form-add/snapshots/epf-compile-then-add/КонсольКода.xml b/tests/skills/cases/form-add/snapshots/epf-compile-then-add/КонсольКода.xml
index 6d5e79c7..ea42341d 100644
--- a/tests/skills/cases/form-add/snapshots/epf-compile-then-add/КонсольКода.xml
+++ b/tests/skills/cases/form-add/snapshots/epf-compile-then-add/КонсольКода.xml
@@ -1,4 +1,4 @@
-
+
@@ -19,9 +19,9 @@
КонсольКода
-
+
ExternalDataProcessor.КонсольКода.Form.Форма
-
+
diff --git a/tests/skills/cases/form-add/snapshots/epf-named-form/ЗагрузкаДанных.xml b/tests/skills/cases/form-add/snapshots/epf-named-form/ЗагрузкаДанных.xml
index 5ec70c34..88c7b0cb 100644
--- a/tests/skills/cases/form-add/snapshots/epf-named-form/ЗагрузкаДанных.xml
+++ b/tests/skills/cases/form-add/snapshots/epf-named-form/ЗагрузкаДанных.xml
@@ -1,4 +1,4 @@
-
+
@@ -19,9 +19,9 @@
ЗагрузкаДанных
-
+
ExternalDataProcessor.ЗагрузкаДанных.Form.ФормаНастроек
-
+
diff --git a/tests/skills/cases/form-add/snapshots/epf-second-form/МояОбработка.xml b/tests/skills/cases/form-add/snapshots/epf-second-form/МояОбработка.xml
index 73bc6be8..7d323ea5 100644
--- a/tests/skills/cases/form-add/snapshots/epf-second-form/МояОбработка.xml
+++ b/tests/skills/cases/form-add/snapshots/epf-second-form/МояОбработка.xml
@@ -1,4 +1,4 @@
-
+
@@ -19,9 +19,9 @@
МояОбработка
-
+
ExternalDataProcessor.МояОбработка.Form.Форма
-
+
diff --git a/tests/skills/cases/form-add/snapshots/epf-set-default/МояОбработка.xml b/tests/skills/cases/form-add/snapshots/epf-set-default/МояОбработка.xml
index 3e17d943..324ca5db 100644
--- a/tests/skills/cases/form-add/snapshots/epf-set-default/МояОбработка.xml
+++ b/tests/skills/cases/form-add/snapshots/epf-set-default/МояОбработка.xml
@@ -1,4 +1,4 @@
-
+
@@ -19,9 +19,9 @@
МояОбработка
-
+
ExternalDataProcessor.МояОбработка.Form.ФормаОсновная
-
+
diff --git a/tests/skills/cases/form-add/snapshots/list-form/Catalogs/Контрагенты.xml b/tests/skills/cases/form-add/snapshots/list-form/Catalogs/Контрагенты.xml
index f1f43e69..f1415ba8 100644
--- a/tests/skills/cases/form-add/snapshots/list-form/Catalogs/Контрагенты.xml
+++ b/tests/skills/cases/form-add/snapshots/list-form/Catalogs/Контрагенты.xml
@@ -1,4 +1,4 @@
-
+
@@ -31,14 +31,14 @@
Контрагенты
-
+
false
HierarchyFoldersAndItems
false
2
true
true
-
+
ToItems
9
25
@@ -48,7 +48,7 @@
false
true
AsDescription
-
+
Auto
InDialog
false
@@ -60,26 +60,26 @@
Begin
DontUse
Directly
-
-
+
+
Catalog.Контрагенты.Form.ФормаСписка
-
-
-
-
-
-
-
+
+
+
+
+
+
+
false
-
-
+
+
Managed
Use
-
-
-
-
-
+
+
+
+
+
Use
Auto
DontUse
diff --git a/tests/skills/cases/form-add/snapshots/list-form/Configuration.xml b/tests/skills/cases/form-add/snapshots/list-form/Configuration.xml
index c07959c0..40288da9 100644
--- a/tests/skills/cases/form-add/snapshots/list-form/Configuration.xml
+++ b/tests/skills/cases/form-add/snapshots/list-form/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/form-add/snapshots/set-default/Configuration.xml b/tests/skills/cases/form-add/snapshots/set-default/Configuration.xml
index f0186f3d..0ff6fd81 100644
--- a/tests/skills/cases/form-add/snapshots/set-default/Configuration.xml
+++ b/tests/skills/cases/form-add/snapshots/set-default/Configuration.xml
@@ -1,4 +1,4 @@
-
+
@@ -39,40 +39,40 @@
TestConfig
-
-
+
+
Version8_3_24
ManagedApplication
PlatformApplication
Russian
-
+
-
+
false
false
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Biometrics
@@ -223,18 +223,18 @@
false
-
-
-
+
+
+
Normal
-
-
+
+
Language.Русский
-
-
-
-
-
+
+
+
+
+
Managed
NotAutoFree
DontUse
@@ -242,7 +242,7 @@
TaxiEnableVersion8_2
DontUse
Version8_3_24
-
+
Русский
diff --git a/tests/skills/cases/form-add/snapshots/set-default/Documents/Счет.xml b/tests/skills/cases/form-add/snapshots/set-default/Documents/Счет.xml
index e26fed53..f1bffa11 100644
--- a/tests/skills/cases/form-add/snapshots/set-default/Documents/Счет.xml
+++ b/tests/skills/cases/form-add/snapshots/set-default/Documents/Счет.xml
@@ -1,4 +1,4 @@
-
+