xsl includes

This is a discussion on "xsl includes" within the Other Programming Languages section. This forum, and the thread "xsl includes are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > Other Programming Languages

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Aug 24th, 2006, 13:11
New Member
Join Date: Aug 2006
Location: baltimore
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
xsl includes

I am trying to reuse a section of xsl and am getting errors that are no help.

Master File: (storage.xsl)
<?xmlversion="1.0"encoding="ISO-8859-1"?>
<xsl:stylesheetversion="1.0"xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:templatematch="/">
<xsl:variablename="projSubTree"select="services/drinkingWater/storage/subData"/>
<xsl:variablename="projTree"select="services/drinkingWater/storage/projects/project"/>
<xsl:includehref="projects.xsl"/>
<xsl:call-templatename="content"/>
</xsl:template>
</xsl:stylesheet>

Sheet to Include (project.xsl)
<?xmlversion="1.0"encoding="ISO-8859-1"?>
<xsl:stylesheetversion="1.0"xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:templatename="content">
<scriptlanguage="javascript">
var rayPic = new Array();
var preLoad = new Array();
var preSubText;

<xsl:for-eachselect="$projTree">

etc...
</xsl:for-each>

function setPreSubText(){
document.forms[0].subCatTextBox.value=preSubText;
}
etc...
</script>
<tablewidth="206"align="left">
<tr><tdheight="6"></td></tr>
<xsl:for-eachselect="$projTree">
<trvalign="top"align="left">
<tdvalign="top"align="left"width="5">
</td>
<tdvalign="top"align="left"colspan="10">
<fontcolor="#000000"face="Arial"size="2">
<a><xsl:attributename="href">#</xsl:attribute>
<xsl:attributename="class">projLinks</xsl:attribute>
<xsl:attributename="onMouseover">setPic('<xsl:value-
etc...
</table>
</xsl:template>
</xsl:stylesheet>
thank you for any assistance.
Reply With Quote

Reply

Tags
xsl, includes

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
PHP Includes lesleindotcom PHP Forum 3 May 31st, 2006 20:54
PHP Includes daygon PHP Forum 5 Mar 16th, 2006 01:59
CSS and includes rewmer Web Page Design 4 Aug 14th, 2005 10:31
Further Help with Includes freebirdnz Classic ASP 3 Aug 5th, 2004 13:48
Help with includes. freebirdnz Classic ASP 5 Aug 3rd, 2004 14:38


All times are GMT. The time now is 21:37.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43