You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2010/10/18 17:53:34 UTC

svn commit: r1023867 - /myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/OutRenderer.java

Author: lofwyr
Date: Mon Oct 18 15:53:33 2010
New Revision: 1023867

URL: http://svn.apache.org/viewvc?rev=1023867&view=rev
Log:
TOBAGO-859: Flow layout manager
TOBAGO-922: <tc:out> no longer <span>

Modified:
    myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/OutRenderer.java

Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/OutRenderer.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/OutRenderer.java?rev=1023867&r1=1023866&r2=1023867&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/OutRenderer.java (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/OutRenderer.java Mon Oct 18 15:53:33 2010
@@ -50,7 +50,7 @@ public class OutRenderer extends LayoutC
 
     if (createSpan) {
       String id = out.getClientId(facesContext);
-      writer.startElement(HtmlElements.DIV, out);
+      writer.startElement(HtmlElements.SPAN, out);
       writer.writeIdAttribute(id);
       Style style = new Style(facesContext, out);
       writer.writeStyleAttribute(style);
@@ -73,7 +73,7 @@ public class OutRenderer extends LayoutC
       writer.write(text);
     }
     if (createSpan) {
-      writer.endElement(HtmlElements.DIV);
+      writer.endElement(HtmlElements.SPAN);
     }
   }
 }