Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2007-11-02 23:52:07 +0000
committerChris Goldthorpe2007-11-02 23:52:07 +0000
commit6a57564a387e5b0e582e32aefd478f3607604d64 (patch)
treefa5d14aeb46b62f2269abdde48698a7959ae3274 /org.eclipse.help.webapp/basic
parentd12feed2adc74a6bfc4c28e7367e798dd576e0e0 (diff)
downloadeclipse.platform.ua-6a57564a387e5b0e582e32aefd478f3607604d64.tar.gz
eclipse.platform.ua-6a57564a387e5b0e582e32aefd478f3607604d64.tar.xz
eclipse.platform.ua-6a57564a387e5b0e582e32aefd478f3607604d64.zip
Bug 120947 – [Webapp][Context] Links tab text is outdated and incorrect
Diffstat (limited to 'org.eclipse.help.webapp/basic')
-rw-r--r--org.eclipse.help.webapp/basic/linksToolbar.jsp16
-rw-r--r--org.eclipse.help.webapp/basic/linksView.jsp67
2 files changed, 0 insertions, 83 deletions
diff --git a/org.eclipse.help.webapp/basic/linksToolbar.jsp b/org.eclipse.help.webapp/basic/linksToolbar.jsp
deleted file mode 100644
index f0e638636..000000000
--- a/org.eclipse.help.webapp/basic/linksToolbar.jsp
+++ /dev/null
@@ -1,16 +0,0 @@
-<%--
- Copyright (c) 2000, 2004 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
- http://www.eclipse.org/legal/epl-v10.html
-
- Contributors:
- IBM Corporation - initial API and implementation
---%>
-<%@ include file="header.jsp"%>
-
-
-<jsp:include page="toolbar.jsp">
- <jsp:param name="view" value="links"/>
-</jsp:include> \ No newline at end of file
diff --git a/org.eclipse.help.webapp/basic/linksView.jsp b/org.eclipse.help.webapp/basic/linksView.jsp
deleted file mode 100644
index b12d4b08d..000000000
--- a/org.eclipse.help.webapp/basic/linksView.jsp
+++ /dev/null
@@ -1,67 +0,0 @@
-<%--
- Copyright (c) 2000, 2004 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
- http://www.eclipse.org/legal/epl-v10.html
-
- Contributors:
- IBM Corporation - initial API and implementation
---%>
-<%@ include file="header.jsp"%>
-<%
- LinksData data = new LinksData(application, request, response);
- WebappPreferences prefs = data.getPrefs();
-%>
-
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<meta http-equiv="Pragma" content="no-cache">
-<meta http-equiv="Expires" content="-1">
-
-<title><%=ServletResources.getString("Links", request)%></title>
-
-<base target="ContentViewFrame">
-</head>
-
-
-<body dir="<%=direction%>" bgcolor="<%=prefs.getBasicViewBackground()%>">
-
-<%
-if(!data.isLinksRequest()) {
- out.write(ServletResources.getString("pressF1", request));
-} else if (data.getLinksCount() == 0){
- out.write(ServletResources.getString("Nothing_found", null));
-} else {
-%>
-
-<table border="0" cellpadding="0" cellspacing="0">
-
-<%
- for (int link = 0; link < data.getLinksCount(); link++)
- {
-%>
-
-<tr>
- <td align='<%=isRTL?"right":"left"%>' nowrap>
- <a href='<%=data.getTopicHref(link)%>'>
- <img src="<%=prefs.getImagesDirectory()%>/topic.gif" alt="" border=0>
- <%=data.getTopicLabel(link)%>
- </a>
- </td>
-</tr>
-
-<%
- }
-%>
-
-</table>
-
-<%
-
-}
-
-%>
-</body>
-</html>

Back to the top