Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...Your site is one of the cleanest and BEST forums that I have seen. I have sent quite a few people your way. Keep up the good work!!!"

Geography

Where in the world do Tek-Tips members come from?

XML and XSLT (IBM Lombardi)

ashrafmourad (Programmer)
20 Apr 12 15:00
Hello everyone,

My team is having the following problem and could need any help. Thanks in advance

we are using lombardi teamworks , one concept in lombardi is build the screen as xml and transform it to HTML using XSLT

building the screen like XML1 (the tw:value has static value), is working using XSLT1 ,

my question is how to modify XSLT 1 to work with XML2 (using variable in tw:value not static value , the value of tw.local.file path will be something like http://ip/al/filename)

---XML1---

tw:Layout tw:id="section12" tw:styleClass=""

tw:Section tw:columns="1"

 

  tw:SectionTitle tw:id="sectionTitle" tw:visible="false">banner</tw:SectionTitle

 

  tw:Override tw:key="FILESNIPPET" tw:value="http://xxx.xxx.xxx.xxx/al/bannerSnip.xml" /

 

  tw:Row tw:rows="0"

 

    tw:Column /

 

  /tw:Row

 

/tw:Section
/tw:Layout

---XML2-------

tw:Layout tw:id="section1" tw:styleClass=""

tw:Section tw:columns="1"

 

  tw:SectionTitle tw:id="sectionTitle" tw:visible="false">Section Title</tw:SectionTitle

 

  tw:Override tw:key="FILESNIPPET" tw:value="&lt;#= tw.local.filePath #&gt;" /

 

  tw:Row tw:rows="0"

 

    tw:Column /

 

  /tw:Row

 

/tw:Section
/tw:Layout

---XSLT1----

xsl:template match="tw:Section"

xsl:choose

 

  xsl:when test="tw:Override[@tw:key='FILESNIPPET']"

 

    xsl:apply-templates select="document(tw:Override[@tw:key='FILESNIPPET']/@tw:value)/tw:Form/tw:Layout/tw:Section" /

 

  /xsl:when

 

  xsl:otherwise

 

    xsl:call-template name="tw:StandardSection"/

 

  /xsl:otherwise

 

/xsl:choose
/xsl:template
 

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Back To Forum

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close