svn commit: r1787285 - in /zeppelin/site: ./ assets/themes/zeppelin/img/ assets/themes/zeppelin/js/ contribution/ contribution/zeppelinweb/ releases/

2017-03-16 Thread ahyoungryu
Author: ahyoungryu Date: Fri Mar 17 04:50:25 2017 New Revision: 1787285 URL: http://svn.apache.org/viewvc?rev=1787285&view=rev Log: (empty) Added: zeppelin/site/assets/themes/zeppelin/img/maven_default_icon.png (with props) Modified: zeppelin/site/assets.html zeppelin/site/assets/t

zeppelin git commit: [HOTFIX] Restart button raises exception in interpreter side

2017-03-16 Thread jongyoul
Repository: zeppelin Updated Branches: refs/heads/branch-0.7 4d80ec461 -> bd334d024 [HOTFIX] Restart button raises exception in interpreter side ### What is this PR for? This PR is the following one of #2140. It prevent from raising exception in interpreter side while closing interpreter. ##

zeppelin git commit: [HOTFIX] Restart button raises exception in interpreter side

2017-03-16 Thread jongyoul
Repository: zeppelin Updated Branches: refs/heads/master 36e5f6b08 -> dcee15afc [HOTFIX] Restart button raises exception in interpreter side ### What is this PR for? This PR is the following one of #2140. It prevent from raising exception in interpreter side while closing interpreter. ### Wh

svn commit: r1787283 - in /zeppelin/site/docs/0.8.0-SNAPSHOT: assets/themes/zeppelin/img/screenshots/selectForm-checkbox.png manual/dynamicform.html

2017-03-16 Thread ahyoungryu
Author: ahyoungryu Date: Fri Mar 17 04:32:10 2017 New Revision: 1787283 URL: http://svn.apache.org/viewvc?rev=1787283&view=rev Log: (empty) Added: zeppelin/site/docs/0.8.0-SNAPSHOT/assets/themes/zeppelin/img/screenshots/selectForm-checkbox.png (with props) Modified: zeppelin/site/docs

zeppelin git commit: [gh-pages][ZEPPELIN-2209, 2110] Show 'INTERPRETER' type & Add pagination

2017-03-16 Thread ahyoungryu
Repository: zeppelin Updated Branches: refs/heads/gh-pages 97ac8e5b1 -> 57ac6ebfc [gh-pages][ZEPPELIN-2209, 2110] Show 'INTERPRETER' type & Add pagination ### What is this PR for? After #2037 merged, we can see `INTERPRETER` type in Helium menu. So for the consistency, it'll be better we can

zeppelin git commit: [ZEPPELIN-2215] Progress bar for Spell execution

2017-03-16 Thread ahyoungryu
Repository: zeppelin Updated Branches: refs/heads/master dcf2c7a2c -> 36e5f6b08 [ZEPPELIN-2215] Progress bar for Spell execution ### What is this PR for? Add progress bar for spell execution. - Used `RUNNING` state to display progress bar - Decided not to display `{number}%` for spell, since

[05/23] zeppelin git commit: [ZEPPELIN-2094] Decrease npm install retry time (for branch-0.7)

2017-03-16 Thread minalee
[ZEPPELIN-2094] Decrease npm install retry time (for branch-0.7) ### What is this PR for? **This pr is for branch-0.7** It’s too delayed for npm install when computer do not connected any networks. Beacause when npm install, it has too long retry timeout. This PR is to decrease retry timeout whe

[17/23] zeppelin git commit: [WIP] [Discuss] Make use of all grouped data to draw pie chart

2017-03-16 Thread minalee
[WIP] [Discuss] Make use of all grouped data to draw pie chart ### What is this PR for? Now, grouped pie charts only uses the data from the first group With this fix- * Add data from all groups to variable d3g, so all groups could be rendered * Rewrite for loop with map and concat * Refactor some

[22/23] zeppelin git commit: [ZEPPELIN-2113] Paragraph border is not highlighted when focused

2017-03-16 Thread minalee
[ZEPPELIN-2113] Paragraph border is not highlighted when focused ### What is this PR for? https://github.com/apache/zeppelin/pull/2054 [removes `paragraph-col` css class](https://github.com/apache/zeppelin/pull/2054/files#diff-fe483b8eb5467153a772f202838dfb18L115). As a result paragraph is not h

[03/23] zeppelin git commit: [ZEPPELIN-1588]: bumping nvd3 to 1.8.5

2017-03-16 Thread minalee
[ZEPPELIN-1588]: bumping nvd3 to 1.8.5 ### What is this PR for? * bump nvd3 to 1.8.5 (and remove depecrated functions) * display percentage in pie chart [solve ZEPPELIN-1891] NB: visualization-scatterchart.js's tooltip content generator has been updated to stop using depecrated tooltip property

