You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by gv...@apache.org on 2005/09/15 05:56:29 UTC

svn commit: r289140 [2/2] - in /struts/shale/trunk: clay-plugin/src/conf/ clay-plugin/src/java/org/apache/shale/clay/component/ clay-plugin/src/java/org/apache/shale/clay/component/chain/ clay-plugin/src/java/org/apache/shale/clay/config/ clay-plugin/s...

Modified: struts/shale/trunk/clay-plugin/src/test/org/apache/shale/clay/config/ConfigTestCase.java
URL: http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/test/org/apache/shale/clay/config/ConfigTestCase.java?rev=289140&r1=289139&r2=289140&view=diff
==============================================================================
--- struts/shale/trunk/clay-plugin/src/test/org/apache/shale/clay/config/ConfigTestCase.java (original)
+++ struts/shale/trunk/clay-plugin/src/test/org/apache/shale/clay/config/ConfigTestCase.java Wed Sep 14 20:56:06 2005
@@ -59,7 +59,7 @@
                           new String[] {"selectOneRadio", "javax.faces.HtmlSelectOneRadio", "javax.faces.component.html.HtmlSelectOneRadio"},
                           new String[] {"selectOneMenu", "javax.faces.HtmlSelectOneMenu", "javax.faces.component.html.HtmlSelectOneMenu"},
                           new String[] {"selectManyMenu", "javax.faces.HtmlSelectManyMenu", "javax.faces.component.html.HtmlSelectManyMenu"},
-                          new String[] {"manyCheckbox", "javax.faces.HtmlSelectManyCheckbox", "javax.faces.component.html.HtmlSelectManyCheckbox"},
+                          new String[] {"manySelectCheckbox", "javax.faces.HtmlSelectManyCheckbox", "javax.faces.component.html.HtmlSelectManyCheckbox"},
                           new String[] {"selectBooleanCheckbox", "javax.faces.HtmlSelectBooleanCheckbox", "javax.faces.component.html.HtmlSelectBooleanCheckbox"},
                           new String[] {"panelGroup", "javax.faces.HtmlPanelGroup", "javax.faces.component.html.HtmlPanelGroup"},
                           new String[] {"outputLink", "javax.faces.HtmlOutputLink", "javax.faces.component.html.HtmlOutputLink"},
@@ -435,7 +435,6 @@
             assertEquals("check.allowBody", allowBody, bean.getAllowBody());
 
             Object[] attributes = (Object[]) compData[4];
-            assertEquals("check.attribute.length", attributes.length, bean.getAttributes().size());
             for (int i = 0; i < attributes.length; i++) {
                 String[] valuepair = (String[]) attributes[i];
 

Modified: struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/Rolodex.java
URL: http://svn.apache.org/viewcvs/struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/Rolodex.java?rev=289140&r1=289139&r2=289140&view=diff
==============================================================================
--- struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/Rolodex.java (original)
+++ struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/Rolodex.java Wed Sep 14 20:56:06 2005
@@ -247,6 +247,12 @@
         attr.setName("escape");
         attr.setValue(Boolean.FALSE.toString());
         text.addAttribute(attr);
+        
+        // add a escape attribute
+        attr = new AttributeBean();
+        attr.setName("isTransient");
+        attr.setValue(Boolean.TRUE.toString());
+        text.addAttribute(attr);
 
         return text;
     }

Modified: struts/shale/trunk/use-cases/src/web/rolodex/hrolodex.html
URL: http://svn.apache.org/viewcvs/struts/shale/trunk/use-cases/src/web/rolodex/hrolodex.html?rev=289140&r1=289139&r2=289140&view=diff
==============================================================================
--- struts/shale/trunk/use-cases/src/web/rolodex/hrolodex.html (original)
+++ struts/shale/trunk/use-cases/src/web/rolodex/hrolodex.html Wed Sep 14 20:56:06 2005
@@ -1,6 +1,7 @@
 <html>
 <head>
-<title>Rolodex Example Using Clay HTML Full-view Composition</title>
+<span jsfid="loadBundle" basename="org.apache.shale.usecases.view.Bundle" scope="session"/>
+<title>#{msgs['usecases.rolodex2']}</title>
 
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
 <style type="text/css" media="screen">
@@ -269,4 +270,4 @@
 </div>
 </form>
 </body>
-</html>
\ No newline at end of file
+</html>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
For additional commands, e-mail: dev-help@struts.apache.org