Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.help.webapp/advanced/fheader.jsp15
-rw-r--r--org.eclipse.help.webapp/advanced/header.jsp17
-rw-r--r--org.eclipse.help.webapp/basic/header.jsp10
3 files changed, 16 insertions, 26 deletions
diff --git a/org.eclipse.help.webapp/advanced/fheader.jsp b/org.eclipse.help.webapp/advanced/fheader.jsp
index 5cc214f9d..9edfcc08f 100644
--- a/org.eclipse.help.webapp/advanced/fheader.jsp
+++ b/org.eclipse.help.webapp/advanced/fheader.jsp
@@ -1,5 +1,5 @@
<%--
- Copyright (c) 2000, 2009 IBM Corporation and others.
+ Copyright (c) 2000, 2018 IBM Corporation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
@@ -15,14 +15,9 @@ page import="org.eclipse.help.internal.webapp.data.*" contentType="text/html; c
request.setCharacterEncoding("UTF-8");
boolean isRTL = UrlUtil.isRTL(request, response);
String direction = isRTL?"rtl":"ltr";
-if (new RequestData(application,request, response).isMozilla()) {
-%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
-<%
-} else {
-%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
-<%
-}
-%><!------------------------------------------------------------------------------
+%>
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
+<!--
! Copyright (c) 2000, 2007 IBM Corporation and others.
! All rights reserved. This program and the accompanying materials
! are made available under the terms of the Eclipse Public License v1.0
@@ -31,4 +26,4 @@ if (new RequestData(application,request, response).isMozilla()) {
!
! Contributors:
! IBM Corporation - initial API and implementation
- -------------------------------------------------------------------------------> \ No newline at end of file
+ --> \ No newline at end of file
diff --git a/org.eclipse.help.webapp/advanced/header.jsp b/org.eclipse.help.webapp/advanced/header.jsp
index 8e435a738..0b9346c4e 100644
--- a/org.eclipse.help.webapp/advanced/header.jsp
+++ b/org.eclipse.help.webapp/advanced/header.jsp
@@ -1,5 +1,5 @@
<%--
- Copyright (c) 2000, 2009 IBM Corporation and others.
+ Copyright (c) 2000, 2018 IBM Corporation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
@@ -15,15 +15,10 @@ page import="org.eclipse.help.internal.webapp.data.*" contentType="text/html; c
request.setCharacterEncoding("UTF-8");
boolean isRTL = UrlUtil.isRTL(request, response);
String direction = isRTL?"rtl":"ltr";
-if (new RequestData(application,request, response).isMozilla()) {
-%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
-<%
-} else {
-%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<%
-}
-%><!------------------------------------------------------------------------------
- ! Copyright (c) 2000, 2007 IBM Corporation and others.
+%>
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
+<!--
+ ! Copyright (c) 2000, 2018 IBM Corporation and others.
! All rights reserved. This program and the accompanying materials
! are made available under the terms of the Eclipse Public License v1.0
! which accompanies this distribution, and is available at
@@ -31,4 +26,4 @@ if (new RequestData(application,request, response).isMozilla()) {
!
! Contributors:
! IBM Corporation - initial API and implementation
- -------------------------------------------------------------------------------> \ No newline at end of file
+ --> \ No newline at end of file
diff --git a/org.eclipse.help.webapp/basic/header.jsp b/org.eclipse.help.webapp/basic/header.jsp
index 307b69c7f..5eb481e02 100644
--- a/org.eclipse.help.webapp/basic/header.jsp
+++ b/org.eclipse.help.webapp/basic/header.jsp
@@ -1,5 +1,5 @@
<%--
- Copyright (c) 2000, 2009 IBM Corporation and others.
+ Copyright (c) 2000, 2018 IBM Corporation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
@@ -17,9 +17,9 @@
String direction = isRTL?"rtl":"ltr";
%>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<!------------------------------------------------------------------------------
- ! Copyright (c) 2000, 2004 IBM Corporation and others.
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
+<!--
+ ! Copyright (c) 2000, 2018 IBM Corporation and others.
! All rights reserved. This program and the accompanying materials
! are made available under the terms of the Eclipse Public License v1.0
! which accompanies this distribution, and is available at
@@ -27,5 +27,5 @@
!
! Contributors:
! IBM Corporation - initial API and implementation
- ------------------------------------------------------------------------------->
+ -->

Back to the top