Here are the files that need to be replaced. The ComponentTag resolves issue ww-121
http://jira.opensymphony.com/secure/views/ViewIssue.jspa?key=WW-121 -- Matt Ho Principal Indigo Egg, Inc. http://www.indigoegg.com/ > -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Jason Carreira > Sent: Thursday, March 06, 2003 6:03 AM > To: [EMAIL PROTECTED] > Subject: RE: [OS-webwork] WW 2.0 Tag libs > > I can't seem to get the attachments... Email them to me and I'll put > them in. > > > -----Original Message----- > > From: Matt Ho [mailto:[EMAIL PROTECTED] > > Sent: Thursday, March 06, 2003 3:20 AM > > To: [EMAIL PROTECTED] > > Subject: RE: [OS-webwork] WW 2.0 Tag libs > > > > > > I've uploaded fixes for the unit tests into Jira. The > > strings that the velocity tags were validating against were > > incorrect. Here's a link to the bug. > > > > http://jira.opensymphony.com/secure/views/ViewIssue.jspa?key=WW-124 > > > > -- > > Matt Ho > > Principal > > Indigo Egg, Inc. > > http://www.indigoegg.com/ > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The > debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Opensymphony-webwork mailing list > [EMAIL PROTECTED] > https://lists.sourceforge.net/lists/listinfo/opensymphony-webwork
<tr> <td align="right" valign="top"><span class="label">mylabel:</span></td> <td> <span class="label">hello</span> <input type="radio" name="myname" value="world" /> <span class="label">foo</span> <input type="radio" name="myname" value="bar" /> </td> </tr>
<tr> <td align="right" valign="top"><span class="label">mylabel:</span></td> <td> <select name="myname" > <option value="world"> hello</option> <option value="bar"> foo</option> </select> </td> </tr>
/* * Copyright (c) 2002-2003 by OpenSymphony * All rights reserved. */ package com.opensymphony.webwork.views.jsp.ui; /** * @version $Id: ComponentTag.java,v 1.1 2003/03/06 05:07:56 jcarreira Exp $ * @author Matt Ho <a href="mailto:[EMAIL PROTECTED]"><[EMAIL PROTECTED]></a> */ public class ComponentTag extends AbstractUITag { //~ Static fields/initializers ///////////////////////////////////////////// private final static String TEMPLATE_NAME = "/decorators/empty.vm"; //~ Methods //////////////////////////////////////////////////////////////// protected String getTemplateName() { if( template == null ) { return TEMPLATE_NAME; } else { return this.template; } } }