You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2013/08/13 01:57:45 UTC

[1/2] git commit: Correct module name in comment

Updated Branches:
  refs/heads/master 80d22da5e -> bb255c0a1


Correct module name in comment


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/bb255c0a
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/bb255c0a
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/bb255c0a

Branch: refs/heads/master
Commit: bb255c0a144a19939d357c0f071570eea272c918
Parents: 85e53f9
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Mon Aug 12 13:32:40 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Mon Aug 12 16:57:41 2013 -0700

----------------------------------------------------------------------
 .../main/coffeescript/META-INF/modules/t5/core/validation.coffee   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/bb255c0a/tapestry-core/src/main/coffeescript/META-INF/modules/t5/core/validation.coffee
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/coffeescript/META-INF/modules/t5/core/validation.coffee b/tapestry-core/src/main/coffeescript/META-INF/modules/t5/core/validation.coffee
index 21fd596..4547c05 100644
--- a/tapestry-core/src/main/coffeescript/META-INF/modules/t5/core/validation.coffee
+++ b/tapestry-core/src/main/coffeescript/META-INF/modules/t5/core/validation.coffee
@@ -12,7 +12,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-# ## t5/core/translator
+# ## t5/core/validation
 #
 # Support for Tapestry's built-in set of translators and validators.
 #


[2/2] git commit: Handle case where RequireJS passes error object w/o a modules property

Posted by hl...@apache.org.
Handle case where RequireJS passes error object w/o a modules property


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/85e53f92
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/85e53f92
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/85e53f92

Branch: refs/heads/master
Commit: 85e53f928e4a52cc8fbf6012f95d094a35f9d588
Parents: 80d22da
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Mon Aug 12 11:50:14 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Mon Aug 12 16:57:41 2013 -0700

----------------------------------------------------------------------
 .../main/coffeescript/META-INF/modules/t5/core/console.coffee   | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/85e53f92/tapestry-core/src/main/coffeescript/META-INF/modules/t5/core/console.coffee
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/coffeescript/META-INF/modules/t5/core/console.coffee b/tapestry-core/src/main/coffeescript/META-INF/modules/t5/core/console.coffee
index 694913a..6a8c0eb 100644
--- a/tapestry-core/src/main/coffeescript/META-INF/modules/t5/core/console.coffee
+++ b/tapestry-core/src/main/coffeescript/META-INF/modules/t5/core/console.coffee
@@ -169,8 +169,9 @@ define ["./dom", "underscore"],
         message += """: #{err.message}"""
 
       if err.requireType
-        message += """, modules #{err.requireModules.join(", ")}"""
-
+        modules = err.requireModules
+        if modules and modules.length > 0
+          message += """, modules #{modules.join(", ")}"""
 
       exports.error message
 


[2/2] git commit: Handle case where RequireJS passes error object w/o a modules property

Posted by hl...@apache.org.
Handle case where RequireJS passes error object w/o a modules property


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/85e53f92
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/85e53f92
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/85e53f92

Branch: refs/heads/master
Commit: 85e53f928e4a52cc8fbf6012f95d094a35f9d588
Parents: 80d22da
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Mon Aug 12 11:50:14 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Mon Aug 12 16:57:41 2013 -0700

----------------------------------------------------------------------
 .../main/coffeescript/META-INF/modules/t5/core/console.coffee   | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/85e53f92/tapestry-core/src/main/coffeescript/META-INF/modules/t5/core/console.coffee
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/coffeescript/META-INF/modules/t5/core/console.coffee b/tapestry-core/src/main/coffeescript/META-INF/modules/t5/core/console.coffee
index 694913a..6a8c0eb 100644
--- a/tapestry-core/src/main/coffeescript/META-INF/modules/t5/core/console.coffee
+++ b/tapestry-core/src/main/coffeescript/META-INF/modules/t5/core/console.coffee
@@ -169,8 +169,9 @@ define ["./dom", "underscore"],
         message += """: #{err.message}"""
 
       if err.requireType
-        message += """, modules #{err.requireModules.join(", ")}"""
-
+        modules = err.requireModules
+        if modules and modules.length > 0
+          message += """, modules #{modules.join(", ")}"""
 
       exports.error message