diff --git a/core/src/main/java/org/apache/struts2/components/FormButton.java b/core/src/main/java/org/apache/struts2/components/FormButton.java index 2bd66c3ed6..ab99679cdc 100644 --- a/core/src/main/java/org/apache/struts2/components/FormButton.java +++ b/core/src/main/java/org/apache/struts2/components/FormButton.java @@ -42,7 +42,6 @@ public abstract class FormButton extends ClosingUIBean { protected String action; protected String method; - protected String align; protected String type; public FormButton(ValueStack stack, HttpServletRequest request, HttpServletResponse response) { @@ -52,9 +51,6 @@ public FormButton(ValueStack stack, HttpServletRequest request, HttpServletRespo //public void evaluateParams() { public void evaluateExtraParams() { super.evaluateExtraParams(); - if (align == null) { - align = "right"; - } String submitType = BUTTONTYPE_INPUT; if (type != null && (BUTTONTYPE_BUTTON.equalsIgnoreCase(type) || (supportsImageType() && BUTTONTYPE_IMAGE.equalsIgnoreCase(type)))) @@ -88,8 +84,6 @@ public void evaluateExtraParams() { addParameter("name", name); } - addParameter("align", findString(align)); - } /** @@ -158,10 +152,6 @@ public void setMethod(String method) { this.method = method; } - @StrutsTagAttribute(description="HTML align attribute.") - public void setAlign(String align) { - this.align = align; - } @StrutsTagAttribute(description="The type of submit to use. Valid values are input, " + "button and image.", defaultValue="input") diff --git a/core/src/main/java/org/apache/struts2/views/jsp/ui/ResetTag.java b/core/src/main/java/org/apache/struts2/views/jsp/ui/ResetTag.java index b1cc369b1a..e266d6ee70 100644 --- a/core/src/main/java/org/apache/struts2/views/jsp/ui/ResetTag.java +++ b/core/src/main/java/org/apache/struts2/views/jsp/ui/ResetTag.java @@ -37,7 +37,6 @@ public class ResetTag extends AbstractUITag { protected String action; protected String method; - protected String align; protected String type; protected String src; @@ -51,7 +50,6 @@ protected void populateParams() { Reset reset = ((Reset) component); reset.setAction(action); reset.setMethod(method); - reset.setAlign(align); reset.setType(type); reset.setSrc(src); } @@ -64,10 +62,6 @@ public void setMethod(String method) { this.method = method; } - public void setAlign(String align) { - this.align = align; - } - public void setType(String type) { this.type = type; } diff --git a/core/src/main/java/org/apache/struts2/views/jsp/ui/SubmitTag.java b/core/src/main/java/org/apache/struts2/views/jsp/ui/SubmitTag.java index 4cac5bf9e2..bdb7b3b446 100644 --- a/core/src/main/java/org/apache/struts2/views/jsp/ui/SubmitTag.java +++ b/core/src/main/java/org/apache/struts2/views/jsp/ui/SubmitTag.java @@ -38,7 +38,6 @@ public class SubmitTag extends AbstractClosingTag { protected String action; protected String method; - protected String align; protected String type; protected String src; @@ -52,7 +51,6 @@ protected void populateParams() { Submit submit = ((Submit) component); submit.setAction(action); submit.setMethod(method); - submit.setAlign(align); submit.setType(type); submit.setSrc(src); } @@ -65,10 +63,6 @@ public void setMethod(String method) { this.method = method; } - public void setAlign(String align) { - this.align = align; - } - public String getType() { return type; } diff --git a/core/src/main/resources/template/css_xhtml/reset.ftl b/core/src/main/resources/template/css_xhtml/reset.ftl index 6d7734f999..9c3a40af36 100644 --- a/core/src/main/resources/template/css_xhtml/reset.ftl +++ b/core/src/main/resources/template/css_xhtml/reset.ftl @@ -30,9 +30,7 @@ <#else> -<#if parameters.align??> - align="${parameters.align?html}"<#t/> - + class="formButton"<#t/> <#if parameters.id??> id="wwctrl_${parameters.id}"<#rt/> diff --git a/core/src/main/resources/template/css_xhtml/styles.css b/core/src/main/resources/template/css_xhtml/styles.css index d17b53cf67..76babfc70c 100644 --- a/core/src/main/resources/template/css_xhtml/styles.css +++ b/core/src/main/resources/template/css_xhtml/styles.css @@ -30,3 +30,11 @@ .checkboxLabel {} .checkboxErrorLabel {color:red; } .required {color:red;} + +.tdTransferSelect {text-align:center; vertical-align:middle;} +.tdLabelTop {text-align:left; vertical-align:top;} +.tdCheckboxLabel {text-align:right; vertical-align:top;} +.tdCheckboxInput {text-align:left; vertical-align:top;} +.tdCheckboxErrorMessage {text-align:left; vertical-align:top;} +.tdErrorMessage {text-align:center; vertical-align:top;} +.formButton {text-align:right;} diff --git a/core/src/main/resources/template/css_xhtml/submit.ftl b/core/src/main/resources/template/css_xhtml/submit.ftl index ffb4df99a3..1611ffb5ff 100644 --- a/core/src/main/resources/template/css_xhtml/submit.ftl +++ b/core/src/main/resources/template/css_xhtml/submit.ftl @@ -30,9 +30,7 @@ <#else> -<#if parameters.align??> - align="${parameters.align?html}"<#t/> - + class="formButton"<#t/> <#if parameters.id??> id="wwctrl_${parameters.id}"<#rt/> diff --git a/core/src/main/resources/template/simple/debug.ftl b/core/src/main/resources/template/simple/debug.ftl index 8b2db3d6e0..17152bff71 100644 --- a/core/src/main/resources/template/simple/debug.ftl +++ b/core/src/main/resources/template/simple/debug.ftl @@ -35,6 +35,13 @@ } --> + +

${parameters.id?html}<#else>debug');return false;">[Debug] @@ -43,7 +50,7 @@

Value Stack Contents

- +
<#assign index=1> @@ -54,8 +61,8 @@ <#assign renderRow=false> <#list stackObject.value.keySet() as propertyName> <#if renderRow==true><#else> <#assign renderRow=false> - - + + <#assign index= index + 1> @@ -65,14 +72,14 @@

Stack Context

These items are available using the #key notation -
ObjectProperty NameProperty Value
${propertyName}<#if stackObject.value.get(propertyName)??>${stackObject.value.get(propertyName).toString()?html}<#else>null${propertyName}<#if stackObject.value.get(propertyName)??>${stackObject.value.get(propertyName).toString()?html}<#else>null
+
<#assign index=1> <#list stack.context.keySet() as contextKey> - + diff --git a/core/src/main/resources/template/simple/inputtransferselect.ftl b/core/src/main/resources/template/simple/inputtransferselect.ftl index ef13ca64c4..44afd6609c 100644 --- a/core/src/main/resources/template/simple/inputtransferselect.ftl +++ b/core/src/main/resources/template/simple/inputtransferselect.ftl @@ -24,7 +24,7 @@ <#assign temporaryVariable = stack.setValue("#inputtransferselect_js_included", "true") /><#t/> <#t/> -
KeyValue
${contextKey} <#if stack.context.get(contextKey)??>${struts.toStringSafe(stack.context.get(contextKey))?html}<#else>null
+
- -
<#if parameters.leftTitle??><#t/> @@ -61,7 +61,7 @@ + <#assign addLabel=(parameters.addLabel!"->")?html /><#t/> <#t/> @@ -121,4 +121,4 @@
\ No newline at end of file + diff --git a/core/src/main/resources/template/simple/optiontransferselect.ftl b/core/src/main/resources/template/simple/optiontransferselect.ftl index 62136f723d..c685956815 100644 --- a/core/src/main/resources/template/simple/optiontransferselect.ftl +++ b/core/src/main/resources/template/simple/optiontransferselect.ftl @@ -24,7 +24,7 @@ <#assign temporaryVariable = stack.setValue("#optiontransferselect_js_included", "true") /><#t/> <#t/> - +
-<#lt/> @@ -72,7 +72,7 @@ ${parameters.label?html}<#t/> <#include "/${parameters.templateDir}/simple/checkbox.ftl" /> <#else> - - - <#lt/> diff --git a/core/src/main/resources/template/xhtml/controlheader-core.ftl b/core/src/main/resources/template/xhtml/controlheader-core.ftl index 73302705fb..5835a8434f 100644 --- a/core/src/main/resources/template/xhtml/controlheader-core.ftl +++ b/core/src/main/resources/template/xhtml/controlheader-core.ftl @@ -29,7 +29,7 @@ <#if hasFieldErrors> <#list fieldErrors[parameters.name] as error> - <#lt/> @@ -47,7 +47,7 @@ --> <#if labelpos?default("") == 'top'> - - - - - - - - - - - diff --git a/core/src/site/resources/tags/submit.html b/core/src/site/resources/tags/submit.html index b3139eccaa..d1b7e1db8c 100644 --- a/core/src/site/resources/tags/submit.html +++ b/core/src/site/resources/tags/submit.html @@ -49,14 +49,6 @@

Attributes

- - - - - - - - diff --git a/core/src/test/java/org/apache/struts2/views/jsp/ui/ResetTest.java b/core/src/test/java/org/apache/struts2/views/jsp/ui/ResetTest.java index 90d5759b3b..64a3b15714 100644 --- a/core/src/test/java/org/apache/struts2/views/jsp/ui/ResetTest.java +++ b/core/src/test/java/org/apache/struts2/views/jsp/ui/ResetTest.java @@ -57,7 +57,6 @@ public void testSimple() throws Exception { ResetTag tag = new ResetTag(); tag.setPageContext(pageContext); tag.setLabel("mylabel"); - tag.setAlign("left"); tag.setName("myname"); tag.setValue("%{foo}"); @@ -91,7 +90,6 @@ public void testButtonWithLabel() throws Exception { tag.setPageContext(pageContext); tag.setLabel("mylabel"); tag.setType("button"); - tag.setAlign("left"); tag.setName("myname"); tag.setValue("%{foo}"); @@ -166,7 +164,6 @@ public void testSimpleThemeImageUsingActionAndMethod() throws Exception { tag.setLabel("mylabel"); tag.setAction("manager"); tag.setMethod("update"); - tag.setAlign("left"); tag.doStartTag(); tag.doEndTag(); @@ -186,7 +183,6 @@ public void testSimpleThemeImageUsingActionOnly() throws Exception { tag.setLabel("mylabel"); tag.setAction("manager"); tag.setMethod(null); // no method - tag.setAlign("left"); tag.doStartTag(); tag.doEndTag(); @@ -206,7 +202,6 @@ public void testSimpleThemeImageUsingMethodOnly() throws Exception { tag.setLabel("mylabel"); tag.setAction(null); // no action tag.setMethod("update"); - tag.setAlign("left"); tag.doStartTag(); tag.doEndTag(); diff --git a/core/src/test/java/org/apache/struts2/views/jsp/ui/SubmitTest.java b/core/src/test/java/org/apache/struts2/views/jsp/ui/SubmitTest.java index 41f0cc5b01..df0f4322f5 100644 --- a/core/src/test/java/org/apache/struts2/views/jsp/ui/SubmitTest.java +++ b/core/src/test/java/org/apache/struts2/views/jsp/ui/SubmitTest.java @@ -78,7 +78,6 @@ public void testSimple() throws Exception { SubmitTag tag = new SubmitTag(); tag.setPageContext(pageContext); tag.setLabel("mylabel"); - tag.setAlign("left"); tag.setName("myname"); tag.setValue("%{foo}"); tag.setDisabled("true"); @@ -116,7 +115,6 @@ public void testButtonWithLabel() throws Exception { tag.setPageContext(pageContext); tag.setLabel("mylabel"); tag.setType("button"); - tag.setAlign("left"); tag.setName("myname"); tag.setValue("%{foo}"); @@ -173,7 +171,6 @@ public void testSimpleThemeImageUsingActionAndMethod() throws Exception { tag.setLabel("mylabel"); tag.setAction("manager"); tag.setMethod("update"); - tag.setAlign("left"); tag.doStartTag(); tag.doEndTag(); @@ -193,7 +190,6 @@ public void testSimpleThemeImageUsingActionOnly() throws Exception { tag.setLabel("mylabel"); tag.setAction("manager"); tag.setMethod(null); // no method - tag.setAlign("left"); tag.doStartTag(); tag.doEndTag(); @@ -213,7 +209,6 @@ public void testSimpleThemeImageUsingMethodOnly() throws Exception { tag.setLabel("mylabel"); tag.setAction(null); // no action tag.setMethod("update"); - tag.setAlign("left"); tag.doStartTag(); tag.doEndTag(); diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-1.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-1.txt index 7a8637c9fa..b746088d27 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-1.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-1.txt @@ -1,7 +1,7 @@ - - - - - + - + - - - + - + - - - - diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-6.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-6.txt index 033de88641..c54c8629ad 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-6.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-6.txt @@ -1,7 +1,7 @@ - -
<#if parameters.leftTitle??><#t/> @@ -47,7 +47,7 @@ + <#if parameters.allowAddToLeft?default(true)><#t/> <#assign addToLeftLabel = parameters.addToLeftLabel?default("<-")?html/><#t/> <#if parameters.doubleHeaderKey??><#t/> diff --git a/core/src/main/resources/template/xhtml/checkbox.ftl b/core/src/main/resources/template/xhtml/checkbox.ftl index 4504b3f618..d845065386 100644 --- a/core/src/main/resources/template/xhtml/checkbox.ftl +++ b/core/src/main/resources/template/xhtml/checkbox.ftl @@ -28,7 +28,7 @@ errorFor="${parameters.id}"<#rt/> > - <#rt/> + <#rt/> ${error?html}<#t/>
+ <#if labelpos?default("") == 'left'> <#if parameters.label??> <#if parameters.id??> @@ -107,7 +107,7 @@ ${parameters.label?html}<#t/> + <#if labelpos?default("") != 'top'> <#include "/${parameters.templateDir}/simple/checkbox.ftl" /> diff --git a/core/src/main/resources/template/xhtml/controlfooter.ftl b/core/src/main/resources/template/xhtml/controlfooter.ftl index 37da2f8643..ef3f3caefd 100644 --- a/core/src/main/resources/template/xhtml/controlfooter.ftl +++ b/core/src/main/resources/template/xhtml/controlfooter.ftl @@ -28,7 +28,7 @@ ${parameters.after?if_exists}<#t/> <#if hasFieldErrors> <#list fieldErrors[parameters.name] as error>
<#rt/> + <#rt/> ${error?html}<#t/>
<#rt/> + <#rt/> ${error?html}<#t/>
<#rt/> + <#rt/> <#else> <#rt/> diff --git a/core/src/main/resources/template/xhtml/controlheader.ftl b/core/src/main/resources/template/xhtml/controlheader.ftl index 4a150586e5..e1209cd315 100644 --- a/core/src/main/resources/template/xhtml/controlheader.ftl +++ b/core/src/main/resources/template/xhtml/controlheader.ftl @@ -22,7 +22,4 @@ --> <#include "/${parameters.templateDir}/${parameters.expandTheme}/controlheader-core.ftl" /> - align="${parameters.align?html}"<#t/> - ><#t/> diff --git a/core/src/main/resources/template/xhtml/reset.ftl b/core/src/main/resources/template/xhtml/reset.ftl index 8e6e2b596e..7d6121c389 100644 --- a/core/src/main/resources/template/xhtml/reset.ftl +++ b/core/src/main/resources/template/xhtml/reset.ftl @@ -21,11 +21,7 @@ */ -->
-<#if parameters.align??> - align="${parameters.align?html}"<#t/> - -><#t/> +
<#t/> <#include "/${parameters.templateDir}/simple/reset.ftl" />
<#t/> <#include "/${parameters.templateDir}/${parameters.expandTheme}/controlfooter.ftl" /> diff --git a/core/src/main/resources/template/xhtml/styles.css b/core/src/main/resources/template/xhtml/styles.css index dd549049b1..91d5171eee 100644 --- a/core/src/main/resources/template/xhtml/styles.css +++ b/core/src/main/resources/template/xhtml/styles.css @@ -26,4 +26,12 @@ .checkboxLabel {} .checkboxErrorLabel {color:red; } .required {color:red;} -.tdLabel {text-align:right; vertical-align:top; } +.tdLabel {text-align:right; vertical-align:top; } + +.tdTransferSelect {text-align:center; vertical-align:middle;} +.tdLabelTop {text-align:left; vertical-align:top;} +.tdCheckboxLabel {text-align:right; vertical-align:top;} +.tdCheckboxInput {text-align:left; vertical-align:top;} +.tdCheckboxErrorMessage {text-align:left; vertical-align:top;} +.tdErrorMessage {text-align:center; vertical-align:top;} +.formButton {text-align:right;} diff --git a/core/src/main/resources/template/xhtml/submit.ftl b/core/src/main/resources/template/xhtml/submit.ftl index 7b8292150f..989e816560 100644 --- a/core/src/main/resources/template/xhtml/submit.ftl +++ b/core/src/main/resources/template/xhtml/submit.ftl @@ -21,9 +21,5 @@ */ -->
-<#if parameters.align??> - align="${parameters.align?html}"<#t/> - -><#t/> +
<#t/> <#include "/${parameters.templateDir}/simple/submit.ftl" /> diff --git a/core/src/main/resources/template/xhtml/validation.js b/core/src/main/resources/template/xhtml/validation.js index e63751b448..feb1a9d143 100644 --- a/core/src/main/resources/template/xhtml/validation.js +++ b/core/src/main/resources/template/xhtml/validation.js @@ -109,8 +109,7 @@ function addErrorXHTML(e, errorText) { var tr = document.createElement("tr"); var td = document.createElement("td"); var span = document.createElement("span"); - td.align = "center"; - td.valign = "top"; + td.className = "tdErrorMessage"; td.colSpan = 2; span.setAttribute("class", "errorMessage"); span.setAttribute("className", "errorMessage"); //ie hack cause ie does not support setAttribute diff --git a/core/src/site/resources/tags/reset.html b/core/src/site/resources/tags/reset.html index 42528ededb..006302af35 100644 --- a/core/src/site/resources/tags/reset.html +++ b/core/src/site/resources/tags/reset.html @@ -49,14 +49,6 @@

Attributes

String Set action attribute.
alignfalsefalseStringHTML align attribute.
class false String Set action attribute.
alignfalsefalseStringHTML align attribute.
class false
+ + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-2.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-2.txt index 73d7f50557..caf46327b7 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-2.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-2.txt @@ -1,7 +1,7 @@
+ + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-3.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-3.txt index 5ba5904dbc..68b91f3235 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-3.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-3.txt @@ -1,14 +1,14 @@
Some Foo ErrorSome Foo Error
Another Foo ErrorAnother Foo Error
+ + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-33.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-33.txt index b969e3ab00..ef05dc427c 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-33.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-33.txt @@ -1,14 +1,14 @@
Some Foo ErrorSome Foo Error
Another Foo ErrorAnother Foo Error
+ + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-5.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-5.txt index f281d2d3f4..49e093cae4 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-5.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Checkbox-5.txt @@ -1,8 +1,8 @@
+ +
+ + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Formtag-27.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Formtag-27.txt index fab8cf3d36..a9b92445ca 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Formtag-27.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Formtag-27.txt @@ -1,7 +1,7 @@
- + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Label-3.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Label-3.txt index b12f19af76..d66737f62d 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Label-3.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Label-3.txt @@ -1,5 +1,5 @@ - + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-1.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-1.txt index c89899be96..699faf7013 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-1.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-1.txt @@ -1,3 +1,3 @@ - + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-2.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-2.txt index 279c1432d4..2344fec7ae 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-2.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-2.txt @@ -1,3 +1,3 @@ - + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-3.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-3.txt index 9497bb669e..a9f63c05f5 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-3.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-3.txt @@ -1,3 +1,3 @@ - + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-4.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-4.txt index 3fa4c37554..31707b3269 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-4.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-4.txt @@ -1,3 +1,3 @@ - + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-5.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-5.txt index fbab3f6855..c94fd1d94e 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-5.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-5.txt @@ -1,3 +1,3 @@ - + \ No newline at end of file diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-6.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-6.txt index 39a2906625..6e1526bf67 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-6.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Reset-6.txt @@ -1,3 +1,3 @@ - + \ No newline at end of file diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-1.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-1.txt index 9057dd2ea8..ef5882ccbe 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-1.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-1.txt @@ -1,3 +1,3 @@ - + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-2.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-2.txt index 42e7f1d98f..36b1554f55 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-2.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-2.txt @@ -1,3 +1,3 @@ - + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-3.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-3.txt index a2e9c8a5da..92fed2bd2b 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-3.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-3.txt @@ -1,3 +1,3 @@ - + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-4.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-4.txt index 17b846d388..c70f19f080 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-4.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-4.txt @@ -1,3 +1,3 @@ - + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-5.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-5.txt index b55832d0bb..d83c44fcf0 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-5.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-5.txt @@ -1,3 +1,3 @@ - + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-6.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-6.txt index 59b886d6f4..9cd5d0246d 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-6.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Submit-6.txt @@ -1,3 +1,3 @@ - + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Textfield-2.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Textfield-2.txt index ae9d79e02a..fc370890b7 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Textfield-2.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Textfield-2.txt @@ -1,5 +1,5 @@ - + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Textfield-8.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Textfield-8.txt index e95f855b11..b3e3addc91 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Textfield-8.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Textfield-8.txt @@ -7,7 +7,7 @@ - \ No newline at end of file diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Textfield-9.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Textfield-9.txt index 10cd6942b3..a0cb054490 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/Textfield-9.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/Textfield-9.txt @@ -1,5 +1,5 @@ - diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/inputtransferselect-1.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/inputtransferselect-1.txt index 9b7f26da93..47324f3471 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/inputtransferselect-1.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/inputtransferselect-1.txt @@ -2,9 +2,9 @@
bar error messagebar error message
+ barerrormessage
+ barerrormessage
- + -
+



diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/optiontransferselect-1.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/optiontransferselect-1.txt index 96e54ad2a8..be8fd8fced 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/optiontransferselect-1.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/optiontransferselect-1.txt @@ -2,7 +2,7 @@
- +
-

@@ -16,7 +16,7 @@
+

- +
-

@@ -17,7 +17,7 @@
+

- +
-

@@ -16,7 +16,7 @@
+

- +
-

@@ -17,7 +17,7 @@
+

- +
-

@@ -16,7 +16,7 @@
+

- +
-

@@ -17,7 +17,7 @@
+

- +
- + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/validationstyles-2.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/validationstyles-2.txt index b6d01a416c..e965d43227 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/validationstyles-2.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/validationstyles-2.txt @@ -1,5 +1,5 @@ - + diff --git a/core/src/test/resources/org/apache/struts2/views/jsp/ui/validationstyles-3.txt b/core/src/test/resources/org/apache/struts2/views/jsp/ui/validationstyles-3.txt index 5d7f8b35d8..67d52b2479 100644 --- a/core/src/test/resources/org/apache/struts2/views/jsp/ui/validationstyles-3.txt +++ b/core/src/test/resources/org/apache/struts2/views/jsp/ui/validationstyles-3.txt @@ -1,5 +1,5 @@ - +

@@ -17,7 +17,7 @@
+

-
bar error messagebar error message
bar error messagebar error message
bar error messagebar error message