# HG changeset patch # User Maxim Dounin # Date 1392835399 -14400 # Node ID c9be645cc395ecb60dfa2496cbd0dd6c505a8f4c XSLScript: added some description found. Unfortunately, official site gone long time ago, and current version of the site has robots.txt which renders archive.org useless. So it's non-trivial task to find a description. diff --git a/xsls.txt b/xsls.txt new file mode 100644 --- /dev/null +++ b/xsls.txt @@ -0,0 +1,176 @@ +JAR can be found here: + +http://ftp.netbsd.org/pub/pkgsrc/current/pkgsrc/www/hiawatha/README.html + +Recovered from: + +http://moemesto.ru/link/6865082 +http://moemesto.ru/philonov/page/6865082/download/INODE.RU%20/%20ProgrammaZm%20/%20XSLScript%20-%20%D0%B7%D0%B0%D0%BC%D0%B5%D0%BD%D0%B0%20XSLT + +XSLScript - замена XSLT +[ 2004/07/16 ProgrammaZm ] + +Возможно удобная замена XSLT. Файлы XSLScript преобразуются в xslt. + + + // Источник: http://pault.com/pault/XSLScript/ + +Since Year 2000 +Version 0.7 +Check out TerseXML project + +XSLScript is for those, who are writing complex XSLT stylesheets. + +XSLScript is a terse notation for writing complex XSLT stylesheets. XSLScript is part of Hiawatha web-server, but XSLScript also can be used stand-alone. + +To execute XSLScript script: + +xsls some.xml some.xsls +The XSLScript script (some.xsls) gets compiled into corresponding XSLT stylesheet and then generated XSLT stylesheet is applied to the file some.xml (no temporary .xsl file is created, this all happens in the memory). The actual XSLT tranformation is performed by SAXON. There is 1-1 lines mapping between XSLScript script and generated XSLT ( this means if some XSLScript construction starts on line 5, the corresponding XSLT construction will also start on the same line 5. ) + +To generate the XSLT stylesheet out of XSLScript script: + +xslsdump some.xsls +or + +xslsdump-indent some.xsls +if you want a nice looking indentation. + +Why XSLScript ? + +XSLT syntax is not for human beings. + +One can write complex XSLT code in XSLScript and then generate the 100% XSLT stylesheet. Like I do. Occasionaly. + +Can I use my XSLT stylesheets with XSLScript? + +You can use xsl:import / xsl:include to include .xsl into .xsls and to include .xsls into .xsl. + +What if I like writing + + !{title} + + + !! "title"; + !! "author"; + X:apply-templates "stanza"; + X:apply-templates "date"; + + +} + +X:template = "title" {

!{.}

} +X:template = "author" {

By <% !{.} %>

} +X:template = "stanza" {

!! "line";

} + +X:template = "line" { + X:if "position() mod 2 = 0" {  } + !{.}
+} + +X:template = "date" {

!{.}

} + +} + + +Snippet 2 + +X:transform { + +X:template max( list ) { + X:if "$list" { + X:variable first="count($list[1]/LINE)" + X:variable max-of-rest={ !max( list="$list[position()!=1]" ) } + + X:if "$first > $max-of-rest" { + !{$first} + } else { + !{$max-of-rest} + } + } else { + 0 + } +} + + X:template ="/" { + Longest speech is <% X:text; !max( list="//SPEECH" ) X:text; %> lines. + } + +} + +Syntax overview + +Rather than drawing the mapping for all of 35 XSLT elements, I'l just provide the mapping rules. If this is not enough, please note that XSLScript distribution contains more than 10 examples of XSLScript code. Those examples are XSLT stylesheets from Michael Kay's XSLT Programming Reference (available for download from Wrox website) rewritten in XSLScript. This results in XSLScript examples being educational and covering almost every XSLT (XSLScript) command. + +Rules + +There are top-level XSLScript constructions and instructions. (exactly like it is in XSLT). Instructions could be separated from the content with <% and %> ( optional ). +Instruction has body and header. Body is separated from header with { } +'match', 'select', 'test' and 'name' are not written (but also could be written in some exotic cases.) +Symbols ', ", {, are special. Use \{ e t.c. if you need those special symbols in tne content of your stylesheet. +xsl:apply-templates, !! and xsl:number should end with ";" +Syntax of apply-templates is extremely close to the syntax of call-template. +There are few shortcuts: +You can use !{xpath-expression} for +X:value-of select="xpath-expression"; +!! for X:apply-templates +!foo() for X:call-template name="foo" +X:var for X:variable +There is 'comma' shortcut. It exists for X:stylesheet (see date.xsls for example of XSLT-engine independent java binding). And also it exists for X:for-each and X:apply-templates. +X:for-each "//*" , X:sort { +You can not write X:sort as an element, but you should use 'comma' shortcut. +The shortcut for template allows : +X:template foo( bar="init", baz={markup} ) = "match" mode="some" { +Download + +Because SAXON (http://users.iclway.co.uk/mhkay/saxon/) is 100% free, XSLScript distribution contains everything you need to run XSLScript. + +xsls.jar includes not only .class files, but also the source code of XSLScript + +XSLScript is 100% free. + +Contact + +Paul Tchistopolskii. +http://www.pault.com +paul@pault.com + +Changes in version 0.7 + +(major rewrite) + +<% %> are optional. +Some verbose forms are dropped ( no X:with-param and call-template ever, e t.c. ) +Parser is less forgiving and some things become not intuitive. +\{ \' " required. +Nice dumping of generated stylesheet. +1-1 line mapping. +Based on SAXON / SAX2, but still should work with XT. +Changes in version 0.51 + +(small bugfixes) + +':' was not allowed in #NAME token. ( Allows xmlns:some= ) +Multiple