[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: adding variables

Subject: Re: adding variables
From: "Joerg Heinicke" <joerg.heinicke@xxxxxx>
Date: Tue, 12 Mar 2002 22:35:06 +0100
treeview add variable
Hi Bryan,

there are many different possible solutions.

> I want to have an offset stored so that I can move
> around all off my components based on this offset. I
> have created a variable:
>
> <xsl:variable name="y_offset">
>   <xsl:value-of select="20"/>
> </xsl:variable>

This can be shortened to <xsl:variable name="y_offset" select="20"/>

> and want to add to the offset. Something to the effect
> of:
>
> <path d="M 35, {$y_offset} + 25 ....

1. very close to the solution: <path d="M 35, {$y_offset + 25} ..."/>

> The output of this command is  20 + 25 though and not
> 45 like I would like it to be. I can't use the
> <xsl:valueof> because it is an attribute.

2. That's not quite correct:

<path>
    <xsl:attribute name="d">
        <xsl:text>M 35,</xsl:text>
        <xsl:value-of select="$y_offset + 25"/>
        ...
    </xsl:attribute>
</path>

But I would prefer the first method using attribute value template.

3. And a complete different solution using SVG: You must group all elements
with the $y_offset and translate() them:

<g transform="translate(0 {$y_offset})">
    <path d="M35,25 ..."/>
</g>

Maybe this is the cleanest and easiest solution.

Regards,

Joerg


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.