Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDorian Birsan2003-03-25 17:34:55 +0000
committerDorian Birsan2003-03-25 17:34:55 +0000
commite65deb73b6d63421a56a021e2531a007cdb4b2fa (patch)
treebf7005093048ad38696b0595095af9c31d699404 /org.eclipse.help.webapp/basic
parentb20774009040b063ef1ce6c1dfe54ac03e93322f (diff)
downloadeclipse.platform.ua-e65deb73b6d63421a56a021e2531a007cdb4b2fa.tar.gz
eclipse.platform.ua-e65deb73b6d63421a56a021e2531a007cdb4b2fa.tar.xz
eclipse.platform.ua-e65deb73b6d63421a56a021e2531a007cdb4b2fa.zip
remove warningsv20030325R2_1
Diffstat (limited to 'org.eclipse.help.webapp/basic')
-rw-r--r--org.eclipse.help.webapp/basic/bookmarksView.jsp2
-rw-r--r--org.eclipse.help.webapp/basic/header.jsp2
-rw-r--r--org.eclipse.help.webapp/basic/help.jsp1
-rw-r--r--org.eclipse.help.webapp/basic/index.jsp1
-rw-r--r--org.eclipse.help.webapp/basic/linksView.jsp1
-rw-r--r--org.eclipse.help.webapp/basic/searchView.jsp1
-rw-r--r--org.eclipse.help.webapp/basic/tabs.jsp1
-rw-r--r--org.eclipse.help.webapp/basic/tocView.jsp1
-rw-r--r--org.eclipse.help.webapp/basic/toolbar.jsp1
-rw-r--r--org.eclipse.help.webapp/basic/view.jsp1
10 files changed, 11 insertions, 1 deletions
diff --git a/org.eclipse.help.webapp/basic/bookmarksView.jsp b/org.eclipse.help.webapp/basic/bookmarksView.jsp
index 24ec7d87e..172672ecf 100644
--- a/org.eclipse.help.webapp/basic/bookmarksView.jsp
+++ b/org.eclipse.help.webapp/basic/bookmarksView.jsp
@@ -9,6 +9,8 @@
IBM Corporation - initial API and implementation
--%>
<%@ include file="header.jsp"%>
+<%@ page import="org.eclipse.help.internal.webapp.data.*"%>
+
<%
BookmarksData data = new BookmarksData(application,request);
diff --git a/org.eclipse.help.webapp/basic/header.jsp b/org.eclipse.help.webapp/basic/header.jsp
index 260bcd046..fb5d8dab3 100644
--- a/org.eclipse.help.webapp/basic/header.jsp
+++ b/org.eclipse.help.webapp/basic/header.jsp
@@ -8,7 +8,7 @@
Contributors:
IBM Corporation - initial API and implementation
--%>
-<%@ page import="org.eclipse.help.internal.webapp.data.*" errorPage="/advanced/err.jsp" contentType="text/html; charset=UTF-8"%>
+<%@ page errorPage="/advanced/err.jsp" contentType="text/html; charset=UTF-8"%>
<%
request.setCharacterEncoding("UTF-8");
diff --git a/org.eclipse.help.webapp/basic/help.jsp b/org.eclipse.help.webapp/basic/help.jsp
index 5d83e3f76..6fa04e7ad 100644
--- a/org.eclipse.help.webapp/basic/help.jsp
+++ b/org.eclipse.help.webapp/basic/help.jsp
@@ -9,6 +9,7 @@
IBM Corporation - initial API and implementation
--%>
<%@ include file="header.jsp"%>
+<%@ page import="org.eclipse.help.internal.webapp.data.*"%>
<%
LayoutData data = new LayoutData(application,request);
diff --git a/org.eclipse.help.webapp/basic/index.jsp b/org.eclipse.help.webapp/basic/index.jsp
index 58c72a393..935d748c0 100644
--- a/org.eclipse.help.webapp/basic/index.jsp
+++ b/org.eclipse.help.webapp/basic/index.jsp
@@ -9,6 +9,7 @@
IBM Corporation - initial API and implementation
--%>
<%@ include file="header.jsp"%>
+<%@ page import="org.eclipse.help.internal.webapp.data.*"%>
<%
LayoutData data = new LayoutData(application,request);
diff --git a/org.eclipse.help.webapp/basic/linksView.jsp b/org.eclipse.help.webapp/basic/linksView.jsp
index b905d8560..601751554 100644
--- a/org.eclipse.help.webapp/basic/linksView.jsp
+++ b/org.eclipse.help.webapp/basic/linksView.jsp
@@ -9,6 +9,7 @@
IBM Corporation - initial API and implementation
--%>
<%@ include file="header.jsp"%>
+<%@ page import="org.eclipse.help.internal.webapp.data.*"%>
<%
LinksData data = new LinksData(application, request);
diff --git a/org.eclipse.help.webapp/basic/searchView.jsp b/org.eclipse.help.webapp/basic/searchView.jsp
index b23e59ee2..860a60ac9 100644
--- a/org.eclipse.help.webapp/basic/searchView.jsp
+++ b/org.eclipse.help.webapp/basic/searchView.jsp
@@ -9,6 +9,7 @@
IBM Corporation - initial API and implementation
--%>
<%@ include file="header.jsp"%>
+<%@ page import="org.eclipse.help.internal.webapp.data.*"%>
<%
SearchData data = new SearchData(application, request);
diff --git a/org.eclipse.help.webapp/basic/tabs.jsp b/org.eclipse.help.webapp/basic/tabs.jsp
index 188c8af51..874e2f378 100644
--- a/org.eclipse.help.webapp/basic/tabs.jsp
+++ b/org.eclipse.help.webapp/basic/tabs.jsp
@@ -9,6 +9,7 @@
IBM Corporation - initial API and implementation
--%>
<%@ include file="header.jsp"%>
+<%@ page import="org.eclipse.help.internal.webapp.data.*"%>
<%
LayoutData data = new LayoutData(application,request);
diff --git a/org.eclipse.help.webapp/basic/tocView.jsp b/org.eclipse.help.webapp/basic/tocView.jsp
index 77c6a15ad..8f274cb75 100644
--- a/org.eclipse.help.webapp/basic/tocView.jsp
+++ b/org.eclipse.help.webapp/basic/tocView.jsp
@@ -9,6 +9,7 @@
IBM Corporation - initial API and implementation
--%>
<%@ include file="header.jsp"%>
+<%@ page import="org.eclipse.help.internal.webapp.data.*"%>
<%
TocData data = new TocData(application,request);
diff --git a/org.eclipse.help.webapp/basic/toolbar.jsp b/org.eclipse.help.webapp/basic/toolbar.jsp
index 5be003814..0115b39d2 100644
--- a/org.eclipse.help.webapp/basic/toolbar.jsp
+++ b/org.eclipse.help.webapp/basic/toolbar.jsp
@@ -9,6 +9,7 @@
IBM Corporation - initial API and implementation
--%>
<%@ include file="header.jsp"%>
+<%@ page import="org.eclipse.help.internal.webapp.data.*"%>
<%
ToolbarData data = new ToolbarData(application,request);
diff --git a/org.eclipse.help.webapp/basic/view.jsp b/org.eclipse.help.webapp/basic/view.jsp
index 82b1639d8..d7f5fcf74 100644
--- a/org.eclipse.help.webapp/basic/view.jsp
+++ b/org.eclipse.help.webapp/basic/view.jsp
@@ -9,6 +9,7 @@
IBM Corporation - initial API and implementation
--%>
<%@ include file="header.jsp"%>
+<%@ page import="org.eclipse.help.internal.webapp.data.*"%>
<%
LayoutData data = new LayoutData(application,request);

Back to the top