diff --git a/docs/install/install.md b/docs/install/install.md index 7ae0d9002a8..e14fc7c2773 100644 --- a/docs/install/install.md +++ b/docs/install/install.md @@ -311,13 +311,13 @@ You can configure Apache Zeppelin with either **environment variables** in `conf ZEPPELIN_NOTEBOOK_HOMESCREEN zeppelin.notebook.homescreen - Display notebook IDs on the Apache Zeppelin homescreen
i.e. 2A94M5J1Z + Display note IDs on the Apache Zeppelin homescreen
i.e. 2A94M5J1Z ZEPPELIN_NOTEBOOK_HOMESCREEN_HIDE zeppelin.notebook.homescreen.hide false - Hide the notebook ID set by ZEPPELIN_NOTEBOOK_HOMESCREEN on the Apache Zeppelin homescreen.
For the further information, please read Customize your Zeppelin homepage. + Hide the note ID set by ZEPPELIN_NOTEBOOK_HOMESCREEN on the Apache Zeppelin homescreen.
For the further information, please read Customize your Zeppelin homepage. ZEPPELIN_WAR_TEMPDIR diff --git a/docs/install/virtual_machine.md b/docs/install/virtual_machine.md index d30dbb8d9ca..6456bc5de8e 100644 --- a/docs/install/virtual_machine.md +++ b/docs/install/virtual_machine.md @@ -163,7 +163,7 @@ import matplotlib.pyplot as plt import numpy as np import StringIO -# clear out any previous plots on this notebook +# clear out any previous plots on this note plt.clf() def show(p): diff --git a/docs/manual/notebookashomepage.md b/docs/manual/notebookashomepage.md index 1fadccec607..729f3247c69 100644 --- a/docs/manual/notebookashomepage.md +++ b/docs/manual/notebookashomepage.md @@ -1,7 +1,7 @@ --- layout: page title: "Customize Apache Zeppelin homepage" -description: "Apache Zeppelin allows you to use one of the notebooks you create as your Zeppelin Homepage. With that you can brand your Zeppelin installation, adjust the instruction to your users needs and even translate to other languages." +description: "Apache Zeppelin allows you to use one of the notes you create as your Zeppelin Homepage. With that you can brand your Zeppelin installation, adjust the instruction to your users needs and even translate to other languages." group: manual --- -
+
{{lastExecuteTime(notebookJob.unixTimeLastRun)}} - Notebook is RUNNING + Note is RUNNING - Notebook is READY + Note is READY diff --git a/zeppelin-web/src/app/jobmanager/jobs/job-progressBar.html b/zeppelin-web/src/app/jobmanager/jobs/job-progressBar.html index 11e3c172e10..00b290bac17 100644 --- a/zeppelin-web/src/app/jobmanager/jobs/job-progressBar.html +++ b/zeppelin-web/src/app/jobmanager/jobs/job-progressBar.html @@ -12,8 +12,8 @@ limitations under the License. --> -
-
+ @@ -130,7 +130,7 @@

class="btn btn-default btn-xs" ng-click="removeNote(note.id)" ng-hide="viewOnly" - tooltip-placement="bottom" tooltip="Remove the notebook"> + tooltip-placement="bottom" tooltip="Remove this note"> diff --git a/zeppelin-web/src/app/notebook/notebook.controller.js b/zeppelin-web/src/app/notebook/notebook.controller.js index f2aa67d2e86..6255d73218d 100644 --- a/zeppelin-web/src/app/notebook/notebook.controller.js +++ b/zeppelin-web/src/app/notebook/notebook.controller.js @@ -86,7 +86,7 @@ /** Init the new controller */ var initNotebook = function() { - websocketMsgSrv.getNotebook($routeParams.noteId); + websocketMsgSrv.getNote($routeParams.noteId); websocketMsgSrv.listRevisionHistory($routeParams.noteId); var currentRoute = $route.current; if (currentRoute) { @@ -145,10 +145,10 @@ BootstrapDialog.confirm({ closable: true, title: '', - message: 'Do you want to delete this notebook?', + message: 'Do you want to delete this note?', callback: function(result) { if (result) { - websocketMsgSrv.deleteNotebook(noteId); + websocketMsgSrv.deleteNote(noteId); $location.path('/'); } } @@ -156,7 +156,7 @@ }; //Export notebook - $scope.exportNotebook = function() { + $scope.exportNote = function() { var jsonContent = JSON.stringify($scope.note); saveAsService.saveAs(jsonContent, $scope.note.name, 'json'); }; @@ -166,10 +166,10 @@ BootstrapDialog.confirm({ closable: true, title: '', - message: 'Do you want to clone this notebook?', + message: 'Do you want to clone this note?', callback: function(result) { if (result) { - websocketMsgSrv.cloneNotebook(noteId); + websocketMsgSrv.cloneNote(noteId); $location.path('/'); } } @@ -177,14 +177,14 @@ }; // checkpoint/commit notebook - $scope.checkpointNotebook = function(commitMessage) { + $scope.checkpointNote = function(commitMessage) { BootstrapDialog.confirm({ closable: true, title: '', - message: 'Commit notebook to current repository?', + message: 'Commit note to current repository?', callback: function(result) { if (result) { - websocketMsgSrv.checkpointNotebook($routeParams.noteId, commitMessage); + websocketMsgSrv.checkpointNote($routeParams.noteId, commitMessage); } } }); @@ -336,13 +336,13 @@ if (config) { $scope.note.config = config; } - websocketMsgSrv.updateNotebook($scope.note.id, $scope.note.name, $scope.note.config); + websocketMsgSrv.updateNote($scope.note.id, $scope.note.name, $scope.note.config); }; /** Update the note name */ $scope.sendNewName = function() { if ($scope.note.name) { - websocketMsgSrv.updateNotebook($scope.note.id, $scope.note.name, $scope.note.config); + websocketMsgSrv.updateNote($scope.note.id, $scope.note.name, $scope.note.config); } }; diff --git a/zeppelin-web/src/components/arrayOrderingSrv/arrayOrdering.service.js b/zeppelin-web/src/components/arrayOrderingSrv/arrayOrdering.service.js index 3f7d1b830db..7e23ab7adb6 100644 --- a/zeppelin-web/src/components/arrayOrderingSrv/arrayOrdering.service.js +++ b/zeppelin-web/src/components/arrayOrderingSrv/arrayOrdering.service.js @@ -19,7 +19,7 @@ function arrayOrderingSrv() { var arrayOrderingSrv = this; - this.notebookListOrdering = function(note) { + this.noteListOrdering = function(note) { return arrayOrderingSrv.getNoteName(note); }; diff --git a/zeppelin-web/src/components/navbar/navbar-notebookList-elem.html b/zeppelin-web/src/components/navbar/navbar-noteList-elem.html similarity index 90% rename from zeppelin-web/src/components/navbar/navbar-notebookList-elem.html rename to zeppelin-web/src/components/navbar/navbar-noteList-elem.html index 590154f2e23..6d44b9637e9 100644 --- a/zeppelin-web/src/components/navbar/navbar-notebookList-elem.html +++ b/zeppelin-web/src/components/navbar/navbar-noteList-elem.html @@ -26,9 +26,9 @@

diff --git a/zeppelin-web/src/components/navbar/navbar.controller.js b/zeppelin-web/src/components/navbar/navbar.controller.js index 8586960af1c..4778669dc6a 100644 --- a/zeppelin-web/src/components/navbar/navbar.controller.js +++ b/zeppelin-web/src/components/navbar/navbar.controller.js @@ -22,7 +22,7 @@ '$http', '$routeParams', '$location', - 'notebookListDataFactory', + 'noteListDataFactory', 'baseUrlSrv', 'websocketMsgSrv', 'arrayOrderingSrv', @@ -30,14 +30,14 @@ ]; function NavCtrl($scope, $rootScope, $http, $routeParams, $location, - notebookListDataFactory, baseUrlSrv, websocketMsgSrv, + noteListDataFactory, baseUrlSrv, websocketMsgSrv, arrayOrderingSrv, searchService) { var vm = this; vm.arrayOrderingSrv = arrayOrderingSrv; vm.connected = websocketMsgSrv.isConnected(); vm.isActive = isActive; vm.logout = logout; - vm.notes = notebookListDataFactory; + vm.notes = noteListDataFactory; vm.search = search; vm.searchForm = searchService; vm.showLoginWindow = showLoginWindow; @@ -57,7 +57,7 @@ } function initController() { - $scope.isDrawNavbarNotebookList = false; + $scope.isDrawNavbarNoteList = false; angular.element('#notebook-list').perfectScrollbar({suppressScrollX: true}); angular.element(document).click(function() { @@ -73,7 +73,7 @@ } function loadNotes() { - websocketMsgSrv.getNotebookList(); + websocketMsgSrv.getNoteList(); } function logout() { @@ -113,7 +113,7 @@ */ $scope.$on('setNoteMenu', function(event, notes) { - notebookListDataFactory.setNotes(notes); + noteListDataFactory.setNotes(notes); }); $scope.$on('setConnectedStatus', function(event, param) { @@ -129,11 +129,11 @@ */ angular.element(document).ready(function() { angular.element('.notebook-list-dropdown').on('show.bs.dropdown', function() { - $scope.isDrawNavbarNotebookList = true; + $scope.isDrawNavbarNoteList = true; }); angular.element('.notebook-list-dropdown').on('hide.bs.dropdown', function() { - $scope.isDrawNavbarNotebookList = false; + $scope.isDrawNavbarNoteList = false; }); }); } diff --git a/zeppelin-web/src/components/navbar/navbar.html b/zeppelin-web/src/components/navbar/navbar.html index 8851409b025..d2ec7286fa7 100644 --- a/zeppelin-web/src/components/navbar/navbar.html +++ b/zeppelin-web/src/components/navbar/navbar.html @@ -30,10 +30,10 @@ @@ -57,7 +57,7 @@ id="searchTermId" ng-disabled="!navbar.connected" class="form-control" - placeholder="Search your Notebooks" + placeholder="Search your Notes" />