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 2005/12/21 20:28:02 UTC

svn commit: r358350 - in /incubator/tobago/trunk: pom.xml tobago-theme/tobago-theme-richmond/pom.xml tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/SheetRenderer.java

Author: bommel
Date: Wed Dec 21 11:27:46 2005
New Revision: 358350

URL: http://svn.apache.org/viewcvs?rev=358350&view=rev
Log:
fixed some typos
SheetRenderer don't call getRowData twice

Modified:
    incubator/tobago/trunk/pom.xml
    incubator/tobago/trunk/tobago-theme/tobago-theme-richmond/pom.xml
    incubator/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/SheetRenderer.java

Modified: incubator/tobago/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/incubator/tobago/trunk/pom.xml?rev=358350&r1=358349&r2=358350&view=diff
==============================================================================
--- incubator/tobago/trunk/pom.xml (original)
+++ incubator/tobago/trunk/pom.xml Wed Dec 21 11:27:46 2005
@@ -50,14 +50,14 @@
       <archive>http://mail-archives.apache.org/mod_mbox/myfaces-users</archive>
     </mailingList>
     <mailingList>
-      <name>Myfaces Developer list</name>
+      <name>Myfaces Developer List</name>
       <subscribe>dev-subscribe@myfaces.apache.org</subscribe>
       <unsubscribe>dev-unsubscribe@myfaces.apache.org</unsubscribe>
       <post>dev@myfaces.apache.org</post>
       <archive>http://mail-archives.apache.org/mod_mbox/myfaces-dev</archive>
     </mailingList>
     <mailingList>
-      <name>Myfaces Commits list</name>
+      <name>Myfaces Commits List</name>
       <subscribe>commits-subscribe@myfaces.apache.org</subscribe>
       <unsubscribe>commits-unsubscribe@myfaces.apache.org</unsubscribe>
       <post>do not post</post>

Modified: incubator/tobago/trunk/tobago-theme/tobago-theme-richmond/pom.xml
URL: http://svn.apache.org/viewcvs/incubator/tobago/trunk/tobago-theme/tobago-theme-richmond/pom.xml?rev=358350&r1=358349&r2=358350&view=diff
==============================================================================
--- incubator/tobago/trunk/tobago-theme/tobago-theme-richmond/pom.xml (original)
+++ incubator/tobago/trunk/tobago-theme/tobago-theme-richmond/pom.xml Wed Dec 21 11:27:46 2005
@@ -26,7 +26,7 @@
   </parent>
   <artifactId>tobago-theme-richmond</artifactId>
   <packaging>jar</packaging>
-  <name>Tobago theme Richmond</name>
+  <name>Tobago Theme Richmond</name>
   <build>
     <plugins>
       <plugin>

Modified: incubator/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/SheetRenderer.java
URL: http://svn.apache.org/viewcvs/incubator/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/SheetRenderer.java?rev=358350&r1=358349&r2=358350&view=diff
==============================================================================
--- incubator/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/SheetRenderer.java (original)
+++ incubator/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/SheetRenderer.java Wed Dec 21 11:27:46 2005
@@ -273,13 +273,13 @@
         LOG.debug("list      " + data.getValue());
       }
 
-      final Object value = data.getRowData();
+      //final Object value = data.getRowData();
 
-      if (LOG.isDebugEnabled()) {
-        LOG.debug("element   " + value);
-      }
+      //*if (LOG.isDebugEnabled()) {
+      //  LOG.debug("element   " + value);
+      //}
 
-      requestMap.put(var, value);
+      //requestMap.put(var, value);
 
       writer.startElement("tr", null);
       writer.writeClassAttribute(rowClass);
@@ -366,7 +366,7 @@
 
     data.setRowIndex(-1);
 
-    requestMap.remove(var);
+    //requestMap.remove(var);
 
     writer.endElement("table");
     writer.endElement("div");