You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by de...@apache.org on 2016/02/14 13:49:35 UTC

svn commit: r1730330 - in /myfaces/tobago/trunk: ./ tobago-core/src/main/java/org/apache/myfaces/tobago/webapp/ tobago-extension/tobago-fileupload/src/main/java/org/apache/myfaces/tobago/fileupload/

Author: deki
Date: Sun Feb 14 12:49:35 2016
New Revision: 1730330

URL: http://svn.apache.org/viewvc?rev=1730330&view=rev
Log:
Merged from tobago-3.0.x
fixed typo in logging [from revision 1730328]

Modified:
    myfaces/tobago/trunk/   (props changed)
    myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/webapp/TobagoMultipartFormdataFilter.java
    myfaces/tobago/trunk/tobago-extension/tobago-fileupload/src/main/java/org/apache/myfaces/tobago/fileupload/FileUploadFacesContextFactoryImpl.java

Propchange: myfaces/tobago/trunk/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sun Feb 14 12:49:35 2016
@@ -1,3 +1,3 @@
 /myfaces/tobago/branches/tobago-1.5.x:1356585,1357124
-/myfaces/tobago/branches/tobago-3.0.x:1646189,1646226,1650101,1660635,1672073,1678908-1678909,1679416,1708972,1714163,1714169,1716162,1719631
+/myfaces/tobago/branches/tobago-3.0.x:1646189,1646226,1650101,1660635,1672073,1678908-1678909,1679416,1708972,1714163,1714169,1716162,1719631,1730328
 /myfaces/tobago/branches/tobago-tree-table:1226794-1341423

Modified: myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/webapp/TobagoMultipartFormdataFilter.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/webapp/TobagoMultipartFormdataFilter.java?rev=1730330&r1=1730329&r2=1730330&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/webapp/TobagoMultipartFormdataFilter.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/webapp/TobagoMultipartFormdataFilter.java Sun Feb 14 12:49:35 2016
@@ -89,7 +89,7 @@ public class TobagoMultipartFormdataFilt
 
     maxSize = TobagoMultipartFormdataRequest.getMaxSize(filterConfig.getInitParameter("uploadMaxFileSize"));
     if (LOG.isInfoEnabled()) {
-      LOG.info("Configure uploadRepositryPath for " + getClass().getName() + " to " + this.repositoryPath);
+      LOG.info("Configure uploadRepositoryPath for " + getClass().getName() + " to " + this.repositoryPath);
       LOG.info("Configure uploadMaxFileSize for " + getClass().getName() + " to " + this.maxSize);
     }
 

Modified: myfaces/tobago/trunk/tobago-extension/tobago-fileupload/src/main/java/org/apache/myfaces/tobago/fileupload/FileUploadFacesContextFactoryImpl.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-extension/tobago-fileupload/src/main/java/org/apache/myfaces/tobago/fileupload/FileUploadFacesContextFactoryImpl.java?rev=1730330&r1=1730329&r2=1730330&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-extension/tobago-fileupload/src/main/java/org/apache/myfaces/tobago/fileupload/FileUploadFacesContextFactoryImpl.java (original)
+++ myfaces/tobago/trunk/tobago-extension/tobago-fileupload/src/main/java/org/apache/myfaces/tobago/fileupload/FileUploadFacesContextFactoryImpl.java Sun Feb 14 12:49:35 2016
@@ -114,7 +114,7 @@ public class FileUploadFacesContextFacto
     }
     if (LOG.isInfoEnabled()) {
       LOG.info("Configure uploadMaxFileSize for "+ getClass().getName() + " to "+ this.maxSize);
-      LOG.info("Configure uploadRepositryPath for "+ getClass().getName() + " to "+ this.repositoryPath);
+      LOG.info("Configure uploadRepositoryPath for "+ getClass().getName() + " to "+ this.repositoryPath);
     }
   }