Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/advanced.jsp
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/advanced.jsp?view=auto&rev=475822
==============================================================================
--- directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/advanced.jsp (added)
+++ directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/advanced.jsp Thu Nov 16 09:15:03 2006
@@ -0,0 +1,235 @@
+<%--
+ 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"%>
+
+<%
+ SearchData data = new SearchData(application, request, response);
+ WebappPreferences prefs = data.getPrefs();
+%>
+
+
+<html>
+<head>
+<title><%=ServletResources.getString("Advanced", request)%></title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta http-equiv="Pragma" content="no-cache">
+<meta http-equiv="Expires" content="-1">
+
+<style type="text/css">
+
+/* need this one for Mozilla */
+HTML {
+ width:100%;
+ height:100%;
+ margin:0px;
+ padding:0px;
+ border:0px;
+ }
+
+BODY {
+ font: <%=prefs.getViewFont()%>;
+ background:<%=prefs.getToolbarBackground()%>;
+ border:1px solid ThreeDShadow;
+ padding:0px;
+ margin:0px;
+}
+
+TABLE {
+ font:<%=prefs.getViewFont()%>;
+ background:<%=prefs.getToolbarBackground()%>;
+}
+
+TD, TR {
+ margin:0px;
+ padding:0px;
+ border:0px;
+}
+
+FORM {
+ margin:0px;
+ padding:0px;
+ border:0px;
+ height:100%;
+}
+
+
+#searchTable {
+ background:transparent;
+ margin:10px 0px 20px 0px;
+}
+
+#searchWord {
+ border:1px solid ThreeDShadow;
+ width:100%;
+ font:icon;
+}
+
+#booksContainer {
+ background:<%=prefs.getViewBackground()%>;
+ border:1px solid ThreeDShadow;
+ margin:0px 10px;
+ overflow:auto;
+}
+
+.book {
+ margin:0xp;
+ border:0px;
+ padding:0px;
+}
+
+.button {
+ font:<%=prefs.getViewFont()%>;
+}
+
+<%
+if (data.isMozilla()) {
+%>
+input[type="checkbox"] {
+ border:2px solid ThreeDShadow;
+ margin:0xp;
+ padding:0px;
+ height:12px;
+ width:12px;
+}
+<%
+}
+%>
+</style>
+
+<script language="JavaScript">
+
+function doAdvancedSearch()
+{
+ try
+ {
+ var form = document.forms["searchForm"];
+ var searchWord = form.searchWord.value;
+ var maxHits = form.maxHits.value;
+ if (!searchWord || searchWord == "")
+ return;
+
+ var scope = "";
+ var buttons = document.getElementsByTagName("INPUT");
+ for (var i=0; i<buttons.length; i++)
+ {
+ if (buttons[i].type != "checkbox") continue;
+ if (buttons[i].checked == false) continue;
+ scope += "&scope="+encodeURIComponent(buttons[i].name);
+ }
+
+ // persist selection
+ window.opener.saveSelectedBooks(getSelectedBooks());
+
+ window.opener.document.forms["searchForm"].searchWord.value = searchWord;
+ var query = "searchWord="+encodeURIComponent(searchWord)+"&scopedSearch=true&maxHits="+maxHits + scope;
+ window.opener.doSearch(query);
+ window.opener.focus();
+ window.close();
+ } catch(ex) {}
+}
+
+function restoreSelectedBooks()
+{
+ var selectedBooks = window.opener.selectedBooks;
+ var inputs = document.body.getElementsByTagName("INPUT");
+ for (var i=0; i<inputs.length; i++) {
+ if (inputs[i].type == "checkbox" && isSelected(inputs[i].name, selectedBooks))
+ inputs[i].checked = true;
+ }
+}
+
+
+function getSelectedBooks()
+{
+ var selectedBooks = new Array();
+ var inputs = document.body.getElementsByTagName("INPUT");
+ for (var i=0; i<inputs.length; i++) {
+ if (inputs[i].type == "checkbox" && inputs[i].checked)
+ selectedBooks[selectedBooks.length] = inputs[i].name;
+ }
+ return selectedBooks;
+}
+
+function isSelected(book, selectedBooks)
+{
+ // the first time select all
+ if (!selectedBooks)
+ return true;
+
+ for (var i=0; i<selectedBooks.length; i++)
+ if (book == selectedBooks[i])
+ return true;
+ return false;
+}
+
+function onloadHandler()
+{
+ // select the books from previous run, or all otherwise
+ restoreSelectedBooks();
+}
+
+</script>
+
+</head>
+
+<body dir="<%=direction%>" onload="onloadHandler()">
+
+<form name="searchForm" onsubmit="doAdvancedSearch()">
+<div style="overflow:auto;height:250px;">
+ <table id="searchTable" width="100%" cellspacing=0 cellpading=0 border=0 align=center >
+ <tr><td style="padding:0px 10px;"><label for="searchWord"><%=ServletResources.getString("SearchExpression", request)%></label>
+ </td></tr>
+ <tr><td style="padding:0px 10px;"><input type="text" id="searchWord" name="searchWord" value="<%=UrlUtil.htmlEncode(data.getSearchWord())%>" maxlength=256 alt='<%=ServletResources.getString("SearchExpression", request)%>' title='<%=ServletResources.getString("SearchExpression", request)%>'>
+ <input type="hidden" name="maxHits" value="500" >
+ </td></tr>
+ <tr><td style="padding:0px 10px;"><%=ServletResources.getString("expression_label", request)%>
+ </td></tr>
+ </table>
+
+ <table id="filterTable" width="100%" cellspacing=0 cellpading=0 border=0 align=center style="background:transparent;">
+ <tr><td><div id="selectBook" style="margin-<%=isRTL?"right":"left"%>:10px;"><%=ServletResources.getString("Select", request)%></div>
+ </td></tr>
+ <tr><td>
+ <div id="booksContainer">
+<%
+TocData tocData = new TocData(application, request, response);
+for (int i=0; i<tocData.getTocCount(); i++)
+{
+ String label = tocData.getTocLabel(i);
+%>
+ <div class="book"><input class="checkbox" type="checkbox" name='<%=tocData.getTocHref(i)%>' id="checkbox<%=i%>" alt="<%=label%>"><label for="checkbox<%=i%>"><%=label%></label></div>
+<%
+}
+%>
+ </div>
+ </td></tr>
+ </table>
+</div>
+<div style="height:50px;">
+ <table valign="bottom" align="<%=isRTL?"left":"right"%>">
+ <tr id="buttonsTable" valign="bottom"><td valign="bottom" align="<%=isRTL?"left":"right"%>">
+ <table cellspacing=10 cellpading=0 border=0 align=<%=isRTL?"left":"right"%> style="background:transparent;">
+ <tr>
+ <td>
+ <input id="searchButton" class='button' type="button" onclick="doAdvancedSearch()" value='<%=ServletResources.getString("Search", request)%>' id="go" alt='<%=ServletResources.getString("Search", request)%>' title='<%=ServletResources.getString("Search", request)%>'>
+ </td>
+ <td>
+ <input class='button' type="button" onclick="window.close()" type="button" value='<%=ServletResources.getString("Cancel", request)%>' id="cancel" alt='<%=ServletResources.getString("Cancel", request)%>' title='<%=ServletResources.getString("Cancel", request)%>'>
+ </td>
+ </tr>
+ </table>
+ </td></tr>
+ </table>
+</div>
+ </form>
+
+</body>
+</html>
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/askShowAll.jsp
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/askShowAll.jsp?view=auto&rev=475822
==============================================================================
--- directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/askShowAll.jsp (added)
+++ directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/askShowAll.jsp Thu Nov 16 09:15:03 2006
@@ -0,0 +1,20 @@
+<%--
+ 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="confirm.jsp">
+ <jsp:param name="title" value="confirmShowAllTitle"/>
+ <jsp:param name="header" value="askShowAllQuestion"/>
+ <jsp:param name="message" value="askShowAllExplanation"/>
+ <jsp:param name="confirmCallback" value="<%=\"yesShowAll()\"%>"/>
+ <jsp:param name="initialFocus" value="cancel"/>
+ <jsp:param name="buttons" value="yesno"/>
+</jsp:include>
\ No newline at end of file
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/banner.html
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/banner.html?view=auto&rev=475822
==============================================================================
--- directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/banner.html (added)
+++ directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/banner.html Thu Nov 16 09:15:03 2006
@@ -0,0 +1,58 @@
+<!------------------------------------------------------------------------------
+ ! 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
+ ------------------------------------------------------------------------------->
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<meta name="copyright" content="Copyright (c) IBM Corporation and others 2000, 2005. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
+
+<title>Banner</title>
+
+<style type="text/css">
+/* need this one for Mozilla */
+HTML {
+ width:100%;
+ height:100%;
+ margin:0px;
+ padding:0px;
+ border:0px;
+ }
+
+BODY {
+ background-color:#7168D1;
+ text:white;
+ height:60px;
+}
+
+TABLE {
+ margin:0;
+ border:0;
+ padding:0;
+ height:100%;
+}
+
+</style>
+
+
+</head>
+
+<body marginwidth="0" marginheight="0">
+
+ <table align="left" cellspacing="0" cellpadding="0" border="0">
+ <tr>
+ <td align=left valign="center"><img src="images/help_banner.jpg" alt="Eclipse icon" title="Eclipse icon">
+ </td>
+ </tr>
+ </table>
+
+</body>
+</html>
+
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/bookmarksToolbar.jsp
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/bookmarksToolbar.jsp?view=auto&rev=475822
==============================================================================
--- directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/bookmarksToolbar.jsp (added)
+++ directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/bookmarksToolbar.jsp Thu Nov 16 09:15:03 2006
@@ -0,0 +1,35 @@
+<%--
+ 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="script" value="navActions.js"/>
+ <jsp:param name="view" value="bookmarks"/>
+
+ <jsp:param name="name" value="deleteBookmark"/>
+ <jsp:param name="tooltip" value='deleteBookmark'/>
+ <jsp:param name="image" value="bookmark_rem.gif"/>
+ <jsp:param name="action" value="removeBookmark"/>
+ <jsp:param name="state" value='off'/>
+
+ <jsp:param name="name" value="deleteAllBookmarks"/>
+ <jsp:param name="tooltip" value='deleteAllBookmarks'/>
+ <jsp:param name="image" value="bookmark_remall.gif"/>
+ <jsp:param name="action" value="removeAllBookmarks"/>
+ <jsp:param name="state" value='off'/>
+
+ <jsp:param name="name" value="synchnav"/>
+ <jsp:param name="tooltip" value='SynchNav'/>
+ <jsp:param name="image" value="synch_nav.gif"/>
+ <jsp:param name="action" value="resynchNav"/>
+ <jsp:param name="state" value='off'/>
+</jsp:include>
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/bookmarksView.jsp
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/bookmarksView.jsp?view=auto&rev=475822
==============================================================================
--- directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/bookmarksView.jsp (added)
+++ directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/bookmarksView.jsp Thu Nov 16 09:15:03 2006
@@ -0,0 +1,149 @@
+<%--
+ 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"%>
+
+<%
+ BookmarksData data = new BookmarksData(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("Bookmarks", request)%></title>
+
+<style type="text/css">
+<%@ include file="list.css"%>
+</style>
+
+<base target="ContentViewFrame">
+
+<script language="JavaScript" src="list.js"></script>
+
+<script language="JavaScript">
+
+/**
+ * Removes bookmark
+ */
+function removeBookmark()
+{
+ if (!active)
+ return false;
+
+ var bookmark = active;
+ active = null;
+
+ // Note: bookmark is an anchor "a"
+ var url = bookmark.href;
+ var i = url.indexOf("/topic/");
+ if (i >=0 )
+ url = url.substring(i+6);
+ // remove any query string
+ i = url.indexOf("?");
+ if (i >= 0)
+ url = url.substring(0, i);
+
+ var title = bookmark.title;
+ if (title == null || title == "")
+ title = url;
+
+ window.location.replace("bookmarksView.jsp?operation=remove&bookmark="+encodeURIComponent(url)+"&title="+encodeURIComponent(title));
+ return true;
+}
+
+/**
+ * Removes all bookmarks
+ */
+function removeAllBookmarks()
+{
+ hidePopupMenu();
+ if(!confirm("<%=ServletResources.getString("confirmDeleteAllBookmarks",request)%>"))
+ return true;
+ window.location.replace("bookmarksView.jsp?operation=removeAll");
+ return true;
+}
+
+/**
+ * If the Del key was pressed, remove the bookmark
+ */
+function bookmarkKeyDownHandler(e) {
+ var key;
+
+ if (isIE) {
+ key = window.event.keyCode;
+ } else if (isMozilla) {
+ key = e.keyCode;
+ }
+
+ // Check if this is the Delete key (code 46)
+ if (key != 46)
+ return true;
+
+ if (isMozilla)
+ e.cancelBubble = true;
+ else if (isIE)
+ window.event.cancelBubble = true;
+
+ return removeBookmark();
+}
+</script>
+
+</head>
+
+
+<body dir="<%=direction%>">
+
+<%
+if(data.getBookmarks().length == 0) {
+ out.write(ServletResources.getString("addBookmark", request));
+} else {
+%>
+<table id='list' cellspacing='0' >
+
+<%
+ Topic[] bookmarks = data.getBookmarks();
+ for (int i=0; i<bookmarks.length; i++)
+ {
+%>
+
+<tr class='list' id='r<%=i%>'>
+ <td align='<%=isRTL?"right":"left"%>' class='label' nowrap>
+ <a id='a<%=i%>'
+ href='<%=bookmarks[i].getHref()%>'
+ onmouseover="showStatus(event);return true;"
+ onmouseout="clearStatus();return true;"
+ onclick='parent.parent.parent.setContentToolbarTitle(" ")'
+ oncontextmenu="contextMenuHandler(event);return false;"
+ onkeydown="bookmarkKeyDownHandler(event);"
+ title="<%=UrlUtil.htmlEncode(bookmarks[i].getLabel())%>">
+ <img src="<%=prefs.getImagesDirectory()%>/topic.gif" alt=""><%=UrlUtil.htmlEncode(bookmarks[i].getLabel())%></a>
+ </td>
+</tr>
+
+<%
+ }
+%>
+
+</table>
+<div id="menu">
+ <div class="unselectedMenuItem" onmouseover="this.className='selectedMenuItem'" onmouseout="this.className='unselectedMenuItem'" onclick="removeBookmark()" ><nobr><%=ServletResources.getString("RemoveBookmark",request)%></nobr></div>
+ <div class="unselectedMenuItem" onmouseover="this.className='selectedMenuItem'" onmouseout="this.className='unselectedMenuItem'" onclick="removeAllBookmarks()" ><nobr><%=ServletResources.getString("RemoveAllBookmarks",request)%></nobr></div>
+</div>
+
+<%
+}
+%>
+
+</body>
+</html>
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/confirm.jsp
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/confirm.jsp?view=auto&rev=475822
==============================================================================
--- directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/confirm.jsp (added)
+++ directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/confirm.jsp Thu Nov 16 09:15:03 2006
@@ -0,0 +1,150 @@
+<%--
+ Copyright (c) 2000, 2006 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"%>
+
+<%
+ RequestData data = new RequestData(application, request, response);
+ WebappPreferences prefs = data.getPrefs();
+ String okText="";
+ String cancelText="";
+ if("yesno".equalsIgnoreCase(request.getParameter("buttons"))){
+ okText=ServletResources.getString("yes", request);
+ cancelText=ServletResources.getString("no", request);
+ }else{
+ okText=ServletResources.getString("OK", request);
+ cancelText=ServletResources.getString("Cancel", request);
+ }
+%>
+
+
+<html>
+<head>
+<title><%=ServletResources.getString(request.getParameter("title"), request)%></title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta http-equiv="Pragma" content="no-cache">
+<meta http-equiv="Expires" content="-1">
+
+
+<style type="text/css">
+<%@ include file="list.css"%>
+</style>
+
+<style type="text/css">
+HTML, BODY {
+ width:100%;
+ height:100%;
+ margin:0px;
+ padding:0px;
+ border:0px;
+}
+
+BODY {
+ background-color: <%=prefs.getToolbarBackground()%>;
+}
+
+TABLE {
+ width:auto;
+}
+
+TD, TR{
+ margin:0px;
+ padding:0px;
+ border:0px;
+}
+
+BUTTON {
+ font:<%=prefs.getViewFont()%>;
+}
+
+</style>
+
+<script language="JavaScript">
+
+function onloadHandler() {
+<%
+if(!data.isMozilla() || "1.3".compareTo(data.getMozillaVersion()) <=0){
+// buttons are not resized immediately on mozilla before 1.3
+%>
+ sizeButtons();
+<%}%>
+ document.getElementById("<%=request.getParameter("initialFocus")%>").focus();
+}
+
+function sizeButtons() {
+ var minWidth=60;
+
+ if(document.getElementById("ok").offsetWidth < minWidth){
+ document.getElementById("ok").style.width = minWidth+"px";
+ }
+ if(document.getElementById("cancel").offsetWidth < minWidth){
+ document.getElementById("cancel").style.width = minWidth+"px";
+ }
+}
+
+function confirmed(){
+ try{
+<% if ("true".equalsIgnoreCase(request.getParameter("dontaskagain")) ){ %>
+ if(document.getElementById("dontask").checked){
+ window.opener.<%=request.getParameter("dontaskagainCallback")%>;
+ }
+<% } %>
+ window.opener.<%=request.getParameter("confirmCallback")%>;
+ } catch(e) {}
+ window.close();
+ return false;
+}
+
+</script>
+
+</head>
+
+<body dir="<%=direction%>" onload="onloadHandler()">
+<form onsubmit="confirmed();return false;">
+<div style="overflow:auto;height:160px;width:100%;">
+ <div style="padding:10px;">
+ <span style="font-weight:bold;"><%=ServletResources.getString(request.getParameter("header"), request)%></span>
+ <br><br>
+ <%=ServletResources.getConfirmShowAllExplanation(request)%>
+ </div>
+</div>
+<% if ("true".equalsIgnoreCase(request.getParameter("dontaskagain")) ){ %>
+<div style="height:30px;">
+ <div style="padding-left:10px;padding-right:10px;">
+ <input class='check'
+ type="checkbox"
+ id='dontask'
+ name='dontask'>
+ <label for="dontask"
+ accesskey="<%=ServletResources.getAccessKey("dontask", request)%>">
+ <%=ServletResources.getLabel("dontask", request)%>
+ </label>
+ </div>
+</div>
+<% } %>
+<div style="height:50px;">
+ <table valign="bottom" align="<%=isRTL?"left":"right"%>" style="background:<%=prefs.getToolbarBackground()%>">
+ <tr id="buttonsTable" valign="bottom"><td valign="bottom" align="<%=isRTL?"left":"right"%>">
+ <table cellspacing=10 cellpading=0 border=0 style="background:transparent;">
+ <tr>
+ <td>
+ <button type="submit" id="ok"><%=okText%></button>
+ </td>
+ <td>
+ <button type="reset" onclick="window.close()" id="cancel"><%=cancelText%></button>
+ </td>
+ </tr>
+ </table>
+ </td></tr>
+ </table>
+</div>
+</form>
+</body>
+</html>
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/confirmShowAll.jsp
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/confirmShowAll.jsp?view=auto&rev=475822
==============================================================================
--- directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/confirmShowAll.jsp (added)
+++ directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/confirmShowAll.jsp Thu Nov 16 09:15:03 2006
@@ -0,0 +1,21 @@
+<%--
+ 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="confirm.jsp">
+ <jsp:param name="title" value="confirmShowAllTitle"/>
+ <jsp:param name="header" value="confirmShowAllQuestion"/>
+ <jsp:param name="message" value="confirmShowAllExplanation"/>
+ <jsp:param name="dontaskagain" value="true"/>
+ <jsp:param name="dontaskagainCallback" value="<%=\"dontAskAgain()\"%>"/>
+ <jsp:param name="confirmCallback" value="<%=\"showAll()\"%>"/>
+ <jsp:param name="initialFocus" value="ok"/>
+</jsp:include>
\ No newline at end of file
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/content.jsp
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/content.jsp?view=auto&rev=475822
==============================================================================
--- directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/content.jsp (added)
+++ directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/content.jsp Thu Nov 16 09:15:03 2006
@@ -0,0 +1,70 @@
+<%--
+ 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="fheader.jsp"%>
+
+<%
+ LayoutData data = new LayoutData(application,request, response);
+ WebappPreferences prefs = data.getPrefs();
+%>
+
+<html>
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title><%=ServletResources.getString("Help", request)%></title>
+
+<style type="text/css">
+<%
+if (data.isMozilla()) {
+%>
+HTML {
+ background:<%=prefs.getToolbarBackground()%>;
+ border-<%=isRTL?"left":"right"%>:1px solid ThreeDShadow;
+}
+<%
+} else {
+%>
+FRAMESET {
+ border-top:1px solid ThreeDShadow;
+ border-left:1px solid ThreeDShadow;
+ border-right:1px solid ThreeDShadow;
+ border-bottom:1px solid ThreeDShadow;
+}
+<%
+}
+%>
+</style>
+
+<script language="JavaScript">
+
+function onloadHandler(e)
+{
+<% if (data.isIE() || data.isMozilla() && "1.2.1".compareTo(data.getMozillaVersion()) <=0){
+%> var h=window.ContentToolbarFrame.document.getElementById("titleText").offsetHeight; <%-- default 13 --%>
+ if(h<=19){
+ return; <%-- no need to resize up to 19px --%>
+ }
+ document.getElementById("contentFrameset").setAttribute("rows", (11+h)+",*"); <%-- default 24 --%>
+ window.ContentToolbarFrame.document.getElementById("titleTextTableDiv").style.height=(9+h)+"px"; <%-- default 22 --%>
+<%}%>
+}
+</script>
+
+</head>
+
+
+<frameset id="contentFrameset" onload="onloadHandler()" rows="24,*" frameborder="0" framespacing="0" border=0 spacing=0>
+ <frame name="ContentToolbarFrame" title="<%=ServletResources.getString("topicViewToolbar", request)%>" src='<%="contentToolbar.jsp"+data.getQuery()%>' marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize=0>
+ <frame ACCESSKEY="K" name="ContentViewFrame" title="<%=ServletResources.getString("topicView", request)%>" src='<%=data.getContentURL()%>' marginwidth="10"<%=(data.isIE() && "6.0".compareTo(data.getIEVersion()) <=0)?"scrolling=\"yes\"":""%> marginheight="0" frameborder="0" >
+</frameset>
+
+</html>
+
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/contentActions.js
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/contentActions.js?view=auto&rev=475822
==============================================================================
--- directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/contentActions.js (added)
+++ directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/contentActions.js Thu Nov 16 09:15:03 2006
@@ -0,0 +1,125 @@
+/*******************************************************************************
+ * 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
+ *******************************************************************************/
+
+var isMozilla = navigator.userAgent.indexOf('Mozilla') != -1 && parseInt(navigator.appVersion.substring(0,1)) >= 5;
+var isIE = navigator.userAgent.indexOf('MSIE') != -1;
+
+var navVisible = true;
+
+function goBack(button) {
+ parent.history.back();
+ if (isIE && button && document.getElementById(button)){
+ document.getElementById(button).blur();
+ }
+}
+
+function goForward(button) {
+ parent.history.forward();
+ if (isIE && button && document.getElementById(button)){
+ document.getElementById(button).blur();
+ }
+}
+
+
+function bookmarkPage(button)
+{
+ // Currently we pick up the url from the content page.
+ // If the page is from outside the help domain, a script
+ // exception is thrown. We need to catch it and ignore it.
+ try
+ {
+ // use the url from plugin id only
+ var url = parent.ContentViewFrame.location.href;
+ var i = url.indexOf("/topic/");
+ if (i >=0 )
+ url = url.substring(i+6);
+ // remove any query string
+ i = url.indexOf("?");
+ if (i >= 0)
+ url = url.substring(0, i);
+
+ var title = parent.ContentViewFrame.document.title;
+ if (title == null || title == "")
+ title = url;
+
+ /********** HARD CODED VIEW NAME *************/
+ parent.parent.NavFrame.ViewsFrame.bookmarks.bookmarksViewFrame.location.replace("bookmarksView.jsp?operation=add&bookmark="+encodeURIComponent(url)+"&title="+encodeURIComponent(title));
+ }catch (e) {}
+ if (isIE && button && document.getElementById(button)){
+ document.getElementById(button).blur();
+ }
+}
+
+function bookmarkInfocenterPage(button)
+{
+ // Currently we pick up the url from the content page.
+ // If the page is from outside the help domain, a script
+ // exception is thrown. We need to catch it and ignore it.
+ try
+ {
+ // use the url from plugin id only
+ var url = parent.ContentViewFrame.location.href;
+ var i = url.indexOf("/topic/");
+ if (i >=0 )
+ url = url.substring(i+6);
+ // remove any query string
+ i = url.indexOf("?");
+ if (i >= 0)
+ url = url.substring(0, i);
+
+ var title = parent.ContentViewFrame.document.title;
+ if (title == null || title == "")
+ title = url;
+
+ /********** HARD CODED VIEW NAME *************/
+ window.external.AddFavorite(parent.ContentViewFrame.location.href,title);
+ }catch (e) {}
+ if (isIE && button && document.getElementById(button)){
+ document.getElementById(button).blur();
+ }
+}
+
+function resynch(button)
+{
+ try {
+ var topic = parent.ContentViewFrame.window.location.href;
+ // remove the query, if any
+ var i = topic.indexOf('?');
+ if (i != -1)
+ topic = topic.substring(0, i);
+ parent.parent.NavFrame.displayTocFor(topic);
+ } catch(e) {}
+ if (isIE && button && document.getElementById(button)){
+ document.getElementById(button).blur();
+ }
+}
+
+function printContent(button)
+{
+ try {
+ parent.ContentViewFrame.focus();
+ parent.ContentViewFrame.print();
+ } catch(e) {}
+ if (isIE && button && document.getElementById(button)){
+ document.getElementById(button).blur();
+ }
+}
+
+function setTitle(label)
+{
+ if( label == null) label = "";
+ var title = document.getElementById("titleText");
+ if(title !=null){
+ var text = title.lastChild;
+ text.nodeValue = " "+label;
+ }
+}
+
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/contentToolbar.jsp
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/contentToolbar.jsp?view=auto&rev=475822
==============================================================================
--- directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/contentToolbar.jsp (added)
+++ directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/contentToolbar.jsp Thu Nov 16 09:15:03 2006
@@ -0,0 +1,69 @@
+<%--
+ Copyright (c) 2000, 2005 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"%>
+
+<%
+ RequestData data = new RequestData(application,request, response);
+ WebappPreferences prefs = data.getPrefs();
+ String forwardImage, backImage;
+ if(isRTL) {
+ forwardImage = "back.gif";
+ backImage = "forward.gif";
+ } else {
+ forwardImage = "forward.gif";
+ backImage = "back.gif";
+ }
+ boolean isBookmarkAction = prefs.isBookmarksView()
+ || prefs.isBookmarksAction() && data.isIE() && !data.isOpera(); // for infocenter, add to favorites supported on IE
+ String bookmarkButtonState = isBookmarkAction?"off":"hidden";
+ String bookmarkAction = RequestData.MODE_INFOCENTER==data.getMode()?"bookmarkInfocenterPage":"bookmarkPage";
+%>
+<jsp:include page="toolbar.jsp">
+ <jsp:param name="script" value="contentActions.js"/>
+ <jsp:param name="toolbar" value="content"/>
+
+ <jsp:param name="name" value="back"/>
+ <jsp:param name="tooltip" value='back_tip'/>
+ <jsp:param name="image" value='<%=backImage%>'/>
+ <jsp:param name="action" value="goBack"/>
+ <jsp:param name="state" value='off'/>
+
+ <jsp:param name="name" value="forward"/>
+ <jsp:param name="tooltip" value='forward_tip'/>
+ <jsp:param name="image" value='<%=forwardImage%>'/>
+ <jsp:param name="action" value="goForward"/>
+ <jsp:param name="state" value='off'/>
+
+ <jsp:param name="name" value=""/>
+ <jsp:param name="tooltip" value=""/>
+ <jsp:param name="image" value=""/>
+ <jsp:param name="action" value=""/>
+ <jsp:param name="state" value='off'/>
+
+ <jsp:param name="name" value="synch"/>
+ <jsp:param name="tooltip" value='Synch'/>
+ <jsp:param name="image" value="synch_toc_nav.gif"/>
+ <jsp:param name="action" value="resynch"/>
+ <jsp:param name="state" value='off'/>
+
+ <jsp:param name="name" value="add_bkmrk"/>
+ <jsp:param name="tooltip" value='BookmarkPage'/>
+ <jsp:param name="image" value="add_bkmrk.gif"/>
+ <jsp:param name="action" value="<%=bookmarkAction%>"/>
+ <jsp:param name="state" value='<%=bookmarkButtonState%>'/>
+
+ <jsp:param name="name" value="print"/>
+ <jsp:param name="tooltip" value='Print'/>
+ <jsp:param name="image" value="print_edit.gif"/>
+ <jsp:param name="action" value="printContent"/>
+ <jsp:param name="state" value='off'/>
+
+</jsp:include>
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/err.jsp
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/err.jsp?view=auto&rev=475822
==============================================================================
--- directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/err.jsp (added)
+++ directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/err.jsp Thu Nov 16 09:15:03 2006
@@ -0,0 +1,40 @@
+<%--
+ 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
+--%>
+<%@ page import="org.eclipse.help.internal.webapp.data.*" contentType="text/html; charset=UTF-8"%>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title> Error </title>
+</head>
+<%
+String direction = "ltr";
+try{
+ if(UrlUtil.isRTL(request, response)){
+ direction = "rtl";
+ }
+}catch(Exception e){
+}
+%>
+
+<body dir="<%=direction%>">
+
+ <%@ page isErrorPage="true" %>
+
+ There was an error in your action:
+ <p>
+ <%= exception.toString() %>
+ </p>
+
+</body>
+</html>
+
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/fheader.jsp
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/fheader.jsp?view=auto&rev=475822
==============================================================================
--- directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/fheader.jsp (added)
+++ directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/fheader.jsp Thu Nov 16 09:15:03 2006
@@ -0,0 +1,32 @@
+<%--
+ 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
+--%><%@
+page import="org.eclipse.help.internal.webapp.data.*" contentType="text/html; charset=UTF-8"
+%><%
+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">
+<%
+}
+%><!------------------------------------------------------------------------------
+ ! 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
+ ------------------------------------------------------------------------------->
\ No newline at end of file
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/header.jsp
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/header.jsp?view=auto&rev=475822
==============================================================================
--- directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/header.jsp (added)
+++ directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/header.jsp Thu Nov 16 09:15:03 2006
@@ -0,0 +1,32 @@
+<%--
+ 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
+--%><%@
+page import="org.eclipse.help.internal.webapp.data.*" contentType="text/html; charset=UTF-8"
+%><%
+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, 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
+ ------------------------------------------------------------------------------->
\ No newline at end of file
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/help.jsp
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/help.jsp?view=auto&rev=475822
==============================================================================
--- directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/help.jsp (added)
+++ directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/help.jsp Thu Nov 16 09:15:03 2006
@@ -0,0 +1,150 @@
+<%--
+ 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="fheader.jsp"%>
+
+<%
+ LayoutData data = new LayoutData(application,request, response);
+ WebappPreferences prefs = data.getPrefs();
+%>
+
+<html>
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title><%=ServletResources.getString("Help", request)%></title>
+
+<style type="text/css">
+
+HTML {
+ background:<%=prefs.getToolbarBackground()%>;
+<%
+if (data.isMozilla()){
+%>
+ padding:<%=isRTL?"0px 4px 2px 4px":"0px 4px 2px 4px"%>;
+<%
+}
+%>
+}
+
+</style>
+
+<script language="JavaScript">
+<%-- map of maximize listener functions indexed by name --%>
+var maximizeListeners=new Object();
+function registerMaximizeListener(name, listener){
+ maximizeListeners[name]=listener;
+}
+function notifyMaximizeListeners(maximizedNotRestored){
+ for(i in maximizeListeners){
+ try{
+ maximizeListeners[i](maximizedNotRestored);
+ }catch(exc){}
+ }
+}
+<%-- vars to keep track of frame sizes before max/restore --%>
+var leftCols = "<%=isRTL?"70.5%":"29.5%"%>";
+var rightCols = "<%=isRTL?"29.5%":"70.5%"%>";
+<%--
+param title "" for content frame
+--%>
+function toggleFrame(title)
+{
+ var frameset = document.getElementById("helpFrameset");
+ var navFrameSize = frameset.getAttribute("cols");
+ var comma = navFrameSize.indexOf(',');
+ var left = navFrameSize.substring(0,comma);
+ var right = navFrameSize.substring(comma+1);
+
+ if (left == "*" || right == "*") {
+ // restore frames
+ frameset.frameSpacing="3";
+ frameset.setAttribute("border", "6");
+ frameset.setAttribute("cols", leftCols+","+rightCols);
+ notifyMaximizeListeners(false);
+ } else {
+ // the "cols" attribute is not always accurate, especially after resizing.
+ // offsetWidth is also not accurate, so we do a combination of both and
+ // should get a reasonable behavior
+<%
+if(isRTL) {
+%>
+ var leftSize = ContentFrame.document.body.offsetWidth;
+ var rightSize = NavFrame.document.body.offsetWidth;
+<%
+} else {
+%>
+ var leftSize = NavFrame.document.body.offsetWidth;
+ var rightSize = ContentFrame.document.body.offsetWidth;
+<%
+}
+%>
+
+ leftCols = leftSize * 100 / (leftSize + rightSize);
+ rightCols = 100 - leftCols;
+
+ // maximize the frame.
+ //leftCols = left;
+ //rightCols = right;
+ // Assumption: the content toolbar does not have a default title.
+<%
+if(isRTL) {
+%>
+ if (title != "") // this is the right side for right-to-left rendering
+ frameset.setAttribute("cols", "*,100%");
+ else // this is the content toolbar
+ frameset.setAttribute("cols", "100%,*");
+<%
+} else {
+%>
+ if (title != "") // this is the left side for left-to-right rendering
+ frameset.setAttribute("cols", "100%,*");
+ else // this is the content toolbar
+ frameset.setAttribute("cols", "*,100%");
+<%
+}
+%>
+ frameset.frameSpacing="0";
+ frameset.setAttribute("border", "1");
+ notifyMaximizeListeners(true);
+ }
+}
+</script>
+</head>
+
+<frameset
+<%
+if (data.isIE()) {
+%>
+ style="border-top: 0px solid <%=prefs.getToolbarBackground()%>;"
+ style="border-right: 4px solid <%=prefs.getToolbarBackground()%>;"
+ style="border-bottom: 4px solid <%=prefs.getToolbarBackground()%>;"
+ style="border-left: 4px solid <%=prefs.getToolbarBackground()%>;"
+<%
+}
+%>
+ id="helpFrameset" cols="<%=isRTL?"70.5%,29.5%":"29.5%,70.5%"%>" framespacing="3" border="6" frameborder="1" scrolling="no">
+<%
+if (isRTL) {
+%>
+ <frame name="ContentFrame" title="<%=ServletResources.getString("ignore", "ContentFrame", request)%>" class="content" src='<%="content.jsp"+data.getQuery()%>' marginwidth="0" marginheight="0" scrolling="no" frameborder="0" resize=yes>
+ <frame class="nav" name="NavFrame" title="<%=ServletResources.getString("ignore", "NavFrame", request)%>" src='<%="nav.jsp"+data.getQuery()%>' marginwidth="0" marginheight="0" scrolling="no" frameborder="1" resize=yes>
+<%
+} else {
+%>
+ <frame class="nav" name="NavFrame" title="<%=ServletResources.getString("ignore", "NavFrame", request)%>" src='<%="nav.jsp"+data.getQuery()%>' marginwidth="0" marginheight="0" scrolling="no" frameborder="1" resize=yes>
+ <frame name="ContentFrame" title="<%=ServletResources.getString("ignore", "ContentFrame", request)%>" class="content" src='<%="content.jsp"+data.getQuery()%>' marginwidth="0" marginheight="0" scrolling="no" frameborder="0" resize=yes>
+<%
+}
+%>
+</frameset>
+
+</html>
+
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/highlight.js
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/highlight.js?view=auto&rev=475822
==============================================================================
--- directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/highlight.js (added)
+++ directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/highlight.js Thu Nov 16 09:15:03 2006
@@ -0,0 +1,96 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2005 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
+ *******************************************************************************/
+
+var isSafari = (navigator.userAgent.indexOf('Safari/') != -1)
+ || (navigator.userAgent.indexOf('AppleWebKit/') != -1);
+var highlighted=false;
+var startTime;
+var MAX_DURATION=3000;
+onload=highlight;
+document.onreadystatechange=highlight;
+function highlight(){
+ if(highlighted){
+ return;
+ }
+ highlighted=true;
+ if (!document.body) return;
+ if(document.body.innerHTML.length < 50000){
+ for(i=0; i<keywords.length; i++){
+ word=keywords[i].toLowerCase();
+ highlightWordInNode(word, document.body);
+ }
+ }else{
+ startTime=new Date().getTime();
+ for(i=0; i<keywords.length; i++){
+ word=keywords[i].toLowerCase();
+ highlightWordInNodeTimed(word, document.body);
+ if(new Date().getTime()>startTime+MAX_DURATION) return;
+ }
+ }
+}
+function highlightWordInNode(aWord, aNode){
+ if (aNode.nodeType == 1){
+ var children = aNode.childNodes;
+ for(var i=0; i < children.length; i++) {
+ highlightWordInNode(aWord, children[i]);
+ }
+ }
+ else if(aNode.nodeType==3){
+ highlightWordInText(aWord, aNode);
+ }
+
+}
+function highlightWordInNodeTimed(aWord, aNode){
+ if (aNode.nodeType == 1){
+ var children = aNode.childNodes;
+ for(var i=0; i < children.length; i++) {
+ highlightWordInNodeTimed(aWord, children[i]);
+ if(new Date().getTime()>startTime+MAX_DURATION) return;
+ }
+ }
+ else if(aNode.nodeType==3){
+ highlightWordInText(aWord, aNode);
+ }
+
+}
+function highlightWordInText(aWord, textNode){
+ allText=new String(textNode.data);
+ allTextLowerCase=allText.toLowerCase();
+ index=allTextLowerCase.indexOf(aWord);
+ if(index>=0){
+ // create a node to replace the textNode so we end up
+ // not changing number of children of textNode.parent
+ replacementNode=document.createElement("span");
+ textNode.parentNode.insertBefore(replacementNode, textNode);
+ while(index>=0){
+ before=allText.substring(0,index);
+ newBefore=document.createTextNode(before);
+ replacementNode.appendChild(newBefore);
+ spanNode=document.createElement("span");
+ if(isSafari){
+ spanNode.style.color="#000000";
+ spanNode.style.background="#B5D5FF";
+ }else{
+ spanNode.style.background="Highlight";
+ spanNode.style.color="HighlightText";
+ }
+ replacementNode.appendChild(spanNode);
+ boldText=document.createTextNode(allText.substring(index,index+aWord.length));
+ spanNode.appendChild(boldText);
+ allText=allText.substring(index+aWord.length);
+ allTextLowerCase=allText.toLowerCase();
+ index=allTextLowerCase.indexOf(aWord);
+ }
+ newAfter=document.createTextNode(allText);
+ replacementNode.appendChild(newAfter);
+ textNode.parentNode.removeChild(textNode);
+ }
+}
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/add_bkmrk.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/add_bkmrk.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/add_bkmrk.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/back.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/back.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/back.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/bookmark_rem.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/bookmark_rem.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/bookmark_rem.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/bookmark_remall.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/bookmark_remall.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/bookmark_remall.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/container_obj.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/container_obj.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/container_obj.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/d_topic.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/d_topic.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/d_topic.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_add_bkmrk.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_add_bkmrk.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_add_bkmrk.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_back.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_back.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_back.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_bookmark_rem.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_bookmark_rem.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_bookmark_rem.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_bookmark_remall.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_bookmark_remall.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_bookmark_remall.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_bookmarks_view.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_bookmarks_view.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_bookmarks_view.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_contents_view.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_contents_view.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_contents_view.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_forward.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_forward.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_forward.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_index_view.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_index_view.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_index_view.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_links_view.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_links_view.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_links_view.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_maximize.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_maximize.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_maximize.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_print_edit.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_print_edit.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_print_edit.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_restore.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_restore.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_restore.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_search_results_view.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_search_results_view.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_search_results_view.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_show_all.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_show_all.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_show_all.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_synch_nav.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_synch_nav.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_synch_nav.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_synch_toc_nav.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_synch_toc_nav.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/e_synch_toc_nav.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/forward.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/forward.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/forward.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/help_banner.jpg
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/help_banner.jpg?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/help_banner.jpg
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/index_view.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/index_view.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/index_view.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/maximize.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/maximize.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/maximize.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/minus.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/minus.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/minus.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/plus.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/plus.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/plus.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/print_edit.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/print_edit.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/print_edit.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/restore.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/restore.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/restore.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/show_all.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/show_all.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/show_all.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/synch_nav.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/synch_nav.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/synch_nav.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/synch_toc_nav.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/synch_toc_nav.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/synch_toc_nav.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/toc_closed.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/toc_closed.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/toc_closed.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/toc_open.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/toc_open.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/toc_open.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/topic.gif
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/topic.gif?view=auto&rev=475822
==============================================================================
Binary file - no diff available.
Propchange: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/images/topic.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/index.jsp
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/index.jsp?view=auto&rev=475822
==============================================================================
--- directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/index.jsp (added)
+++ directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/index.jsp Thu Nov 16 09:15:03 2006
@@ -0,0 +1,77 @@
+<%--
+ 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="fheader.jsp"%>
+
+<%
+ LayoutData data = new LayoutData(application,request, response);
+ // Initiate test for persisted cookies
+ if(data.getMode() == LayoutData.MODE_INFOCENTER){
+ Cookie cookieTest=new Cookie("cookiesEnabled", "yes");
+ cookieTest.setMaxAge(365*24*60*60);
+ response.addCookie(cookieTest);
+ }
+%>
+
+<html>
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<noscript>
+<meta HTTP-EQUIV="REFRESH" CONTENT="0;URL=index.jsp?noscript=1">
+</noscript>
+<title><%=data.getWindowTitle()%></title>
+<jsp:include page="livehelp_js.jsp"/>
+
+<style type="text/css">
+FRAMESET {
+ border: 0px;
+}
+</style>
+
+<script language="JavaScript">
+
+function onloadHandler(e)
+{
+<% if (data.isIE() || data.isMozilla() && "1.2.1".compareTo(data.getMozillaVersion()) <=0){
+%> var h=window.SearchFrame.document.getElementById("searchLabel").offsetHeight; <%-- default 13 --%>
+ if(h<=19){
+ return; <%-- no need to resize up to 19px --%>
+ }
+ document.getElementById("indexFrameset").setAttribute("rows", <%="0".equals(data.getBannerHeight())?"":"\""+data.getBannerHeight()+",\"+"%>(11+h)+",*"); <%-- default 24 --%>
+<%}%>
+<%
+if (data.isMozilla()){
+// restore mozilla from minimized
+%>
+ window.focus();
+<%
+}
+%>
+ window.frames["SearchFrame"].document.getElementById("searchWord").focus();
+}
+
+</script>
+</head>
+
+<frameset id="indexFrameset" onload="onloadHandler()" rows="<%="0".equals(data.getBannerHeight())?"":data.getBannerHeight()+","%>24,*" frameborder="0" framespacing="0" border=0 spacing=0>
+<%
+ if(!("0".equals(data.getBannerHeight()))){
+%>
+ <frame name="BannerFrame" title="<%=ServletResources.getString("Banner", request)%>" src='<%=data.getBannerURL()%>' tabIndex="3" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize=0>
+<%
+ }
+%>
+ <frame name="SearchFrame" title="<%=ServletResources.getString("helpToolbarFrame", request)%>" src='<%="advanced/search.jsp"+data.getQuery()%>' marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize=0>
+ <frame name="HelpFrame" title="<%=ServletResources.getString("ignore", "HelpFrame", request)%>" src='<%="advanced/help.jsp"+data.getQuery()%>' marginwidth="0" marginheight="0" scrolling="no" frameborder="0" >
+</frameset>
+
+</html>
+
Added: directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/indexList.css
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/indexList.css?view=auto&rev=475822
==============================================================================
--- directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/indexList.css (added)
+++ directory/sandbox/pamarcelot/ldapstudio/dependencies/eclipse/3.2/plugins/org.eclipse.help.webapp_3.2.0.v20060510b/advanced/indexList.css Thu Nov 16 09:15:03 2006
@@ -0,0 +1,103 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 Intel 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:
+ * Intel Corporation - initial API and implementation
+ *******************************************************************************/
+
+BODY {
+ background-color:<%=prefs.getViewBackground()%>;
+ font:<%=prefs.getViewFont()%>;
+ margin:0;
+ padding:0;
+ border:0;
+ cursor:default;
+}
+
+UL {
+ border-width:0;
+ margin-<%=isRTL?"right":"left"%>:20px;
+}
+
+#root {
+ margin-top:5px;
+ margin-<%=isRTL?"right":"left"%>:5px;
+}
+
+UL.expanded {
+ display:block;
+}
+
+UL.collapsed {
+ display:none;
+}
+
+LI {
+ margin:0;
+ list-style-image:none;
+ list-style-type:none;
+ white-space: nowrap;
+}
+
+IMG {
+ border:0;
+ margin:0;
+ padding:0;
+ margin-<%=isRTL?"left":"right"%>:4px;
+}
+
+A {
+ text-decoration:none;
+ padding-<%=isRTL?"left":"right"%>:2px;
+ /* this works in ie5.5, but not in ie5.0 */
+ white-space:nowrap;
+}
+
+A:link, A:visited {
+ color:blue;
+}
+
+A:hover {
+ text-decoration:underline;
+}
+
+A.nolink {
+ text-decoration:none;
+}
+
+A.nolink:link, A.nolink:visited {
+ color:WindowText;
+}
+
+A.nolink:hover {
+ text-decoration:none;
+}
+
+A.active {
+ background:Highlight;
+ color:HighlightText;
+ width:100%;
+}
+
+A.active:link, A.active:visited {
+ color:HighlightText;
+}
+
+<%if (data.isMozilla()) {%>
+UL {
+ margin-<%=isRTL?"right":"left"%>:-20px;
+}
+
+#root {
+ margin-<%=isRTL?"right":"left"%>:-35px;
+ margin-top:5px;
+}
+<%}%>
+
+.h {
+ visibility:hidden;
+}
|