Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/skill/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description: >
utility code in MUMPS/YottaDB. Triggers: "m-stdlib", "STDJSON", "STDASSERT", "STDCRYPTO", "STDLOG", "$$parse^STD", "do start^STDASSERT", "^STD".
---

# m-stdlib — pattern library and quick reference (v0.5.0)
# m-stdlib — pattern library and quick reference (v0.7.0)

Generated from m-stdlib's `dist/stdlib-manifest.json` — every public
module + label, the canonical-idiom library, and the full U-STD* error
Expand Down
2 changes: 1 addition & 1 deletion dist/skill/error-codes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# m-stdlib — error codes

m-stdlib v0.5.0; 44 error codes across 14 modules.
m-stdlib v0.7.0; 44 error codes across 14 modules.

Inverted index over the manifest's `@raises` arrays. Every
`,U-STDxxx-NAME,` code an m-stdlib label sets via `set $ecode=`
Expand Down
2 changes: 1 addition & 1 deletion dist/skill/manifest-index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# m-stdlib — manifest index

m-stdlib v0.5.0; 33 modules; 290 public labels.
m-stdlib v0.7.0; 33 modules; 290 public labels.

Generated from `dist/stdlib-manifest.json`. One entry per module
with every public label: signature on the left, synopsis on the
Expand Down
2 changes: 1 addition & 1 deletion dist/skill/patterns.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!-- generated from tools/skill-patterns.md against m-stdlib v0.5.0; do not edit this file directly — edit the input. -->
<!-- generated from tools/skill-patterns.md against m-stdlib v0.7.0; do not edit this file directly — edit the input. -->

# m-stdlib — canonical patterns

Expand Down
9 changes: 8 additions & 1 deletion scripts/unseed-vista.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,18 @@ CONN="${VISTA_CONN_FILE:-$HOME/data/vista-meta/conn.env}"
# shellcheck disable=SC1090
source "$CONN"

# NOTE (m/v waterline transport monopoly): this hand-rolls the raw GT.M interpreter
# over SSH against the LEGACY vista-meta host — NOT the vehu/foia VSL-MSL driver
# stack (which is reached only through m-driver-sdk -> m-ydb/m-iris via the `m`
# toolchain). vista-meta is winding down and has no driver transport, so this stays
# raw. The trailing `stack-exempt` marker keeps the offending line visible to the
# engine-access gate (it is a harmless comment to the remote bash — ends at its
# own newline, so the closing quote on the next line is untouched).
ssh -p "$VISTA_SSH_PORT" -o StrictHostKeyChecking=no -o BatchMode=yes \
"$VISTA_SSH_USER@$VISTA_HOST" "bash -lc '
source /etc/profile.d/ydb_env.sh
rm -rf \$HOME/export/seed/$PROJECT
\$ydb_dist/mumps -run %XCMD \"K ^XTMP(\\\"$XTMP_KEY\\\")\" 2>/dev/null || true
\$ydb_dist/mumps -run %XCMD \"K ^XTMP(\\\"$XTMP_KEY\\\")\" 2>/dev/null || true # stack-exempt: legacy vista-meta SSH cleanup, no driver transport
' " 2>/dev/null || true

echo "[$PROJECT] unseed done"
Loading