[04/23] zeppelin git commit: [ZEPPELIN-2166] HeliumBundleFactoty can't transfile imported es6+

2017-03-16 Thread minalee
[ZEPPELIN-2166] HeliumBundleFactoty can't transfile imported es6+ Currently, we don't use any preset. This cause error messages like when a helium package imports another packages which include es6+ syntax. ``` SyntaxError: Unexpected token import at helium.service.js:36 at angular.js:109

[20/23] zeppelin git commit: [ZEPPELIN-2124] Missing dependencies array in interpreter.json after upgrade from 0.6.2 to 0.7.0

2017-03-16 Thread minalee
[ZEPPELIN-2124] Missing dependencies array in interpreter.json after upgrade from 0.6.2 to 0.7.0 ### What is this PR for? If there is no `dependencies` field specified in `interpreter.json`, front-end throws error because it tries to push new element to undefined variable. This PR fixes this is

[13/23] zeppelin git commit: [ZEPPELIN-2075] Can't stop infinite `while` statement in pyspark Interpreter.

2017-03-16 Thread minalee
[ZEPPELIN-2075] Can't stop infinite `while` statement in pyspark Interpreter. ### What is this PR for? If following code runs with Pyspark Interpreter, there is no way to cancel except Zeppelin Server restart. ``` %spark.pyspark import time while True: time.sleep(1) print("running..") ``

[12/23] zeppelin git commit: [ZEPPELIN-2202] Disable personalized mode btn when note is running (branch-0.7)

2017-03-16 Thread minalee
[ZEPPELIN-2202] Disable personalized mode btn when note is running (branch-0.7) ### What is this PR for? Disable the personalized mode button when a note is running. - The same fix with https://github.com/apache/zeppelin/pull/2108 for branch-0.7 - CI failure might be related with https://github.

[15/23] zeppelin git commit: ZEPPELIN-2241: JDBC interpreter throws npe on connecting to any db that has a schema with "null" name

2017-03-16 Thread minalee
ZEPPELIN-2241: JDBC interpreter throws npe on connecting to any db that has a schema with "null" name A few sentences describing the overall goals of the pull request's commits. First time? Check out the contributing guide - https://zeppelin.apache.org/contribution/contributions.html Prevents J

[19/23] zeppelin git commit: [HOTFIX][ZEPPELIN-2037][ZEPPELIN-1832] "Restart" button does not work

2017-03-16 Thread minalee
[HOTFIX][ZEPPELIN-2037][ZEPPELIN-1832] "Restart" button does not work ### What is this PR for? Fixing restarting interpreters work correctly. All restart buttons runs restarting only user's interpreter instance including "scoped" and "isolated". If you shutdown the server, Zeppelin terminates al

[02/23] zeppelin git commit: [ZEPPELIN-2130][Doc]Do not use web development port

2017-03-16 Thread minalee
[ZEPPELIN-2130][Doc]Do not use web development port ### What is this PR for? If user uses web application development port such like 9000 which is default value, Zeppelin is not working because of this [line](https://github.com/apache/zeppelin/blob/master/zeppelin-web/src/components/baseUrl/base

[06/23] zeppelin git commit: [ZEPPELIN-2162] [ZEPPELIN-2142] Make travis_check.py work with fork under organization, and show guidance if travis is not configured

2017-03-16 Thread minalee
[ZEPPELIN-2162] [ZEPPELIN-2142] Make travis_check.py work with fork under organization, and show guidance if travis is not configured ### What is this PR for? When contributor uses zeppelin fork under organization, Jenkins can't check it with current travis_check.py. This PR updates travis_che

[09/23] zeppelin git commit: [ZEPPELIN-2172] Redirect to home if notebook authentication fails in realtime

2017-03-16 Thread minalee
[ZEPPELIN-2172] Redirect to home if notebook authentication fails in realtime ### What is this PR for? Redirect to home page, if a user declines the access failure message on a notebook ### What type of PR is it? [Bug Fix] ### What is the Jira issue? * [ZEPPELIN-2172](https://issues.apache.org/

[10/23] zeppelin git commit: ZEPPELIN-2199: Fix lapply issue in sparkR

2017-03-16 Thread minalee
ZEPPELIN-2199: Fix lapply issue in sparkR ### What is this PR for? Function createRDDFromArray used for creating R RDD expects a JavaSparkContext object instead of spark context. This PR address that concern. ### What type of PR is it? Bug Fix ### Todos * [ ] - Task ### What is the Jira issue?

[14/23] zeppelin git commit: Fix CI build failure on branch-0.7

2017-03-16 Thread minalee
Fix CI build failure on branch-0.7 ### What is this PR for? CI build is failing on `branch-0.7`. This PR cherry-pick some necessary commits from https://github.com/apache/zeppelin/pull/2003 https://github.com/apache/zeppelin/pull/2081 and a commit (3ae8760) fixes changes made by https://github

