Repository: incubator-zeppelin Updated Branches: refs/heads/master [created] 4fac1c03e
missed 2 files Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/7c090fa3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/7c090fa3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/7c090fa3 Branch: refs/heads/master Commit: 7c090fa36f9abc5e5e6ec1c3f70b35f3c645aa56 Parents: d7b14a2 Author: Felix Cheung <[email protected]> Authored: Tue Mar 10 16:45:18 2015 -0700 Committer: Felix Cheung <[email protected]> Committed: Tue Mar 10 16:45:18 2015 -0700 ---------------------------------------------------------------------- zeppelin-web/app/index.html | 3 +++ zeppelin-web/bower.json | 12 ++++++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/7c090fa3/zeppelin-web/app/index.html ---------------------------------------------------------------------- diff --git a/zeppelin-web/app/index.html b/zeppelin-web/app/index.html index d4a7aef..d3b938b 100644 --- a/zeppelin-web/app/index.html +++ b/zeppelin-web/app/index.html @@ -36,6 +36,7 @@ limitations under the License. <link rel="stylesheet" href="bower_components/perfect-scrollbar/src/perfect-scrollbar.css" /> <link rel="stylesheet" href="bower_components/ng-sortable/dist/ng-sortable.css" /> <link rel="stylesheet" href="bower_components/angular-xeditable/dist/css/xeditable.css" /> + <link rel="stylesheet" href="bower_components/highlightjs/styles/github.css" /> <!-- endbower --> <link rel="stylesheet" href="bower_components/jquery-ui/themes/base/all.css" /> <!-- endbuild --> @@ -123,6 +124,7 @@ limitations under the License. <script src="bower_components/ace-builds/src-noconflict/mode-markdown.js"></script> <script src="bower_components/ace-builds/src-noconflict/keybinding-emacs.js"></script> <script src="bower_components/ace-builds/src-noconflict/ext-language_tools.js"></script> + <script src="bower_components/ace-builds/src-noconflict/theme-github.js"></script> <script src="bower_components/angular-ui-ace/ui-ace.js"></script> <script src="bower_components/jquery.scrollTo/jquery.scrollTo.js"></script> <script src="bower_components/d3/d3.js"></script> @@ -134,6 +136,7 @@ limitations under the License. <script src="bower_components/angular-elastic/elastic.js"></script> <script src="bower_components/angular-elastic-input/dist/angular-elastic-input.min.js"></script> <script src="bower_components/angular-xeditable/dist/js/xeditable.js"></script> + <script src="bower_components/highlightjs/highlight.pack.js"></script> <!-- endbower --> <!-- endbuild --> <!-- build:js({.tmp,app}) scripts/scripts.js --> http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/7c090fa3/zeppelin-web/bower.json ---------------------------------------------------------------------- diff --git a/zeppelin-web/bower.json b/zeppelin-web/bower.json index fe94c92..8e0ea6b 100644 --- a/zeppelin-web/bower.json +++ b/zeppelin-web/bower.json @@ -22,7 +22,8 @@ "ng-sortable": "~1.1.9", "angular-elastic": "~2.4.2", "angular-elastic-input": "~2.0.1", - "angular-xeditable" : "0.1.8" + "angular-xeditable" : "0.1.8", + "highlightjs": "~8.4.0" }, "devDependencies": { "angular-mocks": "1.3.8", @@ -39,9 +40,16 @@ "src-noconflict/mode-sql.js", "src-noconflict/mode-markdown.js", "src-noconflict/keybinding-emacs.js", - "src-noconflict/ext-language_tools.js"], + "src-noconflict/ext-language_tools.js", + "src-noconflict/theme-github.js"], "version": "1.1.8", "name": "ace-builds" + }, + "highlightjs": { + "main": ["highlight.pack.js", + "styles/github.css"], + "version": "8.4.0", + "name": "highlightjs" } } }
