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 2010/03/10 13:57:00 UTC

svn commit: r921332 - in /myfaces/extensions/scripting/trunk: core/core/src/main/java/org/apache/myfaces/scripting/api/ScriptingConst.java examples/myfaces20-example/src/main/webapp/WEB-INF/web.xml

Author: werpu
Date: Wed Mar 10 12:57:00 2010
New Revision: 921332

URL: http://svn.apache.org/viewvc?rev=921332&view=rev
Log:
small refactoring issue, there was too much refactoring

Modified:
    myfaces/extensions/scripting/trunk/core/core/src/main/java/org/apache/myfaces/scripting/api/ScriptingConst.java
    myfaces/extensions/scripting/trunk/examples/myfaces20-example/src/main/webapp/WEB-INF/web.xml

Modified: myfaces/extensions/scripting/trunk/core/core/src/main/java/org/apache/myfaces/scripting/api/ScriptingConst.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/scripting/trunk/core/core/src/main/java/org/apache/myfaces/scripting/api/ScriptingConst.java?rev=921332&r1=921331&r2=921332&view=diff
==============================================================================
--- myfaces/extensions/scripting/trunk/core/core/src/main/java/org/apache/myfaces/scripting/api/ScriptingConst.java (original)
+++ myfaces/extensions/scripting/trunk/core/core/src/main/java/org/apache/myfaces/scripting/api/ScriptingConst.java Wed Mar 10 12:57:00 2010
@@ -30,8 +30,8 @@ public class ScriptingConst {
     public static final String SCRIPTING_GROOVFACTORY = "org.apache.myfaces.SCRIPTING_GROOVYFACTORY";
     public static final String SCRIPTING_REQUSINGLETON = "org.apache.myfaces.SCRIPTING_REQUSINGLETON";
 
-    public static final String INIT_PARAM_SCRIPTING_PACKAGE_WHITELIST = "org.apache.myfaces.SCRIPTING_PGK_WHITELIST";
-    public static final String INIT_PARAM_SCRIPTING_ADDITIONAL_CLASSPATH = "org.apache.myfaces.INIT_PARAM_SCRIPTING_ADDITIONAL_CLASSPATH";
+    public static final String INIT_PARAM_SCRIPTING_PACKAGE_WHITELIST = "org.apache.myfaces.scripting.PGK_WHITELIST";
+    public static final String INIT_PARAM_SCRIPTING_ADDITIONAL_CLASSPATH = "org.apache.myfaces.scripting.ADDITIONAL_CLASSPATH";
 
     public static final String CONTEXT_VALUE_DIVIDER = ",";
 

Modified: myfaces/extensions/scripting/trunk/examples/myfaces20-example/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/scripting/trunk/examples/myfaces20-example/src/main/webapp/WEB-INF/web.xml?rev=921332&r1=921331&r2=921332&view=diff
==============================================================================
--- myfaces/extensions/scripting/trunk/examples/myfaces20-example/src/main/webapp/WEB-INF/web.xml (original)
+++ myfaces/extensions/scripting/trunk/examples/myfaces20-example/src/main/webapp/WEB-INF/web.xml Wed Mar 10 12:57:00 2010
@@ -75,7 +75,7 @@
         <description>a comma separated whitelist of root packages which are compiled those and nothing else
             will be compiled during all compile stages, all other files stay permanently as they are
         </description>
-        <param-name>org.apache.myfaces.SCRIPTING_PGK_WHITELIST</param-name>
+        <param-name>org.apache.myfaces.scripting.PGK_WHITELIST</param-name>
         <param-value>org.apache.myfaces.groovyloader.blog</param-value>
     </context-param>
     -->