You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2016/02/01 18:52:39 UTC

[33/36] brooklyn-ui git commit: rename non-java mentions of classes which have been moved -- in plans, comments, and docs

rename non-java mentions of classes which have been moved -- in plans, comments, and docs

minor other tidies, to policies docs, and camp Service.toString, to remove prefixes rather than just change them;
in docs, we've also updated `package_path`, policies docs, links, and confirmed the build of api docs and catalog


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-ui/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-ui/commit/a196bec3
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-ui/tree/a196bec3
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-ui/diff/a196bec3

Branch: refs/heads/0.8.0-incubating
Commit: a196bec3209249d835ac6e016fc379b71b9e1159
Parents: 1bcc75f
Author: Alex Heneveld <al...@cloudsoftcorp.com>
Authored: Mon Aug 31 17:20:30 2015 +0100
Committer: Alex Heneveld <al...@cloudsoftcorp.com>
Committed: Tue Sep 1 12:05:39 2015 +0100

----------------------------------------------------------------------
 usage/jsgui/src/test/javascript/specs/model/application-spec.js | 2 +-
 usage/jsgui/src/test/javascript/specs/model/entity-spec.js      | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-ui/blob/a196bec3/usage/jsgui/src/test/javascript/specs/model/application-spec.js
----------------------------------------------------------------------
diff --git a/usage/jsgui/src/test/javascript/specs/model/application-spec.js b/usage/jsgui/src/test/javascript/specs/model/application-spec.js
index 175ee74..1b76e3b 100644
--- a/usage/jsgui/src/test/javascript/specs/model/application-spec.js
+++ b/usage/jsgui/src/test/javascript/specs/model/application-spec.js
@@ -71,7 +71,7 @@ define([
         it("loads the entity from fixtures/application-spec.json", function () {
             var entity = new Entity.Model(spec.get("entities")[0])
             expect(entity.get("name")).toEqual('Vanilla Java App')
-            expect(entity.get("type")).toEqual('brooklyn.entity.java.VanillaJavaApp')
+            expect(entity.get("type")).toEqual('org.apache.brooklyn.entity.java.VanillaJavaApp')
             expect(entity.getConfigByName('initialSize')).toEqual('1')
             expect(entity.getConfigByName('creationScriptUrl')).toEqual('http://my.brooklyn.io/storage/foo.sql')
         })

http://git-wip-us.apache.org/repos/asf/brooklyn-ui/blob/a196bec3/usage/jsgui/src/test/javascript/specs/model/entity-spec.js
----------------------------------------------------------------------
diff --git a/usage/jsgui/src/test/javascript/specs/model/entity-spec.js b/usage/jsgui/src/test/javascript/specs/model/entity-spec.js
index 8ea9c9e..6b3c80e 100644
--- a/usage/jsgui/src/test/javascript/specs/model/entity-spec.js
+++ b/usage/jsgui/src/test/javascript/specs/model/entity-spec.js
@@ -31,8 +31,8 @@ define([
             expect(entityFixture.length).toEqual(1)
             var entity = entityFixture.at(0)
             expect(entity.get("name")).toEqual('Vanilla Java App')
-            expect(entity.get("type")).toEqual('brooklyn.entity.java.VanillaJavaApp')
+            expect(entity.get("type")).toEqual('org.apache.brooklyn.entity.java.VanillaJavaApp')
             expect(entity.get("config")).toEqual({})
         })
     })
-})
\ No newline at end of file
+})