You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by ki...@apache.org on 2015/12/27 22:46:26 UTC

jena git commit: JENA-1080: add HTML meta tag to force edge mode in IE

Repository: jena
Updated Branches:
  refs/heads/master 4dcab0053 -> 1bbe9ecdb


JENA-1080: add HTML meta tag to force edge mode in IE


Project: http://git-wip-us.apache.org/repos/asf/jena/repo
Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/1bbe9ecd
Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/1bbe9ecd
Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/1bbe9ecd

Branch: refs/heads/master
Commit: 1bbe9ecdb3da6517aa3346b8eb67f902a3237b32
Parents: 4dcab00
Author: Bruno P. Kinoshita <br...@yahoo.com.br>
Authored: Mon Dec 28 10:45:51 2015 +1300
Committer: Bruno P. Kinoshita <br...@yahoo.com.br>
Committed: Mon Dec 28 10:45:51 2015 +1300

----------------------------------------------------------------------
 jena-fuseki2/jena-fuseki-core/src/main/webapp/admin-logs.html    | 1 +
 jena-fuseki2/jena-fuseki-core/src/main/webapp/dataset.html       | 1 +
 jena-fuseki2/jena-fuseki-core/src/main/webapp/documentation.html | 1 +
 jena-fuseki2/jena-fuseki-core/src/main/webapp/index.html         | 1 +
 jena-fuseki2/jena-fuseki-core/src/main/webapp/manage.html        | 1 +
 jena-fuseki2/jena-fuseki-core/src/main/webapp/services.html      | 1 +
 jena-fuseki2/jena-fuseki-core/src/main/webapp/validate.html      | 1 +
 7 files changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/1bbe9ecd/jena-fuseki2/jena-fuseki-core/src/main/webapp/admin-logs.html
----------------------------------------------------------------------
diff --git a/jena-fuseki2/jena-fuseki-core/src/main/webapp/admin-logs.html b/jena-fuseki2/jena-fuseki-core/src/main/webapp/admin-logs.html
index e41d6929..10660e4 100644
--- a/jena-fuseki2/jena-fuseki-core/src/main/webapp/admin-logs.html
+++ b/jena-fuseki2/jena-fuseki-core/src/main/webapp/admin-logs.html
@@ -3,6 +3,7 @@
   <head>
     <title>Apache Jena Fuseki</title>
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
     <link href="../css/bootstrap.min.css" rel="stylesheet" media="screen">
     <link href="../css/font-awesome.min.css" rel="stylesheet" media="screen">
     <link href="../css/codemirror.css" rel="stylesheet" media="screen">

http://git-wip-us.apache.org/repos/asf/jena/blob/1bbe9ecd/jena-fuseki2/jena-fuseki-core/src/main/webapp/dataset.html
----------------------------------------------------------------------
diff --git a/jena-fuseki2/jena-fuseki-core/src/main/webapp/dataset.html b/jena-fuseki2/jena-fuseki-core/src/main/webapp/dataset.html
index e7487db..229bcfc 100644
--- a/jena-fuseki2/jena-fuseki-core/src/main/webapp/dataset.html
+++ b/jena-fuseki2/jena-fuseki-core/src/main/webapp/dataset.html
@@ -3,6 +3,7 @@
   <head>
     <title>Apache Jena Fuseki - inspect dataset</title>
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
     <link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
     <link href="css/font-awesome.min.css" rel="stylesheet" media="screen">
     <link href="css/qonsole.css" rel="stylesheet" media="screen">

http://git-wip-us.apache.org/repos/asf/jena/blob/1bbe9ecd/jena-fuseki2/jena-fuseki-core/src/main/webapp/documentation.html
----------------------------------------------------------------------
diff --git a/jena-fuseki2/jena-fuseki-core/src/main/webapp/documentation.html b/jena-fuseki2/jena-fuseki-core/src/main/webapp/documentation.html
index 5a08caf..d12f1e7 100644
--- a/jena-fuseki2/jena-fuseki-core/src/main/webapp/documentation.html
+++ b/jena-fuseki2/jena-fuseki-core/src/main/webapp/documentation.html
@@ -3,6 +3,7 @@
   <head>
     <title>Apache Jena Fuseki - documentation</title>
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
     <link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
     <link href="css/font-awesome.min.css" rel="stylesheet" media="screen">
     <link href="css/codemirror.css" rel="stylesheet" media="screen">

