You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2006/01/19 23:33:47 UTC

svn commit: r370655 - in /incubator/tobago/trunk: tobago-core/src/main/java/org/apache/myfaces/tobago/component/ tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/

Author: weber
Date: Thu Jan 19 14:33:35 2006
New Revision: 370655

URL: http://svn.apache.org/viewcvs?rev=370655&view=rev
Log:
remove debug output

Modified:
    incubator/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/component/UIData.java
    incubator/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/DateRenderer.java
    incubator/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/TabGroupRenderer.java

Modified: incubator/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/component/UIData.java
URL: http://svn.apache.org/viewcvs/incubator/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/component/UIData.java?rev=370655&r1=370654&r2=370655&view=diff
==============================================================================
--- incubator/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/component/UIData.java (original)
+++ incubator/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/component/UIData.java Thu Jan 19 14:33:35 2006
@@ -22,27 +22,27 @@
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 import static org.apache.myfaces.tobago.TobagoConstants.*;
+import org.apache.myfaces.tobago.ajax.api.AjaxComponent;
+import org.apache.myfaces.tobago.ajax.api.AjaxPhaseListener;
+import org.apache.myfaces.tobago.ajax.api.AjaxUtils;
+import org.apache.myfaces.tobago.event.SheetStateChangeEvent;
+import org.apache.myfaces.tobago.event.SheetStateChangeListener;
+import org.apache.myfaces.tobago.event.SheetStateChangeSource;
 import org.apache.myfaces.tobago.model.SheetState;
 import org.apache.myfaces.tobago.renderkit.RendererBase;
 import org.apache.myfaces.tobago.renderkit.SheetRendererWorkaround;
 import org.apache.myfaces.tobago.util.LayoutInfo;
 import org.apache.myfaces.tobago.util.LayoutUtil;
 import org.apache.myfaces.tobago.util.StringUtil;
-import org.apache.myfaces.tobago.event.SheetStateChangeSource;
-import org.apache.myfaces.tobago.event.SheetStateChangeListener;
-import org.apache.myfaces.tobago.event.SheetStateChangeEvent;
-import org.apache.myfaces.tobago.ajax.api.AjaxComponent;
-import org.apache.myfaces.tobago.ajax.api.AjaxPhaseListener;
-import org.apache.myfaces.tobago.ajax.api.AjaxUtils;
 
 import javax.faces.component.UIColumn;
 import javax.faces.component.UIComponent;
 import javax.faces.context.FacesContext;
+import javax.faces.el.EvaluationException;
 import javax.faces.el.MethodBinding;
 import javax.faces.el.ValueBinding;
-import javax.faces.el.EvaluationException;
-import javax.faces.event.FacesEvent;
 import javax.faces.event.AbortProcessingException;
+import javax.faces.event.FacesEvent;
 import java.io.IOException;
 import java.util.ArrayList;
 import java.util.Iterator;
@@ -461,6 +461,7 @@
   }
 
   public void setShowHeader(boolean showHeader) {
+    LOG.info("", new Exception());
     this.showHeader = showHeader;
     this.showHeaderSet = true;
   }
@@ -474,7 +475,6 @@
   public void processAjax(FacesContext facesContext) throws IOException {
     final String ajaxId = (String) facesContext.getExternalContext()
         .getRequestParameterMap().get(AjaxPhaseListener.AJAX_COMPONENT_ID);
-    LOG.info("ajaxId= " + ajaxId + "  :: clientId = " + getClientId(facesContext));
     if (ajaxId.equals(getClientId(facesContext))) {
       AjaxUtils.processActiveAjaxComponent(facesContext, this);
     } else {

Modified: incubator/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/DateRenderer.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/DateRenderer.java?rev=370655&r1=370654&r2=370655&view=diff
==============================================================================
--- incubator/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/DateRenderer.java (original)
+++ incubator/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/DateRenderer.java Thu Jan 19 14:33:35 2006
@@ -100,7 +100,6 @@
     final Converter converter = ((UIOutput) component).getConverter();
     if (converter instanceof DateTimeConverter) {
       converterPattern = ((DateTimeConverter) converter).getPattern();
-      LOG.info("converterPattern = " + converterPattern);
     }
 
     // create link
@@ -158,7 +157,6 @@
 
     if (converterPattern.indexOf('h') > -1 || converterPattern.indexOf('H') > -1) {
       // add time input
-      LOG.info("adding time ");
       final UIComponent timePanel = ComponentUtil.createComponent(
           facesContext, UIPanel.COMPONENT_TYPE, RENDERER_TYPE_PANEL);
       timePanel.setId("timePanel");
@@ -191,7 +189,6 @@
 
     } else {
       // add empty cell  // TODO: remove if popup height calculation relays on content
-      LOG.info("adding cell ");
       final UIComponent cell = ComponentUtil.createComponent(
           facesContext, UIPanel.COMPONENT_TYPE, RENDERER_TYPE_PANEL);
       cell.setId("emptyCell");

Modified: incubator/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/TabGroupRenderer.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/TabGroupRenderer.java?rev=370655&r1=370654&r2=370655&view=diff
==============================================================================
--- incubator/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/TabGroupRenderer.java (original)
+++ incubator/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/TabGroupRenderer.java Thu Jan 19 14:33:35 2006
@@ -203,7 +203,6 @@
 
       String url;
 
-      LOG.info("switchtype ist = " + switchType);
       if (TobagoConfig.getInstance(facesContext).isAjaxEnabled()
           && SWITCH_TYPE_RELOAD_TAB.equals(switchType)) {
         url = "#";