[21/23] zeppelin git commit: [ZEPPELIN-2179] "clear output" paragraph doesn't work in personalized mode (branch-0.7)

2017-03-16 Thread minalee
[ZEPPELIN-2179] "clear output" paragraph doesn't work in personalized mode (branch-0.7) ### What is this PR for? `clear output` (`cmd` + `opt` + `L`) doesn't work in the personalized mode. - CI failure might be related with https://github.com/apache/zeppelin/pull/2103 ### What type of PR is it

[08/23] zeppelin git commit: [HOTFIX][ZEPPELIN-2178] Prevent from cleaning output in "Personalized Mode"

2017-03-16 Thread minalee
[HOTFIX][ZEPPELIN-2178] Prevent from cleaning output in "Personalized Mode" Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/42385220 Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/42385220 Diff: http://git-wi

[01/23] zeppelin git commit: [ZEPPELIN-1964] Layout info is lost after refresh

2017-03-16 Thread minalee
Repository: zeppelin Updated Branches: refs/heads/branch-0.7 de65886f1 -> 4d80ec461 [ZEPPELIN-1964] Layout info is lost after refresh ### What is this PR for? This PR is for `branch-0.7` of https://github.com/apache/zeppelin/pull/2053. ### What type of PR is it? Bug Fix ### What is the Jira

[18/23] zeppelin git commit: [ZEPPELIN-2175] Jdbc interpreter sometime doesn't show detailed error message

2017-03-16 Thread minalee
[ZEPPELIN-2175] Jdbc interpreter sometime doesn't show detailed error message ### What is this PR for? Zeppelin's JDBC interpreter sometimes doesn't show detailed error message on the notebook ui. It shows only plain "ERROR" text near run button in case of failure. User has to check JDBC interpr

[11/23] zeppelin git commit: ZEPPELIN-2219 Apache Ignite version updated to 1.9

2017-03-16 Thread minalee
ZEPPELIN-2219 Apache Ignite version updated to 1.9 ### What is this PR for? Apache Ignite version update to 1.9 in Ignite interpreter ### What type of PR is it? [Improvement] ### What is the Jira issue? ZEPPELIN-2219 Author: agura Closes #2101 from agura/ZEPPELIN-2219 and squashes the followi

[23/23] zeppelin git commit: [ZEPPELIN-2234][BUG] Can't display the same chart again (branch-0.7)

2017-03-16 Thread minalee
[ZEPPELIN-2234][BUG] Can't display the same chart again (branch-0.7) ### What is this PR for? Can't display the same chart again. I attached a screenshot. - this is the same fix with https://github.com/apache/zeppelin/pull/2110 - except refactoring PR - based on branch-0.7 and - CI failure mig

[07/23] zeppelin git commit: [ZEPPELIN-2139] Interpreters based on scala_2.11 aren't installed correctly

2017-03-16 Thread minalee
[ZEPPELIN-2139] Interpreters based on scala_2.11 aren't installed correctly pom variables such as `${scala.version}` are not replaced to value when you do `mvn install`. This makes leaf poms to look for this value in parent pom, which is always `2.10.5` for `${scala.version}` and it causes scala

[16/23] zeppelin git commit: [ZEPPELIN-2253] Piechart won't render when column selected as 'key' is changed

2017-03-16 Thread minalee
[ZEPPELIN-2253] Piechart won't render when column selected as 'key' is changed ### What is this PR for? * Fixes issue with pie chart rendering, if user changes pie chart's domain * When pie chart's key(domain) is changed, this error is logged: 'Uncaught TypeError: arcs[idx] is not a function at

[zeppelin] Git Push Summary [forced push!] [Forced Update!]

2017-03-16 Thread ahyoungryu
Repository: zeppelin Updated Branches: refs/heads/branch-0.7 4d80ec461 -> de65886f1 (forced update)

zeppelin git commit: [ZEPPELIN-2060] Make dynamic select form turn on or off using checkbox

2017-03-16 Thread ahyoungryu
Repository: zeppelin Updated Branches: refs/heads/master a47ff95ed -> dcf2c7a2c [ZEPPELIN-2060] Make dynamic select form turn on or off using checkbox ### What is this PR for? I added "Auto Run" checkbox for select dynamic form to make user turn on / off automatic running after the form value

zeppelin git commit: [ZEPPELIN-2234][BUG] Can't display the same chart again (branch-0.7)

2017-03-16 Thread moon
Repository: zeppelin Updated Branches: refs/heads/branch-0.7 000900faf -> 4d80ec461 [ZEPPELIN-2234][BUG] Can't display the same chart again (branch-0.7) ### What is this PR for? Can't display the same chart again. I attached a screenshot. - this is the same fix with https://github.com/apache

zeppelin git commit: [ZEPPELIN-2113] Paragraph border is not highlighted when focused

