diff options
| author | cvsadm <cvsadm> | 2005-01-21 00:44:34 +0000 |
|---|---|---|
| committer | cvsadm <cvsadm> | 2005-01-21 00:44:34 +0000 |
| commit | b2093e3016027d6b5cf06b3f91f30769bfc099e2 (patch) | |
| tree | cf58939393a9032182c4fbc4441164a9456e82f8 /ldap/clients/dsgw/userhtml | |
| download | ds-ldapserver7x.tar.gz ds-ldapserver7x.tar.xz ds-ldapserver7x.zip | |
Moving NSCP Directory Server from DirectoryBranch to TRUNK, initial drop. (foxworth)ldapserver7x
Diffstat (limited to 'ldap/clients/dsgw/userhtml')
| -rw-r--r-- | ldap/clients/dsgw/userhtml/Makefile | 60 | ||||
| -rw-r--r-- | ldap/clients/dsgw/userhtml/edit-userpasswd.html | 85 | ||||
| -rw-r--r-- | ldap/clients/dsgw/userhtml/edit-userpinfo.html | 92 | ||||
| -rw-r--r-- | ldap/clients/dsgw/userhtml/index.html | 29 | ||||
| -rw-r--r-- | ldap/clients/dsgw/userhtml/index.lst | 29 |
5 files changed, 295 insertions, 0 deletions
diff --git a/ldap/clients/dsgw/userhtml/Makefile b/ldap/clients/dsgw/userhtml/Makefile new file mode 100644 index 00000000..6cc32c6f --- /dev/null +++ b/ldap/clients/dsgw/userhtml/Makefile @@ -0,0 +1,60 @@ +# +# PROPRIETARY/CONFIDENTIAL. Use of this product is subject to +# license terms. Copyright © 2001 Sun Microsystems, Inc. +# Some preexisting portions Copyright © 2001 Netscape Communications Corp. +# All rights reserved. +# +# +# Gmakefile for Directory Server Gateway html files. +# + +LDAP_SRC = ../../.. +MCOM_ROOT = ../../../../.. + +NOSTDSTRIP=true # don't let nsconfig.mak define target strip +NOSTDCLEAN=true # don't let nsconfig.mak define target clean +NOSTDDEPEND=true # don't let nsconfig.mak define target depend + +include $(MCOM_ROOT)/ldapserver/nsconfig.mk +include $(LDAP_SRC)/nsldap.mk + +include ../dsgw_include.mk + +HTML= $(wildcard *.html) + +ifeq ($(BUILD_MODULE), HTTP_ADMIN) +HTMLDEST = $(OBJDIR)/user-forms/html +else +HTMLDEST = $(DSGW_HTML_RELDIR) +endif + +DEFINES += $(DEFS) + +CFLAGS += $(INCLUDES) $(DEFINES) $(ACFLAGS) + +BINS=$(addprefix $(HTMLDEST)/,$(HTML)) + +ifeq ($(BUILD_MODULE), HTTP_ADMIN) +all: $(HTMLDEST) $(BINS) + +$(HTMLDEST): + mkdir -p $(HTMLDEST) + +else +all: $(HTMLDEST) +endif + +clean: clean-manual clean-info + $(RM) $(BINS) + +$(HTMLDEST)/%.htm: %.htm + cp $< $(HTMLDEST)/$*.htm + +$(HTMLDEST)/%.html: %.html + cp $< $(HTMLDEST)/$*.html + +$(HTMLDEST)/%.gif: %.gif + cp $< $(HTMLDEST)/$*.gif + +strip: +depend: diff --git a/ldap/clients/dsgw/userhtml/edit-userpasswd.html b/ldap/clients/dsgw/userhtml/edit-userpasswd.html new file mode 100644 index 00000000..e79423e5 --- /dev/null +++ b/ldap/clients/dsgw/userhtml/edit-userpasswd.html @@ -0,0 +1,85 @@ +<!-- + PROPRIETARY/CONFIDENTIAL. Use of this product is subject to + license terms. Copyright © 2001 Sun Microsystems, Inc. + Some preexisting portions Copyright © 2001 Netscape Communications Corp. + All rights reserved. + --> +<HTML><HEAD> +<!-- change a user's password in the directory --> + +<!-- DS_ENTRYBEGIN --> +<TITLE>Change Password - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> +</TITLE> + +</HEAD> + +<!-- COLORS "TEXT=#000000 BGCOLOR=#FFFFFF LINK=#FF0000 VLINK=#8000FF ALINK=#FF0000" --> + +<!-- BODY "onLoad='document.forms[0].passwd.focus()'" --> + +<!-- DS_LAST_OP_INFO "prefix=<FONT SIZE=%22%2B1%22>" "suffix=</FONT><HR>" --> + +<!-- DS_BEGIN_ENTRYFORM --> + +<INPUT TYPE="hidden" NAME="quiet" VALUE="true"> +<INPUT TYPE="hidden" NAME="colors" VALUE="TEXT=#000000 BGCOLOR=#FFFFFF LINK=#FF0000 VLINK=#8000FF ALINK=#FF0000"> + +<INPUT TYPE="hidden" NAME="completion_javascript" VALUE="document.location.href=\'edit/?userpasswd&info=\' + escape(dsmodify_info);"> + +<TABLE BORDER=2 CELLSPACING=0 CELLPADDING=10 BGCOLOR="#F0F0F0"> +<TR BGCOLOR="#F1C40E"> +<TD> +<H3>Password for +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> +<FONT COLOR="#FFFFFF"> </FONT></H3> +</TD> +</TR> + +<TR> +<TD><I><FONT SIZE=+0>Use this form to change your system password</FONT></I>. +</TD> +</TR> + +<TR> +<TD> +<UL> +<TABLE CELLSPACING=0 CELLPADDING=0 > +<TR ALIGN=LEFT VALIGN=CENTER> +<TD><B>1.</B> Enter your <B>current </B>password:</TD> +<TD> +<!-- DS_OLDPASSWORD "size=12" --> +</TD></TR> + +<TR VALIGN=CENTER> +<TD><B>2.</B> Enter your <B>new </B>password: </TD> +<TD> +<!-- DS_NEWPASSWORD "size=12" --> +</TD></TR> + +<TR ALIGN=LEFT VALIGN=CENTER> +<TD><B>3.</B> Enter <B>new </B>password again:</TD> +<TD> +<!-- DS_CONFIRM_NEWPASSWORD "size=12" --> +</TD></TR> +</TABLE> +</UL> +</TD> +</TR> + +<TR> +<TD> +<CENTER><P> +<!-- DS_SAVEBUTTON "label= OK " --> +</P></CENTER> +</TD> +</TR> +</TABLE> + + +<INPUT TYPE="hidden" NAME="completion_javascript" VALUE="document.location.href=\'edit/\' + dsmodify_dn + \'?&info=\' + escape(dsmodify_info)"> + +<!-- DS_END_ENTRYFORM --> +<!-- DS_ENTRYEND --> + +<!-- ENDHTML --> diff --git a/ldap/clients/dsgw/userhtml/edit-userpinfo.html b/ldap/clients/dsgw/userhtml/edit-userpinfo.html new file mode 100644 index 00000000..ebd7b3dc --- /dev/null +++ b/ldap/clients/dsgw/userhtml/edit-userpinfo.html @@ -0,0 +1,92 @@ +<!-- + PROPRIETARY/CONFIDENTIAL. Use of this product is subject to + license terms. Copyright © 2001 Sun Microsystems, Inc. + Some preexisting portions Copyright © 2001 Netscape Communications Corp. + All rights reserved. + --> +<HTML> +<HEAD> +<!-- DS_ENTRYBEGIN --> +<!-- DS_EMIT_BASE_HREF --> +</HEAD> + +<!-- COLORS "TEXT=#000000 BGCOLOR=#FFFFFF LINK=#FF0000 VLINK=#8000FF ALINK=#FF0000" --> + +<!-- BODY --> + +<!-- DS_LAST_OP_INFO "prefix=<FONT SIZE=%22%2B1%22>" "suffix=</FONT>" --> + +<!-- DS_BEGIN_ENTRYFORM --> + +<INPUT TYPE="hidden" NAME="quiet" VALUE="true"> +<INPUT TYPE="hidden" NAME="colors" VALUE="TEXT=#000000 BGCOLOR=#FFFFFF LINK=#FF0000 VLINK=#8000FF ALINK=#FF0000"> +<INPUT TYPE="hidden" NAME="completion_javascript" VALUE="document.location.href=\'edit/?userpinfo&info=\' + escape(dsmodify_info);"> + +<TABLE BORDER=2 CELLSPACING=0 CELLPADDING=5 BGCOLOR="#F0F0F0" > +<TR BGCOLOR="#F1C40E"> +<TD COLSPAN=2> +<H3>Personal Information - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "dncomponents=2" "options=nolink" --> +</H3> +</TD> +</TR> + +<TR> +<TD COLSPAN=2><I><FONT SIZE=+0>Use this form to change your personal information +</FONT></I>. +</TD> +</TR> + +<TR> +<TD>First Name:</TD> +<TD> +<!-- DS_ATTRIBUTE "attr=givenName" "size=>20" --> +</TD></TR> + +<TR> +<TD>Last Name:</TD> +<TD> +<!-- DS_ATTRIBUTE "attr=sn" "size=>20" --> +</TD></TR> + +<TR> +<TD>Phone Number:</TD> +<TD> +<!-- DS_ATTRIBUTE "attr=telephoneNumber" "syntax=tel" "cols=>20" "numfields=+1" --> +</TD></TR> + +<TR> +<TD>Fax Number:</TD> +<TD> +<!-- DS_ATTRIBUTE "attr=facsimileTelephoneNumber" "syntax=tel" "cols=>20" --> +</TD></TR> + +<TR> +<TD>Title:</TD> +<TD> +<!-- DS_ATTRIBUTE "attr=title" "cols=>20" --> +</TD></TR> + +<TR> +<TD COLSPAN=2> +<CENTER> +<!-- DS_SAVEBUTTON "label= OK " --> +</CENTER> + +<!-- IF "AttributeHasValues" "modifyTimestamp" --> +<TR> +<TD COLSPAN=2> +<FONT SIZE="-1"> +Your directory entry was last modified +<!-- DS_ATTRIBUTE "attr=modifyTimestamp" "syntax=time" "options=readonly" --> + by +<!-- DS_ATTRIBUTE "attr=modifiersName" "syntax=dn" "defaultvalue=N/A" "options=readonly,nolink" --> +</TD></TR> +<!-- ENDIF // AttributeHasValues --> + +</TABLE> + +<!-- DS_END_ENTRYFORM --> +<!-- DS_ENTRYEND --> + +<!-- ENDHTML --> diff --git a/ldap/clients/dsgw/userhtml/index.html b/ldap/clients/dsgw/userhtml/index.html new file mode 100644 index 00000000..06b26dae --- /dev/null +++ b/ldap/clients/dsgw/userhtml/index.html @@ -0,0 +1,29 @@ +<!-- + PROPRIETARY/CONFIDENTIAL. Use of this product is subject to + license terms. Copyright © 2001 Sun Microsystems, Inc. + Some preexisting portions Copyright © 2001 Netscape Communications Corp. + All rights reserved. + --> +<HEAD> +<TITLE>Netscape User Environment</TITLE> +</HEAD> +<HTML> +<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#FF0000" VLINK="#8000FF" + ALINK="#FF0000"> +<TABLE BORDER=1 CELLSPACING=0 CELLPADDING=10 WIDTH="100%" BGCOLOR="#F1F1F1" > +<TR> +<TD><FONT SIZE=+2>Welcome!</FONT> +<P><B><FONT SIZE=+1>This page enables you to change some information about +yourself and your accounts on this system.</FONT></B></P> + +<P><B><FONT SIZE=+1>Your options are listed on the left.</FONT></B></P> +</TD> +</TR> +</TABLE> + +<P><BR> +<BR> +</P> + +</BODY> +</HTML> diff --git a/ldap/clients/dsgw/userhtml/index.lst b/ldap/clients/dsgw/userhtml/index.lst new file mode 100644 index 00000000..83156146 --- /dev/null +++ b/ldap/clients/dsgw/userhtml/index.lst @@ -0,0 +1,29 @@ +;------------------------------------------------------------------------- +; PROPRIETARY/CONFIDENTIAL. Use of this product is subject to +; license terms. Copyright © 2001 Sun Microsystems, Inc. +; Some preexisting portions Copyright © 2001 Netscape Communications Corp. +; All rights reserved. +;------------------------------------------------------------------------- +; Netscape admin index page master list +; +; Lines beginning with a ';' are comments +; Lines beginning with '--' are dividers: +; '--Category:[ID,NAME]' is the title of the category of options, +; with short identifier ID and text NAME +; '--TabIcon:[ICON]' is the name of the icon that goes on top +; (assumes a suffix of '_on.gif' for on icon, +; '_off.gif' for off) +; (ex: for "users", would have URL "users" which points +; to "users_on.gif" and "users_off.gif") +; '--Icon:[URL]' is the icon to associate with those options +; '--Option:[URL,TXT]' is the URL that the option should point to, +; and the text that should be used to describe +; it +; +; NOTE: Do NOT let a line have unterminated quotes, double slash +; characters, pound signs, or slash star sequences. This file +; is sent through the C preprocessor and that can screw it up. + +--Category:general,General +--Option:edit/?userpasswd,Password +--Option:edit/?userpinfo,Personal Information |
