The SLAX Scripting Language: An Alternate Syntax for XSLT
The article discusses the implementation of mutable variables in the SLAX scripting language, which is used in JUNOS. It highlights the challenges associated with mutable variables, including memory overhead and portability issues. The author argues that while mutable variables can alleviate some scripting difficulties, they introduce complexities that may not be worth the trade-off.
- ▪SLAX allows for mutable variables, which are not standard in XSLT and can complicate script portability.
- ▪Using mutable variables can lead to increased memory overhead due to the need to retain previous values.
- ▪The article outlines how mutable variables affect the operations of axes in SLAX.
Hacker News (Newest) files mainly under programming. We currently carry 5,306 of its stories.
Story provenance
Source · retrieval · rights · ranking — open for full record
inspect →
Story provenance
Attribution is not the same as permission. This drawer separates discovery metadata, excerpts, WeSearch-generated summaries, reuse status, and whether the publisher receives the visit. Nothing here claims a legal grant the publisher has not made.
Record
| Original publisher | Github |
| Canonical URL | http://juniper.github.io/libslax/slax-manual.html |
| Publication time | Sat, 30 May 2026 08:00:50 +0000 |
| Retrieval time | 2026-05-30T08:12:08.920Z |
| Last seen | 2026-05-30T08:12:08.920Z |
| Headline source | Publisher (no WeSearch rewrite) |
| Excerpt source | publisher body |
| Excerpt method | First ~120 words (~800 chars) of extracted publisher body, fair-use limited. |
| Summary | WeSearch · cerebras-chat (WeSearch summarizer) |
| Summary source text | contentText |
| Citation coverage | Summary is a WeSearch-generated derivative; primary citation is the original publisher URL. |
| Cluster | uZu0HYQUvfwq |
| Cluster logic | Grouped by semantic title/content similarity across sources within a rolling window. Same-publisher template collisions are excluded from coverage comparison. |
| Ranking reason | Story pages are not engagement-ranked. Hub feeds use recency, with optional source-diversified chronological ordering (cap consecutive stories per source). No personalized ranking. |
| Publisher visit | Yes — open original |
| Substitutes article? | No — link-out required for full text |
Rights status (four layers)
WeSearch handling by dimension
| Indexing | May the item be indexed (stored, ranked, made findable)? | Allowed |
| Snippet | May a short excerpt of the publisher's text be shown? | Allowed |
| AI summary | May WeSearch generate its own short summary of the article? | Limited |
| Retrieval / RAG | May the content be exposed for third-party retrieval-augmented generation? | Not asserted |
| Model training | May the content be used to train AI models? | Not asserted |
| Commercial reuse | May the content be reused commercially? | Not permitted |
Basis: Derived from the published RSS/Atom feed. Contact: [email protected]. Reviewed: 2026-07-24.
Opening excerpt (first ~120 words) tap to expand
B.1.3� Mutable Variables XSLT has immutable variables. This was done to support various optimizations and advanced streaming functionality. But it remains one of the most painful parts of XSLT. We use SLAX in JUNOS and provide the ability to perform XML-based RPCs to local and remote JUNOS boxes. One RPC allows the script to store and retrieve values in an SNMP MIB (the jnxUtility MIB). We have users using this to "fake" mutable variables, so for our environment, any theoretical arguments against the value of mutable variables are lost. They are happening, and the question becomes whether we want to force script writers into mental anguish to allow them. Yes, exactly. That was an apologetical defense of the following code, which implements mutable variables.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at Github.