http://git-wip-us.apache.org/repos/asf/jena/blob/1bbe9ecd/jena-fuseki2/jena-fuseki-core/src/main/webapp/index.html
----------------------------------------------------------------------
diff --git a/jena-fuseki2/jena-fuseki-core/src/main/webapp/index.html b/jena-fuseki2/jena-fuseki-core/src/main/webapp/index.html
index 66c1611..d9aa2cb 100644
--- a/jena-fuseki2/jena-fuseki-core/src/main/webapp/index.html
+++ b/jena-fuseki2/jena-fuseki-core/src/main/webapp/index.html
@@ -3,6 +3,7 @@
   <head>
     <title>Apache Jena Fuseki</title>
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
     <link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
     <link href="css/font-awesome.min.css" rel="stylesheet" media="screen">
     <link href="css/codemirror.css" rel="stylesheet" media="screen">

http://git-wip-us.apache.org/repos/asf/jena/blob/1bbe9ecd/jena-fuseki2/jena-fuseki-core/src/main/webapp/manage.html
----------------------------------------------------------------------
diff --git a/jena-fuseki2/jena-fuseki-core/src/main/webapp/manage.html b/jena-fuseki2/jena-fuseki-core/src/main/webapp/manage.html
index aff9734..4c3d369 100644
--- a/jena-fuseki2/jena-fuseki-core/src/main/webapp/manage.html
+++ b/jena-fuseki2/jena-fuseki-core/src/main/webapp/manage.html
@@ -3,6 +3,7 @@
   <head>
     <title>Apache Jena Fuseki - manage dataset</title>
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
     <link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
     <link href="css/font-awesome.min.css" rel="stylesheet" media="screen">
     <link href="css/codemirror.css" rel="stylesheet" media="screen">

http://git-wip-us.apache.org/repos/asf/jena/blob/1bbe9ecd/jena-fuseki2/jena-fuseki-core/src/main/webapp/services.html
----------------------------------------------------------------------
diff --git a/jena-fuseki2/jena-fuseki-core/src/main/webapp/services.html b/jena-fuseki2/jena-fuseki-core/src/main/webapp/services.html
index 93c55c6..91aab57 100644
--- a/jena-fuseki2/jena-fuseki-core/src/main/webapp/services.html
+++ b/jena-fuseki2/jena-fuseki-core/src/main/webapp/services.html
@@ -3,6 +3,7 @@
   <head>
     <title>Apache Jena Fuseki - services</title>
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
     <link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
     <link href="css/font-awesome.min.css" rel="stylesheet" media="screen">
     <link href="css/codemirror.css" rel="stylesheet" media="screen">

http://git-wip-us.apache.org/repos/asf/jena/blob/1bbe9ecd/jena-fuseki2/jena-fuseki-core/src/main/webapp/validate.html
----------------------------------------------------------------------
diff --git a/jena-fuseki2/jena-fuseki-core/src/main/webapp/validate.html b/jena-fuseki2/jena-fuseki-core/src/main/webapp/validate.html
index 5d17504..d206576 100644
--- a/jena-fuseki2/jena-fuseki-core/src/main/webapp/validate.html
+++ b/jena-fuseki2/jena-fuseki-core/src/main/webapp/validate.html
@@ -3,6 +3,7 @@
   <head>
     <title>Apache Jena Fuseki - validation</title>
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
     <link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
     <link href="css/font-awesome.min.css" rel="stylesheet" media="screen">
     <link href="css/codemirror.css" rel="stylesheet" media="screen">