Return-Path: X-Original-To: apmail-click-commits-archive@www.apache.org Delivered-To: apmail-click-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 051121046C for ; Sat, 2 Nov 2013 09:24:14 +0000 (UTC) Received: (qmail 79423 invoked by uid 500); 2 Nov 2013 09:24:13 -0000 Delivered-To: apmail-click-commits-archive@click.apache.org Received: (qmail 79404 invoked by uid 500); 2 Nov 2013 09:24:12 -0000 Mailing-List: contact commits-help@click.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: click-dev@click.apache.org Delivered-To: mailing list commits@click.apache.org Received: (qmail 79396 invoked by uid 99); 2 Nov 2013 09:24:10 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 02 Nov 2013 09:24:10 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 02 Nov 2013 09:24:04 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 6B90923889CB; Sat, 2 Nov 2013 09:23:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1538160 - in /click/trunk/click: examples/webapp/ajax/ examples/webapp/ajax/compare/ examples/webapp/ajax/content/ examples/webapp/ajax/form/ examples/webapp/ajax/scroller/ examples/webapp/ajax/table/ extras/test/org/apache/click/extras/co... Date: Sat, 02 Nov 2013 09:23:40 -0000 To: commits@click.apache.org From: aadrian@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131102092341.6B90923889CB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: aadrian Date: Sat Nov 2 09:23:39 2013 New Revision: 1538160 URL: http://svn.apache.org/r1538160 Log: typos and semicolons. Modified: click/trunk/click/examples/webapp/ajax/ajax-behavior.htm click/trunk/click/examples/webapp/ajax/ajax-fallback.htm click/trunk/click/examples/webapp/ajax/ajax-redirect.htm click/trunk/click/examples/webapp/ajax/ajax-secure.htm click/trunk/click/examples/webapp/ajax/compare/jquery-ajax-demo.htm click/trunk/click/examples/webapp/ajax/compare/prototype-ajax-demo.htm click/trunk/click/examples/webapp/ajax/content/json-response.htm click/trunk/click/examples/webapp/ajax/content/xml-response.htm click/trunk/click/examples/webapp/ajax/form/advanced-form-ajax.js click/trunk/click/examples/webapp/ajax/form/simple-form-ajax.js click/trunk/click/examples/webapp/ajax/page-action.htm click/trunk/click/examples/webapp/ajax/scroller/ajax-live-scroller.js click/trunk/click/examples/webapp/ajax/table/table-ajax.js click/trunk/click/extras/test/org/apache/click/extras/control/CheckListTest.java click/trunk/click/extras/test/org/apache/click/extras/control/DoubleFieldTest.java click/trunk/click/framework/src/org/apache/click/ActionEventDispatcher.java click/trunk/click/framework/src/org/apache/click/PageInterceptor.java click/trunk/click/framework/src/org/apache/click/Stateful.java click/trunk/click/framework/src/org/apache/click/ajax/AjaxBehavior.java click/trunk/click/framework/src/org/apache/click/control/AbstractLink.java click/trunk/click/framework/src/org/apache/click/control/ActionButton.java click/trunk/click/framework/src/org/apache/click/control/Select.java click/trunk/click/framework/src/org/apache/click/service/ConfigService.java click/trunk/click/framework/src/org/apache/click/service/XmlConfigService.java click/trunk/click/framework/src/org/apache/click/util/ClickUtils.java click/trunk/click/framework/src/org/apache/click/util/PropertyUtils.java click/trunk/click/framework/test/org/apache/click/control/AbstractContainerTest.java click/trunk/click/framework/test/org/apache/click/control/RadioGroupTest.java click/trunk/click/framework/test/org/apache/click/control/RadioTest.java click/trunk/click/framework/test/org/apache/click/control/SubmitTest.java click/trunk/click/framework/test/org/apache/click/service/XmlConfigServiceTest.java Modified: click/trunk/click/examples/webapp/ajax/ajax-behavior.htm URL: http://svn.apache.org/viewvc/click/trunk/click/examples/webapp/ajax/ajax-behavior.htm?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/examples/webapp/ajax/ajax-behavior.htm (original) +++ click/trunk/click/examples/webapp/ajax/ajax-behavior.htm Sat Nov 2 09:23:39 2013 @@ -45,7 +45,7 @@ Click $link to make an Ajax request to t // Prevent the default browser behavior of navigating to the link return false; }) - }) + }); function makeRequest() { var link = jQuery('#link-id'); Modified: click/trunk/click/examples/webapp/ajax/ajax-fallback.htm URL: http://svn.apache.org/viewvc/click/trunk/click/examples/webapp/ajax/ajax-fallback.htm?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/examples/webapp/ajax/ajax-fallback.htm (original) +++ click/trunk/click/examples/webapp/ajax/ajax-fallback.htm Sat Nov 2 09:23:39 2013 @@ -54,7 +54,7 @@ behavior in action) // Prevent the default browser behavior of navigating to the link return false; }) - }) + }); function makeRequest() { var link = jQuery('#link-id'); Modified: click/trunk/click/examples/webapp/ajax/ajax-redirect.htm URL: http://svn.apache.org/viewvc/click/trunk/click/examples/webapp/ajax/ajax-redirect.htm?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/examples/webapp/ajax/ajax-redirect.htm (original) +++ click/trunk/click/examples/webapp/ajax/ajax-redirect.htm Sat Nov 2 09:23:39 2013 @@ -60,7 +60,7 @@ by setting the value of window.locat // Prevent the default browser behavior of navigating to the link return false; }) - }) + }); function redirectLinkClicked() { var link = jQuery('#redirectLinkId'); Modified: click/trunk/click/examples/webapp/ajax/ajax-secure.htm URL: http://svn.apache.org/viewvc/click/trunk/click/examples/webapp/ajax/ajax-secure.htm?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/examples/webapp/ajax/ajax-secure.htm (original) +++ click/trunk/click/examples/webapp/ajax/ajax-secure.htm Sat Nov 2 09:23:39 2013 @@ -42,7 +42,7 @@ Clicking the link will show a permission // Register a function that is invoked as soon as the DOM is loaded jQuery(document).ready(function() { - var resultElm = jQuery("#result") + var resultElm = jQuery("#result"); // Hide the result div initially if it contains no content if (jQuery.trim(resultElm.text()).length == 0) { @@ -58,9 +58,9 @@ Clicking the link will show a permission // Prevent the default browser behavior of navigating to the link return false; - }) + }); - // Register a 'click' handler that makes an Ajax request + // Register a 'click' handler that makes an Ajax request jQuery("#secureLinkWithMessageId").click(function(event){ // Make ajax request messageLinkClicked(); @@ -68,7 +68,7 @@ Clicking the link will show a permission // Prevent the default browser behavior of navigating to the link return false; }) - }) + }); function redirectLinkClicked() { var link = jQuery('#secureLinkWithRedirectId'); Modified: click/trunk/click/examples/webapp/ajax/compare/jquery-ajax-demo.htm URL: http://svn.apache.org/viewvc/click/trunk/click/examples/webapp/ajax/compare/jquery-ajax-demo.htm?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/examples/webapp/ajax/compare/jquery-ajax-demo.htm (original) +++ click/trunk/click/examples/webapp/ajax/compare/jquery-ajax-demo.htm Sat Nov 2 09:23:39 2013 @@ -48,7 +48,7 @@ $link // Prevent the default browser behavior of navigating to the link return false; }) - }) + }); function makeRequest() { // The URL to make the Ajax request on should include enough information Modified: click/trunk/click/examples/webapp/ajax/compare/prototype-ajax-demo.htm URL: http://svn.apache.org/viewvc/click/trunk/click/examples/webapp/ajax/compare/prototype-ajax-demo.htm?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/examples/webapp/ajax/compare/prototype-ajax-demo.htm (original) +++ click/trunk/click/examples/webapp/ajax/compare/prototype-ajax-demo.htm Sat Nov 2 09:23:39 2013 @@ -47,7 +47,7 @@ $link // Prevent the default browser behavior of navigating to the link event.preventDefault(); }) - }) + }); function makeRequest() { // The URL to make the Ajax request on should include enough information Modified: click/trunk/click/examples/webapp/ajax/content/json-response.htm URL: http://svn.apache.org/viewvc/click/trunk/click/examples/webapp/ajax/content/json-response.htm?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/examples/webapp/ajax/content/json-response.htm (original) +++ click/trunk/click/examples/webapp/ajax/content/json-response.htm Sat Nov 2 09:23:39 2013 @@ -43,7 +43,7 @@ Click $link to call the server using Aja // Prevent the default browser behavior of navigating to the link return false; }) - }) + }); function makeRequest() { var link = jQuery('#link-id'); Modified: click/trunk/click/examples/webapp/ajax/content/xml-response.htm URL: http://svn.apache.org/viewvc/click/trunk/click/examples/webapp/ajax/content/xml-response.htm?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/examples/webapp/ajax/content/xml-response.htm (original) +++ click/trunk/click/examples/webapp/ajax/content/xml-response.htm Sat Nov 2 09:23:39 2013 @@ -42,7 +42,7 @@ Click $link to call the server using Aja // Prevent the default browser behavior of navigating to the link return false; }) - }) + }); function makeRequest() { var link = jQuery('#link-id'); Modified: click/trunk/click/examples/webapp/ajax/form/advanced-form-ajax.js URL: http://svn.apache.org/viewvc/click/trunk/click/examples/webapp/ajax/form/advanced-form-ajax.js?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/examples/webapp/ajax/form/advanced-form-ajax.js (original) +++ click/trunk/click/examples/webapp/ajax/form/advanced-form-ajax.js Sat Nov 2 09:23:39 2013 @@ -37,7 +37,7 @@ jQuery(document).ready(function() { // Prevent the default browser behavior of navigating to the link return false; }) -}) +}); function postForm(event) { // Retrieve the Form and submit button elements Modified: click/trunk/click/examples/webapp/ajax/form/simple-form-ajax.js URL: http://svn.apache.org/viewvc/click/trunk/click/examples/webapp/ajax/form/simple-form-ajax.js?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/examples/webapp/ajax/form/simple-form-ajax.js (original) +++ click/trunk/click/examples/webapp/ajax/form/simple-form-ajax.js Sat Nov 2 09:23:39 2013 @@ -28,7 +28,7 @@ jQuery(document).ready(function() { // Prevent the default browser behavior of navigating to the link return false; }) -}) +}); function postForm(event) { // Retrieve the Form and submit button elements Modified: click/trunk/click/examples/webapp/ajax/page-action.htm URL: http://svn.apache.org/viewvc/click/trunk/click/examples/webapp/ajax/page-action.htm?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/examples/webapp/ajax/page-action.htm (original) +++ click/trunk/click/examples/webapp/ajax/page-action.htm Sat Nov 2 09:23:39 2013 @@ -46,7 +46,7 @@ Click $link to call the server using Aja // Prevent the default browser behavior of navigating to the link return false; }) - }) + }); function makeRequest() { var link = jQuery('#link-id'); Modified: click/trunk/click/examples/webapp/ajax/scroller/ajax-live-scroller.js URL: http://svn.apache.org/viewvc/click/trunk/click/examples/webapp/ajax/scroller/ajax-live-scroller.js?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/examples/webapp/ajax/scroller/ajax-live-scroller.js (original) +++ click/trunk/click/examples/webapp/ajax/scroller/ajax-live-scroller.js Sat Nov 2 09:23:39 2013 @@ -88,4 +88,4 @@ $(document).ready(function(){ function getFetchThreshold() { return 0.85 * jQuery(document).height() - jQuery(window).height(); } -}) +}); Modified: click/trunk/click/examples/webapp/ajax/table/table-ajax.js URL: http://svn.apache.org/viewvc/click/trunk/click/examples/webapp/ajax/table/table-ajax.js?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/examples/webapp/ajax/table/table-ajax.js (original) +++ click/trunk/click/examples/webapp/ajax/table/table-ajax.js Sat Nov 2 09:23:39 2013 @@ -36,7 +36,7 @@ jQuery(document).ready(function() { // Prevent the default browser behavior of navigating to the link event.preventDefault(); - }) + }); // Register a 'live' click handler on the sorting links of the table header (), // as well as the paging links on the
banner. @@ -49,7 +49,7 @@ jQuery(document).ready(function() { // Prevent the default browser behavior of navigating to the link return false; }) -}) +}); function editOrDeleteCustomer(event) { var link = jQuery(event.currentTarget); Modified: click/trunk/click/extras/test/org/apache/click/extras/control/CheckListTest.java URL: http://svn.apache.org/viewvc/click/trunk/click/extras/test/org/apache/click/extras/control/CheckListTest.java?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/extras/test/org/apache/click/extras/control/CheckListTest.java (original) +++ click/trunk/click/extras/test/org/apache/click/extras/control/CheckListTest.java Sat Nov 2 09:23:39 2013 @@ -153,7 +153,7 @@ public class CheckListTest extends TestC } /** - * Check that a readonly CheckList uses diabled attribute instead of + * Check that a readonly CheckList uses disabled attribute instead of * readonly attribute. * * CLK-751 Modified: click/trunk/click/extras/test/org/apache/click/extras/control/DoubleFieldTest.java URL: http://svn.apache.org/viewvc/click/trunk/click/extras/test/org/apache/click/extras/control/DoubleFieldTest.java?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/extras/test/org/apache/click/extras/control/DoubleFieldTest.java (original) +++ click/trunk/click/extras/test/org/apache/click/extras/control/DoubleFieldTest.java Sat Nov 2 09:23:39 2013 @@ -132,7 +132,7 @@ public class DoubleFieldTest extends Tes assertEquals("20", doubleField.getValue()); assertEquals(new Double(20), doubleField.getValueObject()); - // Test requried value larger than max value + // Test required value larger than max value doubleField.setMaxValue(21); assertTrue(doubleField.onProcess()); assertTrue(doubleField.isValid()); Modified: click/trunk/click/framework/src/org/apache/click/ActionEventDispatcher.java URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/ActionEventDispatcher.java?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/framework/src/org/apache/click/ActionEventDispatcher.java (original) +++ click/trunk/click/framework/src/org/apache/click/ActionEventDispatcher.java Sat Nov 2 09:23:39 2013 @@ -269,15 +269,15 @@ public class ActionEventDispatcher { * @see #fireAjaxBehaviors(org.apache.click.Context, org.apache.click.Control) * * @param context the request context - * @param ajaxBbehaviorSourceSet the set of controls with attached AjaxBehaviors + * @param ajaxBehaviorSourceSet the set of controls with attached AjaxBehaviors * * @return true if the page should continue processing, false otherwise */ - protected boolean fireAjaxBehaviors(Context context, Set ajaxBbehaviorSourceSet) { + protected boolean fireAjaxBehaviors(Context context, Set ajaxBehaviorSourceSet) { boolean continueProcessing = true; - for (Iterator it = ajaxBbehaviorSourceSet.iterator(); it.hasNext();) { + for (Iterator it = ajaxBehaviorSourceSet.iterator(); it.hasNext();) { Control source = it.next(); // Pop the first entry in the set @@ -369,7 +369,7 @@ public class ActionEventDispatcher { if (behaviorActionResult == null) { buffer.append(" (ActionResult is null and will be ignored)"); } else { - buffer.append(" (ActionResult will be ignored since another AjaxBehavior already retuned a non-null ActionResult)"); + buffer.append(" (ActionResult will be ignored since another AjaxBehavior already returned a non-null ActionResult)"); } } Modified: click/trunk/click/framework/src/org/apache/click/PageInterceptor.java URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/PageInterceptor.java?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/framework/src/org/apache/click/PageInterceptor.java (original) +++ click/trunk/click/framework/src/org/apache/click/PageInterceptor.java Sat Nov 2 09:23:39 2013 @@ -49,7 +49,7 @@ package org.apache.click; *

* Note application scope interceptors are more efficient that request scope * interceptors, but you are responsible for ensuring that they are thread safe - * and support reentrant method invocations as multiple page requests are + * and support re-entrant method invocations as multiple page requests are * processed at the same time. * *

Configuration

Modified: click/trunk/click/framework/src/org/apache/click/Stateful.java URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/Stateful.java?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/framework/src/org/apache/click/Stateful.java (original) +++ click/trunk/click/framework/src/org/apache/click/Stateful.java Sat Nov 2 09:23:39 2013 @@ -132,7 +132,7 @@ public interface Stateful { * int storedNumber = ((Integer) stateArray[1]).intValue(); * setNumber(storedNumber); * - * boolean storedBoolen = ((Boolean) stateArray[2]).booleanValue(); + * boolean storedBoolean = ((Boolean) stateArray[2]).booleanValue(); * setBoolean(storedBoolean); * } * Modified: click/trunk/click/framework/src/org/apache/click/ajax/AjaxBehavior.java URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/ajax/AjaxBehavior.java?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/framework/src/org/apache/click/ajax/AjaxBehavior.java (original) +++ click/trunk/click/framework/src/org/apache/click/ajax/AjaxBehavior.java Sat Nov 2 09:23:39 2013 @@ -46,7 +46,7 @@ public interface AjaxBehavior extends Be *
      * public void onInit() {
      *     ActionLink link = new ActionLink("link");
-     *     link.addBehaior(new DefaultAjaxBehavior() {
+     *     link.addBehavior(new DefaultAjaxBehavior() {
      *
      *         public ActionResult onAction(Control source) {
      *             ActionResult result = new ActionResult("<h1>Hello world</h1>", ActionResult.HTML);

Modified: click/trunk/click/framework/src/org/apache/click/control/AbstractLink.java
URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/control/AbstractLink.java?rev=1538160&r1=1538159&r2=1538160&view=diff
==============================================================================
--- click/trunk/click/framework/src/org/apache/click/control/AbstractLink.java (original)
+++ click/trunk/click/framework/src/org/apache/click/control/AbstractLink.java Sat Nov  2 09:23:39 2013
@@ -802,7 +802,7 @@ public abstract class AbstractLink exten
             // A null value can only occur for Ajax requests which processes
             // parameters defined on the link, not the incoming parameters.
             // The reason for not processing the null value is because it would
-            // nullify parametesr that was set during onInit
+            // nullify the parameter that was set during onInit
             if (values == null) {
                 continue;
             }

Modified: click/trunk/click/framework/src/org/apache/click/control/ActionButton.java
URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/control/ActionButton.java?rev=1538160&r1=1538159&r2=1538160&view=diff
==============================================================================
--- click/trunk/click/framework/src/org/apache/click/control/ActionButton.java (original)
+++ click/trunk/click/framework/src/org/apache/click/control/ActionButton.java Sat Nov  2 09:23:39 2013
@@ -621,7 +621,7 @@ public class ActionButton extends Button
             // A null value can only occur for Ajax requests which processes
             // parameters defined on the button, not the incoming parameters.
             // The reason for not processing the null value is because it would
-            // nullify parametesr that was set during onInit
+            // nullify the parameter that was set during onInit
             if (values == null) {
                 continue;
             }

Modified: click/trunk/click/framework/src/org/apache/click/control/Select.java
URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/control/Select.java?rev=1538160&r1=1538159&r2=1538160&view=diff
==============================================================================
--- click/trunk/click/framework/src/org/apache/click/control/Select.java (original)
+++ click/trunk/click/framework/src/org/apache/click/control/Select.java Sat Nov  2 09:23:39 2013
@@ -129,7 +129,7 @@ import org.apache.click.util.HtmlStringB
  *     private Select locationSelect = new Select("location");
  *
  *     public LocationPage() {
- *         locationSelect.setMutliple(true);
+ *         locationSelect.setMultiple(true);
  *         locationSelect.setRequired(true);
  *         locationSelect.setSize(7);
  *         locationSelect.add("QLD");
@@ -157,7 +157,7 @@ import org.apache.click.util.HtmlStringB
  * 
  * 
  * 
- * 
+ * 
  * 
  * 
  * 
@@ -215,7 +215,7 @@ import org.apache.click.util.HtmlStringB
  * this problem you can set a
  * {@link #setDataProvider(org.apache.click.dataprovider.DataProvider) dataProvider}
  * which allows the Select to fetch data when needed. This is
- * particularly useful if retrieveing Select data is expensive e.g. loading
+ * particularly useful if retrieving Select data is expensive e.g. loading
  * from a database.
  * 

* Below is a simple example: Modified: click/trunk/click/framework/src/org/apache/click/service/ConfigService.java URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/service/ConfigService.java?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/framework/src/org/apache/click/service/ConfigService.java (original) +++ click/trunk/click/framework/src/org/apache/click/service/ConfigService.java Sat Nov 2 09:23:39 2013 @@ -88,7 +88,7 @@ import org.apache.click.util.Format; * * * config-service-class - * com.mycorp.service.CustomConfigSerivce + * com.mycorp.service.CustomConfigService * * * ... @@ -119,7 +119,7 @@ public interface ConfigService { public static final String NOT_FOUND_PATH = "/click/not-found.htm"; /** The page auto binding mode. */ - public enum AutoBinding { DEFAULT, ANNOTATION, NONE }; + public enum AutoBinding { DEFAULT, ANNOTATION, NONE } /** * The servlet context attribute name. The ClickServlet stores the Modified: click/trunk/click/framework/src/org/apache/click/service/XmlConfigService.java URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/service/XmlConfigService.java?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/framework/src/org/apache/click/service/XmlConfigService.java (original) +++ click/trunk/click/framework/src/org/apache/click/service/XmlConfigService.java Sat Nov 2 09:23:39 2013 @@ -354,7 +354,7 @@ public class XmlConfigService implements } /** - * @see ConfigService#getProperyService() + * @see ConfigService#getPropertyService() * * @return the application property service. */ Modified: click/trunk/click/framework/src/org/apache/click/util/ClickUtils.java URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/util/ClickUtils.java?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/framework/src/org/apache/click/util/ClickUtils.java (original) +++ click/trunk/click/framework/src/org/apache/click/util/ClickUtils.java Sat Nov 2 09:23:39 2013 @@ -2621,7 +2621,7 @@ public class ClickUtils { // If this was the last state for the page, remove the page state map context.removeSessionAttribute(resourcePath); } else { - // Check if control state was emoved + // Check if control state was removed if (pop != null) { // If control state was removed, set session attribute to force // session replication in a cluster Modified: click/trunk/click/framework/src/org/apache/click/util/PropertyUtils.java URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/util/PropertyUtils.java?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/framework/src/org/apache/click/util/PropertyUtils.java (original) +++ click/trunk/click/framework/src/org/apache/click/util/PropertyUtils.java Sat Nov 2 09:23:39 2013 @@ -103,7 +103,7 @@ public class PropertyUtils { * @return the property value for the given source object and property name */ public static Object getValue(Object source, String name, Map cache) { - Validate.notNull(cache, "Null cache paramenter"); + Validate.notNull(cache, "Null cache parameter"); String basePart = name; String remainingPart = null; Modified: click/trunk/click/framework/test/org/apache/click/control/AbstractContainerTest.java URL: http://svn.apache.org/viewvc/click/trunk/click/framework/test/org/apache/click/control/AbstractContainerTest.java?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/framework/test/org/apache/click/control/AbstractContainerTest.java (original) +++ click/trunk/click/framework/test/org/apache/click/control/AbstractContainerTest.java Sat Nov 2 09:23:39 2013 @@ -30,7 +30,7 @@ public class AbstractContainerTest exten * Test AbstractContainer#add(Control) and #insert(Control, int) * pre conditions. */ - public void testInsertPreCondistion() { + public void testInsertPreCondition() { MockContext.initContext(); AbstractContainer container = new AbstractContainer("form") { private static final long serialVersionUID = 1L; Modified: click/trunk/click/framework/test/org/apache/click/control/RadioGroupTest.java URL: http://svn.apache.org/viewvc/click/trunk/click/framework/test/org/apache/click/control/RadioGroupTest.java?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/framework/test/org/apache/click/control/RadioGroupTest.java (original) +++ click/trunk/click/framework/test/org/apache/click/control/RadioGroupTest.java Sat Nov 2 09:23:39 2013 @@ -122,7 +122,7 @@ public class RadioGroupTest extends Test } /** - * Coverage test of addAll(Colelction). + * Coverage test of addAll(Collection). */ public void testAddAllObject() { MockContext.initContext(); @@ -157,7 +157,7 @@ public class RadioGroupTest extends Test } /** - * Coverage test of addAll(Colelction). + * Coverage test of addAll(Collection). */ public void testFocusJs() { MockContext.initContext(); Modified: click/trunk/click/framework/test/org/apache/click/control/RadioTest.java URL: http://svn.apache.org/viewvc/click/trunk/click/framework/test/org/apache/click/control/RadioTest.java?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/framework/test/org/apache/click/control/RadioTest.java (original) +++ click/trunk/click/framework/test/org/apache/click/control/RadioTest.java Sat Nov 2 09:23:39 2013 @@ -104,7 +104,7 @@ public class RadioTest extends TestCase assertTrue(button.isValid()); assertFalse(button.isDisabled()); - // Diasabled button without request param + // Disabled button without request param request.removeParameter("button"); button.setDisabled(true); assertTrue(button.onProcess()); Modified: click/trunk/click/framework/test/org/apache/click/control/SubmitTest.java URL: http://svn.apache.org/viewvc/click/trunk/click/framework/test/org/apache/click/control/SubmitTest.java?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/framework/test/org/apache/click/control/SubmitTest.java (original) +++ click/trunk/click/framework/test/org/apache/click/control/SubmitTest.java Sat Nov 2 09:23:39 2013 @@ -67,7 +67,7 @@ public class SubmitTest extends TestCase assertTrue(button.isValid()); assertFalse(button.isDisabled()); - // Diasabled button without request param + // Disabled button without request param request.removeParameter("button"); button.setDisabled(true); assertTrue(button.onProcess()); Modified: click/trunk/click/framework/test/org/apache/click/service/XmlConfigServiceTest.java URL: http://svn.apache.org/viewvc/click/trunk/click/framework/test/org/apache/click/service/XmlConfigServiceTest.java?rev=1538160&r1=1538159&r2=1538160&view=diff ============================================================================== --- click/trunk/click/framework/test/org/apache/click/service/XmlConfigServiceTest.java (original) +++ click/trunk/click/framework/test/org/apache/click/service/XmlConfigServiceTest.java Sat Nov 2 09:23:39 2013 @@ -410,7 +410,7 @@ public class XmlConfigServiceTest extend PrintStream pstr = makeXmlStream(tmpdir, "WEB-INF/click.xml"); pstr.println(""); - // Dclare the pages package + // Declare the pages package pstr.println(""); pstr.println("");

*