Repository: kylin Updated Branches: refs/heads/v1.6.0-rc1 c780e43ea -> eaaaf2f7b
KYLIN-2114 remove builder dictionary config to cubeConfig Project: http://git-wip-us.apache.org/repos/asf/kylin/repo Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/eaaaf2f7 Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/eaaaf2f7 Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/eaaaf2f7 Branch: refs/heads/v1.6.0-rc1 Commit: eaaaf2f7bbe3ec617cd827eeeac31cdad8e8950e Parents: c780e43 Author: Jason <jiat...@163.com> Authored: Tue Nov 1 19:15:48 2016 +0800 Committer: Jason <jiat...@163.com> Committed: Tue Nov 1 19:16:21 2016 +0800 ---------------------------------------------------------------------- webapp/app/js/model/cubeConfig.js | 5 ++++- webapp/app/partials/cubeDesigner/advanced_settings.html | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kylin/blob/eaaaf2f7/webapp/app/js/model/cubeConfig.js ---------------------------------------------------------------------- diff --git a/webapp/app/js/model/cubeConfig.js b/webapp/app/js/model/cubeConfig.js index a77ab4f..87413dc 100644 --- a/webapp/app/js/model/cubeConfig.js +++ b/webapp/app/js/model/cubeConfig.js @@ -104,5 +104,8 @@ KylinApp.constant('cubeConfig', { rowKeyShardOptions:[ true,false ], - statusNeedNofity:['ERROR', 'DISCARDED', 'SUCCEED'] + statusNeedNofity:['ERROR', 'DISCARDED', 'SUCCEED'], + buildDictionaries:[ + {name:"Global Dictionary", value:"org.apache.kylin.dict.GlobalDictionaryBuilder"} + ] }); http://git-wip-us.apache.org/repos/asf/kylin/blob/eaaaf2f7/webapp/app/partials/cubeDesigner/advanced_settings.html ---------------------------------------------------------------------- diff --git a/webapp/app/partials/cubeDesigner/advanced_settings.html b/webapp/app/partials/cubeDesigner/advanced_settings.html index a1e3c80..0a9dc48 100755 --- a/webapp/app/partials/cubeDesigner/advanced_settings.html +++ b/webapp/app/partials/cubeDesigner/advanced_settings.html @@ -370,8 +370,8 @@ <div class="col-xs-12 col-sm-6"> <select class="form-control" chosen ng-model="newDictionaries.builder" + ng-options="item.value as item.name for item in cubeConfig.buildDictionaries" required> - <option value="org.apache.kylin.dict.GlobalDictionaryBuilder">Global Dictionary</option> <option value="">-- Select a builder class--</option> </select> </div>