home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2006 April / DPPRO0406DVD.ISO / Essentials / Programming / Eclipse SDK / eclipse-SDK-3.1.1-win32.exe / eclipse / plugins / org.eclipse.help.webapp_3.1.0 / basic / toolbar.jsp < prev    next >
Encoding:
Text File  |  2005-09-29  |  1003 b   |  40 lines

  1. <%--
  2.  Copyright (c) 2000, 2004 IBM Corporation and others.
  3.  All rights reserved. This program and the accompanying materials 
  4.  are made available under the terms of the Eclipse Public License v1.0
  5.  which accompanies this distribution, and is available at
  6.  http://www.eclipse.org/legal/epl-v10.html
  7.  
  8.  Contributors:
  9.      IBM Corporation - initial API and implementation
  10. --%>
  11. <%@ include file="header.jsp"%>
  12. <% 
  13.     ToolbarData data = new ToolbarData(application,request, response);
  14.     WebappPreferences prefs = data.getPrefs();
  15. %>
  16.  
  17.  
  18. <html>
  19. <head>
  20. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  21.  
  22. <title><%=ServletResources.getString("Toolbar", request)%></title>
  23. </head>
  24.  
  25. <body dir="<%=direction%>" bgcolor="<%=prefs.getBasicToolbarBackground()%>">
  26. <%
  27.     String title=data.getTitle();
  28.     // search view is not called "advanced view"
  29.     if("search".equals(request.getParameter("view"))){
  30.         title=ServletResources.getString("Search", request);
  31.     }
  32. %>
  33.     <b>
  34.     <%=title%>
  35.     </b>
  36.  
  37. </body>     
  38. </html>
  39.  
  40.