2017-03-16 Thread moon
Repository: zeppelin Updated Branches: refs/heads/master f9a8a6f6e -> a47ff95ed [ZEPPELIN-2113] Paragraph border is not highlighted when focused ### What is this PR for? https://github.com/apache/zeppelin/pull/2054 [removes `paragraph-col` css class](https://github.com/apache/zeppelin/pull/20

zeppelin git commit: [ZEPPELIN-2113] Paragraph border is not highlighted when focused

2017-03-16 Thread moon
Repository: zeppelin Updated Branches: refs/heads/branch-0.7 75cf72e9b -> 000900faf [ZEPPELIN-2113] Paragraph border is not highlighted when focused ### What is this PR for? https://github.com/apache/zeppelin/pull/2054 [removes `paragraph-col` css class](https://github.com/apache/zeppelin/pul

zeppelin git commit: [ZEPPELIN-2179] "clear output" paragraph doesn't work in personalized mode (branch-0.7)

2017-03-16 Thread jongyoul
Repository: zeppelin Updated Branches: refs/heads/branch-0.7 56fa8b534 -> 75cf72e9b [ZEPPELIN-2179] "clear output" paragraph doesn't work in personalized mode (branch-0.7) ### What is this PR for? `clear output` (`cmd` + `opt` + `L`) doesn't work in the personalized mode. - CI failure might

zeppelin git commit: [ZEPPELIN-2124] Missing dependencies array in interpreter.json after upgrade from 0.6.2 to 0.7.0

2017-03-16 Thread jongyoul
Repository: zeppelin Updated Branches: refs/heads/branch-0.7 adf2b12e9 -> 56fa8b534 [ZEPPELIN-2124] Missing dependencies array in interpreter.json after upgrade from 0.6.2 to 0.7.0 ### What is this PR for? If there is no `dependencies` field specified in `interpreter.json`, front-end throws

zeppelin git commit: [ZEPPELIN-2124] Missing dependencies array in interpreter.json after upgrade from 0.6.2 to 0.7.0

2017-03-16 Thread jongyoul
Repository: zeppelin Updated Branches: refs/heads/master 970b8117a -> f9a8a6f6e [ZEPPELIN-2124] Missing dependencies array in interpreter.json after upgrade from 0.6.2 to 0.7.0 ### What is this PR for? If there is no `dependencies` field specified in `interpreter.json`, front-end throws erro

zeppelin git commit: [HOTFIX][ZEPPELIN-2037][ZEPPELIN-1832] "Restart" button does not work

2017-03-16 Thread jongyoul
Repository: zeppelin Updated Branches: refs/heads/master dc8c4dbf1 -> 970b8117a [HOTFIX][ZEPPELIN-2037][ZEPPELIN-1832] "Restart" button does not work ### What is this PR for? Fixing restarting interpreters work correctly. All restart buttons runs restarting only user's interpreter instance in

zeppelin git commit: [HOTFIX][ZEPPELIN-2037][ZEPPELIN-1832] "Restart" button does not work

2017-03-16 Thread jongyoul
Repository: zeppelin Updated Branches: refs/heads/branch-0.7 ae45495cf -> adf2b12e9 [HOTFIX][ZEPPELIN-2037][ZEPPELIN-1832] "Restart" button does not work ### What is this PR for? Fixing restarting interpreters work correctly. All restart buttons runs restarting only user's interpreter instanc

zeppelin git commit: Revert "[ZEPPELIN-2230] clear bower_contents if bower.json changed"

2017-03-16 Thread jongyoul
Repository: zeppelin Updated Branches: refs/heads/master d0fc54bc7 -> dc8c4dbf1 Revert "[ZEPPELIN-2230] clear bower_contents if bower.json changed" This reverts commit a716308ce07cc09106048464f5f76711f9b31dfb. Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo Commit: http://git-w

zeppelin git commit: [ZEPPELIN-2175] Jdbc interpreter sometime doesn't show detailed error message

2017-03-16 Thread prabhjyotsingh
Repository: zeppelin Updated Branches: refs/heads/master a2cd4ae4e -> d0fc54bc7 [ZEPPELIN-2175] Jdbc interpreter sometime doesn't show detailed error message ### What is this PR for? Zeppelin's JDBC interpreter sometimes doesn't show detailed error message on the notebook ui. It shows only pl

zeppelin git commit: [ZEPPELIN-2175] Jdbc interpreter sometime doesn't show detailed error message

2017-03-16 Thread prabhjyotsingh
Repository: zeppelin Updated Branches: refs/heads/branch-0.7 7998dd2ec -> ae45495cf [ZEPPELIN-2175] Jdbc interpreter sometime doesn't show detailed error message ### What is this PR for? Zeppelin's JDBC interpreter sometimes doesn't show detailed error message on the notebook ui. It shows onl