You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2008/04/16 11:05:29 UTC

svn commit: r648630 - in /myfaces/tobago/branches/tobago-1.0.x: ./ theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/PanelRenderer.java

Author: bommel
Date: Wed Apr 16 02:05:27 2008
New Revision: 648630

URL: http://svn.apache.org/viewvc?rev=648630&view=rev
Log:
Merged revisions 634350 via svnmerge from 
https://svn.apache.org/repos/asf/myfaces/tobago/trunk

........
  r634350 | weber | 2008-03-06 18:14:24 +0100 (Do, 06 Mär 2008) | 2 lines
  
  (TOBAGO-632) PanelRenderer should write style attribute
  <http://issues.apache.org/jira/browse/TOBAGO-632>
........

Modified:
    myfaces/tobago/branches/tobago-1.0.x/   (props changed)
    myfaces/tobago/branches/tobago-1.0.x/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/PanelRenderer.java

Propchange: myfaces/tobago/branches/tobago-1.0.x/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: myfaces/tobago/branches/tobago-1.0.x/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/PanelRenderer.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/PanelRenderer.java?rev=648630&r1=648629&r2=648630&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/PanelRenderer.java (original)
+++ myfaces/tobago/branches/tobago-1.0.x/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/PanelRenderer.java Wed Apr 16 02:05:27 2008
@@ -131,6 +131,7 @@
     writer.startElement(HtmlConstants.DIV, component);
     writer.writeClassAttribute();
     writer.writeIdAttribute(clientId);
+    writer.writeStyleAttribute();
     if (TobagoConfig.getInstance(facesContext).isAjaxEnabled()) {
       writer.writeJavascript("Tobago.addAjaxComponent(\"" + clientId + "\")");
       Integer frequency = null;