summaryrefslogtreecommitdiffstats
path: root/ldap/clients/orgchart/topframe.html
diff options
context:
space:
mode:
Diffstat (limited to 'ldap/clients/orgchart/topframe.html')
-rw-r--r--ldap/clients/orgchart/topframe.html88
1 files changed, 88 insertions, 0 deletions
diff --git a/ldap/clients/orgchart/topframe.html b/ldap/clients/orgchart/topframe.html
new file mode 100644
index 00000000..25452788
--- /dev/null
+++ b/ldap/clients/orgchart/topframe.html
@@ -0,0 +1,88 @@
+<HTML>
+<HEAD>
+<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
+<META HTTP-EQUIV="Expires" CONTENT="Thu, 01 Feb 1996 00:00:00 GMT">
+<SCRIPT LANGUAGE="javascript">
+
+// Do the Search
+
+function doSearch(searchstring)
+{
+
+ if ( searchstring == "" )
+ {
+ alert("Please enter something in the search field...");
+ return false;
+ }
+ else
+ {
+
+ if ( navigator.appName == "Microsoft Internet Explorer")
+ {
+ self.parent.output_window.location="generating.html";
+ // the below code in the else block seems to cause things
+ // not to work in internet explorer
+ }
+ else
+ {
+ totalInput = "<HTML><BODY><BR><BR><BR><BR><font face=\"verdana, Arial, Helvetica, sans-serif\" style=\"font-size: 14px\"><B>Generating...</B></font></BODY></HTML>";
+
+ viewFrame = self.parent.output_window.document;
+ viewFrame.open();
+ viewFrame.write(totalInput);
+ viewFrame.close();
+ }
+
+
+ //self.parent.output_window.location="../bin/org?data="+escape(searchstring);
+ return true;
+
+ }
+
+
+}
+
+</SCRIPT>
+<LINK REL=stylesheet TYPE="text/css" HREF="styles.css">
+</HEAD>
+
+
+<BODY class="Search" onLoad="self.parent.input_window.focus(); document.form2.data.focus();">
+
+
+<CENTER>
+<TABLE BORDER="0" width="100%" cellpadding=0 cellspacing=0>
+
+<TR>
+<TD ALIGN=LEFT VALIGN=CENTER class="appName" nowrap>&nbsp;Netscape Directory Server Org Chart</TD>
+<TD ALIGN=LEFT VALIGN=CENTER width="75%">
+ <TABLE BORDER=0>
+ <TR><TD nowrap VALIGN=CENTER ALIGN=CENTER>
+ <span class="apptext">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Search for:</span>
+ </TD>
+ <TD nowrap VALIGN=CENTER>
+ <span class="apptext">
+ <FORM name="form2" Method=POST action="../bin/org" target="output_window" onsubmit="return doSearch(document.form2.data.value)">
+ <font face=\"verdana, Arial, Helvetica, sans-serif\" style=\"font-size: 12px\">
+ <INPUT TYPE="TEXT" NAME="data" SIZE=20 MAXLENGTH=20>
+ <input type="submit" name="Submit" value="Go">
+ </font>
+ </span>
+ </TD>
+ </FORM>
+ </TR></TABLE>
+ </TD>
+ <TD ALIGN=RIGHT>
+ <a href="../bin/myorg" target="output_window" class="searchlinknorm">Customize</a>
+ </TD>
+<TD ALIGN=RIGHT VALIGN=CENTER>&nbsp;&nbsp;<IMG SRC="nslogo.gif"></TD>
+
+</TR>
+</TABLE>
+</CENTER>
+
+
+
+
+</BODY>
+</HTML>