Author: musachy Date: Mon May 28 19:44:08 2007 New Revision: 542388 URL: http://svn.apache.org/viewvc?view=rev&rev=542388 Log: Use Dojo plugin tags
Modified: struts/struts2/trunk/apps/showcase/src/main/webapp/viewSource.jsp Modified: struts/struts2/trunk/apps/showcase/src/main/webapp/viewSource.jsp URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/showcase/src/main/webapp/viewSource.jsp?view=diff&rev=542388&r1=542387&r2=542388 ============================================================================== --- struts/struts2/trunk/apps/showcase/src/main/webapp/viewSource.jsp (original) +++ struts/struts2/trunk/apps/showcase/src/main/webapp/viewSource.jsp Mon May 28 19:44:08 2007 @@ -10,14 +10,14 @@ <h1>View Sources</h1> <sx:tabbedpanel id="test"> - <s:div id="one" label="Page" theme="ajax"> + <sx:div id="one" label="Page" > <h3>${empty page ? "Unknown page" : page}</h3> <pre> <s:iterator value="pageLines" status="row"> ${row.count}: <s:property/></s:iterator> </pre> - </s:div> - <s:div id="two" label="Configuration" theme="ajax" > + </sx:div> + <sx:div id="two" label="Configuration" > <h3>${empty config ? "Unknown configuration" : config}</h3> <pre> @@ -25,14 +25,14 @@ <span style="background-color:yellow">${configLine - padding + row.count - 1}: <s:property/></span></s:if><s:else> ${configLine - padding + row.count - 1}: <s:property/></s:else></s:iterator> </pre> - </s:div> - <s:div id="three" label="Java Action" theme="ajax"> + </sx:div> + <sx:div id="three" label="Java Action"> <h3>${empty className ? "Unknown or unavailable Action class" : className}</h3> <pre> <s:iterator value="classLines" status="row"> ${row.count}: <s:property/></s:iterator> </pre> - </s:div> + </sx:div> </sx:tabbedpanel>