last checkin before pushing the history back into cvs

git-svn-id: https://svn.apache.org/repos/asf/myfaces/extensions/scripting/trunk@908253 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/core/core/src/main/java/org/apache/myfaces/scripting/api/ArtefactType.java b/core/core/src/main/java/org/apache/myfaces/scripting/api/ArtefactType.java
deleted file mode 100644
index cd293bb..0000000
--- a/core/core/src/main/java/org/apache/myfaces/scripting/api/ArtefactType.java
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you 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
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.myfaces.scripting.api;
-
-/**
- * @author Werner Punz (latest modification by $Author$)
- * @version $Revision$ $Date$
- *          <p/>
- *          A set of artifact types which are used internally
- *          so that the reloading strategies and other parts of the system
- *          can adapt to the type of the artifact which has to be reloaded
- */
-@SuppressWarnings("unused")
-public enum ArtefactType {
-    MANAGED_BEAN,
-    COMPONENT,
-    BEHAVIOR,
-    VALIDATOR,
-    RENDERER,
-    NAV_HANDLER,
-    RENDERKIT,
-    VIEWHANDLER,
-    LIFECYCLE,
-    FACESCONTEXT,
-    ELRESOLVER,
-    VARIABLERESOLVER,
-    SCOPE,
-    RESOURCEHANDLER
-}
diff --git a/examples/myfaces12-example/src/main/webapp/WEB-INF/groovy/org/apache/myfaces/groovyloader/test/TestBean.groovy b/examples/myfaces12-example/src/main/webapp/WEB-INF/groovy/org/apache/myfaces/groovyloader/test/TestBean.groovy
index 208abcb..46b660f 100644
--- a/examples/myfaces12-example/src/main/webapp/WEB-INF/groovy/org/apache/myfaces/groovyloader/test/TestBean.groovy
+++ b/examples/myfaces12-example/src/main/webapp/WEB-INF/groovy/org/apache/myfaces/groovyloader/test/TestBean.groovy
@@ -21,7 +21,7 @@
  * @author Werner Punz
  */
 class TestBean {
-    String helloworld = "hallo ist - die bean"
+    String helloworld = "Hello from the bean"
 
     //note you can add new atrtributes
     //no setter or getter is needed
diff --git a/examples/myfaces12-example/src/main/webapp/WEB-INF/groovy/org/apache/myfaces/groovyloader/test/TestRenderer.groovy b/examples/myfaces12-example/src/main/webapp/WEB-INF/groovy/org/apache/myfaces/groovyloader/test/TestRenderer.groovy
index 9357ce1..b4ed0f7 100644
--- a/examples/myfaces12-example/src/main/webapp/WEB-INF/groovy/org/apache/myfaces/groovyloader/test/TestRenderer.groovy
+++ b/examples/myfaces12-example/src/main/webapp/WEB-INF/groovy/org/apache/myfaces/groovyloader/test/TestRenderer.groovy
@@ -33,7 +33,7 @@
 
     
         facesContext.responseWriter.write """
-            <h1> Hello from a groovy JSF components renderer </h1>
+            <h1>Hello from a groovy JSF components renderer </h1>
 
             <p> you can find my sources under WEB-INF/groovy/... </p>
 
diff --git a/examples/myfaces20-example/src/main/webapp/WEB-INF/groovy/org/apache/myfaces/groovyloader/test/TestRenderer.groovy b/examples/myfaces20-example/src/main/webapp/WEB-INF/groovy/org/apache/myfaces/groovyloader/test/TestRenderer.groovy
index 3933f3f..1603e24 100644
--- a/examples/myfaces20-example/src/main/webapp/WEB-INF/groovy/org/apache/myfaces/groovyloader/test/TestRenderer.groovy
+++ b/examples/myfaces20-example/src/main/webapp/WEB-INF/groovy/org/apache/myfaces/groovyloader/test/TestRenderer.groovy
@@ -31,7 +31,7 @@
 
   public void encodeBegin(FacesContext facesContext, UIComponent uiComponent) {
     facesContext.responseWriter.write """
-            <h1> Hello from a groovy JSF components renderer </h1>
+            <h1>Hello from a groovy JSF components renderer </h1>
 
             <p> you can find my sources under WEB-INF/groovy/... </p>
 
diff --git a/examples/myfaces20-example/src/main/webapp/WEB-INF/web.xml b/examples/myfaces20-example/src/main/webapp/WEB-INF/web.xml
index 61702c8..359e562 100644
--- a/examples/myfaces20-example/src/main/webapp/WEB-INF/web.xml
+++ b/examples/myfaces20-example/src/main/webapp/WEB-INF/web.xml
@@ -31,7 +31,7 @@
         <param-value>org.apache.myfaces.scripting.servlet.StartupServletContextPluginChainLoader</param-value>
     </context-param>
 
-
+    <!--
     <context-param>
         <description>Additional comma separated loader paths to allow direct editing on the sources directory instead
             of the deployment dir
@@ -68,7 +68,7 @@
         <param-name>facelets.RESOURCE_RESOLVER</param-name>
         <param-value>org.apache.myfaces.scripting.facelet.ReroutingResourceResolver</param-value>
     </context-param>
-    
+     -->
     <!--
      <context-param>
         <description>Additional comma separated loader paths to allow direct editing on the sources directory instead
diff --git a/examples/myfaces20-example/src/main/webapp/helloWorld.xhtml b/examples/myfaces20-example/src/main/webapp/helloWorld.xhtml
index a919584..7ca80ca 100644
--- a/examples/myfaces20-example/src/main/webapp/helloWorld.xhtml
+++ b/examples/myfaces20-example/src/main/webapp/helloWorld.xhtml
@@ -24,7 +24,6 @@
                             <grv:groovyvalidator/>
                         </h:inputText>
                         
-                        <h:outputText value="#{testbean5.helloWorld}" />
                         <h:commandButton id="button1" value="press me" action="#{helloWorld.send}"/>
                     </h:panelGroup>
                     <h:panelGroup styleClass="stdBox">