You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2017/06/05 11:25:40 UTC

svn commit: r1797644 [3/3] - in /commons/proper/jelly/trunk: ./ jelly-tags/ant/src/java/org/apache/commons/jelly/tags/ant/ jelly-tags/ant/src/java/org/apache/commons/jelly/task/ jelly-tags/ant/src/test/org/apache/commons/jelly/ant/ jelly-tags/avalon/sr...

Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/DynamicBeanTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/DynamicBeanTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/DynamicBeanTag.java (original)
+++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/DynamicBeanTag.java Mon Jun  5 11:25:38 2017
@@ -200,7 +200,7 @@ public class DynamicBeanTag extends Dyna
     /**
      * Report the state of the bean when method invocation fails
      * so that the user can determine any problems that might
-     * be occuring while using dynamic jelly beans.
+     * be occurring while using dynamic jelly beans.
      *
      * @param bean Bean on which <code>method</code was invoked
      * @param method Method that was invoked

Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/DynamicDynaBeanTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/DynamicDynaBeanTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/DynamicDynaBeanTag.java (original)
+++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/DynamicDynaBeanTag.java Mon Jun  5 11:25:38 2017
@@ -31,7 +31,7 @@ import org.apache.commons.jelly.expressi
 /**
  * This tag is bound onto a {@link DynaClass} instance.
  * When the tag is invoked a {@link DynaBean will be created using the tags attributes.
- * So this class is like a {@link DynaBean} implemenation of {@link DynamicBeanTag}
+ * So this class is like a {@link DynaBean} implementation of {@link DynamicBeanTag}
  *
  * @author <a href="mailto:jstrachan@apache.org">James Strachan</a>
  * @version $Revision$

Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/ScriptBlock.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/ScriptBlock.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/ScriptBlock.java (original)
+++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/ScriptBlock.java Mon Jun  5 11:25:38 2017
@@ -61,7 +61,7 @@ public class ScriptBlock implements Scri
 
     /**
      * Gets the child scripts that make up this block. This list is live
-     * so that it can be modified if requried
+     * so that it can be modified if required
      */
     public List getScriptList() {
         return list;

Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/TagScript.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/TagScript.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/TagScript.java (original)
+++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/TagScript.java Mon Jun  5 11:25:38 2017
@@ -511,7 +511,7 @@ public class TagScript implements Script
         return namespaceContext;
     }
 
-    // Implementation methods
+    // Implementstion methods
     //-------------------------------------------------------------------------
 
     /**

Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/parser/XMLParser.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/parser/XMLParser.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/parser/XMLParser.java (original)
+++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/parser/XMLParser.java Mon Jun  5 11:25:38 2017
@@ -202,7 +202,7 @@ public class XMLParser extends DefaultHa
      * allows XMLParser to be used in environments which are unfriendly to
      * JAXP1.1 (such as WebLogic 6.0).  Note that if you use this option you
      * have to configure namespace and validation support yourself, as these
-     * properties only affect the SAXParser and emtpy constructor.
+     * properties only affect the SAXParser and empty constructor.
      */
     public XMLParser(XMLReader reader) {
         this.reader = reader;
@@ -952,7 +952,7 @@ public class XMLParser extends DefaultHa
         }
     }
 
