diff --git a/atom/tests/io/module.js b/atom/tests/io/module.js index 7e1ab685e1..e88efabbdf 100644 --- a/atom/tests/io/module.js +++ b/atom/tests/io/module.js @@ -483,7 +483,7 @@ doh.register("dojox.atom.tests.io.module", [ }); }, function(error, args){ // error callback - d.errback("Retreiving the entry failed."); + d.errback("Retrieving the entry failed."); }); return d; } @@ -509,7 +509,7 @@ doh.register("dojox.atom.tests.io.module", [ }); }, function(error, args){ // error callback - d.errback("Retreiving the entry failed."); + d.errback("Retrieving the entry failed."); }); return d; } diff --git a/atom/widget/FeedViewer.js b/atom/widget/FeedViewer.js index 6a345edadd..57b15833e7 100644 --- a/atom/widget/FeedViewer.js +++ b/atom/widget/FeedViewer.js @@ -315,7 +315,7 @@ var FeedViewer = declare("dojox.atom.widget.FeedViewer", [_Widget, _Templated, _ onEntrySelected: function(/*object*/entry){ // summary: - // Function intended for over-riding/replacement as an attachpoint to for other items to recieve + // Function intended for over-riding/replacement as an attachpoint to for other items to receive // selection notification. // entry: // The dojox.atom.io.model.Entry object selected. @@ -388,7 +388,7 @@ var FeedViewer = declare("dojox.atom.widget.FeedViewer", [_Widget, _Templated, _ baseURL = fullURL; } }else{ - //We want to find the first occurance of / after the :// + //We want to find the first occurrence of / after the :// index = fullURL.indexOf("://"); if(index > 0){ index = index + 3; diff --git a/calc/_ExecutorIframe.html b/calc/_ExecutorIframe.html index 82fc7c9de0..2777926d51 100644 --- a/calc/_ExecutorIframe.html +++ b/calc/_ExecutorIframe.html @@ -290,7 +290,7 @@ return text.replace(/\x01((\w|\.)+\s*)\([^()]*\)/, replaceFuncWithNum); } function FactorialParser(text){ - // loop this untill all ! are gone (in main) + // loop this until all ! are gone (in main) return text.replace(factorialRE, "\x01"+"factorial($1)"); } function putFuncChar(wholematch){ @@ -359,7 +359,7 @@ // keep going until there is nothing left that can be simplified while (isSimpleGrouping(text)||isSimpleFunction(text)||factorialRE.test(text)||caretRE.test(text)||radicalRE.test(text)||unaryRE.test(text)||binaryHighRE.test(text)||binaryLowRE.test(text)){ - var sTextOrginal = text; + var sTextOriginal = text; if(isSimpleFunction(text)){ var debugText = text; @@ -383,38 +383,38 @@ // factorials must come first for 5^2! cases, it equals 25 text = FactorialParser(text); - if(text!=sTextOrginal){ + if(text!=sTextOriginal){ continue; } text = caretParser(text); - if(text!=sTextOrginal){ + if(text!=sTextOriginal){ continue; } text = radicalOperatorParse(text); - if(text!=sTextOrginal){ + if(text!=sTextOriginal){ continue; } text = unaryOperatorRightsideParse(text); - if(text!=sTextOrginal){ + if(text!=sTextOriginal){ // put parentheses around the unary operators so 0--2 will pass numbers[numbers.length-1] = "("+numbers[numbers.length-1]+")"; continue; } text = unaryOperatorParse(text); - if(text!=sTextOrginal){ + if(text!=sTextOriginal){ // put parentheses around the unary operators so 0--2 will pass numbers[numbers.length-1] = "("+numbers[numbers.length-1]+")"; continue; } text = binaryHighPriorityOperatorParse(text); - if(text!=sTextOrginal){ + if(text!=sTextOriginal){ continue; } text = binaryLowPriorityOperatorParse(text); - if(text!=sTextOrginal){ + if(text!=sTextOriginal){ continue; } // it should never ever make it to this point. If it does, I'll want to know about it. diff --git a/charting/axis2d/Base.js b/charting/axis2d/Base.js index 50dc4618bd..e93ea8151f 100644 --- a/charting/axis2d/Base.js +++ b/charting/axis2d/Base.js @@ -45,7 +45,7 @@ define(["dojo/_base/declare", "../Element"], }, calculate: function(min, max, span){ // summary: - // Stub function to run the calcuations needed for drawing this axis. + // Stub function to run the calculations needed for drawing this axis. // returns: dojox/charting/axis2d/Base // A reference to the axis for functional chaining. return this; // dojox/charting/axis2d/Base diff --git a/data/tests/stores/AndOrWriteStore.js b/data/tests/stores/AndOrWriteStore.js index 44cefe5c9f..73c8e2a418 100755 --- a/data/tests/stores/AndOrWriteStore.js +++ b/data/tests/stores/AndOrWriteStore.js @@ -4097,7 +4097,7 @@ dojox.data.tests.stores.AndOrWriteStore.getTests = function(){ deferred.errback(error); }; - var intialFetch = function(items, request){ + var initialFetch = function(items, request){ var initialCount = items.length; var canada = store.newItem({name: "Canada", abbr:"ca", capital:"Ottawa"}); store.setValue(canada, "someattribute", "modified a new item!"); @@ -4114,7 +4114,7 @@ dojox.data.tests.stores.AndOrWriteStore.getTests = function(){ }; store.fetch({onComplete: afterNewFetch, onError: onError}); }; - store.fetch({onComplete: intialFetch, onError: onError}); + store.fetch({onComplete: initialFetch, onError: onError}); return deferred; //Object } }, @@ -4136,7 +4136,7 @@ dojox.data.tests.stores.AndOrWriteStore.getTests = function(){ deferred.errback(error); }; - var intialFetch = function(items, request){ + var initialFetch = function(items, request){ var initialCount = items.length; var canada = store.newItem({name: "Canada", abbr:"ca", capital:"Ottawa"}); store.setValue(canada, "someattribute", "modified a new item!"); @@ -4187,7 +4187,7 @@ dojox.data.tests.stores.AndOrWriteStore.getTests = function(){ }; store.fetch({onComplete: afterNewFetch, onError: onError}); }; - store.fetch({onComplete: intialFetch, onError: onError}); + store.fetch({onComplete: initialFetch, onError: onError}); return deferred; //Object } }, diff --git a/data/tests/stores/QueryReadStore.js b/data/tests/stores/QueryReadStore.js index 5daf322624..c454e6b3de 100644 --- a/data/tests/stores/QueryReadStore.js +++ b/data/tests/stores/QueryReadStore.js @@ -33,7 +33,7 @@ tests.register("dojox.data.tests.stores.QueryReadStore", t.assertEqual("Alabama", store.getValue(item, "name")); t.assertEqual("Alabama", store.getValue(item, "label")); t.assertEqual("AL", store.getValue(item, "abbreviation")); - // Test the defaultValue cases (the third paramter). + // Test the defaultValue cases (the third parameter). t.assertEqual("default value", store.getValue(item, "NAME", "default value")); // TODO Test for null somehow ... // Read api says: Returns null if and only if null was explicitly set as the attribute value. diff --git a/data/tests/stores/XmlStore.js b/data/tests/stores/XmlStore.js index c56ed2ddbb..97fb11a677 100644 --- a/data/tests/stores/XmlStore.js +++ b/data/tests/stores/XmlStore.js @@ -1337,7 +1337,7 @@ doh.register("dojox.data.tests.stores.XmlStore", function onError(error, request) { d.errback(error); } - store.fetchItemByIdentity({identity: "A9B574_NONEXISTANT", onItem: onItem, onError: onError}); + store.fetchItemByIdentity({identity: "A9B574_NONEXISTENT", onItem: onItem, onError: onError}); return d; //Object }, diff --git a/data/tests/stores/test_Tree_on_JsonRestStore.html b/data/tests/stores/test_Tree_on_JsonRestStore.html index 10b7e86b7a..ddf63ed541 100644 --- a/data/tests/stores/test_Tree_on_JsonRestStore.html +++ b/data/tests/stores/test_Tree_on_JsonRestStore.html @@ -99,7 +99,7 @@

Selected Item:

Update Item

New Item

-

Enter an Id, Name, and optionally a description to be added as a new item to the store. Upon successful addition, the tree will recieve notification of this event and respond accordingly. If you select a node the item will be added to that node, otherwise the item will be added to the tree root. "Id" is the identifer here and as such must be unique for all items in the store.

+

Enter an Id, Name, and optionally a description to be added as a new item to the store. Upon successful addition, the tree will receive notification of this event and respond accordingly. If you select a node the item will be added to that node, otherwise the item will be added to the tree root. "Id" is the identifer here and as such must be unique for all items in the store.

Id:
Name:
Description:

diff --git a/date/relative.js b/date/relative.js index a376900f9e..62f54bda0a 100644 --- a/date/relative.js +++ b/date/relative.js @@ -41,7 +41,7 @@ drelative.format = function(/*Date*/dateObject, /*__FormatOptions?*/options){ // is displayed // // If the day portion of the date falls within the past week (or the - // week preceeding relativeDate, if present), then the display will show + // week preceding relativeDate, if present), then the display will show // day of week and time. This functionality can be turned off by setting // weekCheck to false. // diff --git a/date/tests/hebrew/Date.js b/date/tests/hebrew/Date.js index e293beb26b..34f9df5a3f 100644 --- a/date/tests/hebrew/Date.js +++ b/date/tests/hebrew/Date.js @@ -268,10 +268,10 @@ tests.register("dojox.date.tests.hebrew.Date", // var m = ["TISHRI " , "HESHVAN", "KISLEV", "TEVET", "SHVAT" , "ADARI", "ADAR", "NISAN" , "IYAR" , "SIVAN" , "TAMMUZ", "AV" , "ELUL"]; - var amouts = [2, 5, 6, 7, 8,12, 18,20, 24, 50, -3, -4, -5, -6, -7, -8, -9, -10, -50, 200, -200]; + var amounts = [2, 5, 6, 7, 8,12, 18,20, 24, 50, -3, -4, -5, -6, -7, -8, -9, -10, -50, 200, -200]; var dateHebrewAdd, dateHebrewAddLeap; - dojo.forEach( amouts, function(amount, i){ + dojo.forEach( amounts, function(amount, i){ dateHebrewAdd = dojox.date.hebrew.add(dateHebrew, "month", amount); dateHebrewAddLeap = dojox.date.hebrew.add(dateHebrewLeap, "month", amount); t.is(dojox.date.hebrew.difference(dateHebrew, dateHebrewAdd, "month"), amount); diff --git a/date/tests/islamic/Date.js b/date/tests/islamic/Date.js index 23afa0293f..fe7983a7cd 100644 --- a/date/tests/islamic/Date.js +++ b/date/tests/islamic/Date.js @@ -1944,11 +1944,11 @@ tests.register("dojox.date.tests.islamic.Date", var dateIslamic = new dojox.date.islamic.Date(1431, 4, 6); - var amouts = [2, 5, 6, 7, 8, 12, 18, 20, 24, 50, -3, -4, -5, -6, -7, -8, -9, -10, -50, 200, -200, 29, -29, 1, -1, + var amounts = [2, 5, 6, 7, 8, 12, 18, 20, 24, 50, -3, -4, -5, -6, -7, -8, -9, -10, -50, 200, -200, 29, -29, 1, -1, 23, 25]; var dateIslamicAdd; - dojo.forEach(amouts, function(amount, i) { + dojo.forEach(amounts, function(amount, i) { dateIslamicAdd = dojox.date.islamic.add(dateIslamic, "month", amount); t.is(dojox.date.islamic.difference(dateIslamic, dateIslamicAdd, "month"), amount); diff --git a/date/tests/umalqura/Date.js b/date/tests/umalqura/Date.js index d2f788d4c5..976cdd1c82 100644 --- a/date/tests/umalqura/Date.js +++ b/date/tests/umalqura/Date.js @@ -2409,7 +2409,7 @@ tests.register("dojox.date.tests.umalqura.Date", dateIslamicAdd = dojox.date.umalqura.add(dateIslamic, "day", 0); dateDiff = dojox.date.umalqura.difference(dateIslamicAdd, dateIslamic, "day"); var dateDiff2 = dojox.date.umalqura.difference(dateIslamic, dateIslamic, "day"); - var amouts = [-1, 0, 1, 2, 5, 6, 7, 8, 12, 18, 20, 24, 50, -3, -4, -5, -6, -7, -8, -9, -10, + var amounts = [-1, 0, 1, 2, 5, 6, 7, 8, 12, 18, 20, 24, 50, -3, -4, -5, -6, -7, -8, -9, -10, -50, 200, -200]; var units = [ "year", @@ -2422,7 +2422,7 @@ tests.register("dojox.date.tests.umalqura.Date", "millisecond" ]; dojo.forEach(inputDates, function (inDate, i) { - dojo.forEach(amouts, function (amount, j) { + dojo.forEach(amounts, function (amount, j) { dojo.forEach(units, function (unit, k) { dateIslamic = new dojox.date.umalqura.Date(inDate[0], inDate[1], inDate[2]); dateIslamicAdd = dojox.date.umalqura.add(dateIslamic, unit, amount); diff --git a/drawing/stencil/_Base.js b/drawing/stencil/_Base.js index 79d28ff10f..e7eab0f664 100755 --- a/drawing/stencil/_Base.js +++ b/drawing/stencil/_Base.js @@ -127,7 +127,7 @@ var ToolsSetup = { // This object is inserted into the *function* of // a tool (not a stencil). Like: function.ToolsSetup // It must be attached after constructr creation, so -// this object is found at the botton of the file. +// this object is found at the bottom of the file. // name: String // Fully qualified name of constructor @@ -554,7 +554,7 @@ var Base = oo.declare( } if(this.useSelectedStyle){ - // using the orginal selected style copy as + // using the original selected style copy as // a reference map of what props to copy for(nm in this.style.norm){ if(this.selCopy[nm]===undefined){ diff --git a/dtl/tests/text/tag.js b/dtl/tests/text/tag.js index 60a3c94e72..240e867431 100644 --- a/dtl/tests/text/tag.js +++ b/dtl/tests/text/tag.js @@ -412,14 +412,14 @@ doh.register("dojox.dtl.text.tag", people: [ { firstName: "Bill", lastName: "Clinton", gender: "Male" }, { firstName: "Margaret", lastName: "Thatcher", gender: "Female" }, - { firstName: "Path", lastName: "Smith", gender: "Unkown" }, + { firstName: "Path", lastName: "Smith", gender: "Unknown" }, { firstName: "Condoleezza", lastName: "Rice", gender: "Female" }, { firstName: "George", lastName: "Bush", gender: "Male" } ] }); var template = new dd.Template("{% regroup people|dictsort:'gender' by gender as grouped %}"); - t.t(template.render(context).match(new RegExp("^$"))); + t.t(template.render(context).match(new RegExp("^$"))); }, function test_tag_spaceless(t){ var dd = dojox.dtl; diff --git a/editor/plugins/AutoUrlLink.js b/editor/plugins/AutoUrlLink.js index 05bc336c60..d1567e2dd6 100644 --- a/editor/plugins/AutoUrlLink.js +++ b/editor/plugins/AutoUrlLink.js @@ -187,7 +187,7 @@ var AutoUrlLink = dojo.declare("dojox.editor.plugins.AutoUrlLink", [_Plugin], { // summary: // Find the occurrace of the URL strings. // FF, Chrome && Safri have a behavior that when insertHTML is executed, - // the orignal referrence to the text node will be the text node next to + // the original referrence to the text node will be the text node next to // the inserted anchor automatically. So we have to re-caculate the index of // the following URL occurrence. // value: diff --git a/editor/plugins/SpellCheck.js b/editor/plugins/SpellCheck.js index b2be1b09e9..fd76779f7f 100644 --- a/editor/plugins/SpellCheck.js +++ b/editor/plugins/SpellCheck.js @@ -382,7 +382,7 @@ var SpellCheckScriptMultiPart = dojo.declare("dojox.editor.plugins._SpellCheckSc r = len; }else{ // If there is no delimiter (emplty string), leave the right boundary where it is. - // Else extend the right boundary to the first occurance of the delimiter if + // Else extend the right boundary to the first occurrence of the delimiter if // it doesn't meet the end of the content. while(dt && content.charAt(r) != dt && r <= len){ r++; @@ -459,7 +459,7 @@ var SpellCheckScriptMultiPart = dojo.declare("dojox.editor.plugins._SpellCheckSc }, onLoad: function(/*String*/ data){ - // Stub method for a sucessful call + // Stub method for a successful call }, setWaitingTime: function(/*Number*/ seconds){ diff --git a/editor/tests/PorterStemmer.php.disabled b/editor/tests/PorterStemmer.php.disabled index 86a820d83e..ea54543c18 100644 --- a/editor/tests/PorterStemmer.php.disabled +++ b/editor/tests/PorterStemmer.php.disabled @@ -6,7 +6,7 @@ * * Usage: $stem = PorterStemmer::getStem($word); * - * Refrence: "An algorithm for suffix stripping", M.F.Porter, http://tartarus.org/martin/PorterStemmer/def.txt + * Reference: "An algorithm for suffix stripping", M.F.Porter, http://tartarus.org/martin/PorterStemmer/def.txt * */ diff --git a/form/PasswordValidator.js b/form/PasswordValidator.js index 052eb0b6db..a9869a6efa 100644 --- a/form/PasswordValidator.js +++ b/form/PasswordValidator.js @@ -103,7 +103,7 @@ var _OldPWBox = declare("dojox.form._OldPWBox", _ChildTextBox, { _setBlurValue: function(){ // TextBox._setBlurValue calls this._setValueAttr(this.get('value'), ...) - // Because we are overridding _getValueAttr to return "" when the containerWidget + // Because we are overriding _getValueAttr to return "" when the containerWidget // is not valid, TextBox._setBlurValue will cause OldPWBox's value to be set to "" // // So, we directly call ValidationTextBox._getValueAttr to bypass our _getValueAttr diff --git a/form/tests/test_FileUploaderTabs.html b/form/tests/test_FileUploaderTabs.html index 50020fd702..b425da99ba 100644 --- a/form/tests/test_FileUploaderTabs.html +++ b/form/tests/test_FileUploaderTabs.html @@ -142,7 +142,7 @@

work fine.

This test also shows work around for the problem. View source of this test and see that in Tab 3, the FileUploader - is in a seperate div floating over the TabContainer. When Tab #3 is shown and hidden, the div is moved off and on screen. + is in a separate div floating over the TabContainer. When Tab #3 is shown and hidden, the div is moved off and on screen.

diff --git a/form/tests/test_ListInput.html b/form/tests/test_ListInput.html index c1081954de..31702c3004 100755 --- a/form/tests/test_ListInput.html +++ b/form/tests/test_ListInput.html @@ -31,7 +31,7 @@ }); - //test begining + //test beginning dojo.require("dojox.form.ListInput"); dojo.require("dojox.validate.regexp"); diff --git a/fx/ext-dojo/complex.js b/fx/ext-dojo/complex.js index d48a980931..6945864e2d 100644 --- a/fx/ext-dojo/complex.js +++ b/fx/ext-dojo/complex.js @@ -145,7 +145,7 @@ define(["dojo/_base/kernel", "dojo/_base/lang", "dojo/_base/array","dojo/_base/d makePropObject: function(/* String */beg, /* String */end){ // summary: // Returns an object that stores the numeric value and - // units of the beggining and ending properties. + // units of the beginning and ending properties. var b = this.getNumAndUnits(beg); var e = this.getNumAndUnits(end); diff --git a/fx/split.js b/fx/split.js index 0cd514bcb2..79fb71d091 100644 --- a/fx/split.js +++ b/fx/split.js @@ -10,7 +10,7 @@ lang.mixin(dojoxFx,{ // Returns an animation that will split the node into a grid // of pieces that move independently. // args: - // - args.crop: Boolean - If true, pieces will only be visible inside node's boundries + // - args.crop: Boolean - If true, pieces will only be visible inside node's boundaries // - args.rows: Integer - The number of horizontal pieces (default is 3) // - args.columns: Integer - The number of vertical pieces (default is 3) // - args.pieceAnimation: Function(piece, x, y, coords) - Returns either the dojo.Animation diff --git a/fx/style.js b/fx/style.js index 7701037cdc..43550173c0 100644 --- a/fx/style.js +++ b/fx/style.js @@ -11,7 +11,7 @@ define(["dojo/_base/kernel","dojo/_base/lang","dojo/_base/fx","dojo/fx","./_base // properties. // // returns: Array - // an array of raw, calculcated values (no keys), to be normalized/compared + // an array of raw, calculated values (no keys), to be normalized/compared // elsewhere return arrayUtil.map(dojoxFx._allowedProperties, function(style){ return cache[style]; // String diff --git a/fx/tests/example_backgroundPosition.html b/fx/tests/example_backgroundPosition.html index 70717157b0..f11adf0308 100644 --- a/fx/tests/example_backgroundPosition.html +++ b/fx/tests/example_backgroundPosition.html @@ -28,7 +28,7 @@ anim = new dojo.Animation({ curve: new dojo._Line(0,-500), duration: 3000, - onEnd: (function(){ anim.play(); }), // loop indefinately + onEnd: (function(){ anim.play(); }), // loop indefinitely onAnimate: function(){ var str = Math.floor(parseInt(arguments[0]))+"px 0px"; dojo.style(node,"backgroundPosition",str); diff --git a/fx/tests/test_split.html b/fx/tests/test_split.html index 4f4d974f20..18c057b5d7 100644 --- a/fx/tests/test_split.html +++ b/fx/tests/test_split.html @@ -327,7 +327,7 @@

