[jboss-cvs] jboss-seam/src/ui/org/jboss/seam/ui/tag ...

Norman Richards norman.richards at jboss.com
Fri Dec 15 21:58:13 EST 2006


  User: nrichards
  Date: 06/12/15 21:58:13

  Modified:    src/ui/org/jboss/seam/ui/tag    
                        HtmlComponentBodyTagBase.java
                        HtmlMessageTagBase.java UIComponentBodyTagBase.java
                        UIComponentTagBase.java
  Log:
  update logging
  
  Revision  Changes    Path
  1.3       +2 -2      jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlComponentBodyTagBase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: HtmlComponentBodyTagBase.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlComponentBodyTagBase.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- HtmlComponentBodyTagBase.java	25 Oct 2006 15:37:37 -0000	1.2
  +++ HtmlComponentBodyTagBase.java	16 Dec 2006 02:58:13 -0000	1.3
  @@ -20,13 +20,13 @@
   import org.jboss.seam.ui.HTML;
   
   /**
  - * @author Manfred Geiler (latest modification by $Author: gavin $)
  - * @version $Revision: 1.2 $ $Date: 2006/10/25 15:37:37 $
  + * @author Manfred Geiler (latest modification by $Author: nrichards $)
  + * @version $Revision: 1.3 $ $Date: 2006/12/16 02:58:13 $
    */
   public abstract class HtmlComponentBodyTagBase
           extends UIComponentBodyTagBase
   {
  -    //private static final Log log = LogFactory.getLog(HtmlComponentTag.class);
  +    //private static final LogProvider log = Logging.getLogProvider(HtmlComponentTag.class);
   
       //HTML universal attributes
       private String _dir;
  
  
  
  1.3       +2 -2      jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlMessageTagBase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: HtmlMessageTagBase.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlMessageTagBase.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- HtmlMessageTagBase.java	25 Oct 2006 15:37:37 -0000	1.2
  +++ HtmlMessageTagBase.java	16 Dec 2006 02:58:13 -0000	1.3
  @@ -20,13 +20,13 @@
   import org.jboss.seam.ui.JSF;
   
   /**
  - * @author Manfred Geiler (latest modification by $Author: gavin $)
  - * @version $Revision: 1.2 $ $Date: 2006/10/25 15:37:37 $
  + * @author Manfred Geiler (latest modification by $Author: nrichards $)
  + * @version $Revision: 1.3 $ $Date: 2006/12/16 02:58:13 $
    */
   public abstract class HtmlMessageTagBase
           extends HtmlComponentTagBase
   {
  -    //private static final Log log = LogFactory.getLog(HtmlOutputFormatTag.class);
  +    //private static final LogProvider log = Logging.getLogProvider(HtmlOutputFormatTag.class);
   
       // UIComponent attributes --> already implemented in UIComponentTagBase
   
  
  
  
  1.3       +4 -6      jboss-seam/src/ui/org/jboss/seam/ui/tag/UIComponentBodyTagBase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: UIComponentBodyTagBase.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/UIComponentBodyTagBase.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- UIComponentBodyTagBase.java	25 Oct 2006 15:37:37 -0000	1.2
  +++ UIComponentBodyTagBase.java	16 Dec 2006 02:58:13 -0000	1.3
  @@ -1,7 +1,5 @@
   /*
  - * Copyright 2004 The Apache Software Foundation.
    *
  - * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
    * You may obtain a copy of the License at
    *
  @@ -23,17 +21,17 @@
   import javax.servlet.jsp.JspException;
   import javax.servlet.jsp.tagext.BodyContent;
   
  -import org.apache.commons.logging.Log;
  -import org.apache.commons.logging.LogFactory;
  +import org.jboss.seam.log.LogProvider;
  +import org.jboss.seam.log.Logging;
   
   /**
  - * @author Manfred Geiler (latest modification by $Author: gavin $)
  - * @version $Revision: 1.2 $ $Date: 2005-05-11 12:45:06 -0400 (Wed, 11 May
  + * @author Manfred Geiler (latest modification by $Author: nrichards $)
  + * @version $Revision: 1.3 $ $Date: 2005-05-11 12:45:06 -0400 (Wed, 11 May
    *          2005) $
    */
   public abstract class UIComponentBodyTagBase extends UIComponentBodyTag
   {
  -   private static final Log log = LogFactory.getLog(UIComponentBodyTagBase.class);
  +   private static final LogProvider log = Logging.getLogProvider(UIComponentBodyTagBase.class);
   
      @Override
      public int doEndTag() throws JspException
  
  
  
  1.9       +4 -4      jboss-seam/src/ui/org/jboss/seam/ui/tag/UIComponentTagBase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: UIComponentTagBase.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/UIComponentTagBase.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- UIComponentTagBase.java	14 Dec 2006 08:52:18 -0000	1.8
  +++ UIComponentTagBase.java	16 Dec 2006 02:58:13 -0000	1.9
  @@ -31,17 +31,17 @@
   import javax.faces.event.ValueChangeEvent;
   import javax.faces.webapp.UIComponentTag;
   
  -import org.apache.commons.logging.Log;
  -import org.apache.commons.logging.LogFactory;
  +import org.jboss.seam.log.LogProvider;
  +import org.jboss.seam.log.Logging;
   import org.jboss.seam.ui.JSF;
   
   /**
  - * @author Manfred Geiler (latest modification by $Author: gavin $)
  - * @version $Revision: 1.8 $ $Date: 2006/12/14 08:52:18 $
  + * @author Manfred Geiler (latest modification by $Author: nrichards $)
  + * @version $Revision: 1.9 $ $Date: 2006/12/16 02:58:13 $
    */
   public abstract class UIComponentTagBase extends UIComponentTag
   {
  -   private static final Log log = LogFactory.getLog(UIComponentTagBase.class);
  +   private static final LogProvider log = Logging.getLogProvider(UIComponentTagBase.class);
   
      // Special UIComponent attributes (ValueHolder, ConvertibleValueHolder)
      private String _value;
  
  
  



More information about the jboss-cvs-commits mailing list