ブラウザの安全性を高めるための XSLT の削除とかいうことで、つまりブラウザネイティブでの XSLT のサポートは消えるので、ちょっと哀しいですねという気持ち。
一時期(20年前……)は XML を手書きで書いて、XSLT で変換してHTMLにするという日記システムを作って使っていた (さすがにブラウザ直ではなくPHPでやらせてたけど)。そこから20年、クライアントサイド XSLT の本来の目的である、データをレンダリング可能な HTML に変換する機能は、より安全で、より人間工学に基づき、より適切にメンテナンスされた JavaScript API に取って代わられています。
とか書いてあるのを見ると、まぁ事実なんだけどただかなしいなという。
XSLT (特に 1.0) は、副作用がなく、変数は不変(一度定義したら変更不可)、ループは再帰で実現するという、割と強めの関数型言語で、自分が初めて触った関数型だったと思う。XSLT のおかげで他の関数型のパラダイムも割とすんなり入った気もする。
Gemini に XSLT で関数型っぽさがわかるサンプルを書かせてみた
出力そのまま。SVG を出力するというサンプルを書いてくれた。しかもアニメーションする。これが素のブラウザで見れるのも今だけです。
XML はただの起点
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="fractal.xsl"?>
<root></root> XSLT 側では4つの四角を call-template で生成するところから開始して、再帰でフラクタル状に四角をつくっていく。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/2000/svg">
<xsl:output method="xml" indent="yes" media-type="image/svg+xml"/>
<xsl:template match="/">
<svg width="100%" height="100%" viewBox="-500 -500 1000 1000" style="background-color: #1a1a1a;">
<title>XSLT Recursive Fractal</title>
<xsl:call-template name="draw-square">
<xsl:with-param name="x" select="0"/>
<xsl:with-param name="y" select="0"/>
<xsl:with-param name="size" select="300"/>
<xsl:with-param name="depth" select="5"/> </xsl:call-template>
</svg>
</xsl:template>
<xsl:template name="draw-square">
<xsl:param name="x"/>
<xsl:param name="y"/>
<xsl:param name="size"/>
<xsl:param name="depth"/>
<xsl:if test="$depth > 0">
<xsl:variable name="color">
<xsl:text>hsl(</xsl:text>
<xsl:value-of select="$depth * 40"/>
<xsl:text>, 70%, 60%)</xsl:text>
</xsl:variable>
<rect
x="{$x - $size div 2}"
y="{$y - $size div 2}"
width="{$size}"
height="{$size}"
fill="{$color}"
opacity="0.9"
stroke="#fff"
stroke-width="1"
>
<animateTransform
attributeName="transform"
type="rotate"
from="0 {$x} {$y}"
to="360 {$x} {$y}"
dur="{10 + $depth * 5}s"
repeatCount="indefinite" />
</rect>
<xsl:variable name="nextSize" select="$size * 0.5"/>
<xsl:variable name="offset" select="$size * 0.75"/> <xsl:variable name="nextDepth" select="$depth - 1"/>
<xsl:call-template name="draw-square">
<xsl:with-param name="x" select="$x"/>
<xsl:with-param name="y" select="$y - $offset"/>
<xsl:with-param name="size" select="$nextSize"/>
<xsl:with-param name="depth" select="$nextDepth"/>
</xsl:call-template>
<xsl:call-template name="draw-square">
<xsl:with-param name="x" select="$x"/>
<xsl:with-param name="y" select="$y + $offset"/>
<xsl:with-param name="size" select="$nextSize"/>
<xsl:with-param name="depth" select="$nextDepth"/>
</xsl:call-template>
<xsl:call-template name="draw-square">
<xsl:with-param name="x" select="$x - $offset"/>
<xsl:with-param name="y" select="$y"/>
<xsl:with-param name="size" select="$nextSize"/>
<xsl:with-param name="depth" select="$nextDepth"/>
</xsl:call-template>
<xsl:call-template name="draw-square">
<xsl:with-param name="x" select="$x + $offset"/>
<xsl:with-param name="y" select="$y"/>
<xsl:with-param name="size" select="$nextSize"/>
<xsl:with-param name="depth" select="$nextDepth"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
</xsl:stylesheet> 