You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by id...@apache.org on 2007/11/08 21:24:14 UTC

svn commit: r593291 - in /myfaces/tobago/trunk: core/src/main/java/org/apache/myfaces/tobago/component/ core/src/main/java/org/apache/myfaces/tobago/event/ core/src/main/java/org/apache/myfaces/tobago/renderkit/ core/src/main/java/org/apache/myfaces/to...

Author: idus
Date: Thu Nov  8 12:24:13 2007
New Revision: 593291

URL: http://svn.apache.org/viewvc?rev=593291&view=rev
Log:
cosmetic: misspelling

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIViewRoot.java
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/event/DatePickerController.java
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/renderkit/LayoutableRendererBase.java
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/servlet/ResourceServlet.java
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/webapp/TobagoMultipartFormdataRequest.java
    myfaces/tobago/trunk/sandbox/src/main/java/org/apache/myfaces/tobago/renderkit/fo/standard/standard/tag/GridLayoutRenderer.java
    myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIViewRoot.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIViewRoot.java?rev=593291&r1=593290&r2=593291&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIViewRoot.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIViewRoot.java Thu Nov  8 12:24:13 2007
@@ -136,7 +136,7 @@
           while (fe != null) {
             if (fe instanceof AbortProcessingException) {
               if (LOG.isTraceEnabled()) {
-                LOG.trace("AbortProcessingException catched!");
+                LOG.trace("AbortProcessingException caught!");
               }
               // abort event processing
               // Page 3-30 of JSF 1.1 spec: "Throw an AbortProcessingException, to tell the JSF implementation

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/event/DatePickerController.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/event/DatePickerController.java?rev=593291&r1=593290&r2=593291&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/event/DatePickerController.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/event/DatePickerController.java Thu Nov  8 12:24:13 2007
@@ -140,7 +140,7 @@
       try {
         defaultValue = Integer.parseInt(st.nextToken());
       } catch (NumberFormatException e) {
-        LOG.error("Catched: " + e.getMessage(), e);
+        LOG.error("Caught: " + e.getMessage(), e);
       }
     }
     return defaultValue;

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/renderkit/LayoutableRendererBase.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/renderkit/LayoutableRendererBase.java?rev=593291&r1=593290&r2=593291&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/renderkit/LayoutableRendererBase.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/renderkit/LayoutableRendererBase.java Thu Nov  8 12:24:13 2007
@@ -129,7 +129,7 @@
       try {
         intSpace = Integer.parseInt(space.replaceAll("\\D", ""));
       } catch (NumberFormatException e) {
-        LOG.error("Catched: " + e.getMessage(), e);
+        LOG.error("Caught: " + e.getMessage(), e);
       }
     }
     if (intSpace == -1) {

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/servlet/ResourceServlet.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/servlet/ResourceServlet.java?rev=593291&r1=593290&r2=593291&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/servlet/ResourceServlet.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/servlet/ResourceServlet.java Thu Nov  8 12:24:13 2007
@@ -71,7 +71,7 @@
       try {
         expires = new Long(expiresString);
       } catch (NumberFormatException e) {
-        LOG.error("Catched: " + e.getMessage(), e);
+        LOG.error("Caught: " + e.getMessage(), e);
       }
     }
   }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/webapp/TobagoMultipartFormdataRequest.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/webapp/TobagoMultipartFormdataRequest.java?rev=593291&r1=593290&r2=593291&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/webapp/TobagoMultipartFormdataRequest.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/webapp/TobagoMultipartFormdataRequest.java Thu Nov  8 12:24:13 2007
@@ -106,7 +106,7 @@
               // TODO: enable configuration of  'accept-charset'
               values = new String[] {item.getString(FORM_ACCEPT_CHARSET)};
             } catch (UnsupportedEncodingException e) {
-              LOG.error("Catched: " + e.getMessage(), e);
+              LOG.error("Caught: " + e.getMessage(), e);
               values = new String[] {item.getString()};
             }
             parameters.put(key, values);
@@ -121,7 +121,7 @@
               // TODO: enable configuration of  'accept-charset'
               values[i] = item.getString(FORM_ACCEPT_CHARSET);
             } catch (UnsupportedEncodingException e) {
-              LOG.error("Catched: " + e.getMessage(), e);
+              LOG.error("Caught: " + e.getMessage(), e);
               values[i] = item.getString();
             }
             parameters.put(key, values);

Modified: myfaces/tobago/trunk/sandbox/src/main/java/org/apache/myfaces/tobago/renderkit/fo/standard/standard/tag/GridLayoutRenderer.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/sandbox/src/main/java/org/apache/myfaces/tobago/renderkit/fo/standard/standard/tag/GridLayoutRenderer.java?rev=593291&r1=593290&r2=593291&view=diff
==============================================================================
--- myfaces/tobago/trunk/sandbox/src/main/java/org/apache/myfaces/tobago/renderkit/fo/standard/standard/tag/GridLayoutRenderer.java (original)
+++ myfaces/tobago/trunk/sandbox/src/main/java/org/apache/myfaces/tobago/renderkit/fo/standard/standard/tag/GridLayoutRenderer.java Thu Nov  8 12:24:13 2007
@@ -54,10 +54,10 @@
 
       layoutBegin(facesContext, component);
     } catch (RuntimeException e) {
-      LOG.error("catched RuntimeException :", e);
+      LOG.error("caught RuntimeException :", e);
       throw e;
     } catch (Throwable e) {
-      LOG.error("catched Throwable :", e);
+      LOG.error("caught Throwable :", e);
       throw new RuntimeException(e);
     }
 
@@ -75,10 +75,10 @@
       layoutEnd(facesContext, component);
 
     } catch (RuntimeException e) {
-      LOG.error("catched " + e + " :" + e.getMessage(), e);
+      LOG.error("caught " + e + " :" + e.getMessage(), e);
       throw e;
     } catch (Throwable e) {
-      LOG.error("catched Throwable :", e);
+      LOG.error("caught Throwable :", e);
       throw new RuntimeException(e);
     }
     if (LOG.isDebugEnabled()) {

Modified: myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js?rev=593291&r1=593290&r2=593291&view=diff
==============================================================================
--- myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js (original)
+++ myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js Thu Nov  8 12:24:13 2007
@@ -1596,7 +1596,7 @@
   }
   this.modifier = modifier;
   if (document.all && (modifier == "alt" || modifier == "ctrl")) {
-    // keys with modifier 'alt' and 'ctrl' are not catched in IE
+    // keys with modifier 'alt' and 'ctrl' are not caught in IE
     // so special code needed
     if (modifier == "alt") {
       // can't make document.createElement("span").accesskey = key working