Add button for empty/example XSLT transform #109

Closed
opened 2023-03-07 15:10:57 +01:00 by boguckib · 2 comments
Member

Add button to fill XSLt transform with example/empty transform.
Example XSLT transformation should set parameters if many XML inputs have been added.

Add button to fill XSLt transform with example/empty transform. Example XSLT transformation should set parameters if many XML inputs have been added.
boguckib added this to the Release 11.2 milestone 2023-03-07 15:10:57 +01:00
boguckib added the
XSLT
label 2023-03-07 15:10:57 +01:00
bema added the
enhancement
high priority
labels 2023-04-04 09:54:27 +02:00
widlam self-assigned this 2023-04-18 12:02:24 +02:00
Collaborator

Here is sample XSLT to put in project:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:b="http://www.release11.com/book" xmlns:p="http://www.release11.com/person" xmlns:l="http://www.release11.com/library">
    <xsl:template match="/">
		<Library>
			<ReaderCount>
				<xsl:value-of select="count(//p:person)" />
			</ReaderCount>
            <BookCount>
				<xsl:value-of select="count(/l:library/l:bookList/b:book)" />
			</BookCount>
		</Library>
    </xsl:template>
</xsl:stylesheet>
Here is sample XSLT to put in project: ```XML <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:b="http://www.release11.com/book" xmlns:p="http://www.release11.com/person" xmlns:l="http://www.release11.com/library"> <xsl:template match="/"> <Library> <ReaderCount> <xsl:value-of select="count(//p:person)" /> </ReaderCount> <BookCount> <xsl:value-of select="count(/l:library/l:bookList/b:book)" /> </BookCount> </Library> </xsl:template> </xsl:stylesheet> ```
Collaborator

Done.

image

Done. ![image](/attachments/c1d23148-4a7c-4a9a-ac13-21d085cbfbab)
bema closed this issue 2023-04-19 13:43:01 +02:00
Sign in to join this conversation.
No description provided.