Fix 3 handler examples: put-patch names, value-select keys, active-search primitive

1. Rename ex-pp-* handlers to ex-putpatch-* to match URL slugs
   (putpatch-edit-all, putpatch, putpatch-cancel)
2. Fix value-select-data: keyword keys (:Languages) → string keys
   ("Languages") so request-arg string lookup matches
3. Fix dom-value → element-value in orchestration.sx bind-event
   changed modifier (dom-value was never defined, element-value is)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-01 22:14:48 +00:00
parent 33350ced6d
commit 13eb701518
4 changed files with 536 additions and 460 deletions

View File

@@ -466,7 +466,7 @@
(when
(get mods "changed")
(let
((val (dom-value el)))
((val element-value))
(if
(= val last-val)
(set! should-fire false)

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@@ -466,7 +466,7 @@
(when
(get mods "changed")
(let
((val (dom-value el)))
((val element-value))
(if
(= val last-val)
(set! should-fire false)