dojox.fx.split

  • The distance the pieces travel (as a multiple of the element's respective dimensions)
  • Whether or not to fade the pieces in/out
  • How much the effect should be randomized (a percentage)
  • -
  • Whether or not the pieces should appear outside the element's boundries
  • +
  • Whether or not the pieces should appear outside the element's boundaries
  • Just click each box to play its animation! diff --git a/fx/tests/test_text.html b/fx/tests/test_text.html index e8503211e7..dd7b9b3805 100644 --- a/fx/tests/test_text.html +++ b/fx/tests/test_text.html @@ -319,7 +319,7 @@

    dojox.fx.text

  • The distance the pieces travel (as a multiple of the element's respective dimensions)
  • Whether or not to fade the pieces in/out
  • How much the effect should be randomized (a percentage)
  • -
  • Whether or not the pieces should appear outside the element's boundries
  • +
  • Whether or not the pieces should appear outside the element's boundaries
  • Just click each block of text to play its animation!
    diff --git a/geo/charting/Map.js b/geo/charting/Map.js index 8bde47a274..b07a867cb4 100644 --- a/geo/charting/Map.js +++ b/geo/charting/Map.js @@ -462,7 +462,7 @@ define([ var currentTransform = this.mapObj.getTransform(); - // can animate only if specified AND curentTransform exists + // can animate only if specified AND currentTransform exists if(!animate || !currentTransform){ this.mapObj.setTransform(newTransform); }else{ @@ -527,7 +527,7 @@ define([ var currentTransform = this.mapObj.getTransform(); - // can animate only if specified AND curentTransform exists + // can animate only if specified AND currentTransform exists if(!animate || !currentTransform){ this.mapObj.setTransform(newTransform); }else{ @@ -554,7 +554,7 @@ define([ // mapY: Number // the y coordinate of the point to convert. // returns: {x:,y:} - // the screen coordinates correspondig to the specified map coordinates. + // the screen coordinates corresponding to the specified map coordinates. var matrix = this.mapObj.getTransform(); var screenPoint = gfx.matrix.multiplyPoint(matrix, mapX, mapY); return screenPoint; // point diff --git a/gfx/demos/clock.html b/gfx/demos/clock.html index fcd6ccb579..11d3511b20 100644 --- a/gfx/demos/clock.html +++ b/gfx/demos/clock.html @@ -98,7 +98,7 @@ try { return normalizeAngle(Math.atan2(y - center.y, x - center.x) - handAngle); } catch(e) { - // supress + // suppress } return 0; }; diff --git a/gfx/demos/clockWidget.html b/gfx/demos/clockWidget.html index 4d3cca7af9..59fd13e09e 100644 --- a/gfx/demos/clockWidget.html +++ b/gfx/demos/clockWidget.html @@ -186,7 +186,7 @@ calculateAngle: function(x, y, handAngle){ try { return this.normalizeAngle(Math.atan2(y - this.center.y, x - this.center.x) - handAngle); - }catch(e){ /* supress */ } + }catch(e){ /* suppress */ } return 0; }, diff --git a/gfx/demos/clock_black.html b/gfx/demos/clock_black.html index dda939d84f..65c69d6425 100644 --- a/gfx/demos/clock_black.html +++ b/gfx/demos/clock_black.html @@ -98,7 +98,7 @@ try { return normalizeAngle(Math.atan2(y - center.y, x - center.x) - handAngle); } catch(e) { - // supress + // suppress } return 0; }; diff --git a/gfx/resources/svg2gfx.xsl b/gfx/resources/svg2gfx.xsl index 03c25a933b..8549d436d0 100644 --- a/gfx/resources/svg2gfx.xsl +++ b/gfx/resources/svg2gfx.xsl @@ -256,7 +256,7 @@ GMail, etc.) or Eric (Saugus.net, ShellTown, etc.) - + @@ -277,7 +277,7 @@ GMail, etc.) or Eric (Saugus.net, ShellTown, etc.) - + @@ -296,7 +296,7 @@ GMail, etc.) or Eric (Saugus.net, ShellTown, etc.) - + diff --git a/gfx/tests/svgweb/svgweb/COPYING.txt b/gfx/tests/svgweb/svgweb/COPYING.txt index 4cc8ba9e77..d3e33c3022 100644 --- a/gfx/tests/svgweb/svgweb/COPYING.txt +++ b/gfx/tests/svgweb/svgweb/COPYING.txt @@ -56,7 +56,7 @@ Third-Party Licenses, Versions, and Build Information: * tests/non-licensed - Everything in this directory are third-party web pages and web applications used for testing and ensuring the framework works well in the third world. No license or copyright is asserted on this material, and it should not be distributed in any downloads. An example of material that might be here would be a New York Times page modified as a test work with the SVG Web framework, or a test page to ensure a clip art could work on an eBay page. -TODO: There are alot of third party SVG files in samples/svg-files. Document where these came from, who the copyright holder is, and ensure we have a CLA on file for them. +TODO: There are a lot of third party SVG files in samples/svg-files. Document where these came from, who the copyright holder is, and ensure we have a CLA on file for them. TODO: Figure out copyright information on the *.flv and *.mp3 files that we use in our samples in samples/svg-files diff --git a/gfx3d/tests/test_overlap.html b/gfx3d/tests/test_overlap.html index e0ca85be29..d2b3d6a9f6 100644 --- a/gfx3d/tests/test_overlap.html +++ b/gfx3d/tests/test_overlap.html @@ -60,7 +60,7 @@

    Scheduler Test

    -

    There are two schedulers available in dojox.gfx3d, zOrder and BSP. zOrder is much simpler, and it performs quite well in most cases, it may fail in some rare cases, for example: two triangles share the same two vertice, and have the same Z value of the third vertex, in this case, they have the same z-order. They are rendered in arbitary order. In this case, BSP is the rescure.

    +

    There are two schedulers available in dojox.gfx3d, zOrder and BSP. zOrder is much simpler, and it performs quite well in most cases, it may fail in some rare cases, for example: two triangles share the same two vertice, and have the same Z value of the third vertex, in this case, they have the same z-order. They are rendered in arbitrary order. In this case, BSP is the rescure.

    Current render: default

     

    diff --git a/grid/_Grid.js b/grid/_Grid.js index 7289b22d55..a5b8faef8b 100644 --- a/grid/_Grid.js +++ b/grid/_Grid.js @@ -226,7 +226,7 @@ define([ height: '', // structure: dojox.grid.__ViewDef|dojox.grid.__ViewDef[]|dojox.grid.__CellDef[]|Array[dojox.grid.__CellDef[]] - // View layout defintion. + // View layout definition. structure: null, // elasticView: Integer diff --git a/grid/_View.js b/grid/_View.js index 57bbb946c4..d384b3dd93 100644 --- a/grid/_View.js +++ b/grid/_View.js @@ -116,7 +116,7 @@ define([ this.simpleStructure = Boolean(vs.cells.length == 1); // bookkeeping this.testFlexCells(); - // accomodate new structure + // accommodate new structure this.updateStructure(); }, diff --git a/grid/enhanced/_FocusManager.js b/grid/enhanced/_FocusManager.js index b0328f1e46..f709810b2d 100644 --- a/grid/enhanced/_FocusManager.js +++ b/grid/enhanced/_FocusManager.js @@ -283,7 +283,7 @@ return declare("dojox.grid.enhanced._FocusManager", _FocusManager, { }, placeArea: function(name, pos, otherAreaName){ // summary: - // Place the area refered by *name* at some logical position relative to an existing area. + // Place the area referred by *name* at some logical position relative to an existing area. // example: // placeArea("myarea","before"|"after",...) // placeArea("myarea","below"|"above",...) diff --git a/grid/enhanced/plugins/filter/FilterDefDialog.js b/grid/enhanced/plugins/filter/FilterDefDialog.js index e48f0946b9..ae1bc69c4d 100644 --- a/grid/enhanced/plugins/filter/FilterDefDialog.js +++ b/grid/enhanced/plugins/filter/FilterDefDialog.js @@ -1103,7 +1103,7 @@ var FilterDefDialog = declare("dojox.grid.enhanced.plugins.filter.FilterDefDialo }, showDialog: function(/* int */colIndex){ // summary: - // Show the filter defintion dialog. + // Show the filter definition dialog. this._defPane.show(); this.plugin.filterStatusTip.closeDialog(); this._prepareDialog(colIndex); diff --git a/grid/tests/test_grid_themes.html b/grid/tests/test_grid_themes.html index 485ad58696..1733ee1162 100644 --- a/grid/tests/test_grid_themes.html +++ b/grid/tests/test_grid_themes.html @@ -117,7 +117,7 @@
    Simple Claro DataGrid(currently an EnhancedGrid without any feature plugins) ]; -
    A "regular" Grid from markup (no table defintion, nihilo theme)
    +
    A "regular" Grid from markup (no table definition, nihilo theme)
    diff --git a/grid/tests/test_markup.html b/grid/tests/test_markup.html index 60a6b1bd83..decb4cea4a 100644 --- a/grid/tests/test_markup.html +++ b/grid/tests/test_markup.html @@ -72,7 +72,7 @@
    Locked views specified with tables and colgroups
    -
    A "regular" Grid from markup (no table defintion)
    +
    A "regular" Grid from markup (no table definition)