Modified: commons/proper/jelly/trunk/jelly-tags/junit/src/java/org/apache/commons/jelly/tags/junit/CaseTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/junit/src/java/org/apache/commons/jelly/tags/junit/CaseTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/junit/src/java/org/apache/commons/jelly/tags/junit/CaseTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/junit/src/java/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/jelly-tags/junit/src/java/org/apache/commons/jelly/tags/junit/JellyTestSuite.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/junit/src/java/org/apache/commons/jelly/tags/junit/JellyTestSuite.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/junit/src/java/org/apache/commons/jelly/tags/junit/JellyTestSuite.java (original) +++ commons/proper/jelly/trunk/jelly-tags/junit/src/java/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/jelly-tags/junit/src/java/org/apache/commons/jelly/tags/junit/RunTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/junit/src/java/org/apache/commons/jelly/tags/junit/RunTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/junit/src/java/org/apache/commons/jelly/tags/junit/RunTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/junit/src/java/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/jelly-tags/junit/src/java/org/apache/commons/jelly/tags/junit/SuiteTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/junit/src/java/org/apache/commons/jelly/tags/junit/SuiteTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/junit/src/java/org/apache/commons/jelly/tags/junit/SuiteTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/junit/src/java/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/jelly-tags/junit/src/test/org/apache/commons/jelly/tags/junit/suite.jelly URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/junit/src/test/org/apache/commons/jelly/tags/junit/suite.jelly?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/junit/src/test/org/apache/commons/jelly/tags/junit/suite.jelly (original) +++ commons/proper/jelly/trunk/jelly-tags/junit/src/test/org/apache/commons/jelly/tags/junit/suite.jelly Mon Jun 5 11:25:38 2017 @@ -72,7 +72,7 @@ <!-- test using var attribute --> <test:assertThrows var="ex"> - <test:fail message="This exeption should be exported"/> + <test:fail message="This exception should be exported"/> </test:assertThrows> <test:assert test="${ex != null}">No exception exported</test:assert> Modified: commons/proper/jelly/trunk/jelly-tags/quartz/src/java/org/apache/commons/jelly/tags/quartz/JellyJob.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/quartz/src/java/org/apache/commons/jelly/tags/quartz/JellyJob.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/quartz/src/java/org/apache/commons/jelly/tags/quartz/JellyJob.java (original) +++ commons/proper/jelly/trunk/jelly-tags/quartz/src/java/org/apache/commons/jelly/tags/quartz/JellyJob.java Mon Jun 5 11:25:38 2017 @@ -27,7 +27,7 @@ import org.quartz.JobDataMap; import org.quartz.JobExecutionContext; import org.quartz.JobExecutionException; -/** Implementation of a quart <code>Job</code> to execute jellyscript. +/** Implementstion of a quart <code>Job</code> to execute jellyscript. * * @author <a href="mailto:[email protected]">bob mcwhirter</a> */ Modified: commons/proper/jelly/trunk/jelly-tags/soap/src/java/org/apache/commons/jelly/tags/soap/InvokeTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/soap/src/java/org/apache/commons/jelly/tags/soap/InvokeTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/soap/src/java/org/apache/commons/jelly/tags/soap/InvokeTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/soap/src/java/org/apache/commons/jelly/tags/soap/InvokeTag.java Mon Jun 5 11:25:38 2017 @@ -176,7 +176,7 @@ public class InvokeTag extends TagSuppor } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/ResultImpl.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/ResultImpl.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/ResultImpl.java (original) +++ commons/proper/jelly/trunk/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/ResultImpl.java Mon Jun 5 11:25:38 2017 @@ -23,7 +23,7 @@ import java.util.*; /** * <p>This class creates a cached version of a <tt>ResultSet</tt>. * It's represented as a <tt>Result</tt> implementation, capable of - * returing an array of <tt>Row</tt> objects containing a <tt>Column</tt> + * returning an array of <tt>Row</tt> objects containing a <tt>Column</tt> * instance for each column in the row. It is not part of the JSTL * API; it serves merely as a back-end to ResultSupport's static methods. * Thus, we scope its access to the package. Modified: commons/proper/jelly/trunk/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/SQLExecutionTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/SQLExecutionTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/SQLExecutionTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/SQLExecutionTag.java Mon Jun 5 11:25:38 2017 @@ -24,7 +24,7 @@ package javax.servlet.jsp.jstl.sql; * <p>This interface is implemented by both <sql:query> and * <sql:update>. Its <code>addSQLParameter()</code> method * is called by nested parameter actions (such as <sql:param>) - * to substitue <code>PreparedStatement<code> parameter values for + * to substitute <code>PreparedStatement<code> parameter values for * "?" parameter markers in the SQL statement of the enclosing * <code>SQLExecutionTag</code> action.</p> * @@ -36,7 +36,7 @@ package javax.servlet.jsp.jstl.sql; * is the responsibility of the tag handler implementing this * interface</p> * - * <p>The <code>SQLExcecutionTag</code> interface is exposed in order + * <p>The <code>SQLExecutionTag</code> interface is exposed in order * to support custom parameter actions which may retrieve their * parameters from any source and process them before substituting * them for a parameter marker in the sQL statement of the Modified: commons/proper/jelly/trunk/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ResultImpl.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ResultImpl.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ResultImpl.java (original) +++ commons/proper/jelly/trunk/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ResultImpl.java Mon Jun 5 11:25:38 2017 @@ -24,7 +24,7 @@ import javax.servlet.jsp.jstl.sql.Result /** * <p>This class creates a cached version of a <tt>ResultSet</tt>. * It's represented as a <tt>Result</tt> implementation, capable of - * returing an array of <tt>Row</tt> objects containing a <tt>Column</tt> + * returning an array of <tt>Row</tt> objects containing a <tt>Column</tt> * instance for each column in the row.</p> * * <p>Note -- this is a private copy for the RI to avoid making the Modified: commons/proper/jelly/trunk/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/TransactionTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/TransactionTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/TransactionTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/TransactionTag.java Mon Jun 5 11:25:38 2017 @@ -170,7 +170,7 @@ public class TransactionTag extends TagS } //********************************************************************* - // Implementation methods methods + // Implementstion methods methods /** * Restores the <code>Connection</code> to its initial state and Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/ActionTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/ActionTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/ActionTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/ActionTag.java Mon Jun 5 11:25:38 2017 @@ -60,7 +60,7 @@ public class ActionTag extends UseBeanTa } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/BorderAlignTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/BorderAlignTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/BorderAlignTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/BorderAlignTag.java Mon Jun 5 11:25:38 2017 @@ -72,7 +72,7 @@ public class BorderAlignTag extends TagS this.align = align; } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- protected Object getConstraints() { Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/BorderLayoutTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/BorderLayoutTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/BorderLayoutTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/BorderLayoutTag.java Mon Jun 5 11:25:38 2017 @@ -72,7 +72,7 @@ public class BorderLayoutTag extends Lay this.vgap = vgap; } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/BorderTagSupport.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/BorderTagSupport.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/BorderTagSupport.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/BorderTagSupport.java Mon Jun 5 11:25:38 2017 @@ -77,7 +77,7 @@ public abstract class BorderTagSupport e this.var = var; } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/ComponentTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/ComponentTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/ComponentTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/ComponentTag.java Mon Jun 5 11:25:38 2017 @@ -288,7 +288,7 @@ public class ComponentTag extends UseBea } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/ConstraintTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/ConstraintTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/ConstraintTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/ConstraintTag.java Mon Jun 5 11:25:38 2017 @@ -34,7 +34,7 @@ import org.xml.sax.Attributes; * with {@link #getConstraintObject}. * Probably a shorter java-source is do-able. * <p> - * TODO: this class should probably be extended with special treatment for dimensios + * TODO: this class should probably be extended with special treatment for dimensions * using the converter package. */ public class ConstraintTag extends DynaBeanTagSupport { @@ -44,7 +44,7 @@ public class ConstraintTag extends DynaB is cloned then attributes are set This tag should also support the attributes such as fill=BOTH and anchor=NORTHEAST... - Wooops... need to define setters ?? let's see if BeanUtils does it on public vars + Whoops... need to define setters ?? let's see if BeanUtils does it on public vars And... have an insets?? A child ? */ @@ -66,7 +66,7 @@ public class ConstraintTag extends DynaB public Tag createTag(String name, Attributes attributes) throws JellyException { return new ConstraintTag ( this ); } - } // class ConstatnStringFactory + } // class ConstantStringFactory // we could be able to make factories that create their tags in parametrized // subclasses of the tag depending on the name and attributes Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/DialogTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/DialogTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/DialogTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/DialogTag.java Mon Jun 5 11:25:38 2017 @@ -45,7 +45,7 @@ public class DialogTag extends UseBeanTa super(JDialog.class); } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/EtchedBorderTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/EtchedBorderTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/EtchedBorderTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/EtchedBorderTag.java Mon Jun 5 11:25:38 2017 @@ -54,7 +54,7 @@ public class EtchedBorderTag extends Bor throw new MissingAttributeException("highlight must be supplied when shadow is supplied"); } if( etchType != EtchedBorder.LOWERED || etchType != EtchedBorder.RAISED ) { - if( log.isDebugEnabled() ) log.debug( "etchType set to [" + etchType + "], which is invalid. Reseting to -1" ); + if( log.isDebugEnabled() ) log.debug( "etchType set to [" + etchType + "], which is invalid. Resetting to -1" ); } super.doTag(output); } Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/FontTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/FontTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/FontTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/FontTag.java Mon Jun 5 11:25:38 2017 @@ -91,7 +91,7 @@ public class FontTag extends MapTagSuppo } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/GbcTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/GbcTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/GbcTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/GbcTag.java Mon Jun 5 11:25:38 2017 @@ -32,7 +32,7 @@ import org.apache.commons.lang.StringUti /** * This class represents a {@link GridBagConstraints} constraints as passed in * the second argument of {@link Container#add(Component,Object)}. - * It supports inheritence between such tags in the following fashion: + * It supports inheritance between such tags in the following fashion: * <ul> * <li>either using a <code>basedOn</code> attribute which is * supposed to provide a reference to another {@link GbcTag}.</li> @@ -76,7 +76,7 @@ public class GbcTag extends UseBeanTag i tag.addLayoutComponent(component, getConstraints()); } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/GridBagLayoutTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/GridBagLayoutTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/GridBagLayoutTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/GridBagLayoutTag.java Mon Jun 5 11:25:38 2017 @@ -36,7 +36,7 @@ public class GridBagLayoutTag extends La public GridBagLayoutTag() { } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/LayoutTagSupport.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/LayoutTagSupport.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/LayoutTagSupport.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/LayoutTagSupport.java Mon Jun 5 11:25:38 2017 @@ -79,7 +79,7 @@ public abstract class LayoutTagSupport e this.var = var; } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/SwingTagLibrary.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/SwingTagLibrary.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/SwingTagLibrary.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/SwingTagLibrary.java Mon Jun 5 11:25:38 2017 @@ -201,7 +201,7 @@ public class SwingTagLibrary extends Tag return (Factory) getFactoryMap().get(elementName); } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TableLayoutTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TableLayoutTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TableLayoutTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TableLayoutTag.java Mon Jun 5 11:25:38 2017 @@ -63,7 +63,7 @@ public class TableLayoutTag extends Layo super.doTag(output); } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TableModelColumnTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TableModelColumnTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TableModelColumnTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TableModelColumnTag.java Mon Jun 5 11:25:38 2017 @@ -40,7 +40,7 @@ public class TableModelColumnTag extends return super.getAttributeType(name); } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- protected void processBean(String var, Object bean) throws JellyTagException { super.processBean(var, bean); Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TableModelTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TableModelTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TableModelTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TableModelTag.java Mon Jun 5 11:25:38 2017 @@ -35,7 +35,7 @@ public class TableModelTag extends UseBe } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- protected void processBean(String var, Object bean) throws JellyTagException { super.processBean(var, bean); Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TdTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TdTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TdTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TdTag.java Mon Jun 5 11:25:38 2017 @@ -133,7 +133,7 @@ public class TdTag extends TagSupport im } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TitledBorderTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TitledBorderTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TitledBorderTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/TitledBorderTag.java Mon Jun 5 11:25:38 2017 @@ -101,7 +101,7 @@ public class TitledBorderTag extends Bor - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/WindowListenerTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/WindowListenerTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/WindowListenerTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/WindowListenerTag.java Mon Jun 5 11:25:38 2017 @@ -153,7 +153,7 @@ public class WindowListenerTag extends T - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- protected void invokeScript(XMLOutput output, WindowEvent event, Script script) { if ( var != null ) { Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/impl/package.html URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/impl/package.html?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/impl/package.html (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/impl/package.html Mon Jun 5 11:25:38 2017 @@ -4,7 +4,7 @@ <body> <p> - Implementation classes for the JellySwing library + Implementstion classes for the JellySwing library </p> </body> Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/model/ExpressionTableModel.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/model/ExpressionTableModel.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/model/ExpressionTableModel.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/model/ExpressionTableModel.java Mon Jun 5 11:25:38 2017 @@ -146,7 +146,7 @@ public class ExpressionTableModel extend this.context = context; } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- protected static class MyTableColumnModel extends DefaultTableColumnModel { public List getColumnList() { Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/swing/TestConverters.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/swing/TestConverters.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/swing/TestConverters.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/swing/TestConverters.java Mon Jun 5 11:25:38 2017 @@ -75,7 +75,7 @@ public class TestConverters extends Test assertPoint(" 0 , 200 ", new Point(0, 200)); } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- protected void assertPoint(String expression, Point expected) throws Exception { Modified: commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/swing/gridBagDemo.jelly URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/swing/gridBagDemo.jelly?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/swing/gridBagDemo.jelly (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/swing/gridBagDemo.jelly Mon Jun 5 11:25:38 2017 @@ -27,7 +27,7 @@ - an insets tag (CVS ?) - some Font support (CVS ?) - incorporate CollapsablePanel - - dragable Label with subclass ItemTitleLabel + - draggable Label with subclass ItemTitleLabel - CollapsablePanel implementing DropTarget (or approacher at least) - adding relations - DC pane (later with inheritance) Modified: commons/proper/jelly/trunk/jelly-tags/swing/xdocs/index.xml URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/xdocs/index.xml?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swing/xdocs/index.xml (original) +++ commons/proper/jelly/trunk/jelly-tags/swing/xdocs/index.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> @@ -76,7 +76,7 @@ for templating HTML. </p> <p> - The demo was orignally written in + The demo was originally written in <a href="http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/demos/HomepageBuilder.java?view=markup">Java code</a> to implement a simple Swing UI @@ -84,7 +84,7 @@ <a href="http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/demos/homepageBuilder.jelly?view=markup">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/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/DialogTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/DialogTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/DialogTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/DialogTag.java Mon Jun 5 11:25:38 2017 @@ -47,7 +47,7 @@ public class DialogTag extends WidgetTag super(widgetClass); } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/LayoutDataTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/LayoutDataTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/LayoutDataTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/LayoutDataTag.java Mon Jun 5 11:25:38 2017 @@ -43,7 +43,7 @@ public class LayoutDataTag extends Layou super(layoutDataClass); } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/LayoutTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/LayoutTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/LayoutTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/LayoutTag.java Mon Jun 5 11:25:38 2017 @@ -54,7 +54,7 @@ public class LayoutTag extends LayoutTag return null; } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/LayoutTagSupport.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/LayoutTagSupport.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/LayoutTagSupport.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/LayoutTagSupport.java Mon Jun 5 11:25:38 2017 @@ -69,7 +69,7 @@ public abstract class LayoutTagSupport e this.var = var; } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** * Either defines a variable or adds the current component to the parent Modified: commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/MenuTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/MenuTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/MenuTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/MenuTag.java Mon Jun 5 11:25:38 2017 @@ -45,7 +45,7 @@ public class MenuTag extends WidgetTag { super(Menu.class, style); } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/OnEventTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/OnEventTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/OnEventTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/OnEventTag.java Mon Jun 5 11:25:38 2017 @@ -129,7 +129,7 @@ public class OnEventTag extends TagSuppo this.type = type; } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/WidgetTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/WidgetTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/WidgetTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/swt/src/java/org/apache/commons/jelly/tags/swt/WidgetTag.java Mon Jun 5 11:25:38 2017 @@ -113,7 +113,7 @@ public class WidgetTag extends UseBeanTa clearBean(); } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/threads/src/java/org/apache/commons/jelly/tags/threads/JellyThread.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/threads/src/java/org/apache/commons/jelly/tags/threads/JellyThread.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/threads/src/java/org/apache/commons/jelly/tags/threads/JellyThread.java (original) +++ commons/proper/jelly/trunk/jelly-tags/threads/src/java/org/apache/commons/jelly/tags/threads/JellyThread.java Mon Jun 5 11:25:38 2017 @@ -38,7 +38,7 @@ public class JellyThread extends Thread RunnableStatus status = new RunnableStatus(); public JellyThread() { - // aquire my still running lock immediately + // acquire my still running lock immediately while (true) { try { runningMutex.acquire(); @@ -104,7 +104,7 @@ public class JellyThread extends Thread throw new RuntimeException("This method should be called from a different thread than itself"); } - // wait until the calling thread can aquire the lock + // wait until the calling thread can acquire the lock while (true) { try { if (howLong == -1) { Modified: commons/proper/jelly/trunk/jelly-tags/util/src/java/org/apache/commons/jelly/tags/util/LoadTextTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/util/src/java/org/apache/commons/jelly/tags/util/LoadTextTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/util/src/java/org/apache/commons/jelly/tags/util/LoadTextTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/util/src/java/org/apache/commons/jelly/tags/util/LoadTextTag.java Mon Jun 5 11:25:38 2017 @@ -169,7 +169,7 @@ public class LoadTextTag extends TagSupp } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/validate/src/java/org/apache/commons/jelly/tags/validate/AssertValidTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/validate/src/java/org/apache/commons/jelly/tags/validate/AssertValidTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/validate/src/java/org/apache/commons/jelly/tags/validate/AssertValidTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/validate/src/java/org/apache/commons/jelly/tags/validate/AssertValidTag.java Mon Jun 5 11:25:38 2017 @@ -62,7 +62,7 @@ public class AssertValidTag extends Vali super.doTag(output); } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/validate/src/java/org/apache/commons/jelly/tags/validate/ValidateTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/validate/src/java/org/apache/commons/jelly/tags/validate/ValidateTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/validate/src/java/org/apache/commons/jelly/tags/validate/ValidateTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/validate/src/java/org/apache/commons/jelly/tags/validate/ValidateTag.java Mon Jun 5 11:25:38 2017 @@ -154,7 +154,7 @@ public class ValidateTag extends TagSupp this.var = var; } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/validate/src/java/org/apache/commons/jelly/tags/validate/VerifierTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/validate/src/java/org/apache/commons/jelly/tags/validate/VerifierTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/validate/src/java/org/apache/commons/jelly/tags/validate/VerifierTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/validate/src/java/org/apache/commons/jelly/tags/validate/VerifierTag.java Mon Jun 5 11:25:38 2017 @@ -182,7 +182,7 @@ public class VerifierTag extends TagSupp return factory; } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- Modified: commons/proper/jelly/trunk/jelly-tags/velocity/src/java/org/apache/commons/jelly/tags/velocity/JellyContextAdapter.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/velocity/src/java/org/apache/commons/jelly/tags/velocity/JellyContextAdapter.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/velocity/src/java/org/apache/commons/jelly/tags/velocity/JellyContextAdapter.java (original) +++ commons/proper/jelly/trunk/jelly-tags/velocity/src/java/org/apache/commons/jelly/tags/velocity/JellyContextAdapter.java Mon Jun 5 11:25:38 2017 @@ -28,9 +28,9 @@ import org.apache.velocity.context.Conte * Adapts a JellyContext for use as a Velocity Context. This context * can be used in either read-only or read-write mode. When used as a * read-only adapter, items <tt>put</tt> or <tt>remove</tt>ed from the - * Velocity context are not permitted to propogate to the JellyContext, + * Velocity context are not permitted to propagate to the JellyContext, * which is the default behavior. The adapter can also be used in a - * read-write mode. This permits changes made by Velocity to propogate + * read-write mode. This permits changes made by Velocity to propagate * to the JellyContext. * * @author <a href="mailto:[email protected]">Pete Kazmier</a> @@ -44,7 +44,7 @@ public class JellyContextAdapter impleme /** The JellyContext being adapted */ private JellyContext jellyContext; - /** The store for Velocity in the event the adpater is read-only */ + /** The store for Velocity in the event the adapter is read-only */ private HashMap privateContext = new HashMap(); /** @@ -59,9 +59,9 @@ public class JellyContextAdapter impleme /** * Sets the read-only flag for this adapter. If the read-only flag - * is set, changes to the Velocity Context will not be propogated to + * is set, changes to the Velocity Context will not be propagated to * the JellyContext. Turning the read-only flag off enables changes - * to propogate. + * to propagate. * * @param readOnly If this parameter is <tt>true</tt>, the adapter * becomes read-only. Setting the parameter to <tt>false</tt> the @@ -75,7 +75,7 @@ public class JellyContextAdapter impleme /** * Tests if the adapter is read-only. * - * @return <tt>true</tt> if the adpater is read-only; otherwise + * @return <tt>true</tt> if the adapter is read-only; otherwise * returns <tt>false</tt>. */ public boolean isReadOnly() Modified: commons/proper/jelly/trunk/jelly-tags/velocity/src/java/org/apache/commons/jelly/tags/velocity/MergeTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/velocity/src/java/org/apache/commons/jelly/tags/velocity/MergeTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/velocity/src/java/org/apache/commons/jelly/tags/velocity/MergeTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/velocity/src/java/org/apache/commons/jelly/tags/velocity/MergeTag.java Mon Jun 5 11:25:38 2017 @@ -135,11 +135,11 @@ public class MergeTag extends VelocityTa /** * Sets the read-only flag for this adapter which prevents - * modifications in the Velocity context from propogating to the + * modifications in the Velocity context from propagating to the * JellyContext. * * @param readOnly <tt>true</tt> prevents modifications from - * propogating (the default), or <tt>false</tt> which permits + * propagating (the default), or <tt>false</tt> which permits * modifications. */ public void setReadOnly( boolean readOnly ) @@ -170,7 +170,7 @@ public class MergeTag extends VelocityTa this.inputEncoding = encoding; } - // -- Implementation ---------------------------------------------------- + // -- Implementstion ---------------------------------------------------- /** * Merges the Velocity template with the Jelly context. Modified: commons/proper/jelly/trunk/jelly-tags/velocity/src/test/org/apache/commons/jelly/tags/velocity/JellyContextAdapterTest.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/velocity/src/test/org/apache/commons/jelly/tags/velocity/JellyContextAdapterTest.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/velocity/src/test/org/apache/commons/jelly/tags/velocity/JellyContextAdapterTest.java (original) +++ commons/proper/jelly/trunk/jelly-tags/velocity/src/test/org/apache/commons/jelly/tags/velocity/JellyContextAdapterTest.java Mon Jun 5 11:25:38 2017 @@ -86,7 +86,7 @@ public class JellyContextAdapterTest ext /** * Test that items can be added and retrieved from a read-write - * adpater. Also verify the key/value pair was actually inserted + * adapter. Also verify the key/value pair was actually inserted * into the JellyContext. */ public void testReadWritePut() Modified: commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/IfTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/IfTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/IfTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/IfTag.java Mon Jun 5 11:25:38 2017 @@ -63,7 +63,7 @@ public class IfTag extends XPathTagSuppo this.select = select; } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- protected Object getXPathContext() { ForEachTag tag = (ForEachTag) findAncestorWithClass( ForEachTag.class ); Modified: commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/ParseTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/ParseTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/ParseTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/ParseTag.java Mon Jun 5 11:25:38 2017 @@ -80,7 +80,7 @@ public class ParseTag extends ParseTagSu } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/ParseTagSupport.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/ParseTagSupport.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/ParseTagSupport.java (original) +++ commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/ParseTagSupport.java Mon Jun 5 11:25:38 2017 @@ -103,7 +103,7 @@ public abstract class ParseTagSupport ex } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/ReplaceNamespaceTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/ReplaceNamespaceTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/ReplaceNamespaceTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/ReplaceNamespaceTag.java Mon Jun 5 11:25:38 2017 @@ -27,7 +27,7 @@ import org.xml.sax.helpers.AttributesImp /** * Replace namespace is a filter to change the namespace of any - * elemement attribute passing through it. + * element attribute passing through it. * * @author Diogo Quintela <[email protected]> */ Modified: commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/TransformTag.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/TransformTag.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/TransformTag.java (original) +++ commons/proper/jelly/trunk/jelly-tags/xml/src/java/org/apache/commons/jelly/tags/xml/TransformTag.java Mon Jun 5 11:25:38 2017 @@ -82,7 +82,7 @@ public class TransformTag extends ParseT /** The Log to which logging calls will be made. */ private static final Log log = LogFactory.getLog(TransformTag.class); - /** Propert name for lexical handler */ + /** Property name for lexical handler */ private static final String LEXICAL_HANDLER_PROPERTY = "http://xml.org/sax/properties/lexical-handler"; @@ -192,7 +192,7 @@ public class TransformTag extends ParseT this.transformerHandler.getTransformer().setParameter(name, value); } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** @@ -487,7 +487,7 @@ public class TransformTag extends ParseT } /** - * Helper method to determin if nested body needs to be parsed by (an + * Helper method to determine if nested body needs to be parsed by (an * xml parser, i.e. its only text) to generate SAX events or not * * @return True if tag body should be parsed or false if invoked only Modified: commons/proper/jelly/trunk/jelly-tags/xml/src/test/org/apache/commons/jelly/tags/xml/TestXMLTags.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/xml/src/test/org/apache/commons/jelly/tags/xml/TestXMLTags.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/xml/src/test/org/apache/commons/jelly/tags/xml/TestXMLTags.java (original) +++ commons/proper/jelly/trunk/jelly-tags/xml/src/test/org/apache/commons/jelly/tags/xml/TestXMLTags.java Mon Jun 5 11:25:38 2017 @@ -96,7 +96,7 @@ public class TestXMLTags extends TestCas } public void testElementWithNameSpace() throws Exception { - String text = evaluteScriptAsText(testBaseDir + "/elementWithNameSpace.jelly"); + String text = evaluateScriptAsText(testBaseDir + "/elementWithNameSpace.jelly"); assertEquals("Should produce the correct output", "<env:Envelope "+ "xmlns:env=\"http://schemas.xmlsoap.org/soap/envelope/\" "+ @@ -106,17 +106,17 @@ public class TestXMLTags extends TestCas public void testElementWithNameSpaceError() throws Exception { try { - evaluteScriptAsText(testBaseDir + "/elementWithNameSpaceError.jelly"); + evaluateScriptAsText(testBaseDir + "/elementWithNameSpaceError.jelly"); Assert.fail("We should have bailed out with an JellyException"); } catch (JellyException jex) { - assertTrue(jex.getReason().startsWith("Cannot set same prefix to diferent URI in same node")); + assertTrue(jex.getReason().startsWith("Cannot set same prefix to different URI in same node")); } } public void testNamespaceReplace() throws Exception { // For this test when we not set "ns" var with expected namespace, it // is expected to repeat the same two times - String text = evaluteScriptAsText(testBaseDir + "/namespaceReplace.jelly"); + String text = evaluateScriptAsText(testBaseDir + "/namespaceReplace.jelly"); String repeatingText = "<test-subnode attr=\"test\"><test-anotherSubNode></test-anotherSubNode><test-anotherSubNodeAgain xmlns:other=\"\" other:abc=\"testValue\"></test-anotherSubNodeAgain></test-subnode>"; assertEquals("Should produce the correct output", "<test-node xmlns:test=\"http://apache/testNS\" test:abc=\"testValue\">"+ @@ -126,7 +126,7 @@ public class TestXMLTags extends TestCas Map ctxVars = new HashMap(); ctxVars.put("ns", "http://java/ns"); - text = evaluteScriptAsText(testBaseDir + "/namespaceReplace.jelly", ctxVars); + text = evaluateScriptAsText(testBaseDir + "/namespaceReplace.jelly", ctxVars); String firstTrunk = "<test-subnode xmlns=\"\" attr=\"test\">" + @@ -153,15 +153,15 @@ public class TestXMLTags extends TestCas public void testAttributeNameSpaceDuplicatedNS() throws Exception { try { - evaluteScriptAsText(testBaseDir + "/attributeNameSpaceDuplicatedNS.jelly"); + evaluateScriptAsText(testBaseDir + "/attributeNameSpaceDuplicatedNS.jelly"); Assert.fail("We should have bailed out with an JellyException"); } catch (JellyException jex) { - assertTrue(jex.getReason().startsWith("Cannot set same prefix to diferent URI in same node")); + assertTrue(jex.getReason().startsWith("Cannot set same prefix to different URI in same node")); } } public void testAttributeNameSpace() throws Exception { - String text = evaluteScriptAsText(testBaseDir + "/attributeNameSpace.jelly"); + String text = evaluateScriptAsText(testBaseDir + "/attributeNameSpace.jelly"); System.out.println(text); assertEquals("Should produce the correct output", "<top-node xmlns=\"abc\">"+ @@ -174,7 +174,7 @@ public class TestXMLTags extends TestCas } public void testAttributeNameSpaceDefaultNS() throws Exception { - String text = evaluteScriptAsText(testBaseDir + "/attributeNameSpaceDefaultNS.jelly"); + String text = evaluateScriptAsText(testBaseDir + "/attributeNameSpaceDefaultNS.jelly"); System.out.println(text); assertEquals("Should produce the correct output", "<top-node>"+ @@ -187,7 +187,7 @@ public class TestXMLTags extends TestCas } public void testAttributeNameSpaceWithInnerElements() throws Exception { - String text = evaluteScriptAsText(testBaseDir + "/attributeNameSpaceWithInnerElements.jelly"); + String text = evaluateScriptAsText(testBaseDir + "/attributeNameSpaceWithInnerElements.jelly"); assertEquals("Should produce the correct output", "<test-node xmlns:test=\"http://apache/testNS\" test:abc=\"testValue\" abc2=\"testValue\" abc3=\"testValue\">"+ "<test-sub-node xmlns:test2=\"http://apache/testNS\" xmlns:test3=\"http://apache/anotherNS\" test:abc=\"testValue\" test2:abc2=\"testValue\" test3:abc3=\"testValue\">"+ @@ -197,51 +197,51 @@ public class TestXMLTags extends TestCas } public void testTransform() throws Exception { - String text = evaluteScriptAsText(testBaseDir + "/transformExample.jelly"); + String text = evaluateScriptAsText(testBaseDir + "/transformExample.jelly"); assertEquals("Should produce the correct output", "It works!", text); } public void testTransformAllInLine() throws Exception { - String text = evaluteScriptAsText(testBaseDir + "/transformExampleAllInLine.jelly"); + String text = evaluateScriptAsText(testBaseDir + "/transformExampleAllInLine.jelly"); assertEquals("Should produce the correct output", "It works!", text); } public void testTransformParams() throws Exception { - String text = evaluteScriptAsText(testBaseDir + "/transformParamExample.jelly"); + String text = evaluateScriptAsText(testBaseDir + "/transformParamExample.jelly"); assertEquals("Should produce the correct output", "It works!", text); } public void testTransformParamsInLine() throws Exception { - String text = evaluteScriptAsText(testBaseDir + "/transformParamExample2.jelly"); + String text = evaluateScriptAsText(testBaseDir + "/transformParamExample2.jelly"); assertEquals("Should produce the correct output", "It works!", text); } public void testTransformSAXOutput() throws Exception { - String text = evaluteScriptAsText(testBaseDir + "/transformExampleSAXOutput.jelly"); + String text = evaluateScriptAsText(testBaseDir + "/transformExampleSAXOutput.jelly"); assertEquals("Should produce the correct output", "It works!", text); } public void testTransformSAXOutputNestedTransforms() throws Exception { - String text = evaluteScriptAsText(testBaseDir + + String text = evaluateScriptAsText(testBaseDir + "/transformExampleSAXOutputNestedTransforms.jelly"); assertEquals("Should produce the correct output", "It works!", text); } public void testTransformSchematron() throws Exception { - String text = evaluteScriptAsText(testBaseDir + + String text = evaluateScriptAsText(testBaseDir + "/schematron/transformSchematronExample.jelly"); assertEquals("Should produce the correct output", "Report count=1:assert count=2", text); } public void testTransformXmlVar() throws Exception { - String text = evaluteScriptAsText(testBaseDir + + String text = evaluateScriptAsText(testBaseDir + "/transformExampleXmlVar.jelly"); assertEquals("Should produce the correct output", "It works!", text); } public void testDoctype() throws Exception { - String text = evaluteScriptAsText(testBaseDir + + String text = evaluateScriptAsText(testBaseDir + "/testDoctype.jelly"); assertEquals("Should produce the correct output", "<!DOCTYPE foo PUBLIC \"publicID\" \"foo.dtd\">\n<foo></foo>", text); } @@ -280,15 +280,15 @@ public class TestXMLTags extends TestCas * Evaluates the script by the given file name and * returns the whitespace trimmed output as text */ - protected String evaluteScriptAsText(String fileName) throws Exception { - return evaluteScriptAsText(fileName, null); + protected String evaluateScriptAsText(String fileName) throws Exception { + return evaluateScriptAsText(fileName, null); } /** * Evaluates the script by the given file name and * returns the whitespace trimmed output as text */ - protected String evaluteScriptAsText(String fileName, Map ctxVars) throws Exception { + protected String evaluateScriptAsText(String fileName, Map ctxVars) throws Exception { JellyContext context = new JellyContext(); if (ctxVars != null) { Set keys = ctxVars.keySet(); @@ -303,7 +303,7 @@ public class TestXMLTags extends TestCas // using an absolute URI like /src/test/org/apache/foo.xml context.setRootURL(new File(".").toURL()); - // cature the output + // capture the output StringWriter buffer = new StringWriter(); XMLOutput output = XMLOutput.createXMLOutput(buffer); @@ -316,7 +316,7 @@ public class TestXMLTags extends TestCas return text; } - protected String evaluteScriptAsTextUsingSaxContentHandler(String fileName, Map ctxVars) throws Exception { + protected String evaluateScriptAsTextUsingSaxContentHandler(String fileName, Map ctxVars) throws Exception { org.dom4j.io.OutputFormat outputFormat = new org.dom4j.io.OutputFormat(); outputFormat.setSuppressDeclaration(true); outputFormat.setNewlines(false); Modified: commons/proper/jelly/trunk/jelly-tags/xml/src/test/org/apache/commons/jelly/tags/xml/schematron/test-schematron.xml URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/jelly-tags/xml/src/test/org/apache/commons/jelly/tags/xml/schematron/test-schematron.xml?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/jelly-tags/xml/src/test/org/apache/commons/jelly/tags/xml/schematron/test-schematron.xml (original) +++ commons/proper/jelly/trunk/jelly-tags/xml/src/test/org/apache/commons/jelly/tags/xml/schematron/test-schematron.xml Mon Jun 5 11:25:38 2017 @@ -61,7 +61,7 @@ <sch:pattern name="Adminstration Checks" id="admin"> - <sch:p>Adminstrative constraints which are <sch:emph>always</sch:emph> applied</sch:p> + <sch:p>Administrative constraints which are <sch:emph>always</sch:emph> applied</sch:p> <sch:rule context="house"> <sch:assert test="address">A house must have an address</sch:assert> Modified: commons/proper/jelly/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/pom.xml?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/pom.xml (original) +++ commons/proper/jelly/trunk/pom.xml Mon Jun 5 11:25:38 2017 @@ -355,7 +355,7 @@ <configuration> <archive> <manifestEntries> - <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id> + <Implementstion-Vendor-Id>org.apache</Implementstion-Vendor-Id> <X-Compile-Source-JDK>${maven.compiler.source}</X-Compile-Source-JDK> <X-Compile-Target-JDK>${maven.compiler.target}</X-Compile-Target-JDK> </manifestEntries> Modified: commons/proper/jelly/trunk/project.properties URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/project.properties?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/project.properties (original) +++ commons/proper/jelly/trunk/project.properties Mon Jun 5 11:25:38 2017 @@ -31,8 +31,8 @@ maven.compile.source=1.3 maven.compile.target=1.3 # Jar Manifest Additional Attributes -maven.jar.manifest.attributes.list=Implementation-Vendor-Id,X-Compile-Source-JDK,X-Compile-Target-JDK -maven.jar.manifest.attribute.Implementation-Vendor-Id=org.apache +maven.jar.manifest.attributes.list=Implementstion-Vendor-Id,X-Compile-Source-JDK,X-Compile-Target-JDK +maven.jar.manifest.attribute.Implementstion-Vendor-Id=org.apache maven.jar.manifest.attribute.X-Compile-Source-JDK=${maven.compile.source} maven.jar.manifest.attribute.X-Compile-Target-JDK=${maven.compile.target} Modified: commons/proper/jelly/trunk/project.xml URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/project.xml?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/project.xml (original) +++ commons/proper/jelly/trunk/project.xml Mon Jun 5 11:25:38 2017 @@ -50,7 +50,7 @@ <packages>org.apache.commons.jelly.impl,org.apache.commons.jelly.tags,org.apache.commons.jelly.expression</packages> </packageGroup> <packageGroup> - <title>Tag Implementations</title> + <title>Tag Implementstions</title> <packages>org.apache.commons.jelly.tags.*</packages> </packageGroup> </packageGroups> Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/Jelly.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/Jelly.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/Jelly.java (original) +++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/Jelly.java Mon Jun 5 11:25:38 2017 @@ -249,7 +249,7 @@ public class Jelly { this.validateXML = validate; } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** * @return the URL for the relative file name or absolute URL Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/JellyContext.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/JellyContext.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/JellyContext.java (original) +++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/JellyContext.java Mon Jun 5 11:25:38 2017 @@ -91,14 +91,14 @@ public class JellyContext { /** Should we export tag libraries to our parents context */ private boolean exportLibraries = true; - /** Should we cache Tag instances, per thread, to reduce object contruction overhead? */ + /** Should we cache Tag instances, per thread, to reduce object construction overhead? */ private boolean cacheTags = false; /** * True if exceptions should be suppressed; introduced in 1.1 beta and immediately deprecated * because future versions will _never_ suppress exceptions (required here for backwards * compatibility) - * @deprected after v1.1, exceptions will never be suppressed + * @deprecated after v1.1, exceptions will never be suppressed */ private boolean suppressExpressionExceptions; @@ -929,7 +929,7 @@ public class JellyContext { } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** * @return a new relative URL from the given root and with the addition of the @@ -1014,7 +1014,7 @@ public class JellyContext { /** * @return the suppressExpressionExceptions - * @deprected after v1.1, exceptions will never be suppressed + * @deprecated after v1.1, exceptions will never be suppressed */ public boolean isSuppressExpressionExceptions() { return suppressExpressionExceptions; @@ -1022,7 +1022,7 @@ public class JellyContext { /** * @param suppressExpressionExceptions the suppressExpressionExceptions to set - * @deprected after v1.1, exceptions will never be suppressed + * @deprecated after v1.1, exceptions will never be suppressed */ public void setSuppressExpressionExceptions(boolean suppressExpressionExceptions) { this.suppressExpressionExceptions = suppressExpressionExceptions; Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/MapTagSupport.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/MapTagSupport.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/MapTagSupport.java (original) +++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/MapTagSupport.java Mon Jun 5 11:25:38 2017 @@ -25,7 +25,7 @@ import java.util.Map; * <p><code>MapTag</code> is a DynaTag implementation which uses a Map * to store its attribute values in. Derived tags can then process this * Map, change values, add or remove attributes or perform some other form - * of processsing pretty easily. + * of processing pretty easily. * </p> * * @author <a href="mailto:[email protected]">James Strachan</a> Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/MissingAttributeException.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/MissingAttributeException.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/MissingAttributeException.java (original) +++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/MissingAttributeException.java Mon Jun 5 11:25:38 2017 @@ -27,7 +27,7 @@ public class MissingAttributeException e private String missingAttribute; - // ### we may wish to implement a localized messag for this error + // ### we may wish to implement a localized message for this error public MissingAttributeException(String missingAttribute) { super( "You must define an attribute called '" + missingAttribute + "' for this tag." ); Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/TagLibrary.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/TagLibrary.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/TagLibrary.java (original) +++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/TagLibrary.java Mon Jun 5 11:25:38 2017 @@ -138,7 +138,7 @@ public abstract class TagLibrary { } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/TagSupport.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/TagSupport.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/TagSupport.java (original) +++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/TagSupport.java Mon Jun 5 11:25:38 2017 @@ -206,7 +206,7 @@ public abstract class TagSupport impleme getBody().run(context, output); } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** * Searches up the parent hierarchy for a Tag of the given type. Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/XMLOutput.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/XMLOutput.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/XMLOutput.java (original) +++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/XMLOutput.java Mon Jun 5 11:25:38 2017 @@ -69,7 +69,7 @@ public class XMLOutput implements Conten /** The SAX LexicalHandler that output goes to. */ private LexicalHandler lexicalHandler; - /** Stack of kown namespaces. */ + /** Stack of known namespaces. */ private NamespaceStack namespaceStack = new NamespaceStack(); public XMLOutput() { @@ -837,7 +837,7 @@ public class XMLOutput implements Conten } } - /** Pass data through the pipline. + /** Pass data through the pipeline. * By default, this call is ignored. * Subclasses are invited to use this as a way for children tags to * pass data to their parent. @@ -898,7 +898,7 @@ public class XMLOutput implements Conten this.lexicalHandler = lexicalHandler; } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** * Factory method to create a new XMLOutput from an XMLWriter @@ -957,7 +957,7 @@ public class XMLOutput implements Conten isNew = false; } // We found it in stack - // If it was exacly the same, we won't bother + // If it was exactly the same, we won't bother break; } } @@ -965,18 +965,18 @@ public class XMLOutput implements Conten if (isNew) { // not declared sometime before prefixUriMap = (Map) nsStack.get(0); // Current depth map - // Sanity check: Don't let two prefixes for diferent uris in + // Sanity check: Don't let two prefixes for different uris in // same depth if (prefixUriMap.containsKey(prefix)) { if (!uri.equals(prefixUriMap.get(prefix))) { - throw new SAXException("Cannot set same prefix to diferent URI in same node: trying to add prefix \"" + throw new SAXException("Cannot set same prefix to different URI in same node: trying to add prefix \"" + prefix + "\" for uri \""+uri+"\" whereas the declared ones are " + prefixUriMap); } } else { prefixUriMap.put(prefix, uri); // To avoid setting xmlns="" for top node (not very nice :D) - // We need to especificaly check this condition + // We need to specifically check this condition if (!isRootNodeDefaultNs(prefix, uri)) { // System.out.println(">>>"+XMLOutput.this.hashCode()+">NamespaceStack.pushNamespace() prefix="+prefix+",uri="+uri); contentHandler.startPrefixMapping(prefix, uri); Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/expression/CompositeExpression.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/expression/CompositeExpression.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/expression/CompositeExpression.java (original) +++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/expression/CompositeExpression.java Mon Jun 5 11:25:38 2017 @@ -52,15 +52,15 @@ public class CompositeExpression extends } /** - * Parses the given String to be either a ConstantExpresssion, an Expression denoted as - * "${foo}" or some String with embedded expresssions such as "abc${something}def${else}xyz" + * Parses the given String to be either a ConstantExpression, an Expression denoted as + * "${foo}" or some String with embedded expressions such as "abc${something}def${else}xyz" * which results in a CompositeExpression being returned. * * @param text is the String to parse into expressions - * @param factory is the Factory of Expression objects used to create expresssions for the contents + * @param factory is the Factory of Expression objects used to create expressions for the contents * of the String "foo" inside expressions such as "${foo}" * - * @return the Expresssion for the given String. + * @return the Expression for the given String. * @throws JellyException if the text is invalid (such as missing '}' character). * @throws JellyException if there was some problem creating the underlying Expression object * from the ExpressionFactory Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/expression/jexl/JexlExpressionFactory.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/expression/jexl/JexlExpressionFactory.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/expression/jexl/JexlExpressionFactory.java (original) +++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/expression/jexl/JexlExpressionFactory.java Mon Jun 5 11:25:38 2017 @@ -38,7 +38,7 @@ import org.apache.commons.jelly.expressi public class JexlExpressionFactory implements ExpressionFactory { - /** whether we should allow Ant-style expresssions, using dots as part of variable name */ + /** whether we should allow Ant-style expressions, using dots as part of variable name */ private boolean supportAntVariables = true; // ExpressionFactory interface @@ -76,7 +76,7 @@ public class JexlExpressionFactory imple //------------------------------------------------------------------------- /** - * @return whether we should allow Ant-style expresssions, using dots as + * @return whether we should allow Ant-style expressions, using dots as * part of variable name */ public boolean isSupportAntVariables() { @@ -84,14 +84,14 @@ public class JexlExpressionFactory imple } /** - * Sets whether we should allow Ant-style expresssions, using dots as + * Sets whether we should allow Ant-style expressions, using dots as * part of variable name */ public void setSupportAntVariables(boolean supportAntVariables) { this.supportAntVariables = supportAntVariables; } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/expression/package.html URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/expression/package.html?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/expression/package.html (original) +++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/expression/package.html Mon Jun 5 11:25:38 2017 @@ -20,7 +20,7 @@ </head> <body> - <p>Implementations of the Expression classes using commons-jexl. + <p>Implementstions of the Expression classes using commons-jexl. </p> </body> Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/expression/xpath/XPathExpression.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/expression/xpath/XPathExpression.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/expression/xpath/XPathExpression.java (original) +++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/expression/xpath/XPathExpression.java Mon Jun 5 11:25:38 2017 @@ -114,7 +114,7 @@ public class XPathExpression extends Exp return value; } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /** Modified: commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/DefaultTagLibraryResolver.java URL: http://svn.apache.org/viewvc/commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/DefaultTagLibraryResolver.java?rev=1797644&r1=1797643&r2=1797644&view=diff ============================================================================== --- commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/DefaultTagLibraryResolver.java (original) +++ commons/proper/jelly/trunk/src/java/org/apache/commons/jelly/impl/DefaultTagLibraryResolver.java Mon Jun 5 11:25:38 2017 @@ -27,7 +27,7 @@ import org.apache.commons.logging.LogFac /** - * <p><code>DefaultTagLibraryResolver</code> is a default implemenation + * <p><code>DefaultTagLibraryResolver</code> is a default implementation * which attempts to interpret the URI as a String called 'jelly:className' * and class load the given Java class. Otherwise META-INF/services/jelly/uri * is searched for on the thread context's class path and, if found, that @@ -181,7 +181,7 @@ public class DefaultTagLibraryResolver i this.discovery = discovery; } - // Implementation methods + // Implementstion methods //------------------------------------------------------------------------- /**
