You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2013/06/01 03:20:01 UTC

[4/7] git commit: Have the Layout component import the core stack

Have the Layout component import the core stack


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

Branch: refs/heads/master
Commit: 650ddd5047df702ae0c4324934078042179af7ba
Parents: fac32ff
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Fri May 31 17:22:35 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Fri May 31 17:22:35 2013 -0700

----------------------------------------------------------------------
 .../test/groovy/t5/wro4j/components/Layout.groovy  |    2 +-
 .../src/test/groovy/t5/wro4j/pages/Index.groovy    |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/650ddd50/tapestry-wro4j/src/test/groovy/t5/wro4j/components/Layout.groovy
----------------------------------------------------------------------
diff --git a/tapestry-wro4j/src/test/groovy/t5/wro4j/components/Layout.groovy b/tapestry-wro4j/src/test/groovy/t5/wro4j/components/Layout.groovy
index 3ce825a..6bb4523 100644
--- a/tapestry-wro4j/src/test/groovy/t5/wro4j/components/Layout.groovy
+++ b/tapestry-wro4j/src/test/groovy/t5/wro4j/components/Layout.groovy
@@ -4,7 +4,7 @@ import org.apache.tapestry5.annotations.Import
 import org.apache.tapestry5.ioc.annotations.Inject
 import org.apache.tapestry5.services.ComponentClassResolver
 
-@Import(module = "bootstrap")
+@Import(stack="core", module = "bootstrap")
 class Layout {
 
     @Inject

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/650ddd50/tapestry-wro4j/src/test/groovy/t5/wro4j/pages/Index.groovy
----------------------------------------------------------------------
diff --git a/tapestry-wro4j/src/test/groovy/t5/wro4j/pages/Index.groovy b/tapestry-wro4j/src/test/groovy/t5/wro4j/pages/Index.groovy
index 78b58da..e239108 100644
--- a/tapestry-wro4j/src/test/groovy/t5/wro4j/pages/Index.groovy
+++ b/tapestry-wro4j/src/test/groovy/t5/wro4j/pages/Index.groovy
@@ -2,7 +2,7 @@ package t5.wro4j.pages
 
 import org.apache.tapestry5.annotations.Import
 
-@Import(stack = "core", module = "index", stylesheet = "index.less")
+@Import(module = "index", stylesheet = "index.less")
 class Index {