Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2018-03-28 10:10:17 +0000
committerAlexander Kurtakov2018-03-28 10:10:17 +0000
commita2dfce1d07581309804ed8fb64ee6c5c01d1d492 (patch)
tree01af11063d7f525773e08604790cd2911ac4ae69
parentc4196a90df056cb7651aa577805e80e0e1ff17dd (diff)
downloadeclipse.platform.ua-a2dfce1d07581309804ed8fb64ee6c5c01d1d492.tar.gz
eclipse.platform.ua-a2dfce1d07581309804ed8fb64ee6c5c01d1d492.tar.xz
eclipse.platform.ua-a2dfce1d07581309804ed8fb64ee6c5c01d1d492.zip
All contain framesets so all other doctypes (some even conditional on browser type?) are irrelevant. Fix warning about improper comments while at it. Change-Id: I3ca73fb83a8aa2a917ac6b278d471f0d0c397270 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-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