Author: smilek
Date: Mon Sep 24 12:22:58 2007
New Revision: 578925

URL: http://svn.apache.org/viewvc?rev=578925&view=rev
Log:
added style class defs for table element that contains iframe; added tbody 
element to table which contains iframe

Modified:
    
portals/jetspeed-2/branches/JETSPEED-2.1.3/components/web-content/src/java/org/apache/jetspeed/portlet/IFrameGenericPortlet.java
    
portals/jetspeed-2/branches/JETSPEED-2.1.3/components/web-content/src/java/org/apache/jetspeed/portlet/IFramePortlet.java

Modified: 
portals/jetspeed-2/branches/JETSPEED-2.1.3/components/web-content/src/java/org/apache/jetspeed/portlet/IFrameGenericPortlet.java
URL: 
http://svn.apache.org/viewvc/portals/jetspeed-2/branches/JETSPEED-2.1.3/components/web-content/src/java/org/apache/jetspeed/portlet/IFrameGenericPortlet.java?rev=578925&r1=578924&r2=578925&view=diff
==============================================================================
--- 
portals/jetspeed-2/branches/JETSPEED-2.1.3/components/web-content/src/java/org/apache/jetspeed/portlet/IFrameGenericPortlet.java
 (original)
+++ 
portals/jetspeed-2/branches/JETSPEED-2.1.3/components/web-content/src/java/org/apache/jetspeed/portlet/IFrameGenericPortlet.java
 Mon Sep 24 12:22:58 2007
@@ -135,7 +135,7 @@
         StringBuffer content = new StringBuffer(4096);
 
         // fix JS2-349
-        content.append("<TABLE WIDTH='100%'><TR><TD>");
+        content.append("<TABLE CLASS='iframePortletTableContainer' 
WIDTH='100%'><TBODY CLASS='iframePortletTbodyContainer'><TR><TD>");
 
         content.append("<IFRAME");
 
@@ -169,7 +169,7 @@
         content.append("</IFRAME>");
 
         // end fix JS2-349
-        content.append("</TD></TR></TABLE>");
+        content.append("</TD></TR></TBODY></TABLE>");
 
         // set required content type and write HTML IFRAME content
         response.setContentType("text/html");

Modified: 
portals/jetspeed-2/branches/JETSPEED-2.1.3/components/web-content/src/java/org/apache/jetspeed/portlet/IFramePortlet.java
URL: 
http://svn.apache.org/viewvc/portals/jetspeed-2/branches/JETSPEED-2.1.3/components/web-content/src/java/org/apache/jetspeed/portlet/IFramePortlet.java?rev=578925&r1=578924&r2=578925&view=diff
==============================================================================
--- 
portals/jetspeed-2/branches/JETSPEED-2.1.3/components/web-content/src/java/org/apache/jetspeed/portlet/IFramePortlet.java
 (original)
+++ 
portals/jetspeed-2/branches/JETSPEED-2.1.3/components/web-content/src/java/org/apache/jetspeed/portlet/IFramePortlet.java
 Mon Sep 24 12:22:58 2007
@@ -301,7 +301,7 @@
         StringBuffer content = new StringBuffer(4096);
 
         // fix JS2-349
-        content.append("<TABLE WIDTH='100%'><TR><TD>");
+        content.append("<TABLE CLASS='iframePortletTableContainer' 
WIDTH='100%'><TBODY CLASS='iframePortletTbodyContainer'><TR><TD>");
         
         content.append("<IFRAME");
         content.append(" SRC=\"").append(sourceAttr).append("\"");
@@ -407,7 +407,7 @@
         content.append("</IFRAME>");
 
         // end fix JS2-349
-        content.append("</TD></TR></TABLE>");
+        content.append("</TD></TR></TBODY></TABLE>");
 
         // set required content type and write HTML IFRAME content
         response.setContentType("text/html");



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to