-    // Implementation methods
+    // Implementstion methods
     //-------------------------------------------------------------------------
     /**
      * If this object has not been configured then register the default
@@ -1033,7 +1033,7 @@ public class XMLParser extends DefaultHa
             if (taglib == null) {
                 if (namespaceURI != null && namespaceURI.startsWith("jelly:")) {
                     String uri = namespaceURI.substring(6);
-                    // try to find the class on the claspath
+                    // try to find the class on the classpath
                     try {
                         Class taglibClass = getClassLoader().loadClass(uri);
                         taglib = (TagLibrary) taglibClass.newInstance();

Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/CatchTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/CatchTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/CatchTag.java (original)
+++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/CatchTag.java Mon Jun  5 11:25:38 2017
@@ -136,7 +136,7 @@ public class CatchTag extends TagSupport
 
 	
 	/**
-	 * Build exception classe set
+	 * Build exception classes set
 	 * @throws ClassNotFoundException
 	 * 
 	 */

Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/ImportTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/ImportTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/ImportTag.java (original)
+++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/ImportTag.java Mon Jun  5 11:25:38 2017
@@ -93,14 +93,14 @@ public class ImportTag extends TagSuppor
     //-------------------------------------------------------------------------
 
     /**
-     * @return whether property inheritence is enabled
+     * @return whether property inheritance is enabled
      */
     public boolean isInherit() {
         return inherit;
     }
 
     /**
-     * Sets whether property inheritence is enabled or disabled
+     * Sets whether property inheritance is enabled or disabled
      */
     public void setInherit(boolean inherit) {
         this.inherit = inherit;

Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/InvokeTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/InvokeTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/InvokeTag.java (original)
+++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/InvokeTag.java Mon Jun  5 11:25:38 2017
@@ -27,7 +27,7 @@ import org.apache.commons.jelly.TagSuppo
 import org.apache.commons.jelly.XMLOutput;
 
 /**
-  * A tag which calls a method in an object instantied by core:new
+  * A tag which calls a method in an object instantiated by core:new
   *
   *
   * @author Rodney Waldhoff

Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/ParseTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/ParseTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/ParseTag.java (original)
+++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/ParseTag.java Mon Jun  5 11:25:38 2017
@@ -153,7 +153,7 @@ public class ParseTag extends TagSupport
     }
 
 
-    // Implementation methods
+    // Implementstion methods
     //-------------------------------------------------------------------------
 
     /**

Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/SetPropertiesTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/SetPropertiesTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/SetPropertiesTag.java (original)
+++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/SetPropertiesTag.java Mon Jun  5 11:25:38 2017
@@ -72,7 +72,7 @@ public class SetPropertiesTag extends Ma
         setBeanProperties(bean, attributes);
     }
 
-    // Implementation methods
+    // Implementstion methods
     //-------------------------------------------------------------------------
 
     /**

Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/SetTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/SetTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/SetTag.java (original)
+++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/SetTag.java Mon Jun  5 11:25:38 2017
@@ -129,7 +129,7 @@ public class SetTag extends TagSupport {
     }
 
     /**
-     * Sets the default value to be used if the value exprsesion results
+     * Sets the default value to be used if the value expression results
      * in a null value or blank String
      */
     public void setDefaultValue(Expression defaultValue) {
@@ -164,7 +164,7 @@ public class SetTag extends TagSupport {
     }
 
 
-    // Implementation methods
+    // Implementstion methods
     //-------------------------------------------------------------------------
     protected void setPropertyValue( Object target, String property, Object value ) {
         try {

Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/UseBeanTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/UseBeanTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/UseBeanTag.java (original)
+++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/UseBeanTag.java Mon Jun  5 11:25:38 2017
@@ -116,11 +116,11 @@ public class UseBeanTag extends MapTagSu
         }
     }
 
-    // Implementation methods
+    // Implementstion methods
     //-------------------------------------------------------------------------
 
     /**
-     * Allow derived classes to programatically set the bean
+     * Allow derived classes to programmatically set the bean
      */
     protected void setBean(Object bean) {
         this.bean = bean;
@@ -153,7 +153,7 @@ public class UseBeanTag extends MapTagSu
     /**
      * Loads the given class using the default class loading mechanism
      * which is to try use the current Thread's context class loader first
-     * otherise use the class loader which loaded this class.
+     * otherwise use the class loader which loaded this class.
      */
     protected Class loadClass(String className) throws ClassNotFoundException {
         return ClassLoaderUtils.loadClass(className, getClass());

Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/UseListTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/UseListTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/UseListTag.java (original)
+++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/tags/core/UseListTag.java Mon Jun  5 11:25:38 2017
@@ -63,7 +63,7 @@ public class UseListTag extends UseBeanT
     }
 
 
-    // Implementation methods
+    // Implementstion methods
     //-------------------------------------------------------------------------
 
     protected void setBeanProperties(Object bean, Map attributes) throws JellyTagException {

Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/xpath/XPathTagSupport.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/xpath/XPathTagSupport.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/xpath/XPathTagSupport.java (original)
+++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/xpath/XPathTagSupport.java Mon Jun  5 11:25:38 2017
@@ -18,14 +18,14 @@ package org.apache.commons.jelly.xpath;
 
 import org.apache.commons.jelly.TagSupport;
 
-/** An abstract base class useful for implementation inheritence
+/** An abstract base class useful for implementation inheritance
   *
   * @author <a href="mailto:jstrachan@apache.org">James Strachan</a>
   * @version $Revision$
   */
 public abstract class XPathTagSupport extends TagSupport {
 
-    // Implementation methods
+    // Implementstion methods
     //-------------------------------------------------------------------------
     protected Object getXPathContext() {
         XPathSource tag = (XPathSource) findAncestorWithClass( XPathSource.class );

Modified: commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/TestXMLOutput.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/TestXMLOutput.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/TestXMLOutput.java (original)
+++ commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/TestXMLOutput.java Mon Jun  5 11:25:38 2017
@@ -61,10 +61,10 @@ public class TestXMLOutput extends BaseJ
         
         ByteArrayOutputStream bos = new ByteArrayOutputStream();
         
-        XMLOutput ouput = XMLOutput.createXMLOutput(bos);
+        XMLOutput output = XMLOutput.createXMLOutput(bos);
         
-        script.run(getJellyContext(),ouput);
-        ouput.flush();
+        script.run(getJellyContext(),output);
+        output.flush();
         assertEquals("<html></html>",bos.toString());
     }
     
@@ -73,10 +73,10 @@ public class TestXMLOutput extends BaseJ
         Script script = getJelly().compileScript();
 
         ByteArrayOutputStream bos = new ByteArrayOutputStream();
-        XMLOutput ouput = XMLOutput.createXMLOutput(bos);
+        XMLOutput output = XMLOutput.createXMLOutput(bos);
 
-        script.run(getJellyContext(),ouput);
-        ouput.flush();
+        script.run(getJellyContext(),output);
+        output.flush();
         assertEquals("[string]",bos.toString().trim());
 	}
 }

Modified: commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/core/TestModularExceptionBean.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/core/TestModularExceptionBean.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/core/TestModularExceptionBean.java (original)
+++ commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/core/TestModularExceptionBean.java Mon Jun  5 11:25:38 2017
@@ -45,7 +45,7 @@ public class TestModularExceptionBean ex
         bean.setException(NullPointerException.class.getName());
         try {
             bean.throwIt("myTest");
-            fail("Exception must be cacthed");
+            fail("Exception must be caught");
         } catch ( NullPointerException e) {
             
         } catch (Throwable e) {

Modified: commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/core/TestUnexpectedTagCaching.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/core/TestUnexpectedTagCaching.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/core/TestUnexpectedTagCaching.java (original)
+++ commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/core/TestUnexpectedTagCaching.java Mon Jun  5 11:25:38 2017
@@ -35,7 +35,7 @@ import org.xml.sax.SAXException;
 
 /**
  * This test illustrates pre-1.0 Jelly behavior that did not cache tags by default. Many user tag implementations
- * will assume that they are at an initalized state when doTag() is called, rather than still being "dirty" from a
+ * will assume that they are at an initialized state when doTag() is called, rather than still being "dirty" from a
  * prior run.
  *
  * @author <a href="mailto:proyal@apache.org">peter royal</a>

Modified: commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/expression/TestExpressions.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/expression/TestExpressions.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/expression/TestExpressions.java (original)
+++ commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/expression/TestExpressions.java Mon Jun  5 11:25:38 2017
@@ -52,7 +52,7 @@ public class TestExpressions extends Tes
         super(testName);
     }
 
-    public void testExpresssions() throws Exception {
+    public void testExpressions() throws Exception {
         context.setVariable("topping", "cheese");
         context.setVariable("type", "deepPan");
 
@@ -87,7 +87,7 @@ public class TestExpressions extends Tes
         }
     }
 
-    public void testAntExpresssions() throws Exception {
+    public void testAntExpressions() throws Exception {
         context.setVariable("maven.home.foo", "cheese");
 
         assertExpression("${maven.home.foo}", "cheese");

Modified: commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/impl/TestTagLibraryResolver.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/impl/TestTagLibraryResolver.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/impl/TestTagLibraryResolver.java (original)
+++ commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/impl/TestTagLibraryResolver.java Mon Jun  5 11:25:38 2017
@@ -42,7 +42,7 @@ public class TestTagLibraryResolver exte
 
     public void testResolver() throws Exception {
         /**
-         * @todo temporary disbled test case until I can figure out how to get
+         * @todo temporary disabled test case until I can figure out how to get
          * it to work with commons-discovery
          */
 /*

Modified: commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/AssertTagSupport.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/AssertTagSupport.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/AssertTagSupport.java (original)
+++ commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/AssertTagSupport.java Mon Jun  5 11:25:38 2017
@@ -20,7 +20,7 @@ import org.apache.commons.jelly.xpath.XP
 
 /**
  * The abstract base class of any assertion tag which is
- * useful for implementation inheritence.
+ * useful for implementation inheritance.
  *
  * @author <a href="mailto:jstrachan@apache.org">James Strachan</a>
  * @version $Revision$
@@ -30,7 +30,7 @@ public abstract class AssertTagSupport e
     public AssertTagSupport() {
     }
 
-    // Implementation methods
+    // Implementstion methods
     //-------------------------------------------------------------------------
 
     /**

Modified: commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/AssertThrowsTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/AssertThrowsTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/AssertThrowsTag.java (original)
+++ commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/AssertThrowsTag.java Mon Jun  5 11:25:38 2017
@@ -112,7 +112,7 @@ public class AssertThrowsTag extends Ass
         return ClassLoaderUtils.getClassLoader(classLoader, getClass());
     }
 
-    // Implementation methods
+    // Implementstion methods
     //-------------------------------------------------------------------------
 
     /**

Modified: commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/CaseTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/CaseTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/CaseTag.java (original)
+++ commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/CaseTag.java Mon Jun  5 11:25:38 2017
@@ -52,7 +52,7 @@ public class CaseTag extends TagSupport
                 // will have its own variable scopes
                 JellyContext newContext = new JellyContext( context );
 
-                // disable inheritence of variables and tag libraries
+                // disable inheritance of variables and tag libraries
                 newContext.setExportLibraries(false);
                 newContext.setExport(false);
 
@@ -86,11 +86,11 @@ public class CaseTag extends TagSupport
         this.name = name;
     }
 
-    // Implementation methods
+    // Implementstion methods
     //-------------------------------------------------------------------------
 
     /**
-     * Strategy method to find the corrent TestSuite to add a new Test case to
+     * Strategy method to find the current TestSuite to add a new Test case to
      */
     protected TestSuite getSuite() {
         SuiteTag tag = (SuiteTag) findAncestorWithClass( SuiteTag.class );

Modified: commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/JellyTestSuite.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/JellyTestSuite.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/JellyTestSuite.java (original)
+++ commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/JellyTestSuite.java Mon Jun  5 11:25:38 2017
@@ -44,7 +44,7 @@ public abstract class JellyTestSuite {
      * <code>
      * createTestSuite( Foo.class, "suite.jelly" );
      * </code>
-     * which would loaad the 'suite.jelly script from the same package as the Foo
+     * which would load the 'suite.jelly script from the same package as the Foo
      * class on the classpath.
      *
      * @param testClass is the test class used to load the script via the classpath

Modified: commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/RunTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/RunTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/RunTag.java (original)
+++ commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/RunTag.java Mon Jun  5 11:25:38 2017
@@ -125,7 +125,7 @@ public class RunTag extends TagSupport {
 
 
 
-    // Implementation methods
+    // Implementstion methods
     //-------------------------------------------------------------------------
 
     /**

Modified: commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/SuiteTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/SuiteTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/SuiteTag.java (original)
+++ commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/SuiteTag.java Mon Jun  5 11:25:38 2017
@@ -98,7 +98,7 @@ public class SuiteTag extends TagSupport
         this.name = name;
     }
 
-    // Implementation methods
+    // Implementstion methods
     //-------------------------------------------------------------------------
 
     /**

Modified: commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/test/impl/TestEmbedded.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/test/impl/TestEmbedded.java?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/test/impl/TestEmbedded.java (original)
+++ commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/test/impl/TestEmbedded.java Mon Jun  5 11:25:38 2017
@@ -69,8 +69,8 @@ public class TestEmbedded extends TestCa
         embedded.setOutputStream(baos);
         boolean status = embedded.execute();
         //executed properly without script errors
-        assertTrue("Emebedded execution failed", status);
-        //check that the output  confirms the exepected
+        assertTrue("Embedded execution failed", status);
+        //check that the output  confirms the expected
         assertEquals("jelly-test-case", new String(baos.toByteArray()));
         //test generation of error
         embedded.setScript(jellyScript + "obnoxious-part");

Modified: commons/proper/jelly/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/xdocs/changes.xml?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/xdocs/changes.xml (original)
+++ commons/proper/jelly/trunk/xdocs/changes.xml Mon Jun  5 11:25:38 2017
@@ -38,7 +38,7 @@
     </release>
     <release version="1.0-RC1" date="2004-11-22">
       <action dev="dion" type="fix" issue="JELLY-148" due-to="Hans Gilde">Huge memory leak resulting from the use of ThreadLocal.</action>
-      <action dev="dion" type="fix" issue="JELLY-138">Character data is flushed by XMLOuput while XML data isn't.</action>
+      <action dev="dion" type="fix" issue="JELLY-138">Character data is flushed by XMLOutput while XML data isn't.</action>
       <action dev="dion" type="update">Move to beanutils 1.7.0.</action>
       <action dev="dion" type="fix" issue="JELLY-45">Scripts set the context URL when executing so that resources are found relative to the current script.</action>
       <action dev="dion" type="add" issue="JELLY-49">Add Regexp taglib</action>

Modified: commons/proper/jelly/trunk/xdocs/faq.xml
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/xdocs/faq.xml?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/xdocs/faq.xml (original)
+++ commons/proper/jelly/trunk/xdocs/faq.xml Mon Jun  5 11:25:38 2017
@@ -178,7 +178,7 @@ context.runScript( "foo.jelly", output )
                     </a>
         </dt>
         <dd>
-            When you build a binary disitribution of Jelly, 
+            When you build a binary distribution of Jelly, 
             there is a jelly script which works on Windows and Unixes to run Jelly.
             You can create a binary distribution of Jelly via
             <code>

Modified: commons/proper/jelly/trunk/xdocs/index.xml
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/xdocs/index.xml?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/xdocs/index.xml (original)
+++ commons/proper/jelly/trunk/xdocs/index.xml Mon Jun  5 11:25:38 2017
@@ -39,7 +39,7 @@ Jelly can be used as a more flexible and
 to <a href="http://jakarta.apache.org/ant/">Ant</a> 
 such as in the <a href="http://maven.apache.org/">Maven</a>
 project, as a testing framework such as <a href="jellyunit.html">JellyUnit</a>, 
-in an intergration or workflow
+in an integration or workflow
 system such as <a href="http://werkflow.werken.com/">werkflow</a> 
 or as a page templating system inside engines like 
 <a href="http://cocoon.apache.org/">Cocoon</a>.
@@ -283,7 +283,7 @@ to provide more flexible and powerful bu
   <ul>
     <li><a href="http://java.sun.com/products/jsp/jstl/1.1/docs/tlddocs/index.html">JSTL Tag reference</a></li>
     <li><a href="http://java.sun.com/products/jsp/jstl/1.1/docs/api/index.html">JSTL API</a></li>
-    <li><a href="http://jakarta.apache.org/taglibs/doc/standard-doc/intro.html">Apache JSTL Implementation</a></li>
+    <li><a href="http://jakarta.apache.org/taglibs/doc/standard-doc/intro.html">Apache JSTL Implementstion</a></li>
   </ul>
 </section>
 

Modified: commons/proper/jelly/trunk/xdocs/jellyswing.xml
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/xdocs/jellyswing.xml?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/xdocs/jellyswing.xml (original)
+++ commons/proper/jelly/trunk/xdocs/jellyswing.xml Mon Jun  5 11:25:38 2017
@@ -31,7 +31,7 @@
         of your front end and allowing you to bind to Java code for the business objects and models. 
       </p>
       <p>
-        This mechanism uses seperation of concerns and MVC ideas from web applications, allowing the rendering
+        This mechanism uses separation of concerns and MVC ideas from web applications, allowing the rendering
         of your Swing front end to be easily transformed (since its XML) into different styles while leaving your
         model and business objects untouched. It also allows different views to be constructed independently of your models.
       </p>
@@ -81,7 +81,7 @@
         for templating HTML.
       </p>
       <p>
-        The demo was orignally written in
+        The demo was originally written in
         <a href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/demos/HomepageBuilder.java">Java code</a>
          
         to implement a simple Swing UI
@@ -89,7 +89,7 @@
        <a href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/demos/homepageBuilder.jelly">as a JellyScript</a>
         as well.
         While this is a fairly simple Swing UI and not a particularly great example of the power of JellySwing,
-        it does highlight the main difference between the two appraches.
+        it does highlight the main difference between the two approaches.
       </p>
     </section>
     

Modified: commons/proper/jelly/trunk/xdocs/jellyswt.xml
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/xdocs/jellyswt.xml?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/xdocs/jellyswt.xml (original)
+++ commons/proper/jelly/trunk/xdocs/jellyswt.xml Mon Jun  5 11:25:38 2017
@@ -31,7 +31,7 @@
         of your front end and allowing you to bind to Java code for the business objects and models. 
       </p>
       <p>
-        This mechanism uses seperation of concerns and MVC ideas from web applications, allowing the rendering
+        This mechanism uses separation of concerns and MVC ideas from web applications, allowing the rendering
         of your SWT front end to be easily transformed (since its XML) into different styles while leaving your
         model and business objects untouched. It also allows different views to be constructed independently of your models.
       </p>

Modified: commons/proper/jelly/trunk/xdocs/todo.xml
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/xdocs/todo.xml?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/xdocs/todo.xml (original)
+++ commons/proper/jelly/trunk/xdocs/todo.xml Mon Jun  5 11:25:38 2017
@@ -32,7 +32,7 @@
       
     <section name="Core tasks"> 
       <ul>
-        <li>Implementa a META-INF/services mechanism for mapping Jelly libraries to namespace URIs
+        <li>Implements a META-INF/services mechanism for mapping Jelly libraries to namespace URIs
             in a similar way to how the commons-discovery and JAXP libraries work.
             This would allow Jelly libraries to be distributed in a self contained JAR then just put
             on the classpath and they'd be usable.                
@@ -42,7 +42,7 @@
             automatically download the jar and its dependencies from some local/remote repository.
         </li>
         <li>Maybe add a Scope class to make it easier to plugin custom scopes such as 
-            request, session, applicaiton, initParams, params, transation etc.
+            request, session, application, initParams, params, transaction etc.
             In a workflow setting this could also include transient and persistent scopes
         </li>
         <li>Write a JellyServlet so that Jelly can be used as a page templating system.
@@ -90,7 +90,7 @@
             Also we could consider using class names or XSD type names to do conversions of values, maybe using
             the ConvertUtils class in beanutils.
         </li>
-        <li>conside a tag library which implements the <a href="http://stx.gingerall.cz/stx/index.html">STX</a>
+        <li>consider a tag library which implements the <a href="http://stx.gingerall.cz/stx/index.html">STX</a>
             specification for the SAX based transformation of XML. This is kinda like XPath and XSLT but is based
             purely on a SAX stream. Maybe we could wrap <a href="http://www.obqo.de/joost">Joost</a>
             in a Jelly tag library

Modified: commons/proper/jelly/trunk/xdocs/tutorial.xml
URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/xdocs/tutorial.xml?rev=1797644&r1=1797643&r2=1797644&view=diff
==============================================================================
--- commons/proper/jelly/trunk/xdocs/tutorial.xml (original)
+++ commons/proper/jelly/trunk/xdocs/tutorial.xml Mon Jun  5 11:25:38 2017
@@ -215,7 +215,7 @@ This example is another "Home Page Build
 </p>
 
 <p>
-When you run the program, it will open a window where you can choose a template, and specify a few paramters. Then you simply click on "build page" and voila, your home page is generated by Jelly.
+When you run the program, it will open a window where you can choose a template, and specify a few parameters. Then you simply click on "build page" and voila, your home page is generated by Jelly.
 </p>
 
 <p>
@@ -272,7 +272,7 @@ The Jelly template looks like this:
 </source>
 
 <p>
-As you can see, it's pretty straighforward to call a Jelly script programatically. First you need a context to run the script in. You can think of the context as the "environment" in which the script runs. The script can use and modify variables in the context however it wishes. Then you need an XML output stream where the output of the script will be sent. In some cases, like this one, the XML output is the essential product of the script. In other cases, it may just be a "byproduct" of running the script, used for logging, etc. This is the case when you are running a maven build, for example.
+As you can see, it's pretty straighforward to call a Jelly script programmatically. First you need a context to run the script in. You can think of the context as the "environment" in which the script runs. The script can use and modify variables in the context however it wishes. Then you need an XML output stream where the output of the script will be sent. In some cases, like this one, the XML output is the essential product of the script. In other cases, it may just be a "byproduct" of running the script, used for logging, etc. This is the case when you are running a maven build, for example.
 </p>
 
 <p>
@@ -290,7 +290,7 @@ With the <a href="libs/jsl/tags.html">JS
 </p>
 
 <p>
-To run the demo type "maven demo:jsl" (View the <a href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/jsl/src/test/org/apache/commons/jelly/jsl/example.jelly">demo source</a>). The demo transforms the demo source into HTML and ouputs it to the command line, like this:
+To run the demo type "maven demo:jsl" (View the <a href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/jsl/src/test/org/apache/commons/jelly/jsl/example.jelly">demo source</a>). The demo transforms the demo source into HTML and outputs it to the command line, like this:
 </p>
 
 <source>