xsl-list
[Top] [All Lists]

RE: [xsl] Modifying select attribute values in XHTML

2006-08-18 08:45:51
Yes, that's the output I was looking for, but until Wendell pointed out
my matching error, I couldn't get it. 

Thanks for the help.

-- Brook

-----Original Message-----
From: Mukul Gandhi [mailto:gandhi(_dot_)mukul(_at_)gmail(_dot_)com] 
Sent: Thursday, August 17, 2006 5:55 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] Modifying select attribute values in XHTML

The stylesheet I posted when applied to XML (the XML you posted was not
well-formed, a /select> tag was missing, which I corrected):

<xhtml>
<div style="width:570px;text-align:center;">
 <img src="/path/to/img.jpg" width="570" height="100" border="0"
alt="Alt text"/>
 <p style="margin:10px 0 0 0;" class="class">Display copy<br/>  <a
href="/link">Linked text</a><br/>  <form>
  <select style="margin-top:0px;" size="1" name="selectMenu">
   <option value="#" selected="selected">Choose an option</option>
   <option value="one.html">One</option>
   <option value="two.html">Two</option>
  </select>
 </form>
 </p>
</div>
<br/>
</xhtml>

Produces output:

<?xml version="1.0" encoding="UTF-8"?>
<xhtml>
<div style="width:570px;text-align:center;">
 <img src="http//images.example.com/path/to/img.jpg" width="570"
height="100" bo rder="0" alt="Alt text"/>  <p style="margin:10px 0 0 0;"
class="class">Display copy<br/>  <a
href="http//www.example.com/link">Linked text</a> <br/>  <form>
  <select style="margin-top:0px;" size="1" name="selectMenu">
   <option value="#" selected="selected">Choose an option</option>
   <option value="one.html">One</option>
   <option value="two.html">Two</option>
  </select>
 </form>
 </p>
</div>
<br/>
</xhtml>

Isn't this what you want?

This looks more concise than the logic you have posted..

Your logic also seems correct (with a minor correction, as Wendell has
suggested)

On 8/18/06, Brook Ellingwood <belling(_at_)rei(_dot_)com> wrote:
Hi Mukul,

I think this may be identical to what I had earlier when I began 
working on this. I know I just tried it again at got the same results:

it outputs the value of the attributes as text node children of the 
elements, and fails to go deeper than one level down the descendant 
axis.

If I could get it to follow the tree down the descendant axis, the 
formatting of the output should be fairly straight forward.

-- Brook

--
Regards,
Mukul Gandhi

http://gandhimukul.tripod.com

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>