feat(skd): различать 3 namespace цветов (style/web/win)

Раньше decompile Normalize-Color сворачивал любой dN: префикс в style:
независимо от URI. Compile Emit-ColorValue знал только style: → один xmlns
(http://v8.1c.ru/8.1/data/ui/style). Цвета web:GhostWhite и win:Highlight
терялись/искажались.

URI mapping:
- http://v8.1c.ru/8.1/data/ui/style          → style:
- http://v8.1c.ru/8.1/data/ui/colors/web     → web:
- http://v8.1c.ru/8.1/data/ui/colors/windows → win:

decompile: резолвим prefix через GetNamespaceOfPrefix.
compile (PS+Py): Emit-ColorValue для template cells — long form с
локальным xmlns. Emit-AppearanceValue (внутри settings) — short form,
т.к. <dcsset:settings> уже объявляет xmlns:style/web/win/sys на корне.

См. upload/erf/ЦветаВМакете — образец с 4 формами цвета.
This commit is contained in:
Nick Shirokov
2026-05-24 20:57:12 +03:00
parent 609698b00d
commit e59c3281fd
3 changed files with 44 additions and 14 deletions
@@ -1,4 +1,4 @@
# skd-decompile v0.85 — Decompile 1C DCS Template.xml to JSON DSL (draft)
# skd-decompile v0.86 — Decompile 1C DCS Template.xml to JSON DSL (draft)
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[Parameter(Mandatory)]
@@ -1036,7 +1036,17 @@ function Normalize-Color {
param($valNode)
if (-not $valNode) { return $null }
$txt = $valNode.InnerText
if ($txt -match '^d\d+p\d+:(.+)$') { return 'style:' + $matches[1] }
# Префикс xsi:type или value — резолвим в URI и выбираем DSL-префикс.
if ($txt -match '^([^:]+):(.+)$') {
$pfx = $matches[1]
$name = $matches[2]
$uri = $valNode.GetNamespaceOfPrefix($pfx)
switch ($uri) {
'http://v8.1c.ru/8.1/data/ui/style' { return 'style:' + $name }
'http://v8.1c.ru/8.1/data/ui/colors/web' { return 'web:' + $name }
'http://v8.1c.ru/8.1/data/ui/colors/windows' { return 'win:' + $name }
}
}
return $txt
}