You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by mo...@apache.org on 2015/07/01 23:24:55 UTC

incubator-zeppelin git commit: [ZEPPELIN-146] Force IE to use "edge" compatible mode

Repository: incubator-zeppelin
Updated Branches:
  refs/heads/master b6f9d997f -> ae092e9dc


[ZEPPELIN-146] Force IE to use "edge" compatible mode

https://issues.apache.org/jira/browse/ZEPPELIN-146

In Microsoft internal deployment, compatible level of IE will be set to "5" for interant sites, due to group policy set by admin.
Then, some JavaScript will be broken, and home page of Zeppelin cannot be rendered.
We need to set X-UA-Compatible tag for IE to "edge" to force it use the latest IE version.

Author: Rex Xiong <pe...@microsoft.com>

Closes #134 from twilightgod/master and squashes the following commits:

c3b0145 [Rex Xiong] Force IE to use "edge" compatible mode


Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/ae092e9d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/ae092e9d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/ae092e9d

Branch: refs/heads/master
Commit: ae092e9dc3aca188eac6e6f234e8ee36dd763fac
Parents: b6f9d99
Author: Rex Xiong <pe...@microsoft.com>
Authored: Thu Jun 11 13:28:52 2015 +0800
Committer: Lee moon soo <mo...@apache.org>
Committed: Wed Jul 1 14:24:52 2015 -0700

----------------------------------------------------------------------
 zeppelin-web/app/404.html   | 1 +
 zeppelin-web/app/index.html | 1 +
 2 files changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/ae092e9d/zeppelin-web/app/404.html
----------------------------------------------------------------------
diff --git a/zeppelin-web/app/404.html b/zeppelin-web/app/404.html
index 45cc829..9b1fb4c 100644
--- a/zeppelin-web/app/404.html
+++ b/zeppelin-web/app/404.html
@@ -15,6 +15,7 @@ limitations under the License.
 <!DOCTYPE html>
 <html lang="en">
   <head>
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
     <meta charset="utf-8">
     <title>Page Not Found :(</title>
     <style>

http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/ae092e9d/zeppelin-web/app/index.html
----------------------------------------------------------------------
diff --git a/zeppelin-web/app/index.html b/zeppelin-web/app/index.html
index 2ad0e97..4d0ff08 100644
--- a/zeppelin-web/app/index.html
+++ b/zeppelin-web/app/index.html
@@ -14,6 +14,7 @@ limitations under the License.
 <!doctype html>
 <html ng-app="zeppelinWebApp" ng-controller="MainCtrl" class="no-js">
   <head>
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
     <meta charset="utf-8">
     <title></title>
     <!-- disable caches for all browser -->