You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ma...@apache.org on 2009/04/14 21:55:51 UTC

svn commit: r764938 - in /myfaces/core/branches/2_0_0: api/src/main/java/javax/faces/component/ api/src/test/java/javax/faces/convert/ impl/src/main/java/org/apache/myfaces/resource/ impl/src/main/java/org/apache/myfaces/view/facelets/ impl/src/test/ja...

Author: matzew
Date: Tue Apr 14 19:55:51 2009
New Revision: 764938

URL: http://svn.apache.org/viewvc?rev=764938&view=rev
Log:
fixed some utf-8

Modified:
    myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/component/UIComponent.java
    myfaces/core/branches/2_0_0/api/src/test/java/javax/faces/convert/NumberConverterTest.java
    myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/resource/ExternalContextResourceLoader.java
    myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/view/facelets/FaceletViewDeclarationLanguage.java
    myfaces/core/branches/2_0_0/impl/src/test/java/org/apache/myfaces/context/ContextTestRequestWrapper.java
    myfaces/core/branches/2_0_0/impl/src/test/java/org/apache/myfaces/context/ExecutePhaseClientIdsTest.java

Modified: myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/component/UIComponent.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/component/UIComponent.java?rev=764938&r1=764937&r2=764938&view=diff
==============================================================================
--- myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/component/UIComponent.java (original)
+++ myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/component/UIComponent.java Tue Apr 14 19:55:51 2009
@@ -578,7 +578,7 @@
         // AfterRestoreStateEvent,
         if (event instanceof PostRestoreStateEvent)
         {
-            // call this.getValueExpression(java.lang.String) passing the literal string “binding”
+            // call this.getValueExpression(java.lang.String) passing the literal string "binding"
             ValueExpression expression = getValueExpression("binding");
 
             // If the result is non-null, set the value of the ValueExpression to be this.

Modified: myfaces/core/branches/2_0_0/api/src/test/java/javax/faces/convert/NumberConverterTest.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2_0_0/api/src/test/java/javax/faces/convert/NumberConverterTest.java?rev=764938&r1=764937&r2=764938&view=diff
==============================================================================
--- myfaces/core/branches/2_0_0/api/src/test/java/javax/faces/convert/NumberConverterTest.java (original)
+++ myfaces/core/branches/2_0_0/api/src/test/java/javax/faces/convert/NumberConverterTest.java Tue Apr 14 19:55:51 2009
@@ -62,10 +62,10 @@
      * testFranceLocaleWithNonBreakingSpace() {
      * 
      * UIInput input = new UIInput(); mock.setType("currency"); Number number = (Number)
-     * mock.getAsObject(FacesContext.getCurrentInstance(), input, "12\u00a0345,68 €"); assertNotNull(number); } public
+     * mock.getAsObject(FacesContext.getCurrentInstance(), input, "12\u00a0345,68 \u20ac"); assertNotNull(number); } public
      * void testFranceLocaleWithoutNonBreakingSpace() {
      * 
      * UIInput input = new UIInput(); mock.setType("currency"); Number number = (Number)
-     * mock.getAsObject(FacesContext.getCurrentInstance(), input, "12 345,68 €"); assertNotNull(number); }
+     * mock.getAsObject(FacesContext.getCurrentInstance(), input, "12 345,68 \u20ac"); assertNotNull(number); }
      */
 }

Modified: myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/resource/ExternalContextResourceLoader.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/resource/ExternalContextResourceLoader.java?rev=764938&r1=764937&r2=764938&view=diff
==============================================================================
--- myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/resource/ExternalContextResourceLoader.java (original)
+++ myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/resource/ExternalContextResourceLoader.java Tue Apr 14 19:55:51 2009
@@ -71,7 +71,7 @@
             // resourceVersion = // execute the comment
             // Look in the resourcePaths for versioned resources.
             // If one or more versioned resources are found, take
-            // the one with the “highest” version number as the value
+            // the one with the "highest" version number as the value
             // of resourceVersion. If no versioned libraries
             // are found, let resourceVersion remain null.
             for (String resourcePath : resourcePaths)
@@ -105,7 +105,7 @@
         {
             // Look in the libraryPaths for versioned libraries.
             // If one or more versioned libraries are found, take
-            // the one with the “highest” version number as the value
+            // the one with the "highest" version number as the value
             // of libraryVersion. If no versioned libraries
             // are found, let libraryVersion remain null.
 

Modified: myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/view/facelets/FaceletViewDeclarationLanguage.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/view/facelets/FaceletViewDeclarationLanguage.java?rev=764938&r1=764937&r2=764938&view=diff
==============================================================================
--- myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/view/facelets/FaceletViewDeclarationLanguage.java (original)
+++ myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/view/facelets/FaceletViewDeclarationLanguage.java Tue Apr 14 19:55:51 2009
@@ -72,7 +72,7 @@
         // TODO: IMPLEMENT HERE
         /* The implementation must guarantee that the page is executed in such a way that the UIComponent 
          * tree described in the PDL page is completely built and populated, rooted at the new UIViewRoot 
-         * instance created previously. See Section 10.2.3 “Creating a View”.
+         * instance created previously. See Section 10.2.3 "Creating a View".
          */
         
         return viewRoot;

Modified: myfaces/core/branches/2_0_0/impl/src/test/java/org/apache/myfaces/context/ContextTestRequestWrapper.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2_0_0/impl/src/test/java/org/apache/myfaces/context/ContextTestRequestWrapper.java?rev=764938&r1=764937&r2=764938&view=diff
==============================================================================
--- myfaces/core/branches/2_0_0/impl/src/test/java/org/apache/myfaces/context/ContextTestRequestWrapper.java (original)
+++ myfaces/core/branches/2_0_0/impl/src/test/java/org/apache/myfaces/context/ContextTestRequestWrapper.java Tue Apr 14 19:55:51 2009
@@ -25,7 +25,7 @@
  * Context request wrapper
  * to test various aspects of a
  * of the facesContext which relies on requests!
- *ó
+ *
  * @author Werner Punz(latest modification by $Author$)
  * @version $Revision$ $Date$
  */

Modified: myfaces/core/branches/2_0_0/impl/src/test/java/org/apache/myfaces/context/ExecutePhaseClientIdsTest.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2_0_0/impl/src/test/java/org/apache/myfaces/context/ExecutePhaseClientIdsTest.java?rev=764938&r1=764937&r2=764938&view=diff
==============================================================================
--- myfaces/core/branches/2_0_0/impl/src/test/java/org/apache/myfaces/context/ExecutePhaseClientIdsTest.java (original)
+++ myfaces/core/branches/2_0_0/impl/src/test/java/org/apache/myfaces/context/ExecutePhaseClientIdsTest.java Tue Apr 14 19:55:51 2009
@@ -25,7 +25,6 @@
 import org.apache.shale.test.base.AbstractJsfTestCase;
 
 /**
- * °
  *
  * @author Werner Punz(latest modification by $Author$)
  * @version $Revision$ $Date$