From 2bb966dcbbcd9db22629987837702b293dc1dd8b Mon Sep 17 00:00:00 2001 From: Nathan Kinder Date: Jan 14 2008 22:31:24 +0000 Subject: General templating work for DSGW CGI URI's. --- diff --git a/Makefile.am b/Makefile.am index 0bc0737..5c10866 100644 --- a/Makefile.am +++ b/Makefile.am @@ -51,7 +51,8 @@ AM_CPPFLAGS +=-DPROPERTYDIR=\"$(propertydir)\" \ -DHTMLDIR=\"$(htmldir)\" -DCOOKIEDIR=\"$(cookiedir)\" \ -DCONFIGDIR=\"$(configdir)\" -DSECURITYDIR=\"$(securitydir)\" \ -DCGIBINDIR=\"$(cgibindir)\" -DCONTEXTDIR=\"$(contextdir)\" \ - -DINSTCONFIGDIR=\"$(instconfigdir)\" -DMANUALDIR=\"$(manualdir)\" + -DINSTCONFIGDIR=\"$(instconfigdir)\" -DMANUALDIR=\"$(manualdir)\" \ + -DCGIURIBASE=\"$(cgiuri)\" LIBS = @adminutil_lib@ -ladmsslutil@adminutil_ver@ -ladminutil@adminutil_ver@ \ @icu_lib@ -licui18n -licuuc -licudata \ @@ -234,6 +235,7 @@ fixupcmd = sed \ -e 's,@cgiuri\@,$(cgiuri),g' \ -e 's,@orguri\@,$(orguri),g' \ -e 's,@dsgwuri\@,$(dsgwuri),g' \ + -e 's,@pburi\@,$(pburi),g' \ -e 's,@cmdbindir\@,$(cmdbindir),g' \ -e 's,@propertydir\@,$(propertydir),g' \ -e 's,@htmldir\@,$(htmldir),g' \ diff --git a/Makefile.in b/Makefile.in index 3e5c0ac..a3935ff 100644 --- a/Makefile.in +++ b/Makefile.in @@ -345,6 +345,7 @@ orghtmldir = $(datadir)@orghtmldir@ orguri = @orguri@ pbconfigdir = $(datadir)@pbconfigdir@ pbhtmldir = $(datadir)@pbhtmldir@ +pburi = @pburi@ perldir = $(libdir)@perldir@ perlexec = @perlexec@ prefix = @prefix@ @@ -370,7 +371,7 @@ AM_CPPFLAGS = -DDSGW_VER_STR=\"$(DSGW_VER_STR)\" $(DEBUG_DEFINES) \ -DCONFIGDIR=\"$(configdir)\" -DSECURITYDIR=\"$(securitydir)\" \ -DCGIBINDIR=\"$(cgibindir)\" -DCONTEXTDIR=\"$(contextdir)\" \ -DINSTCONFIGDIR=\"$(instconfigdir)\" \ - -DMANUALDIR=\"$(manualdir)\" + -DMANUALDIR=\"$(manualdir)\" -DCGIURIBASE=\"$(cgiuri)\" # these are programs which we do not want to link with nss NEED_SECGLUE = unauth search csearch newentry tutor lang @@ -511,6 +512,7 @@ fixupcmd = sed \ -e 's,@cgiuri\@,$(cgiuri),g' \ -e 's,@orguri\@,$(orguri),g' \ -e 's,@dsgwuri\@,$(dsgwuri),g' \ + -e 's,@pburi\@,$(pburi),g' \ -e 's,@cmdbindir\@,$(cmdbindir),g' \ -e 's,@propertydir\@,$(propertydir),g' \ -e 's,@htmldir\@,$(htmldir),g' \ diff --git a/config.c b/config.c index 82ddabb..bc7099e 100644 --- a/config.c +++ b/config.c @@ -120,7 +120,7 @@ dsgw_read_config() gc->gc_tmpldir = DSGW_TMPLDIR_HTTP; /* may be overridden below */ gc->gc_urlpfxmain = DSGW_URLPREFIX_MAIN_HTTP; /* may be overridden below */ /*gc->gc_urlpfxcgi = DSGW_URLPREFIX_CGI_HTTP;*/ - gc->gc_urlpfxcgi = DSGW_URLPREFIX_BIN; /* may be overridden below */ + gc->gc_urlpfxcgi = CGIURIBASE; /* may be overridden below */ gc->gc_binddn = gc->gc_bindpw = ""; gc->gc_charset = NULL; /* implicitly ISO-8859-1 */ gc->gc_ClientLanguage = ""; @@ -200,11 +200,11 @@ dsgw_read_config() * DSGW_CONFIGFILE in the config directory */ if (context == NULL) { - PR_snprintf( path, MAXPATHLEN, "%s$$LANGDIR/%s", + PR_snprintf( path, MAXPATHLEN, "%s/$$LANGDIR/%s", DSGW_CONFIGDIR_HTTP, DSGW_CONFIGFILE); len = strlen( DSGW_CONFIGDIR_HTTP ) + strlen( DSGW_CONFIGFILE ) + 32; } else { - PR_snprintf( path, MAXPATHLEN, "%s$$LANGDIR/%s.conf", + PR_snprintf( path, MAXPATHLEN, "%s/$$LANGDIR/%s.conf", DSGW_CONTEXTDIR_HTTP, context); /* increased the length from 11 -- fix for auth crash on AIX */ len = strlen( DSGW_CONTEXTDIR_HTTP ) + strlen( context ) + 32; diff --git a/config/authPassword.html b/config/authPassword.html deleted file mode 100644 index 2b8eecf..0000000 --- a/config/authPassword.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - -Authenticate... - - - - - - - -

-Password for - -: -

-

- - - -
- - - diff --git a/config/authPassword.html.in b/config/authPassword.html.in new file mode 100644 index 0000000..dde3071 --- /dev/null +++ b/config/authPassword.html.in @@ -0,0 +1,61 @@ + + + + +Authenticate... + + + + + + + +

+Password for + +: +

+

+ + + +
+ + + diff --git a/config/authSearch.html b/config/authSearch.html deleted file mode 100644 index ca7bbb4..0000000 --- a/config/authSearch.html +++ /dev/null @@ -1,66 +0,0 @@ - - - - -Authenticate... - - - - - - -The first step in authenticating to the directory is identifying -yourself.
Please type your name: - -

-

- - - -
- -

- - (only available to Directory Administrators) - - - - - - diff --git a/config/authSearch.html.in b/config/authSearch.html.in new file mode 100644 index 0000000..714bca3 --- /dev/null +++ b/config/authSearch.html.in @@ -0,0 +1,66 @@ + + + + +Authenticate... + + + + + + +The first step in authenticating to the directory is identifying +yourself.
Please type your name: + +

+

+ + + +
+ +

+ + (only available to Directory Administrators) + + + + + + diff --git a/config/csearch.html b/config/csearch.html deleted file mode 100644 index a417f2e..0000000 --- a/config/csearch.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - -Netscape Directory Server Gateway: Advanced Search - - - - - - - - - - - - - - - - - - diff --git a/config/csearch.html.in b/config/csearch.html.in new file mode 100644 index 0000000..9f9db32 --- /dev/null +++ b/config/csearch.html.in @@ -0,0 +1,59 @@ + + + + +Netscape Directory Server Gateway: Advanced Search + + + + + + + + + + + + + + + + + + diff --git a/config/csearchAttr.html b/config/csearchAttr.html deleted file mode 100644 index f64c9e9..0000000 --- a/config/csearchAttr.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - -
-where the - - -
- diff --git a/config/csearchAttr.html.in b/config/csearchAttr.html.in new file mode 100644 index 0000000..95dc8d5 --- /dev/null +++ b/config/csearchAttr.html.in @@ -0,0 +1,54 @@ + + + + + + + + + + + + +
+where the + + +
+ diff --git a/config/csearchBase.html b/config/csearchBase.html deleted file mode 100644 index a33e737..0000000 --- a/config/csearchBase.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - -
-within - -
- - diff --git a/config/csearchBase.html.in b/config/csearchBase.html.in new file mode 100644 index 0000000..548d8a0 --- /dev/null +++ b/config/csearchBase.html.in @@ -0,0 +1,53 @@ + + + + + + + + + + + +
+within + +
+ + diff --git a/config/csearchMatch.html b/config/csearchMatch.html deleted file mode 100644 index 605db6c..0000000 --- a/config/csearchMatch.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - -
- -
- - - diff --git a/config/csearchMatch.html.in b/config/csearchMatch.html.in new file mode 100644 index 0000000..e01657f --- /dev/null +++ b/config/csearchMatch.html.in @@ -0,0 +1,52 @@ + + + + + + + + + + +
+ +
+ + + diff --git a/config/csearchString.html b/config/csearchString.html deleted file mode 100644 index 4b41be6..0000000 --- a/config/csearchString.html +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - -
- - - -
- - - - - diff --git a/config/csearchString.html.in b/config/csearchString.html.in new file mode 100644 index 0000000..52db144 --- /dev/null +++ b/config/csearchString.html.in @@ -0,0 +1,57 @@ + + + + + + + + + + + +
+ + + +
+ + + + + diff --git a/config/csearchType.html b/config/csearchType.html deleted file mode 100644 index 0cef8b5..0000000 --- a/config/csearchType.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - -
-Find - - -
- - - diff --git a/config/csearchType.html.in b/config/csearchType.html.in new file mode 100644 index 0000000..5088b0f --- /dev/null +++ b/config/csearchType.html.in @@ -0,0 +1,55 @@ + + + + + + + + + + + +
+Find + + +
+ + + diff --git a/config/de/display-country.html b/config/de/display-country.html deleted file mode 100644 index 1d7e553..0000000 --- a/config/de/display-country.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - -Land - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - -
-Land - - -
- - - - - - - - - - - -
Landesname: - -Beschreibung: - -
Siehe auch: - -
URL: - -
- -


- -Eintrag zuletzt geändert am - - von - - - - - - diff --git a/config/de/display-country.html.in b/config/de/display-country.html.in new file mode 100644 index 0000000..7f265dd --- /dev/null +++ b/config/de/display-country.html.in @@ -0,0 +1,85 @@ + + + + + + +Land - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + +
+Land + + +
+ + + + + + + + + + + +
Landesname: + +Beschreibung: + +
Siehe auch: + +
URL: + +
+ +
+ +Eintrag zuletzt geändert am + + von + + + + + + diff --git a/config/de/display-group.html b/config/de/display-group.html deleted file mode 100644 index c56efc3..0000000 --- a/config/de/display-group.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -Neuer -<!-- ENDIF // Adding --> -Gruppeneintrag - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
-Gruppe - - -Neue Gruppe - - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - -
- -* bezeichnet einen Pflichteintrag
- - - - - - - - - - - - - - - - - - - - - - - - - -
Name: - -* - - - -
Beschreibung: - -
Eigentümer:
- - - -
- -
Siehe auch:
- - - -
- - - - - -Sie müssen diesen Eintrag speichern, bevor Sie diese Felder bearbeiten können. - -
Gruppenmitglieder:
- - - -
- -
- - -
-Eintrag zuletzt geändert am - - von - - - - - - - - diff --git a/config/de/display-group.html.in b/config/de/display-group.html.in new file mode 100644 index 0000000..7cf10dc --- /dev/null +++ b/config/de/display-group.html.in @@ -0,0 +1,181 @@ + + + + + + + +<!-- IF "Adding" --> +Neuer +<!-- ENDIF // Adding --> +Gruppeneintrag - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
+Gruppe + + +Neue Gruppe - + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + +
+ +* bezeichnet einen Pflichteintrag
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Name: + +* + + + +
Beschreibung: + +
Eigentümer:
+ + + +
+ +
Siehe auch:
+ + + +
+ + + + + +Sie müssen diesen Eintrag speichern, bevor Sie diese Felder bearbeiten können. + +
Gruppenmitglieder:
+ + + +
+ +
+ + +
+Eintrag zuletzt geändert am + + von + + + + + + + + diff --git a/config/de/display-groupun.html b/config/de/display-groupun.html deleted file mode 100644 index edf523d..0000000 --- a/config/de/display-groupun.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -Neuer -<!-- ENDIF // Adding --> -Gruppeneintrag - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
-Gruppe - - -Neue Gruppe - - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - -
- -* bezeichnet einen Pflichteintrag
- - - - - - - - - - - - - - - - - - - - - - - - - -
Name: - -* - - - -
Beschreibung: - -
Eigentümer:
- - - -
- -
Siehe auch:
- - - -
- - - - - -Sie müssen diesen Eintrag speichern, bevor Sie diese Felder bearbeiten können. - -
Gruppenmitglieder:
- - - -
- -
- - -
-Eintrag zuletzt geändert am - - von - - - - - - - - diff --git a/config/de/display-groupun.html.in b/config/de/display-groupun.html.in new file mode 100644 index 0000000..49baf1c --- /dev/null +++ b/config/de/display-groupun.html.in @@ -0,0 +1,181 @@ + + + + + + + +<!-- IF "Adding" --> +Neuer +<!-- ENDIF // Adding --> +Gruppeneintrag - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
+Gruppe + + +Neue Gruppe - + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + +
+ +* bezeichnet einen Pflichteintrag
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Name: + +* + + + +
Beschreibung: + +
Eigentümer:
+ + + +
+ +
Siehe auch:
+ + + +
+ + + + + +Sie müssen diesen Eintrag speichern, bevor Sie diese Felder bearbeiten können. + +
Gruppenmitglieder:
+ + + +
+ +
+ + +
+Eintrag zuletzt geändert am + + von + + + + + + + + diff --git a/config/de/display-mailgroup.html b/config/de/display-mailgroup.html deleted file mode 100644 index 76a9528..0000000 --- a/config/de/display-mailgroup.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -Neuer -<!-- ENDIF // Adding --> -E-Mail-Gruppeneintrag - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - -
-Gruppe - - -Neue E-Mail-Gruppe - - - - -
- - - - -
- - - - - - - -   - - - -   - - - - - - - -   - - - -
- - - - - - - -
- - - - - - - - - - - - - - -
- - - - - - - -
Name: - -Beschreibung: - -
Eigentümer: - -
Siehe auch: - -
- - - -
Gruppenmitglieder: - -
E-Mail-Mitglieder: - -
- - -
-Eintrag zuletzt geändert am - - von - - - - - - - - diff --git a/config/de/display-mailgroup.html.in b/config/de/display-mailgroup.html.in new file mode 100644 index 0000000..61ca4ef --- /dev/null +++ b/config/de/display-mailgroup.html.in @@ -0,0 +1,155 @@ + + + + + + + +<!-- IF "Adding" --> +Neuer +<!-- ENDIF // Adding --> +E-Mail-Gruppeneintrag - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + +
+Gruppe + + +Neue E-Mail-Gruppe + + + + +
+ + + + +
+ + + + + + + +   + + + +   + + + + + + + +   + + + +
+ + + + + + + +
+ + + + + + + + + + + + + + +
+ + + + + + + +
Name: + +Beschreibung: + +
Eigentümer: + +
Siehe auch: + +
+ + + +
Gruppenmitglieder: + +
E-Mail-Mitglieder: + +
+ + +
+Eintrag zuletzt geändert am + + von + + + + + + + + diff --git a/config/de/display-ntgroup.html b/config/de/display-ntgroup.html deleted file mode 100644 index d42b7ac..0000000 --- a/config/de/display-ntgroup.html +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -Neuer -<!-- ENDIF // Adding --> -NT-Gruppeneintrag - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
-Gruppe - - -Neue NT-Gruppe - - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - - -
- -* bezeichnet einen Pflichteintrag
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Name: - -* - - - -
NT-Gruppenname: - -* - - - - - - - -
NT-Gruppentyp: - -* - - - - - - - -
NT-Gruppendomäne - -* - - - -
Beschreibung: - -
Lokal: - -
Geschäftsbereich: - -
Eigentümer:
- - - -
- -
Siehe auch:
- - - -
- - - - - -Sie müssen diesen Eintrag speichern, bevor Sie diese Felder bearbeiten können. - -
NT-Gruppenmitglieder:
- - - -
- -
NT-Gruppe löschen, wenn Gruppe gelöscht wird: - -
Neues NT-Gruppenkonto erstellen: - -
- - -
-Eintrag zuletzt geändert am - - von - - - - - - - - diff --git a/config/de/display-ntgroup.html.in b/config/de/display-ntgroup.html.in new file mode 100644 index 0000000..0f823be --- /dev/null +++ b/config/de/display-ntgroup.html.in @@ -0,0 +1,247 @@ + + + + + + + +<!-- IF "Adding" --> +Neuer +<!-- ENDIF // Adding --> +NT-Gruppeneintrag - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
+Gruppe + + +Neue NT-Gruppe - + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + + +
+ +* bezeichnet einen Pflichteintrag
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name: + +* + + + +
NT-Gruppenname: + +* + + + + + + + +
NT-Gruppentyp: + +* + + + + + + + +
NT-Gruppendomäne + +* + + + +
Beschreibung: + +
Lokal: + +
Geschäftsbereich: + +
Eigentümer:
+ + + +
+ +
Siehe auch:
+ + + +
+ + + + + +Sie müssen diesen Eintrag speichern, bevor Sie diese Felder bearbeiten können. + +
NT-Gruppenmitglieder:
+ + + +
+ +
NT-Gruppe löschen, wenn Gruppe gelöscht wird: + +
Neues NT-Gruppenkonto erstellen: + +
+ + +
+Eintrag zuletzt geändert am + + von + + + + + + + + diff --git a/config/de/display-ntperson.html b/config/de/display-ntperson.html deleted file mode 100644 index 8a8a974..0000000 --- a/config/de/display-ntperson.html +++ /dev/null @@ -1,536 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -Neuer -<!-- ENDIF // Adding --> -NT-Benutzereintrag - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - - - - - - -
- - - -BORDER=0> - - -Benutzer (Anklicken, um Karte anzuzeigen) - - - - - > -Click to display organization chart - - - -Neuer NT-Benutzer - - - -
- - - - ->Download Certificate - - - - -   - ->Play Audio Clip - - - - - - - - -
- - -   - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - - - - - - - - -* bezeichnet einen Pflichteintrag
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Kontaktinformationen
Vorname: - -Vollständiger Name: - -* - - - -
Nachname: - -* - - - -
Directory-Server-Kennwort: - - Kennwort zur Bestätigung wiederholen: - -
Telefon: - -E-Mail-Adresse: - -
Fax: - -Benutzer-ID: - -
Pager: - -Mobiltelefon: - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Windows NT Kontoinformationen
NT-Benutzer-ID: - -* - - - - - - - - -NT-Domäne: - -* - - - -
NT-Benutzerkonto löschen, wenn Benutzer gelöscht wird: - -
Neues NT-Benutzerkonto erstellen: - -
NT-Benutzer-Kommentar: - -Eindeutige NT-Benutzer-ID: - -
NT-Kennwort abgelaufen: - -Anzahl falscher NT-Kennworteingaben: - -
Letzte NT-Anmeldung: - -Letzte NT-Abmeldung: - -
Verfalldatum NT-Benutzerkonto: - -Anzahl NT-Anmeldungen: - -
NT-Anmelde-Server: - -NT-Arbeitsstationen: - -
NT-Codeseite: - -NT-Landescode: - -
Primäre NT-Gruppen-ID: - -NT-Profil: - -
NT-Basisverzeichnis: - -Laufwerk des NT-Basisverzeichnisses: - -
NT-Skriptpfad: - -Maximaler NT-Speicherplatz: - -
NT-Einheiten pro Woche: - -Rechte des NT-Benutzers: - -
Operator-Rechte des NT-Benutzers: - -Div. betr. NT-Benutzerkonto: Funktionen: - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Branchen- und Positionsinformationen
Branche: - -Titel: - -
Geschäftsbereich: - -Leiter:
- - - -
-Sie müssen diesen Eintrag speichern, bevor Sie diese Felder bearbeiten können. - - - - - -
Raum: - -Sekr.:
- - - -
- -
Abt.-Nr.: - -MA-Nr.: - -
Kfz-Kennzeichen: - -    
Postadresse: - -
- - - - - - - - - - - - - - - - - - - - ---> - -
-Zusätzliche Informationen
Beschreibung: - -
Siehe auch:
- - - -
- -Sie müssen diesen Eintrag speichern, bevor Sie diese Felder bearbeiten können. - - - - - -
URL: - -
- - -Eintrag zuletzt geändert am - - von - - - - - - - - diff --git a/config/de/display-ntperson.html.in b/config/de/display-ntperson.html.in new file mode 100644 index 0000000..bbd4aa4 --- /dev/null +++ b/config/de/display-ntperson.html.in @@ -0,0 +1,536 @@ + + + + + + + + +<!-- IF "Adding" --> +Neuer +<!-- ENDIF // Adding --> +NT-Benutzereintrag - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + + + + + + +
+ + + +BORDER=0> + + +Benutzer (Anklicken, um Karte anzuzeigen) + + + + + > +Click to display organization chart + + + +Neuer NT-Benutzer - + + +
+ + + + +>Download Certificate + + + + +   + +>Play Audio Clip + + + + + + + + +
+ + +   + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + + + + + + + + +* bezeichnet einen Pflichteintrag
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Kontaktinformationen
Vorname: + +Vollständiger Name: + +* + + + +
Nachname: + +* + + + +
Directory-Server-Kennwort: + + Kennwort zur Bestätigung wiederholen: + +
Telefon: + +E-Mail-Adresse: + +
Fax: + +Benutzer-ID: + +
Pager: + +Mobiltelefon: + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Windows NT Kontoinformationen
NT-Benutzer-ID: + +* + + + + + + + + +NT-Domäne: + +* + + + +
NT-Benutzerkonto löschen, wenn Benutzer gelöscht wird: + +
Neues NT-Benutzerkonto erstellen: + +
NT-Benutzer-Kommentar: + +Eindeutige NT-Benutzer-ID: + +
NT-Kennwort abgelaufen: + +Anzahl falscher NT-Kennworteingaben: + +
Letzte NT-Anmeldung: + +Letzte NT-Abmeldung: + +
Verfalldatum NT-Benutzerkonto: + +Anzahl NT-Anmeldungen: + +
NT-Anmelde-Server: + +NT-Arbeitsstationen: + +
NT-Codeseite: + +NT-Landescode: + +
Primäre NT-Gruppen-ID: + +NT-Profil: + +
NT-Basisverzeichnis: + +Laufwerk des NT-Basisverzeichnisses: + +
NT-Skriptpfad: + +Maximaler NT-Speicherplatz: + +
NT-Einheiten pro Woche: + +Rechte des NT-Benutzers: + +
Operator-Rechte des NT-Benutzers: + +Div. betr. NT-Benutzerkonto: Funktionen: + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Branchen- und Positionsinformationen
Branche: + +Titel: + +
Geschäftsbereich: + +Leiter:
+ + + +
+Sie müssen diesen Eintrag speichern, bevor Sie diese Felder bearbeiten können. + + + + + +
Raum: + +Sekr.:
+ + + +
+ +
Abt.-Nr.: + +MA-Nr.: + +
Kfz-Kennzeichen: + +    
Postadresse: + +
+ + + + + + + + + + + + + + + + + + + + +--> + +
+Zusätzliche Informationen
Beschreibung: + +
Siehe auch:
+ + + +
+ +Sie müssen diesen Eintrag speichern, bevor Sie diese Felder bearbeiten können. + + + + + +
URL: + +
+ + +Eintrag zuletzt geändert am + + von + + + + + + + + diff --git a/config/de/display-org.html b/config/de/display-org.html deleted file mode 100644 index 94fe6da..0000000 --- a/config/de/display-org.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -Neue -<!-- ENDIF // Adding --> -Firma - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
-Firma - - - -Neue Firma - - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - -
- -* bezeichnet einen Pflichteintrag
- - - - - - - - - - - - - - - - - - - - - - -
Firmenname: - -* - - - -Beschreibung: - -
Telefon: - -Branche: - -
Fax: - -Standort: - -
Postadresse: - -
Siehe auch: - -
- - -
-Eintrag zuletzt geändert am - - von - - - - - - - - diff --git a/config/de/display-org.html.in b/config/de/display-org.html.in new file mode 100644 index 0000000..0a99c10 --- /dev/null +++ b/config/de/display-org.html.in @@ -0,0 +1,167 @@ + + + + + + + +<!-- IF "Adding" --> +Neue +<!-- ENDIF // Adding --> +Firma - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
+Firma + + + +Neue Firma - + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + +
+ +* bezeichnet einen Pflichteintrag
+ + + + + + + + + + + + + + + + + + + + + + +
Firmenname: + +* + + + +Beschreibung: + +
Telefon: + +Branche: + +
Fax: + +Standort: + +
Postadresse: + +
Siehe auch: + +
+ + +
+Eintrag zuletzt geändert am + + von + + + + + + + + diff --git a/config/de/display-orgperson.html b/config/de/display-orgperson.html deleted file mode 100644 index 1e745cc..0000000 --- a/config/de/display-orgperson.html +++ /dev/null @@ -1,376 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -Neuer -<!-- ENDIF // Adding --> -Personeneintrag - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - - - - - - - -
- - - -BORDER=0> - - - -Benutzer (Anklicken, um Karte anzuzeigen) - - - - > -Click to display organization chart - - - -Neue Person - - - -
- - - - ->Zertifikat laden - - - - -   - ->Audio-Clip abspielen - - - - - - - - -
- - -   - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - - - - - - - -* bezeichnet einen Pflichteintrag
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Kontaktinformationen
Vorname: - -Vollständiger Name: - -* - - - -
Nachname: - -* - - - -
Kennwort: - - Kennwort zur Bestätigung wiederholen: - -
Telefon: - -E-Mail-Adresse: - -
Fax: - -Benutzer-ID: - -
Pager: - -Mobiltelefon: - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Branchen- und Positionsinformationen
Branche: - -Titel: - -
Geschäftsbereich: - -Leiter:
- - - -
-Sie müssen diesen Eintrag speichern, bevor Sie diese Felder bearbeiten können. - - - - - -
Raum: - -Sekr.:
- - - -
- -
Abt.-Nr.: - -MA-Nr.: - -
Kfz-Kennzeichen: - -    
Postadresse: - -
- - - - - - - - - - - - - - - - - - - - ---> - -
-Zusätzliche Informationen
Beschreibung: - -
Siehe auch:
- - - -
- -Sie müssen diesen Eintrag speichern, bevor Sie dieses Feld bearbeiten können. - - - - - -
URL: - -
- - -Eintrag zuletzt geändert am - - von - - - - - - - - diff --git a/config/de/display-orgperson.html.in b/config/de/display-orgperson.html.in new file mode 100644 index 0000000..c96773b --- /dev/null +++ b/config/de/display-orgperson.html.in @@ -0,0 +1,376 @@ + + + + + + + + +<!-- IF "Adding" --> +Neuer +<!-- ENDIF // Adding --> +Personeneintrag - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + + + + + + + +
+ + + +BORDER=0> + + + +Benutzer (Anklicken, um Karte anzuzeigen) + + + + > +Click to display organization chart + + + +Neue Person - + + +
+ + + + +>Zertifikat laden + + + + +   + +>Audio-Clip abspielen + + + + + + + + +
+ + +   + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + + + + + + + +* bezeichnet einen Pflichteintrag
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Kontaktinformationen
Vorname: + +Vollständiger Name: + +* + + + +
Nachname: + +* + + + +
Kennwort: + + Kennwort zur Bestätigung wiederholen: + +
Telefon: + +E-Mail-Adresse: + +
Fax: + +Benutzer-ID: + +
Pager: + +Mobiltelefon: + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Branchen- und Positionsinformationen
Branche: + +Titel: + +
Geschäftsbereich: + +Leiter:
+ + + +
+Sie müssen diesen Eintrag speichern, bevor Sie diese Felder bearbeiten können. + + + + + +
Raum: + +Sekr.:
+ + + +
+ +
Abt.-Nr.: + +MA-Nr.: + +
Kfz-Kennzeichen: + +    
Postadresse: + +
+ + + + + + + + + + + + + + + + + + + + +--> + +
+Zusätzliche Informationen
Beschreibung: + +
Siehe auch:
+ + + +
+ +Sie müssen diesen Eintrag speichern, bevor Sie dieses Feld bearbeiten können. + + + + + +
URL: + +
+ + +Eintrag zuletzt geändert am + + von + + + + + + + + diff --git a/config/de/display-person.html b/config/de/display-person.html deleted file mode 100644 index 1d5b9f4..0000000 --- a/config/de/display-person.html +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -Neuer -<!-- ENDIF // Adding --> -Personeneintrag - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - - - - - -
- -Benutzer (Anklicken, um Karte anzuzeigen) - - - - > -Click to display organization chart - - - -Neue Person - - - -
- - - - - - - -
- - -   - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - - - - -
- -* bezeichnet einen Pflichteintrag
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Nachname: - -* - - - -Vollständiger Name: - -

Kennwort: - - Kennwort zur Bestätigung wiederholen: - -

Telefon: - -E-Mail-Adresse: - -
Fax: - -Benutzer-ID: - -
Pager: - -Mobiltelefon: - -

Titel: - -
Postadresse: - -

Beschreibung: - -
Siehe auch:
- - - -
- -Sie müssen diesen Eintrag speichern, bevor Sie diese Felder bearbeiten können. - - - - - -
URL: - -
Lieblingsgetränk: - -
- - -
-Eintrag zuletzt geändert am - - von - - - - - - - - diff --git a/config/de/display-person.html.in b/config/de/display-person.html.in new file mode 100644 index 0000000..c8fa2d4 --- /dev/null +++ b/config/de/display-person.html.in @@ -0,0 +1,262 @@ + + + + + + + + +<!-- IF "Adding" --> +Neuer +<!-- ENDIF // Adding --> +Personeneintrag - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + + + + + +
+ +Benutzer (Anklicken, um Karte anzuzeigen) + + + + > +Click to display organization chart + + + +Neue Person - + + +
+ + + + + + + +
+ + +   + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + + + + +
+ +* bezeichnet einen Pflichteintrag
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nachname: + +* + + + +Vollständiger Name: + +

Kennwort: + + Kennwort zur Bestätigung wiederholen: + +

Telefon: + +E-Mail-Adresse: + +
Fax: + +Benutzer-ID: + +
Pager: + +Mobiltelefon: + +

Titel: + +
Postadresse: + +

Beschreibung: + +
Siehe auch:
+ + + +
+ +Sie müssen diesen Eintrag speichern, bevor Sie diese Felder bearbeiten können. + + + + + +
URL: + +
Lieblingsgetränk: + +
+ + +
+Eintrag zuletzt geändert am + + von + + + + + + + + diff --git a/config/de/display-umperson.html b/config/de/display-umperson.html deleted file mode 100644 index b5fb42c..0000000 --- a/config/de/display-umperson.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -Neuer -<!-- ENDIF // Adding --> -Personeneintrag - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - -
- -> -Person - - - > -Click to display organization chart - - - -Neue Person - - - -
- - ->Audio-Clip abspielen - - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - - -
- -* bezeichnet einen Pflichteintrag
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Nachname: - -* - - - -Vollständiger Name: - -* - - - -
Telefon: - -E-Mail-Adresse: - -
Fax: - -Eindeutiger Name: - -
Pager: - -Mobiltelefon: - -

Titel: - -
Postadresse: - -

Beschreibung: - -
Siehe auch:
- -
- -
URL: - -
Lieblingsgetränk: - -
- - -
-Eintrag zuletzt geändert am - - von - - - - - - - - diff --git a/config/de/display-umperson.html.in b/config/de/display-umperson.html.in new file mode 100644 index 0000000..6a4dd90 --- /dev/null +++ b/config/de/display-umperson.html.in @@ -0,0 +1,231 @@ + + + + + + + + +<!-- IF "Adding" --> +Neuer +<!-- ENDIF // Adding --> +Personeneintrag - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + +
+ +> +Person + + + > +Click to display organization chart + + + +Neue Person - + + +
+ + +>Audio-Clip abspielen + + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + + +
+ +* bezeichnet einen Pflichteintrag
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nachname: + +* + + + +Vollständiger Name: + +* + + + +
Telefon: + +E-Mail-Adresse: + +
Fax: + +Eindeutiger Name: + +
Pager: + +Mobiltelefon: + +

Titel: + +
Postadresse: + +

Beschreibung: + +
Siehe auch:
+ +
+ +
URL: + +
Lieblingsgetränk: + +
+ + +
+Eintrag zuletzt geändert am + + von + + + + + + + + diff --git a/config/de/newentry.html b/config/de/newentry.html deleted file mode 100644 index a92b731..0000000 --- a/config/de/newentry.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - -Netscape Directory Server Gateway Neuer Eintrag - - - - - - - - -<BODY> -Sie ben&ouml;tigen einen Client, der Rahmen darstellen kann, um dieses Dokument zu betrachten. -</BODY> - - diff --git a/config/de/newentry.html.in b/config/de/newentry.html.in new file mode 100644 index 0000000..f637ac2 --- /dev/null +++ b/config/de/newentry.html.in @@ -0,0 +1,56 @@ + + + + +Netscape Directory Server Gateway Neuer Eintrag + + + + + + + + +<BODY> +Sie ben&ouml;tigen einen Client, der Rahmen darstellen kann, um dieses Dokument zu betrachten. +</BODY> + + diff --git a/config/de/search.html b/config/de/search.html deleted file mode 100644 index e10db0a..0000000 --- a/config/de/search.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - -Netscape Directory Server Gateway: Standardsuche - - - - - - - - diff --git a/config/de/search.html.in b/config/de/search.html.in new file mode 100644 index 0000000..ad68237 --- /dev/null +++ b/config/de/search.html.in @@ -0,0 +1,49 @@ + + + + +Netscape Directory Server Gateway: Standardsuche + + + + + + + + diff --git a/config/display-country.html b/config/display-country.html deleted file mode 100644 index 552ab5b..0000000 --- a/config/display-country.html +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - -Country - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - -
-Country - - -
- - - - - - - - - - - - - - - - - -
 
Country Name: - -Description: - -
See Also: - -
URL: - -
 
- -
This entry was last modified on - - by - - -
- - - diff --git a/config/display-country.html.in b/config/display-country.html.in new file mode 100644 index 0000000..2925872 --- /dev/null +++ b/config/display-country.html.in @@ -0,0 +1,92 @@ + + + + + + +Country - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + +
+Country + + +
+ + + + + + + + + + + + + + + + + +
 
Country Name: + +Description: + +
See Also: + +
URL: + +
 
+ +
This entry was last modified on + + by + + +
+ + + diff --git a/config/display-dc.html b/config/display-dc.html deleted file mode 100644 index c926e77..0000000 --- a/config/display-dc.html +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -Domaincomponent - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
Domaincomponent Entry
- - - - -
- - - - -
- -
- - - - - -
-Domaincomponent - - -New Domaincomponent - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - - -
 * Indicates a required field
- - - - - - - - - - - - - - - - - - - - - - - - -
 
- class="bold" - ->Domaincomponent Name: - -* - - - - - class="bold" - ->Description: - -
- class="bold" - ->Phone: - - - class="bold" - ->Business Category: - -
- class="bold" - ->Fax: - - - class="bold" - ->Location: - -
- class="bold" - ->Mailing Address: - -
- class="bold" - ->See Also: - -
 
- - -
- This entry was last modified on - - by - - -
- - - - - - diff --git a/config/display-dc.html.in b/config/display-dc.html.in new file mode 100644 index 0000000..3a3556a --- /dev/null +++ b/config/display-dc.html.in @@ -0,0 +1,219 @@ + + + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +Domaincomponent - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
Domaincomponent Entry
+ + + + +
+ + + + +
+ +
+ + + + + +
+Domaincomponent + + +New Domaincomponent - + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + + +
 * Indicates a required field
+ + + + + + + + + + + + + + + + + + + + + + + + +
 
+ class="bold" + +>Domaincomponent Name: + +* + + + + + class="bold" + +>Description: + +
+ class="bold" + +>Phone: + + + class="bold" + +>Business Category: + +
+ class="bold" + +>Fax: + + + class="bold" + +>Location: + +
+ class="bold" + +>Mailing Address: + +
+ class="bold" + +>See Also: + +
 
+ + +
+ This entry was last modified on + + by + + +
+ + + + + + diff --git a/config/display-dnedit.html b/config/display-dnedit.html deleted file mode 100644 index 46a3863..0000000 --- a/config/display-dnedit.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - -Edit -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
-Edit - -: - -
- -
- -
- - - - - - - - - - - -
- - - - - - - - - -
-Find - - -matching  - - - -
- -
- -

- - -
- - - - - -

- - - - - - - diff --git a/config/display-dnedit.html.in b/config/display-dnedit.html.in new file mode 100644 index 0000000..c09974f --- /dev/null +++ b/config/display-dnedit.html.in @@ -0,0 +1,116 @@ + + + + + + +Edit +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
+Edit + +: + +
+ +
+ +
+ + + + + + + + + + + +
+ + + + + + + + + +
+Find + + +matching  + + + +
+ +
+ +

+ + +
+ + + + + +

+ + + + + + + diff --git a/config/display-dneditpeople.html b/config/display-dneditpeople.html deleted file mode 100644 index 69b6bfa..0000000 --- a/config/display-dneditpeople.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -Edit -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - -
-Edit - -: - -
- - - - - - - - - - - - - -
- - - - - - - - - -
-Find - - -matching  - - - -
- -
- -

- - -
- - - - - -

- - - - - - - diff --git a/config/display-dneditpeople.html.in b/config/display-dneditpeople.html.in new file mode 100644 index 0000000..ffc7bb0 --- /dev/null +++ b/config/display-dneditpeople.html.in @@ -0,0 +1,114 @@ + + + + + + +Edit +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + +
+Edit + +: + +
+ + + + + + + + + + + + + +
+ + + + + + + + + +
+Find + + +matching  + + + +
+ +
+ +

+ + +
+ + + + + +

+ + + + + + + diff --git a/config/display-group.html b/config/display-group.html deleted file mode 100644 index ec90d6e..0000000 --- a/config/display-group.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -Group Entry - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - -
Group Entry
- - - - -
- - - - -
- -
- - - - -
-Group - -New Group - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - - -
  * Indicates a required field
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
 
- class="bold" - ->Name: - -* - - - -
- class="bold" - ->Description: - -
- class="bold" - ->Owner:
- - - -
- -
- class="bold" - ->See Also:
- - - -
- - - -You must save this entry before you can edit these fields. - -
- class="bold" - ->Group Members:
- - - -
- -
 
- - -
 This entry was last modified on - - by - - -
- - - - - - diff --git a/config/display-group.html.in b/config/display-group.html.in new file mode 100644 index 0000000..f0b733c --- /dev/null +++ b/config/display-group.html.in @@ -0,0 +1,217 @@ + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +Group Entry - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + +
Group Entry
+ + + + +
+ + + + +
+ +
+ + + + +
+Group + +New Group - + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + + +
  * Indicates a required field
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
 
+ class="bold" + +>Name: + +* + + + +
+ class="bold" + +>Description: + +
+ class="bold" + +>Owner:
+ + + +
+ +
+ class="bold" + +>See Also:
+ + + +
+ + + +You must save this entry before you can edit these fields. + +
+ class="bold" + +>Group Members:
+ + + +
+ +
 
+ + +
 This entry was last modified on + + by + + +
+ + + + + + diff --git a/config/display-groupun.html b/config/display-groupun.html deleted file mode 100644 index e45cacd..0000000 --- a/config/display-groupun.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -Group Entry - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - -
Group Entry
- - - - -
- - - - -
- -
- - - - -
-Group - -New Group - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - - -
 * Indicates a required field
- - - - - - - - - - - - - - - - - - - - - - - - - - -
 
- class="bold" - ->Name: - -* - - - -
- class="bold" - ->Description: - -
- class="bold" - ->Owner:
- - - -
- -
- class="bold" - ->See Also:
- - - -
- - - -You must save this entry before you can edit these fields. - -
- class="bold" - ->Group Members:
- - - -
- -
 
- - -
-  This entry was last modified on - - by - - -
- - - - - - diff --git a/config/display-groupun.html.in b/config/display-groupun.html.in new file mode 100644 index 0000000..29fe186 --- /dev/null +++ b/config/display-groupun.html.in @@ -0,0 +1,217 @@ + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +Group Entry - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + +
Group Entry
+ + + + +
+ + + + +
+ +
+ + + + +
+Group + +New Group - + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + + +
 * Indicates a required field
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
 
+ class="bold" + +>Name: + +* + + + +
+ class="bold" + +>Description: + +
+ class="bold" + +>Owner:
+ + + +
+ +
+ class="bold" + +>See Also:
+ + + +
+ + + +You must save this entry before you can edit these fields. + +
+ class="bold" + +>Group Members:
+ + + +
+ +
 
+ + +
+  This entry was last modified on + + by + + +
+ + + + + + diff --git a/config/display-ntgroup.html b/config/display-ntgroup.html deleted file mode 100644 index 69736ed..0000000 --- a/config/display-ntgroup.html +++ /dev/null @@ -1,256 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -NT Group Entry - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - -
NT Group Entry
- - - - -
- - - - -
- -
- - - - -
-Group - -New NT Group - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - - - -
  * Indicates a required field
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 
- class="bold" - ->Name: - -* - - - -
- class="bold" - ->NT Group Name: - -* - - - - - - - -
- class="bold" - ->Description: - -
- class="bold" - ->Owner:
- - - -
- -
- class="bold" - ->See Also:
- - - -
- - - -You must save this entry before you can edit these fields. - -
- class="bold" - ->NT Group Members:
- - - -
- -
- class="bold" - ->Delete NT Group if Group deleted: - -
Create New NT Group: - -
 
- - - -
-  This entry was last modified on - - by - - -
- - - - - - diff --git a/config/display-ntgroup.html.in b/config/display-ntgroup.html.in new file mode 100644 index 0000000..3f0102d --- /dev/null +++ b/config/display-ntgroup.html.in @@ -0,0 +1,256 @@ + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +NT Group Entry - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + +
NT Group Entry
+ + + + +
+ + + + +
+ +
+ + + + +
+Group + +New NT Group - + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + + + +
  * Indicates a required field
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 
+ class="bold" + +>Name: + +* + + + +
+ class="bold" + +>NT Group Name: + +* + + + + + + + +
+ class="bold" + +>Description: + +
+ class="bold" + +>Owner:
+ + + +
+ +
+ class="bold" + +>See Also:
+ + + +
+ + + +You must save this entry before you can edit these fields. + +
+ class="bold" + +>NT Group Members:
+ + + +
+ +
+ class="bold" + +>Delete NT Group if Group deleted: + +
Create New NT Group: + +
 
+ + + +
+  This entry was last modified on + + by + + +
+ + + + + + diff --git a/config/display-ntperson.html b/config/display-ntperson.html deleted file mode 100644 index a8ec9a4..0000000 --- a/config/display-ntperson.html +++ /dev/null @@ -1,690 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -NT Person Entry - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - - - -
NT Person Entry
- - - - -
- - - - -
- -
- - - - - - - - -
- - - -BORDER=0> - - -NT Person (click to show card) - - - > -Click to display organization chart - - - -New NT Person - - - -
- - - - ->Download Certificate - - - - -   - ->Play Audio Clip - - - - - - - - -
- - -   - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - - - - - - - - - -
  * Indicates a required field

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Contact Information
- class="bold" - ->First Name: - - - class="bold" - ->Common Name: - -* - - - -
- class="bold" - ->Last Name: - -* - - - - - class="bold" - ->E-Mail Address: - -
Directory Password: - - Repeat password to confirm: - -
- class="bold" - ->Phone: - - - class="bold" - ->AIM ID: - - - - -
- class="bold" - ->Fax: - - - class="bold" - ->User ID: - -
- class="bold" - ->Pager: - - - class="bold" - ->Mobile Phone: - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Windows NT Account Information
- class="bold" - ->NT User Id: - -* - - - - - - - - -
- class="bold" - ->Delete NT Account if Person deleted: - -
Create New NT Account : - -
NT User Comment: - -NT User Unique Id: - -
NT Password Expired: - -NT Bad Password Count: - -
NT Last Logon Date: - -NT Last Logoff Date: - -
NT Account Expiration Date: - -Number of NT Logons: - -
NT Logon Server: - -NT Workstations: - -
NT Code Page: - -NT Country Code: - -
NT Primary Group Id: - -NT Profile: - -
NT Home Directory: - -NT Home Directory Drive: - -
NT Script Path: - -NT Max Storage: - -
NT Units Per Week: - -NT User's Privileges: - -
NT User's Operator Privileges: - -NT User Account Misc. Features: - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Business and Location Information
- class="bold" - ->Business Category: - - - class="bold" - ->Title: - -
- class="bold" - ->Organizational Unit: - - - class="bold" - ->Manager:
- - - -
-You must save this entry before you can edit these fields. - - - - -
- class="bold" - ->Room Number: - - - class="bold" - ->Admin.:
- - - -
- -
- class="bold" - ->Dept#: - - - class="bold" - ->Emp#: - -
- class="bold" - ->Car License#: - -    
- class="bold" - ->Mailing Address: - -
- - - - - - - - - - - - - - - - - - - - class="bold" - ->Unique ID: - ---> - -
-Additional Information
- class="bold" - ->Description: - -
- class="bold" - ->See Also:
- - - -
- -You must save this entry before you can edit this field. - - - - - -
- class="bold" - ->URL: - -
- -
 
- - - -
-  This entry was last modified on - - by - - -
- - - - - - - diff --git a/config/display-ntperson.html.in b/config/display-ntperson.html.in new file mode 100644 index 0000000..ee87f4d --- /dev/null +++ b/config/display-ntperson.html.in @@ -0,0 +1,690 @@ + + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +NT Person Entry - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + + + +
NT Person Entry
+ + + + +
+ + + + +
+ +
+ + + + + + + + +
+ + + +BORDER=0> + + +NT Person (click to show card) + + + > +Click to display organization chart + + + +New NT Person - + + +
+ + + + +>Download Certificate + + + + +   + +>Play Audio Clip + + + + + + + + +
+ + +   + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + + + + + + + + + +
  * Indicates a required field

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Contact Information
+ class="bold" + +>First Name: + + + class="bold" + +>Common Name: + +* + + + +
+ class="bold" + +>Last Name: + +* + + + + + class="bold" + +>E-Mail Address: + +
Directory Password: + + Repeat password to confirm: + +
+ class="bold" + +>Phone: + + + class="bold" + +>AIM ID: + + + + +
+ class="bold" + +>Fax: + + + class="bold" + +>User ID: + +
+ class="bold" + +>Pager: + + + class="bold" + +>Mobile Phone: + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Windows NT Account Information
+ class="bold" + +>NT User Id: + +* + + + + + + + + +
+ class="bold" + +>Delete NT Account if Person deleted: + +
Create New NT Account : + +
NT User Comment: + +NT User Unique Id: + +
NT Password Expired: + +NT Bad Password Count: + +
NT Last Logon Date: + +NT Last Logoff Date: + +
NT Account Expiration Date: + +Number of NT Logons: + +
NT Logon Server: + +NT Workstations: + +
NT Code Page: + +NT Country Code: + +
NT Primary Group Id: + +NT Profile: + +
NT Home Directory: + +NT Home Directory Drive: + +
NT Script Path: + +NT Max Storage: + +
NT Units Per Week: + +NT User's Privileges: + +
NT User's Operator Privileges: + +NT User Account Misc. Features: + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Business and Location Information
+ class="bold" + +>Business Category: + + + class="bold" + +>Title: + +
+ class="bold" + +>Organizational Unit: + + + class="bold" + +>Manager:
+ + + +
+You must save this entry before you can edit these fields. + + + + +
+ class="bold" + +>Room Number: + + + class="bold" + +>Admin.:
+ + + +
+ +
+ class="bold" + +>Dept#: + + + class="bold" + +>Emp#: + +
+ class="bold" + +>Car License#: + +    
+ class="bold" + +>Mailing Address: + +
+ + + + + + + + + + + + + + + + + + + + class="bold" + +>Unique ID: + +--> + +
+Additional Information
+ class="bold" + +>Description: + +
+ class="bold" + +>See Also:
+ + + +
+ +You must save this entry before you can edit this field. + + + + + +
+ class="bold" + +>URL: + +
+ +
 
+ + + +
+  This entry was last modified on + + by + + +
+ + + + + + + diff --git a/config/display-org.html b/config/display-org.html deleted file mode 100644 index 84ccb72..0000000 --- a/config/display-org.html +++ /dev/null @@ -1,220 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -Organization - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - -
Organization Entry
- - - - -
- - - - -
- -
- - - - -
-Organization - - - -New Organization - - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - - -
 * Indicates a required field
- - - - - - - - - - - - - - - - - - - - - - - - -
 
- class="bold" - ->Organization Name: - -* - - - - - class="bold" - ->Description: - -
- class="bold" - ->Phone: - - - class="bold" - ->Business Category: - -
- class="bold" - ->Fax: - - - class="bold" - ->Location: - -
- class="bold" - ->Mailing Address: - -
- class="bold" - ->See Also: - -
 
- - -
-  This entry was last modified on - - by - - -
- - - - - - diff --git a/config/display-org.html.in b/config/display-org.html.in new file mode 100644 index 0000000..69783ed --- /dev/null +++ b/config/display-org.html.in @@ -0,0 +1,220 @@ + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +Organization - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + +
Organization Entry
+ + + + +
+ + + + +
+ +
+ + + + +
+Organization + + + +New Organization - + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + + +
 * Indicates a required field
+ + + + + + + + + + + + + + + + + + + + + + + + +
 
+ class="bold" + +>Organization Name: + +* + + + + + class="bold" + +>Description: + +
+ class="bold" + +>Phone: + + + class="bold" + +>Business Category: + +
+ class="bold" + +>Fax: + + + class="bold" + +>Location: + +
+ class="bold" + +>Mailing Address: + +
+ class="bold" + +>See Also: + +
 
+ + +
+  This entry was last modified on + + by + + +
+ + + + + + diff --git a/config/display-orgperson.html b/config/display-orgperson.html deleted file mode 100644 index b248e46..0000000 --- a/config/display-orgperson.html +++ /dev/null @@ -1,532 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -Person Entry - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - - - - -
Person Entry
- - - - -
- - - - -
- -
- - - - - - - - -
- - - -BORDER=0> - - -Person (click to show card) - - - > -Click to display organization chart - - - -New Person - - - -
- - - - ->Download Certificate - - - - -   - ->Play Audio Clip - - - - - - - - -
- - -   - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - - - - - - - - -
  * Indicates a required field
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Contact Information -
- class="bold" - ->First Name: - - - class="bold" - ->Common Name: - -* - - - -
- class="bold" - ->Last Name: - -* - - - - - class="bold" - ->E-Mail Address: - -
Password: - - Repeat password to confirm: - -
- class="bold" - ->Phone: - - - class="bold" - ->AIM ID: - - - - -
- class="bold" - ->Fax: - - - class="bold" - ->User ID: - -
- class="bold" - ->Pager: - - - class="bold" - ->Mobile Phone: - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Business and Location Information
- class="bold" - ->Business Category: - - - class="bold" - ->Title: - -
- class="bold" - ->Organizational Unit: - - - class="bold" - ->Manager:
- - - -
-You must save this entry before you can edit these fields. - - - - - -
- class="bold" - ->Room Number: - - - class="bold" - ->Admin.:
- - - -
- -
- class="bold" - ->Dept#: - - - class="bold" - ->Emp#: - -
- class="bold" - ->Car License#: - -    
- class="bold" - ->Mailing Address: - -
- - - - - - - - - - - - - - - - - - - - class="bold" - ->Unique ID: - ---> - - -
-Additional Information
- class="bold" - ->Description: - -
- class="bold" - ->See Also:
- - - -
- -You must save this entry before you can edit this field. - - - - - -
- class="bold" - ->URL: - -
- -
 
- - - -
-  This entry was last modified on - - by - - -
- - - - - - - diff --git a/config/display-orgperson.html.in b/config/display-orgperson.html.in new file mode 100644 index 0000000..a07f255 --- /dev/null +++ b/config/display-orgperson.html.in @@ -0,0 +1,532 @@ + + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +Person Entry - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + + + + +
Person Entry
+ + + + +
+ + + + +
+ +
+ + + + + + + + +
+ + + +BORDER=0> + + +Person (click to show card) + + + > +Click to display organization chart + + + +New Person - + + +
+ + + + +>Download Certificate + + + + +   + +>Play Audio Clip + + + + + + + + +
+ + +   + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + + + + + + + + +
  * Indicates a required field
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Contact Information +
+ class="bold" + +>First Name: + + + class="bold" + +>Common Name: + +* + + + +
+ class="bold" + +>Last Name: + +* + + + + + class="bold" + +>E-Mail Address: + +
Password: + + Repeat password to confirm: + +
+ class="bold" + +>Phone: + + + class="bold" + +>AIM ID: + + + + +
+ class="bold" + +>Fax: + + + class="bold" + +>User ID: + +
+ class="bold" + +>Pager: + + + class="bold" + +>Mobile Phone: + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Business and Location Information
+ class="bold" + +>Business Category: + + + class="bold" + +>Title: + +
+ class="bold" + +>Organizational Unit: + + + class="bold" + +>Manager:
+ + + +
+You must save this entry before you can edit these fields. + + + + + +
+ class="bold" + +>Room Number: + + + class="bold" + +>Admin.:
+ + + +
+ +
+ class="bold" + +>Dept#: + + + class="bold" + +>Emp#: + +
+ class="bold" + +>Car License#: + +    
+ class="bold" + +>Mailing Address: + +
+ + + + + + + + + + + + + + + + + + + + class="bold" + +>Unique ID: + +--> + + +
+Additional Information
+ class="bold" + +>Description: + +
+ class="bold" + +>See Also:
+ + + +
+ +You must save this entry before you can edit this field. + + + + + +
+ class="bold" + +>URL: + +
+ +
 
+ + + +
+  This entry was last modified on + + by + + +
+ + + + + + + diff --git a/config/display-orgunit.html b/config/display-orgunit.html deleted file mode 100644 index 3d04ee2..0000000 --- a/config/display-orgunit.html +++ /dev/null @@ -1,222 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -Organizational Unit - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - -
Organizational Unit Entry
- - - - -
- - - - -
- -
- - - - - -
-Org Unit - - - -New Organizational Unit - - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - - -
 * Indicates a required field
- - - - - - - - - - - - - - - - - - - - - - - -
 
- class="bold" - ->Unit Name: - -* - - - - - class="bold" - ->Description: - -
- class="bold" - ->Phone: - - - class="bold" - ->Business Category: - -
- class="bold" - ->Fax: - - - class="bold" - ->Location: - -
- class="bold" - ->Mailing Address: - -
- class="bold" - ->See Also: - -
 
- - - -
-  This entry was last modified on - - by - - -
- - - - - - - diff --git a/config/display-orgunit.html.in b/config/display-orgunit.html.in new file mode 100644 index 0000000..6d7d931 --- /dev/null +++ b/config/display-orgunit.html.in @@ -0,0 +1,222 @@ + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +Organizational Unit - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + +
Organizational Unit Entry
+ + + + +
+ + + + +
+ +
+ + + + + +
+Org Unit + + + +New Organizational Unit - + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + + +
 * Indicates a required field
+ + + + + + + + + + + + + + + + + + + + + + + +
 
+ class="bold" + +>Unit Name: + +* + + + + + class="bold" + +>Description: + +
+ class="bold" + +>Phone: + + + class="bold" + +>Business Category: + +
+ class="bold" + +>Fax: + + + class="bold" + +>Location: + +
+ class="bold" + +>Mailing Address: + +
+ class="bold" + +>See Also: + +
 
+ + + +
+  This entry was last modified on + + by + + +
+ + + + + + + diff --git a/config/display-person.html b/config/display-person.html deleted file mode 100644 index fc481b3..0000000 --- a/config/display-person.html +++ /dev/null @@ -1,397 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -Person Entry - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - - - -
Person Entry
- - - - -
- - - - -
- -
- - - - - - - -
-Person (click to show card) - - >Click to display organization chart - -New Person - - - -
- - - - - - - -
- - -   - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - - - - - - -
  * Indicates a required field

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Contact Information -
- class="bold" - ->Last Name: - - - class="bold" - ->Common Name: - -* - - - -
- class="bold" - ->E-Mail Address: - -
Password: - - Repeat password to confirm: - -
- class="bold" - ->Phone: - - - class="bold" - ->AIM ID: - - - - -
- class="bold" - ->Fax: - - - class="bold" - ->User ID: - -
- class="bold" - ->Pager: - - - class="bold" - ->Mobile Phone: - -
- - - - - - - - - - - - - - -
-Business and Location Information
- class="bold" - ->Title: - -
- class="bold" - ->Mailing Address: - -
- - - - - - - - - - - - - - - - - - - - class="bold" - ->Unique ID: - ---> - -
-Additional Information
- class="bold" - ->Description: - -
- class="bold" - ->See Also:
- - - -
- -You must save this entry before you can edit this field. - - - - - -
- class="bold" - ->URL: - -
- -
 
- - - -
-  This entry was last modified on - - by - - -
- - - - - - - - diff --git a/config/display-person.html.in b/config/display-person.html.in new file mode 100644 index 0000000..5ee89a7 --- /dev/null +++ b/config/display-person.html.in @@ -0,0 +1,397 @@ + + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +Person Entry - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + + + +
Person Entry
+ + + + +
+ + + + +
+ +
+ + + + + + + +
+Person (click to show card) + + >Click to display organization chart + +New Person - + + +
+ + + + + + + +
+ + +   + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + + + + + + +
  * Indicates a required field

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Contact Information +
+ class="bold" + +>Last Name: + + + class="bold" + +>Common Name: + +* + + + +
+ class="bold" + +>E-Mail Address: + +
Password: + + Repeat password to confirm: + +
+ class="bold" + +>Phone: + + + class="bold" + +>AIM ID: + + + + +
+ class="bold" + +>Fax: + + + class="bold" + +>User ID: + +
+ class="bold" + +>Pager: + + + class="bold" + +>Mobile Phone: + +
+ + + + + + + + + + + + + + +
+Business and Location Information
+ class="bold" + +>Title: + +
+ class="bold" + +>Mailing Address: + +
+ + + + + + + + + + + + + + + + + + + + class="bold" + +>Unique ID: + +--> + +
+Additional Information
+ class="bold" + +>Description: + +
+ class="bold" + +>See Also:
+ + + +
+ +You must save this entry before you can edit this field. + + + + + +
+ class="bold" + +>URL: + +
+ +
 
+ + + +
+  This entry was last modified on + + by + + +
+ + + + + + + + diff --git a/config/es/csearch.html b/config/es/csearch.html deleted file mode 100644 index 3ef2fb0..0000000 --- a/config/es/csearch.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - -Netscape Directory Server Gateway : Advanced Search - - - - - - - - - - - - - diff --git a/config/es/csearch.html.in b/config/es/csearch.html.in new file mode 100644 index 0000000..ebcdef9 --- /dev/null +++ b/config/es/csearch.html.in @@ -0,0 +1,54 @@ + + + + +Netscape Directory Server Gateway : Advanced Search + + + + + + + + + + + + + diff --git a/config/es/display-country.html b/config/es/display-country.html deleted file mode 100644 index 8a269a3..0000000 --- a/config/es/display-country.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - -País: -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - -
-País - - -
- - - - - - - - - - - -
Nombre del país: - -Descripción - -
Ver también: - -
Página web: - -
- -
- -Esta entrada fue modificada por última vez el - - por - - - - - - diff --git a/config/es/display-country.html.in b/config/es/display-country.html.in new file mode 100644 index 0000000..e7623e8 --- /dev/null +++ b/config/es/display-country.html.in @@ -0,0 +1,85 @@ + + + + + + +País: +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + +
+País + + +
+ + + + + + + + + + + +
Nombre del país: + +Descripción + +
Ver también: + +
Página web: + +
+ +
+ +Esta entrada fue modificada por última vez el + + por + + + + + + diff --git a/config/es/display-group.html b/config/es/display-group.html deleted file mode 100644 index 07717fc..0000000 --- a/config/es/display-group.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -Nueva -<!-- ENDIF // Adding --> -Entrada de grupo: -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
-Grupo - - -Nuevo grupo: - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - -
- -El asterisco (*) indica los campos obligatorios
- - - - - - - - - - - - - - - - - - - - - - - - - -
Nombre: - -* - - - -
Descripción: - -
Propietario:
- - - -
- -
Ver también:
- - - -
- - - - - -Tiene que guardar esta entrada para poder modificar este campo. - -
Miembros del grupo:
- - - -
- -
- - -
-Esta entrada fue modificada por última vez el - - por - - - - - - - - diff --git a/config/es/display-group.html.in b/config/es/display-group.html.in new file mode 100644 index 0000000..0557533 --- /dev/null +++ b/config/es/display-group.html.in @@ -0,0 +1,180 @@ + + + + + + + +<!-- IF "Adding" --> +Nueva +<!-- ENDIF // Adding --> +Entrada de grupo: +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
+Grupo + + +Nuevo grupo: + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + +
+ +El asterisco (*) indica los campos obligatorios
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Nombre: + +* + + + +
Descripción: + +
Propietario:
+ + + +
+ +
Ver también:
+ + + +
+ + + + + +Tiene que guardar esta entrada para poder modificar este campo. + +
Miembros del grupo:
+ + + +
+ +
+ + +
+Esta entrada fue modificada por última vez el + + por + + + + + + + + diff --git a/config/es/display-groupun.html b/config/es/display-groupun.html deleted file mode 100644 index 123fe1f..0000000 --- a/config/es/display-groupun.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -Nueva -<!-- ENDIF // Adding --> -Entrada de grupo: -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
-Grupo - - -Nuevo grupo: - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - -
- -El asterisco (*) indica los campos obligatorios
- - - - - - - - - - - - - - - - - - - - - - - - - -
Nombre: - -* - - - -
Description: - -
Propietario:
- - - -
- -
Ver también:
- - - -
- - - - - -Tiene que guardar esta entrada para poder modificar este campo. - -
Miembros del grupo:
- - - -
- -
- - -
-Esta entrada fue modificada por última vez el - - por - - - - - - - - diff --git a/config/es/display-groupun.html.in b/config/es/display-groupun.html.in new file mode 100644 index 0000000..138d7a3 --- /dev/null +++ b/config/es/display-groupun.html.in @@ -0,0 +1,180 @@ + + + + + + + +<!-- IF "Adding" --> +Nueva +<!-- ENDIF // Adding --> +Entrada de grupo: +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
+Grupo + + +Nuevo grupo: + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + +
+ +El asterisco (*) indica los campos obligatorios
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Nombre: + +* + + + +
Description: + +
Propietario:
+ + + +
+ +
Ver también:
+ + + +
+ + + + + +Tiene que guardar esta entrada para poder modificar este campo. + +
Miembros del grupo:
+ + + +
+ +
+ + +
+Esta entrada fue modificada por última vez el + + por + + + + + + + + diff --git a/config/es/display-ntgroup.html b/config/es/display-ntgroup.html deleted file mode 100644 index dc6f0bc..0000000 --- a/config/es/display-ntgroup.html +++ /dev/null @@ -1,246 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -Nueva -<!-- ENDIF // Adding --> -Entrada de grupo NT: -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
-Grupo - - -Nuevo grupo NT: - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - -
- -El asterisco (*) indica los campos obligatorios
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Nombre: - -* - - - -
Nombre de grupo NT: - -* - - - - - - - -
Tipo del grupo NT: - -* - - - - - - - -
Dominio del grupo NT: - -* - - - -
Descripción: - -
Escenario: - -
Departamento: - -
Propietario:
- - - -
- -
Ver también
- - - -
- - - - - -Tiene que guardar esta entrada para poder modificar el campo. - -
Miembros del grupo NT
- - - -
- -
Borrar grupo NT si el grupo borrado es: - -
Crear nuevo grupo NT: - -
- - -
-Esta entrada fue modificada por última vez el - - por - - - - - - - - diff --git a/config/es/display-ntgroup.html.in b/config/es/display-ntgroup.html.in new file mode 100644 index 0000000..b8fae37 --- /dev/null +++ b/config/es/display-ntgroup.html.in @@ -0,0 +1,246 @@ + + + + + + + +<!-- IF "Adding" --> +Nueva +<!-- ENDIF // Adding --> +Entrada de grupo NT: +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
+Grupo + + +Nuevo grupo NT: + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + +
+ +El asterisco (*) indica los campos obligatorios
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nombre: + +* + + + +
Nombre de grupo NT: + +* + + + + + + + +
Tipo del grupo NT: + +* + + + + + + + +
Dominio del grupo NT: + +* + + + +
Descripción: + +
Escenario: + +
Departamento: + +
Propietario:
+ + + +
+ +
Ver también
+ + + +
+ + + + + +Tiene que guardar esta entrada para poder modificar el campo. + +
Miembros del grupo NT
+ + + +
+ +
Borrar grupo NT si el grupo borrado es: + +
Crear nuevo grupo NT: + +
+ + +
+Esta entrada fue modificada por última vez el + + por + + + + + + + + diff --git a/config/es/display-ntperson.html b/config/es/display-ntperson.html deleted file mode 100644 index 6215a70..0000000 --- a/config/es/display-ntperson.html +++ /dev/null @@ -1,524 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -Nueva -<!-- ENDIF // Adding --> -Entrada personal NT: -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - - - - - - -
- - - -BORDER=0> - - -Persona (haga clic para ver la tarjeta) - - - - - > -Click to display organization chart - - - -Nueva persona NT: - - -
- - - - ->Recibir certificado - - - - -   - ->Play Audio Clip - - - - - - - - -
- - -   - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - - - - - - - -El asterisco (*) indica los campos obligatorios
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Información de contacto
Nombre: - -Nombre y apellidos: - -* - - - -
Apellidos: - -* - - - -
Contraseña del directorio: - - Repítala para confirmar: - -
Teléfono: - -Dirección electrónica: - -
Fax: - -Identificación de usuario: - -
Localizador: - -Teléfono móvil: - -
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Información sobre cuenta Windows NT
Identificación de usuario NT: - -* - - - - - - - - -Nombre de dominio NT: - -* - - - -
Borrar cuenta NT si la persona borrada es: - -
Crear nueva cuenta NT: - -
Comentario del usuario NT: - -Identificador exclusivo usuario NT: - -
Caducidad contraseña NT: - -Nº de contraseñas erróneas NT: - -
Última fecha de entrada NT: - -Última fecha de salida NT - -
Fecha de caducidad cuenta NT: - -Nº de accesos NT: - -
Servidor de acceso NT: - -Estaciones NT: - -
Pág. de códigos NT: - -Cógido de país NT: - -
Identif. grupo principal NT: - -Perfil NT: - -
Directorio principal NT: - -Unidad directorio ppal. NT: - -
Vía de acceso a guión NT: - -Almacenamiento máx. NT: - -
Unidades NT por semana - -Privilegios de usuario NT: - -
Privilegios de operador usuario NT: - -Funciones varias cta. usuario NT: - -
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Información sobre actividad profesional y ubicación
Categoría comercial: - -Cargo: - -
Departamento: - -Responsable:
- - - -
-Tiene que guardar esta entrada para poder modificar este campo. - - - - - -
Nº de despacho - -Admin.:
- - - -
- -
Nº de dpto.: - -Nº empleado: - -
C. identidad/pasaporte: - -    
Dirección postal: - -
- - - - - - - - - - - - - - - - ---> -
-Información adicional
Descripción: - -
Ver también:
- - - -
- -Tiene que guardar esta entrada para poder modificar este campo. - - - - - -
Página web: - -
- -Esta entrada fue modificada por última vez el - - por - - - - - - - - - diff --git a/config/es/display-ntperson.html.in b/config/es/display-ntperson.html.in new file mode 100644 index 0000000..f7cb9ee --- /dev/null +++ b/config/es/display-ntperson.html.in @@ -0,0 +1,524 @@ + + + + + + + + +<!-- IF "Adding" --> +Nueva +<!-- ENDIF // Adding --> +Entrada personal NT: +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + + + + + + +
+ + + +BORDER=0> + + +Persona (haga clic para ver la tarjeta) + + + + + > +Click to display organization chart + + + +Nueva persona NT: + + +
+ + + + +>Recibir certificado + + + + +   + +>Play Audio Clip + + + + + + + + +
+ + +   + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + + + + + + + +El asterisco (*) indica los campos obligatorios
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Información de contacto
Nombre: + +Nombre y apellidos: + +* + + + +
Apellidos: + +* + + + +
Contraseña del directorio: + + Repítala para confirmar: + +
Teléfono: + +Dirección electrónica: + +
Fax: + +Identificación de usuario: + +
Localizador: + +Teléfono móvil: + +
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Información sobre cuenta Windows NT
Identificación de usuario NT: + +* + + + + + + + + +Nombre de dominio NT: + +* + + + +
Borrar cuenta NT si la persona borrada es: + +
Crear nueva cuenta NT: + +
Comentario del usuario NT: + +Identificador exclusivo usuario NT: + +
Caducidad contraseña NT: + +Nº de contraseñas erróneas NT: + +
Última fecha de entrada NT: + +Última fecha de salida NT + +
Fecha de caducidad cuenta NT: + +Nº de accesos NT: + +
Servidor de acceso NT: + +Estaciones NT: + +
Pág. de códigos NT: + +Cógido de país NT: + +
Identif. grupo principal NT: + +Perfil NT: + +
Directorio principal NT: + +Unidad directorio ppal. NT: + +
Vía de acceso a guión NT: + +Almacenamiento máx. NT: + +
Unidades NT por semana + +Privilegios de usuario NT: + +
Privilegios de operador usuario NT: + +Funciones varias cta. usuario NT: + +
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Información sobre actividad profesional y ubicación
Categoría comercial: + +Cargo: + +
Departamento: + +Responsable:
+ + + +
+Tiene que guardar esta entrada para poder modificar este campo. + + + + + +
Nº de despacho + +Admin.:
+ + + +
+ +
Nº de dpto.: + +Nº empleado: + +
C. identidad/pasaporte: + +    
Dirección postal: + +
+ + + + + + + + + + + + + + + + +--> +
+Información adicional
Descripción: + +
Ver también:
+ + + +
+ +Tiene que guardar esta entrada para poder modificar este campo. + + + + + +
Página web: + +
+ +Esta entrada fue modificada por última vez el + + por + + + + + + + + + diff --git a/config/es/display-org.html b/config/es/display-org.html deleted file mode 100644 index 1586425..0000000 --- a/config/es/display-org.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -Nueva -<!-- ENDIF // Adding --> -Empresa: -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
-Empresa - - - -Nueva empresa: - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - -
- -El asterisco (*) indica los campos obligatorios
- - - - - - - - - - - - - - - - - - - - - - -
Nombre de la empresa: - -* - - - -Descripción: - -
Teléfono: - -Categoría comercial: - -
Fax: - -Dirección: - -
Dirección postal: - -
Ver también: - -
- - -
-Esta entrada fue modificada por última vez el - - por - - - - - - - - diff --git a/config/es/display-org.html.in b/config/es/display-org.html.in new file mode 100644 index 0000000..9049b26 --- /dev/null +++ b/config/es/display-org.html.in @@ -0,0 +1,166 @@ + + + + + + + +<!-- IF "Adding" --> +Nueva +<!-- ENDIF // Adding --> +Empresa: +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
+Empresa + + + +Nueva empresa: + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + +
+ +El asterisco (*) indica los campos obligatorios
+ + + + + + + + + + + + + + + + + + + + + + +
Nombre de la empresa: + +* + + + +Descripción: + +
Teléfono: + +Categoría comercial: + +
Fax: + +Dirección: + +
Dirección postal: + +
Ver también: + +
+ + +
+Esta entrada fue modificada por última vez el + + por + + + + + + + + diff --git a/config/es/display-orgperson.html b/config/es/display-orgperson.html deleted file mode 100644 index d38e863..0000000 --- a/config/es/display-orgperson.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -Nueva -<!-- ENDIF // Adding --> -Entrada personal: -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - - - - - - - -
- - - -BORDER=0> - - -Persona (haga clic para ver la tarjeta) - - - - > -Click to display organization chart - - - -Nueva persona: - - -
- - - - ->Recibir certificado - - - - -   - ->Reproducir fragmento de sonido - - - - - - - - -
- - -   - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - - - - - - -El asterisco (*) indica los campos obligatorios
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Información de contacto
Nombre: - -Nombre y apellidos: - -* - - - -
Apellidos: - -* - - - -
Contraseña: - - Repetir la contraseña para confirmarla: - -
Teléfono: - -Dirección electrónica: - -
Fax: - -Identificador de usuario: - -
Buscapersonas: - -Teléfono móvil: - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Información sobre actividad comercial y ubicación
Categoría comercial: - -Cargo: - -
Departamento: - -Responsable:
- - - -
-Tiene que guardar esta entrada para poder modificar este campo. - - - - - -
Nº de despacho: - -Admin.:
- - - -
- -
Nº de dpto.: - -Nº empleado: - -
C. identidad/pasaporte: - -    
Dirección postal: - -
- - - - - - - - - - - - - - - - - - - - ---> - -
-Información adicional
Descripción: - -
Ver también:
- - - -
- -Tiene que guardar esta entrada para poder modificar este campo. - - - - - -
Página web: - -
- - -Esta entrada fue modificada por última vez el - - por - - - - - - - - diff --git a/config/es/display-orgperson.html.in b/config/es/display-orgperson.html.in new file mode 100644 index 0000000..b2dbc6c --- /dev/null +++ b/config/es/display-orgperson.html.in @@ -0,0 +1,373 @@ + + + + + + + + +<!-- IF "Adding" --> +Nueva +<!-- ENDIF // Adding --> +Entrada personal: +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + + + + + + + +
+ + + +BORDER=0> + + +Persona (haga clic para ver la tarjeta) + + + + > +Click to display organization chart + + + +Nueva persona: + + +
+ + + + +>Recibir certificado + + + + +   + +>Reproducir fragmento de sonido + + + + + + + + +
+ + +   + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + + + + + + +El asterisco (*) indica los campos obligatorios
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Información de contacto
Nombre: + +Nombre y apellidos: + +* + + + +
Apellidos: + +* + + + +
Contraseña: + + Repetir la contraseña para confirmarla: + +
Teléfono: + +Dirección electrónica: + +
Fax: + +Identificador de usuario: + +
Buscapersonas: + +Teléfono móvil: + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Información sobre actividad comercial y ubicación
Categoría comercial: + +Cargo: + +
Departamento: + +Responsable:
+ + + +
+Tiene que guardar esta entrada para poder modificar este campo. + + + + + +
Nº de despacho: + +Admin.:
+ + + +
+ +
Nº de dpto.: + +Nº empleado: + +
C. identidad/pasaporte: + +    
Dirección postal: + +
+ + + + + + + + + + + + + + + + + + + + +--> + +
+Información adicional
Descripción: + +
Ver también:
+ + + +
+ +Tiene que guardar esta entrada para poder modificar este campo. + + + + + +
Página web: + +
+ + +Esta entrada fue modificada por última vez el + + por + + + + + + + + diff --git a/config/es/display-orgunit.html b/config/es/display-orgunit.html deleted file mode 100644 index 003340c..0000000 --- a/config/es/display-orgunit.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -Nuevo -<!-- ENDIF // Adding --> -Departamento: -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
-Departamento - - - -Nuevo Departamento: - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - -
- -El asterisco (*) indica los campos obligatorios.
- - - - - - - - - - - - - - - - - - - - - - -
Nombre del dpto.: - -* - - - -Descripción: - -
Teléfono: - -Categoría comercial: - -
Fax: - -Dirección: - -
Dirección postal: - -
Ver también: - -
- - -
-Esta entrada fue modificada por última vez el - - por - - - - - - - - diff --git a/config/es/display-orgunit.html.in b/config/es/display-orgunit.html.in new file mode 100644 index 0000000..6971eba --- /dev/null +++ b/config/es/display-orgunit.html.in @@ -0,0 +1,166 @@ + + + + + + + +<!-- IF "Adding" --> +Nuevo +<!-- ENDIF // Adding --> +Departamento: +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
+Departamento + + + +Nuevo Departamento: + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + +
+ +El asterisco (*) indica los campos obligatorios.
+ + + + + + + + + + + + + + + + + + + + + + +
Nombre del dpto.: + +* + + + +Descripción: + +
Teléfono: + +Categoría comercial: + +
Fax: + +Dirección: + +
Dirección postal: + +
Ver también: + +
+ + +
+Esta entrada fue modificada por última vez el + + por + + + + + + + + diff --git a/config/es/display-person.html b/config/es/display-person.html deleted file mode 100644 index 500a9d7..0000000 --- a/config/es/display-person.html +++ /dev/null @@ -1,260 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -Nueva -<!-- ENDIF // Adding --> -Entrada personal: -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - - - - - -
- -Persona (haga clic para ver la tarjeta) - - - - > -Click to display organization chart - - - -Nueva persona: - - -
- - - - - - - -
- - -   - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - - - -
- -El asterisco (*) indica los campos obligatorios
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Apellidos: - -* - - - -Nombre y apellidos: - -

Contraseña: - - Repita la contraseña para confirmarla: - -

Teléfono: - -Dirección electrónica: - -
Fax: - -User ID: - -
Buscapersonas: - -Teléfono móvil: - -

Cargo: - -
Dirección postal: - -

Descripción: - -
Ver también:
- - - -
- -Tiene que guardar esta entrada para poder modificar el campo. - - - - - -
Página web: - -
Bebida favorita: - -
- - -
-Esta entrada fue modificada por última vez el - - por - - - - - - - - diff --git a/config/es/display-person.html.in b/config/es/display-person.html.in new file mode 100644 index 0000000..fce3d9f --- /dev/null +++ b/config/es/display-person.html.in @@ -0,0 +1,260 @@ + + + + + + + + +<!-- IF "Adding" --> +Nueva +<!-- ENDIF // Adding --> +Entrada personal: +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + + + + + +
+ +Persona (haga clic para ver la tarjeta) + + + + > +Click to display organization chart + + + +Nueva persona: + + +
+ + + + + + + +
+ + +   + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + + + +
+ +El asterisco (*) indica los campos obligatorios
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Apellidos: + +* + + + +Nombre y apellidos: + +

Contraseña: + + Repita la contraseña para confirmarla: + +

Teléfono: + +Dirección electrónica: + +
Fax: + +User ID: + +
Buscapersonas: + +Teléfono móvil: + +

Cargo: + +
Dirección postal: + +

Descripción: + +
Ver también:
+ + + +
+ +Tiene que guardar esta entrada para poder modificar el campo. + + + + + +
Página web: + +
Bebida favorita: + +
+ + +
+Esta entrada fue modificada por última vez el + + por + + + + + + + + diff --git a/config/es/newentry.html b/config/es/newentry.html deleted file mode 100644 index 751b2f7..0000000 --- a/config/es/newentry.html +++ /dev/null @@ -1,57 +0,0 @@ - - - - -Pasarela de Netscape Directory Server: Nueva entrada - - - - - - - - - -<BODY> -Tiene que emplear un programa de acceso que admita marcos para poder ver este documento. -</BODY> - - diff --git a/config/es/newentry.html.in b/config/es/newentry.html.in new file mode 100644 index 0000000..f40f3de --- /dev/null +++ b/config/es/newentry.html.in @@ -0,0 +1,57 @@ + + + + +Pasarela de Netscape Directory Server: Nueva entrada + + + + + + + + + +<BODY> +Tiene que emplear un programa de acceso que admita marcos para poder ver este documento. +</BODY> + + diff --git a/config/es/search.html b/config/es/search.html deleted file mode 100644 index 62801e3..0000000 --- a/config/es/search.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - -Pasarela de Netscape Directory Server: Standard Search - - - - - - - - diff --git a/config/es/search.html.in b/config/es/search.html.in new file mode 100644 index 0000000..a517479 --- /dev/null +++ b/config/es/search.html.in @@ -0,0 +1,49 @@ + + + + +Pasarela de Netscape Directory Server: Standard Search + + + + + + + + diff --git a/config/fr/csearch.html b/config/fr/csearch.html deleted file mode 100644 index 0efccd2..0000000 --- a/config/fr/csearch.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - -Netscape Directory Server Gateway : Advanced Search - - - - - - - - - - - - - diff --git a/config/fr/csearch.html.in b/config/fr/csearch.html.in new file mode 100644 index 0000000..c93b316 --- /dev/null +++ b/config/fr/csearch.html.in @@ -0,0 +1,54 @@ + + + + +Netscape Directory Server Gateway : Advanced Search + + + + + + + + + + + + + diff --git a/config/fr/display-country.html b/config/fr/display-country.html deleted file mode 100644 index 4ac80e3..0000000 --- a/config/fr/display-country.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - -Pays - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - -
-Country - - -
- - - - - - - - - - - -
Nom de pays : - -Description: - -
Voir également : - -
URL : - -
- -
- -La dernière modification de cette entrée date du - - par - - - - - - diff --git a/config/fr/display-country.html.in b/config/fr/display-country.html.in new file mode 100644 index 0000000..22cb5f5 --- /dev/null +++ b/config/fr/display-country.html.in @@ -0,0 +1,85 @@ + + + + + + +Pays - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + +
+Country + + +
+ + + + + + + + + + + +
Nom de pays : + +Description: + +
Voir également : + +
URL : + +
+ +
+ +La dernière modification de cette entrée date du + + par + + + + + + diff --git a/config/fr/display-group.html b/config/fr/display-group.html deleted file mode 100644 index 111b5bd..0000000 --- a/config/fr/display-group.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -Nouvelle -<!-- ENDIF // Adding --> -Entrée de groupe -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - -
-Groupe - - -Nouveau groupe - - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - -
- -* Indique une zone d'entrée obligatoire
- - - - - - - - - - - - - - - - - - - - - - - - - -
Nom : - -* - - - -
Description : - -
Propriétaire :
- - - -
- -
Voir également :
- - - -
- - - - - -Vous devez enregistrer cette entrée pour pouvoir modifier ces champs. - -
Membres du groupe :
- - - -
- -
- - -
-La dernière modification de cette entrée date du - - par - - - - - - - - - - diff --git a/config/fr/display-group.html.in b/config/fr/display-group.html.in new file mode 100644 index 0000000..b2ceab4 --- /dev/null +++ b/config/fr/display-group.html.in @@ -0,0 +1,181 @@ + + + + + + + +<!-- IF "Adding" --> +Nouvelle +<!-- ENDIF // Adding --> +Entrée de groupe +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + +
+Groupe + + +Nouveau groupe - + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + +
+ +* Indique une zone d'entrée obligatoire
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Nom : + +* + + + +
Description : + +
Propriétaire :
+ + + +
+ +
Voir également :
+ + + +
+ + + + + +Vous devez enregistrer cette entrée pour pouvoir modifier ces champs. + +
Membres du groupe :
+ + + +
+ +
+ + +
+La dernière modification de cette entrée date du + + par + + + + + + + + + + diff --git a/config/fr/display-groupun.html b/config/fr/display-groupun.html deleted file mode 100644 index 5b37039..0000000 --- a/config/fr/display-groupun.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -Nouvelle -<!-- ENDIF // Adding --> -Entrée de groupe -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
-Groupe - - -Nouveau groupe - - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - -
- -* Indique une zone d'entrée obligatoire
- - - - - - - - - - - - - - - - - - - - - - - - - -
Nom : - -* - - - -
Description : - -
Propriétaire :
- - - -
- -
Voir également :
- - - -
- - - - - -Vous devez enregistrer cette entrée pour pouvoir modifier ces champs. - -
Membres du groupe :
- - - -
- -
- - -
-La dernière modification de cette entrée date du - - par - - - - - - - - diff --git a/config/fr/display-groupun.html.in b/config/fr/display-groupun.html.in new file mode 100644 index 0000000..f3cabf7 --- /dev/null +++ b/config/fr/display-groupun.html.in @@ -0,0 +1,181 @@ + + + + + + + +<!-- IF "Adding" --> +Nouvelle +<!-- ENDIF // Adding --> +Entrée de groupe +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
+Groupe + + +Nouveau groupe - + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + +
+ +* Indique une zone d'entrée obligatoire
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Nom : + +* + + + +
Description : + +
Propriétaire :
+ + + +
+ +
Voir également :
+ + + +
+ + + + + +Vous devez enregistrer cette entrée pour pouvoir modifier ces champs. + +
Membres du groupe :
+ + + +
+ +
+ + +
+La dernière modification de cette entrée date du + + par + + + + + + + + diff --git a/config/fr/display-mailgroup.html b/config/fr/display-mailgroup.html deleted file mode 100644 index 1e5b62d..0000000 --- a/config/fr/display-mailgroup.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -Nouvelle -<!-- ENDIF // Adding --> -entrȨe de groupe de courrier - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - -
-Groupe - - -Nouveau groupe de courrier - - - - -
- - - - -
- - - - - - - -   - - - -   - - - - - - - -   - - - -
- - - - - - - -
- - - - - - - - - - - - - - -
- - - - - - - -
Nom : - -Description : - -
Propriétaire : - -
Voir également : - -
- - - -
Membres du groupe : - -
Membres de courrier électronique : - -
- - -
-La dernière modification de cette entrée date du - - par - - - - - - - - - diff --git a/config/fr/display-mailgroup.html.in b/config/fr/display-mailgroup.html.in new file mode 100644 index 0000000..ecc774c --- /dev/null +++ b/config/fr/display-mailgroup.html.in @@ -0,0 +1,156 @@ + + + + + + + +<!-- IF "Adding" --> +Nouvelle +<!-- ENDIF // Adding --> +entrȨe de groupe de courrier - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + +
+Groupe + + +Nouveau groupe de courrier + + + + +
+ + + + +
+ + + + + + + +   + + + +   + + + + + + + +   + + + +
+ + + + + + + +
+ + + + + + + + + + + + + + +
+ + + + + + + +
Nom : + +Description : + +
Propriétaire : + +
Voir également : + +
+ + + +
Membres du groupe : + +
Membres de courrier électronique : + +
+ + +
+La dernière modification de cette entrée date du + + par + + + + + + + + + diff --git a/config/fr/display-ntgroup.html b/config/fr/display-ntgroup.html deleted file mode 100644 index 796975d..0000000 --- a/config/fr/display-ntgroup.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -Nouvelle -<!-- ENDIF // Adding --> -Entrée du groupe NT - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
-Groupe - - -Nouveau groupe NT - - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - - -
- -* Indique une zone d'entrée obligatoire
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Nom : - -* - - - -
Nom du groupe NT : - -* - - - - - - - -
Type de groupe NT : - -* - - - - - - - -
Domaine du groupe NT : - -* - - - -
Description : - -
Lieu : - -
Service de la société : - -
Propriétaire :
- - - -
- -
Voir également :
- - - -
- - - - - -Vous devez enregistrer cette entrée pour pouvoir modifier ces champs. - -
Membres du groupe NT :
- - - -
- -
Supprimer le groupe NT si le groupe est supprimé : - -
Créer un nouveau groupe NT : - -
- - -
-La dernière modification de cette entrée date du - - par - - - - - - - - - - diff --git a/config/fr/display-ntgroup.html.in b/config/fr/display-ntgroup.html.in new file mode 100644 index 0000000..5b2080a --- /dev/null +++ b/config/fr/display-ntgroup.html.in @@ -0,0 +1,249 @@ + + + + + + + +<!-- IF "Adding" --> +Nouvelle +<!-- ENDIF // Adding --> +Entrée du groupe NT - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
+Groupe + + +Nouveau groupe NT - + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + + +
+ +* Indique une zone d'entrée obligatoire
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nom : + +* + + + +
Nom du groupe NT : + +* + + + + + + + +
Type de groupe NT : + +* + + + + + + + +
Domaine du groupe NT : + +* + + + +
Description : + +
Lieu : + +
Service de la société : + +
Propriétaire :
+ + + +
+ +
Voir également :
+ + + +
+ + + + + +Vous devez enregistrer cette entrée pour pouvoir modifier ces champs. + +
Membres du groupe NT :
+ + + +
+ +
Supprimer le groupe NT si le groupe est supprimé : + +
Créer un nouveau groupe NT : + +
+ + +
+La dernière modification de cette entrée date du + + par + + + + + + + + + + diff --git a/config/fr/display-ntperson.html b/config/fr/display-ntperson.html deleted file mode 100644 index 7e3ce3c..0000000 --- a/config/fr/display-ntperson.html +++ /dev/null @@ -1,539 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -Nouvelle -<!-- ENDIF // Adding --> -Entrée de personne NT- -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - - - - - - -
- - - -BORDER=0> - - -Personne (cliquez pour afficher la carte) - - - - - > -Click to display organization chart - - - -Nouvelle personne NT - - -
- - - - ->Download Certificate - - - - -   - ->Play Audio Clip - - - - - - - - -
- - -   - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - - - - - - -
- -* Indique une zone d'entrée obligatoire
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Contacts
Prénom : - -Nom complet : - -* - - - -
Nom de famille : - -* - - - -
Mot de passe du Directory Server : - - Retaper le mot de passe pour confirmation - -
Téléphone : - -Adresse électronique : - -
Télécopie : - -Id utilisateur : - -
Téléavertisseur : - -Téléphone mobile : - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Informations sur le compte Windows NT
Id utilisateur NT : - -* - - - - - - - - -Nom de domaine NT : - -* - - - -
Supprimer le compte NT si la personne est supprimée - -
Créer un nouveau compte NT - -
Commentaire utilisateur NT - -Id utilisateur NT unique : - -
Mot de passe NT périmé : - -Compte de mots de passe NT incorrect : - -
Dernière date de connexion au système NT : - -Dernière date de déconnexion du système NT : - -
Date d'expiration du compte NT : - -Nombre de connexions NT : - -
Serveur de connexions NT : - -Postes de travail NT : - -
Page de codes NT : - -Code de pays NT : - -
Id de groupe principal NT : - -Profil NT : - -
Annuaire personnel NT : - -Lecteur d'annuaire personnel NT : - -
Chemin script NT : - -Mise en mémoire maximale NT : - -
Unités NT par semaine : - -Privilèges de l'utilisateur NT : - -
Privilèges de l'utilisateur NT : - -Diverses fonctions de compte de personne NT : Features: - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Informations sur l'activité et l'emplacement
Secteur d'activité : - -Titre : - -
Unité organisationnelle : - -Gestionnaire :
- - - -
-Vous devez enregistrer cette entrée pour pouvoir modifier ces champs. - - - - - -
Numéro de poste : - -Admin.:
- - - -
- -
N° de service : - -N° d'employé : - -
N° de permis de circulation : - -    
Adresse postale : - -
- - - - - - - - - - - - - - - - - - - - ---> - -
-Informations supplémentaires
Description: - -
Voir également :
- - - -
- -Vous devez enregistrer cette entrée pour pouvoir modifier ce champ. - - - - - -
URL: - -
- - -La dernière modification de cette entrée date du - - Dans - - - - - - - - - - diff --git a/config/fr/display-ntperson.html.in b/config/fr/display-ntperson.html.in new file mode 100644 index 0000000..4d74a60 --- /dev/null +++ b/config/fr/display-ntperson.html.in @@ -0,0 +1,539 @@ + + + + + + + + +<!-- IF "Adding" --> +Nouvelle +<!-- ENDIF // Adding --> +Entrée de personne NT- +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + + + + + + +
+ + + +BORDER=0> + + +Personne (cliquez pour afficher la carte) + + + + + > +Click to display organization chart + + + +Nouvelle personne NT + + +
+ + + + +>Download Certificate + + + + +   + +>Play Audio Clip + + + + + + + + +
+ + +   + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + + + + + + +
+ +* Indique une zone d'entrée obligatoire
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Contacts
Prénom : + +Nom complet : + +* + + + +
Nom de famille : + +* + + + +
Mot de passe du Directory Server : + + Retaper le mot de passe pour confirmation + +
Téléphone : + +Adresse électronique : + +
Télécopie : + +Id utilisateur : + +
Téléavertisseur : + +Téléphone mobile : + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Informations sur le compte Windows NT
Id utilisateur NT : + +* + + + + + + + + +Nom de domaine NT : + +* + + + +
Supprimer le compte NT si la personne est supprimée + +
Créer un nouveau compte NT + +
Commentaire utilisateur NT + +Id utilisateur NT unique : + +
Mot de passe NT périmé : + +Compte de mots de passe NT incorrect : + +
Dernière date de connexion au système NT : + +Dernière date de déconnexion du système NT : + +
Date d'expiration du compte NT : + +Nombre de connexions NT : + +
Serveur de connexions NT : + +Postes de travail NT : + +
Page de codes NT : + +Code de pays NT : + +
Id de groupe principal NT : + +Profil NT : + +
Annuaire personnel NT : + +Lecteur d'annuaire personnel NT : + +
Chemin script NT : + +Mise en mémoire maximale NT : + +
Unités NT par semaine : + +Privilèges de l'utilisateur NT : + +
Privilèges de l'utilisateur NT : + +Diverses fonctions de compte de personne NT : Features: + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Informations sur l'activité et l'emplacement
Secteur d'activité : + +Titre : + +
Unité organisationnelle : + +Gestionnaire :
+ + + +
+Vous devez enregistrer cette entrée pour pouvoir modifier ces champs. + + + + + +
Numéro de poste : + +Admin.:
+ + + +
+ +
N° de service : + +N° d'employé : + +
N° de permis de circulation : + +    
Adresse postale : + +
+ + + + + + + + + + + + + + + + + + + + +--> + +
+Informations supplémentaires
Description: + +
Voir également :
+ + + +
+ +Vous devez enregistrer cette entrée pour pouvoir modifier ce champ. + + + + + +
URL: + +
+ + +La dernière modification de cette entrée date du + + Dans + + + + + + + + + + diff --git a/config/fr/display-org.html b/config/fr/display-org.html deleted file mode 100644 index a722375..0000000 --- a/config/fr/display-org.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -Nouvelle -<!-- ENDIF // Adding --> -Organisation - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
-Organization - - - -Nouvelle organisation - - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - -
- -* Indique une zone d'entrée obligatoire
- - - - - - - - - - - - - - - - - - - - - - -
Nom de l'organisation : - -* - - - -Description: - -
Téléphone : - -Catégorie commerciale : - -
Télécopie : - -Emplacement : - -
Adresse postale : - -
Voir également : - -
- - -
-La dernière modification de cette entrée date du - - par - - - - - - - - - diff --git a/config/fr/display-org.html.in b/config/fr/display-org.html.in new file mode 100644 index 0000000..747df63 --- /dev/null +++ b/config/fr/display-org.html.in @@ -0,0 +1,168 @@ + + + + + + + +<!-- IF "Adding" --> +Nouvelle +<!-- ENDIF // Adding --> +Organisation - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
+Organization + + + +Nouvelle organisation - + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + +
+ +* Indique une zone d'entrée obligatoire
+ + + + + + + + + + + + + + + + + + + + + + +
Nom de l'organisation : + +* + + + +Description: + +
Téléphone : + +Catégorie commerciale : + +
Télécopie : + +Emplacement : + +
Adresse postale : + +
Voir également : + +
+ + +
+La dernière modification de cette entrée date du + + par + + + + + + + + + diff --git a/config/fr/display-orgperson.html b/config/fr/display-orgperson.html deleted file mode 100644 index 3e42872..0000000 --- a/config/fr/display-orgperson.html +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -Nouvelle -<!-- ENDIF // Adding --> -Entrée de personne -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - - - - - - - -
- - - -BORDER=0> - - -Personne (cliquez pour afficher la carte) - - - - > -Click to display organization chart - - - -Nouvelle personne - - - -
- - - - ->Télécharger un certificat - - - - -   - ->Lire le clip audio - - - - - - - - -
- - -   - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - - - - - - - -* Indique une zone d'entrée obligatoire
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Contacts
Prénom : - -Nom complet : - -* - - - -
Nom : - -* - - - -
Mot de passe : - - Retaper le mot de passe pour confirmation : - -
Téléphone : - -Adresse électronique : - -
Télécopie : - -Id d'utilisateur : - -
Radiomessagerie : - -Téléphone mobile : - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Informations sur l'activité et l'emplacement
Secteur d'activité : - -Titre : - -
Service de la société : - -Responsable :
- - - -
-Vous devez enregistrer cette entrée avant de pouvoir modifier ces champs. - - - - - -
Numéro de poste : - -Admin. :
- - - -
- -
N° de service : - -N° d'employé : - -
N° d'immatriculation : - -    
Adresse postale : - -
- - - - - - - - - - - - - - - - - - - - ---> - -
- Informations supplémentaires
Description : - -
Voir également :
- - - -
- -Vous devez enregistrer cette entrée avant de pouvoir modifier ce champ. - - - - - -
URL : - -
- - -La dernière modification de cette entrée date du - - par - - - - - - - - - - diff --git a/config/fr/display-orgperson.html.in b/config/fr/display-orgperson.html.in new file mode 100644 index 0000000..59a4d02 --- /dev/null +++ b/config/fr/display-orgperson.html.in @@ -0,0 +1,377 @@ + + + + + + + + +<!-- IF "Adding" --> +Nouvelle +<!-- ENDIF // Adding --> +Entrée de personne +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + + + + + + + +
+ + + +BORDER=0> + + +Personne (cliquez pour afficher la carte) + + + + > +Click to display organization chart + + + +Nouvelle personne - + + +
+ + + + +>Télécharger un certificat + + + + +   + +>Lire le clip audio + + + + + + + + +
+ + +   + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + + + + + + + +* Indique une zone d'entrée obligatoire
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Contacts
Prénom : + +Nom complet : + +* + + + +
Nom : + +* + + + +
Mot de passe : + + Retaper le mot de passe pour confirmation : + +
Téléphone : + +Adresse électronique : + +
Télécopie : + +Id d'utilisateur : + +
Radiomessagerie : + +Téléphone mobile : + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Informations sur l'activité et l'emplacement
Secteur d'activité : + +Titre : + +
Service de la société : + +Responsable :
+ + + +
+Vous devez enregistrer cette entrée avant de pouvoir modifier ces champs. + + + + + +
Numéro de poste : + +Admin. :
+ + + +
+ +
N° de service : + +N° d'employé : + +
N° d'immatriculation : + +    
Adresse postale : + +
+ + + + + + + + + + + + + + + + + + + + +--> + +
+ Informations supplémentaires
Description : + +
Voir également :
+ + + +
+ +Vous devez enregistrer cette entrée avant de pouvoir modifier ce champ. + + + + + +
URL : + +
+ + +La dernière modification de cette entrée date du + + par + + + + + + + + + + diff --git a/config/fr/display-orgunit.html b/config/fr/display-orgunit.html deleted file mode 100644 index f846fb9..0000000 --- a/config/fr/display-orgunit.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -Nouvelle -<!-- ENDIF // Adding --> -Unité organisationnelle - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
-Unité Org - - - -Nouvelle unité organisationnelle - - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - -
- -* Indique une zone d'entrée obligatoire
- - - - - - - - - - - - - - - - - - - - - - -
Nom de l'unité : - -* - - - -Description : - -
Téléphone : - -Catégorie commerciale : - -
Télécopie : - -Emplacement : - -
Adresse postale : - -
Voir également : - -
- - -
-La dernière modification de cette entrée date du - - par - - - - - - - - diff --git a/config/fr/display-orgunit.html.in b/config/fr/display-orgunit.html.in new file mode 100644 index 0000000..0f167d5 --- /dev/null +++ b/config/fr/display-orgunit.html.in @@ -0,0 +1,167 @@ + + + + + + + +<!-- IF "Adding" --> +Nouvelle +<!-- ENDIF // Adding --> +Unité organisationnelle - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
+Unité Org + + + +Nouvelle unité organisationnelle - + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + +
+ +* Indique une zone d'entrée obligatoire
+ + + + + + + + + + + + + + + + + + + + + + +
Nom de l'unité : + +* + + + +Description : + +
Téléphone : + +Catégorie commerciale : + +
Télécopie : + +Emplacement : + +
Adresse postale : + +
Voir également : + +
+ + +
+La dernière modification de cette entrée date du + + par + + + + + + + + diff --git a/config/fr/display-person.html b/config/fr/display-person.html deleted file mode 100644 index 38df091..0000000 --- a/config/fr/display-person.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -Nouvelle -<!-- ENDIF // Adding --> -Entrée de personne -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - - - - - -
- -Personne (cliquez pour afficher la carte) - - - - > -Click to display organization chart - - - -Nouvelle personne - - -
- - - - - - - -
- - -   - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - - - - -
- -* Indique une zone d'entrée obligatoire
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Nom : - -* - - - -Nom complet : - -

Mot de passe : - - Retaper le mot de passe pour confirmation : - -

Téléphone : - -Adresse électronique : - -
Télécopie : - -Id d'utilisateur : - -
Radiomessagerie : - -Téléphone mobile : - -

Titre : - -
Adresse postale : - -

Description : - -
Voir également :
- - - -
- -Vous devez enregistrer cette entrée avant de pouvoir modifier ce champ. - - - - - -
URL : - -
Boisson favorite : - -
- - -
-La dernière modification de cette entrée date du - - par - - - - - - - - - - diff --git a/config/fr/display-person.html.in b/config/fr/display-person.html.in new file mode 100644 index 0000000..03a64b5 --- /dev/null +++ b/config/fr/display-person.html.in @@ -0,0 +1,264 @@ + + + + + + + + +<!-- IF "Adding" --> +Nouvelle +<!-- ENDIF // Adding --> +Entrée de personne +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + + + + + +
+ +Personne (cliquez pour afficher la carte) + + + + > +Click to display organization chart + + + +Nouvelle personne + + +
+ + + + + + + +
+ + +   + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + + + + +
+ +* Indique une zone d'entrée obligatoire
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nom : + +* + + + +Nom complet : + +

Mot de passe : + + Retaper le mot de passe pour confirmation : + +

Téléphone : + +Adresse électronique : + +
Télécopie : + +Id d'utilisateur : + +
Radiomessagerie : + +Téléphone mobile : + +

Titre : + +
Adresse postale : + +

Description : + +
Voir également :
+ + + +
+ +Vous devez enregistrer cette entrée avant de pouvoir modifier ce champ. + + + + + +
URL : + +
Boisson favorite : + +
+ + +
+La dernière modification de cette entrée date du + + par + + + + + + + + + + diff --git a/config/fr/display-umperson.html b/config/fr/display-umperson.html deleted file mode 100644 index 6230979..0000000 --- a/config/fr/display-umperson.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -Nouvelle -<!-- ENDIF // Adding --> -entrée de personne U-M - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - -
- -> -Personne - - - > -Click to display organization chart - - - -Nouvel personne U-M - - - -
- - ->Lecture de clip audio - - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - - -
- -* Indique une zone d'entrȨe obligatoire
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Nom de famille : - -* - - - -Nom complet : - -* - - - -
Téléphone : - -Adresse électronique : - -
Télécopie : - -Nom unique : - -
Téléavertisseur : - -Téléphone mobile : - -

Titre : - -
Adresse postale : - -

Description : - -
Voir également :
- -
- -
URL : - -
Boisson favorite : - -
- - -
-La dernière modification de cette entrée date du - - par - - - - - - - - diff --git a/config/fr/display-umperson.html.in b/config/fr/display-umperson.html.in new file mode 100644 index 0000000..4ac1cde --- /dev/null +++ b/config/fr/display-umperson.html.in @@ -0,0 +1,231 @@ + + + + + + + + +<!-- IF "Adding" --> +Nouvelle +<!-- ENDIF // Adding --> +entrée de personne U-M - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + +
+ +> +Personne + + + > +Click to display organization chart + + + +Nouvel personne U-M - + + +
+ + +>Lecture de clip audio + + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + + +
+ +* Indique une zone d'entrȨe obligatoire
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nom de famille : + +* + + + +Nom complet : + +* + + + +
Téléphone : + +Adresse électronique : + +
Télécopie : + +Nom unique : + +
Téléavertisseur : + +Téléphone mobile : + +

Titre : + +
Adresse postale : + +

Description : + +
Voir également :
+ +
+ +
URL : + +
Boisson favorite : + +
+ + +
+La dernière modification de cette entrée date du + + par + + + + + + + + diff --git a/config/fr/newentry.html b/config/fr/newentry.html deleted file mode 100644 index c7d2d96..0000000 --- a/config/fr/newentry.html +++ /dev/null @@ -1,58 +0,0 @@ - - - - -Passerelle Netscape Directory Server : New Entry - - - - - - - - - -<BODY> -Vous devez utiliser un client qui g&egrave;re la fonction de cadres pour pouvoir afficher ce document. -</BODY> - - - diff --git a/config/fr/newentry.html.in b/config/fr/newentry.html.in new file mode 100644 index 0000000..5e28964 --- /dev/null +++ b/config/fr/newentry.html.in @@ -0,0 +1,58 @@ + + + + +Passerelle Netscape Directory Server : New Entry + + + + + + + + + +<BODY> +Vous devez utiliser un client qui g&egrave;re la fonction de cadres pour pouvoir afficher ce document. +</BODY> + + + diff --git a/config/fr/search.html b/config/fr/search.html deleted file mode 100644 index c8575c4..0000000 --- a/config/fr/search.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - -Passerelle Netscape Directory Server : Standard Search - - - - - - - - diff --git a/config/fr/search.html.in b/config/fr/search.html.in new file mode 100644 index 0000000..98d5b8c --- /dev/null +++ b/config/fr/search.html.in @@ -0,0 +1,49 @@ + + + + +Passerelle Netscape Directory Server : Standard Search + + + + + + + + diff --git a/config/ja/csearch.html b/config/ja/csearch.html deleted file mode 100644 index 7fb509f..0000000 --- a/config/ja/csearch.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - -Netscape Directory Server Gateway: Advanced Search - - - - - - - - - - - - - diff --git a/config/ja/csearch.html.in b/config/ja/csearch.html.in new file mode 100644 index 0000000..ee56f17 --- /dev/null +++ b/config/ja/csearch.html.in @@ -0,0 +1,54 @@ + + + + +Netscape Directory Server Gateway: Advanced Search + + + + + + + + + + + + + diff --git a/config/ja/display-country.html b/config/ja/display-country.html deleted file mode 100644 index ed111e5..0000000 --- a/config/ja/display-country.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - -国 - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - -
-Country - - -
- - - - - - - - - - - -
国名: - -記述: - -
参照: - -
URL: - -
- -
- -このエントリの最終変更日: - -変更者: - - - - - - diff --git a/config/ja/display-country.html.in b/config/ja/display-country.html.in new file mode 100644 index 0000000..a7b4baf --- /dev/null +++ b/config/ja/display-country.html.in @@ -0,0 +1,85 @@ + + + + + + +国 - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + +
+Country + + +
+ + + + + + + + + + + +
国名: + +記述: + +
参照: + +
URL: + +
+ +
+ +このエントリの最終変更日: + +変更者: + + + + + + diff --git a/config/ja/display-group.html b/config/ja/display-group.html deleted file mode 100644 index 86ac39a..0000000 --- a/config/ja/display-group.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -Group Entry - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
-グループ - - -新規グループ - - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - -
- -* は必要なフィールドを示しています。
- - - - - - - - - - - - - - - - - - - - - - - - - -
名前: - -* - - - -
記述: - -
所有者:
- - - -
- -
参照:
- - - -
- - - - - -これらのフィールドを修正する前にこのエントリを保存する必要があります。 - -
グループ メンバー:
- - - -
- -
- - -
-このエントリの最終変更日: - - 変更者: - - - - - - - - diff --git a/config/ja/display-group.html.in b/config/ja/display-group.html.in new file mode 100644 index 0000000..9d8613c --- /dev/null +++ b/config/ja/display-group.html.in @@ -0,0 +1,181 @@ + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +Group Entry - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
+グループ + + +新規グループ - + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + +
+ +* は必要なフィールドを示しています。
+ + + + + + + + + + + + + + + + + + + + + + + + + +
名前: + +* + + + +
記述: + +
所有者:
+ + + +
+ +
参照:
+ + + +
+ + + + + +これらのフィールドを修正する前にこのエントリを保存する必要があります。 + +
グループ メンバー:
+ + + +
+ +
+ + +
+このエントリの最終変更日: + + 変更者: + + + + + + + + diff --git a/config/ja/display-groupun.html b/config/ja/display-groupun.html deleted file mode 100644 index 6c8817d..0000000 --- a/config/ja/display-groupun.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -Group Entry - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
-グループ - - -新規グループ - - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - -
- -* は必要なフィールドを示しています。
- - - - - - - - - - - - - - - - - - - - - - - - - -
名前: - -* - - - -
記述: - -
所有者:
- - - -
- -
参照:
- - - -
- - - - - -これらのフィールドを修正する前にこのエントリを保存する必要があります。 - -
グループ メンバー:
- - - -
- -
- - -
-このエントリの最終変更日: - - 変更者: - - - - - - - - diff --git a/config/ja/display-groupun.html.in b/config/ja/display-groupun.html.in new file mode 100644 index 0000000..2224692 --- /dev/null +++ b/config/ja/display-groupun.html.in @@ -0,0 +1,181 @@ + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +Group Entry - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
+グループ + + +新規グループ - + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + +
+ +* は必要なフィールドを示しています。
+ + + + + + + + + + + + + + + + + + + + + + + + + +
名前: + +* + + + +
記述: + +
所有者:
+ + + +
+ +
参照:
+ + + +
+ + + + + +これらのフィールドを修正する前にこのエントリを保存する必要があります。 + +
グループ メンバー:
+ + + +
+ +
+ + +
+このエントリの最終変更日: + + 変更者: + + + + + + + + diff --git a/config/ja/display-mailgroup.html b/config/ja/display-mailgroup.html deleted file mode 100644 index 6cf4b05..0000000 --- a/config/ja/display-mailgroup.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -新規 -<!-- ENDIF // Adding --> -メール グループのエントリ - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - -
-グループ - - -新規メール グループ - - - - -
- - - - -
- - - - - - - -   - - - -   - - - - - - - -   - - - -
- - - - - - - -
- - - - - - - - - - - - - - -
- - - - - - - -
名前: - -記述: - -
所有者: - -
参照: - -
- - - -
グループ メンバー: - -
電子メールメンバー: - -
- - -
-このエントリの最終変更日: - -変更者: - - - - - - - - diff --git a/config/ja/display-mailgroup.html.in b/config/ja/display-mailgroup.html.in new file mode 100644 index 0000000..966c5ba --- /dev/null +++ b/config/ja/display-mailgroup.html.in @@ -0,0 +1,155 @@ + + + + + + + +<!-- IF "Adding" --> +新規 +<!-- ENDIF // Adding --> +メール グループのエントリ - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + +
+グループ + + +新規メール グループ + + + + +
+ + + + +
+ + + + + + + +   + + + +   + + + + + + + +   + + + +
+ + + + + + + +
+ + + + + + + + + + + + + + +
+ + + + + + + +
名前: + +記述: + +
所有者: + +
参照: + +
+ + + +
グループ メンバー: + +
電子メールメンバー: + +
+ + +
+このエントリの最終変更日: + +変更者: + + + + + + + + diff --git a/config/ja/display-ntgroup.html b/config/ja/display-ntgroup.html deleted file mode 100644 index b16850f..0000000 --- a/config/ja/display-ntgroup.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -NT Group Entry - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - -
-グループ - - -新規NTグループ - - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - - -
- -* は必要なフィールドを示しています。
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
名前: - -* - - - -
NTグループ名: - -* - - - - - - - -
NTグループ タイプ: - -* - - - - - - - -
NTグループ ドメイン: - -* - - - -
記述: - -
言語情報: - -
機関単位: - -
所有者:
- - - -
- -
参照:
- - - -
- - - - - -これらのフィールドを修正する前にこのエントリを保存する必要があります。 - -
NTグループ メンバー:
- - - -
- -
グループを削除した場合はNTグループを削除: - -
新規NTグループの作成 : - -
- - -
-このエントリの最終変更日: - - 変更者: - - - - - - - - diff --git a/config/ja/display-ntgroup.html.in b/config/ja/display-ntgroup.html.in new file mode 100644 index 0000000..fbe60b3 --- /dev/null +++ b/config/ja/display-ntgroup.html.in @@ -0,0 +1,249 @@ + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +NT Group Entry - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + +
+グループ + + +新規NTグループ - + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + + +
+ +* は必要なフィールドを示しています。
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
名前: + +* + + + +
NTグループ名: + +* + + + + + + + +
NTグループ タイプ: + +* + + + + + + + +
NTグループ ドメイン: + +* + + + +
記述: + +
言語情報: + +
機関単位: + +
所有者:
+ + + +
+ +
参照:
+ + + +
+ + + + + +これらのフィールドを修正する前にこのエントリを保存する必要があります。 + +
NTグループ メンバー:
+ + + +
+ +
グループを削除した場合はNTグループを削除: + +
新規NTグループの作成 : + +
+ + +
+このエントリの最終変更日: + + 変更者: + + + + + + + + diff --git a/config/ja/display-ntperson.html b/config/ja/display-ntperson.html deleted file mode 100644 index bb9943b..0000000 --- a/config/ja/display-ntperson.html +++ /dev/null @@ -1,537 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -NT Person Entry - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - - - - - - - -
- - - -BORDER=0> - - -ユーザ(クリックするとカードが表示されます) - - - - - > -Click to display organization chart - - - -新規NTユーザ - - - -
- - - - ->Download Certificate - - - - -   - ->Play Audio Clip - - - - - - - - -
- - -   - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - - - - - - - - -* は必要なフィールドを示しています。
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-連絡先
姓: - -* - - - -氏名: - -* - - - -
名: - -
Directory Password: - - Repeat password to confirm: - -
電話: - -電子メールアドレス: - -
ファックス: - -ユーザ ID: - -
ポケットベル: - -携帯電話: - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-WindowsNTアカウント情報
NTユーザ ID: - -* - - - - - - - - -NTドメイン名: - -* - - - -
ユーザを削除した場合は NTアカウントを削除: - -
新規NTアカウントの作成 : - -
NTユーザに関するコメント: - -NTユーザの固有 ID: - -
NTパスワード失効: - -NT不良パスワード回数: - -
NTの最終ログオン日: - -NT の最終ログオフ日: - -
NTアカウント失効日: - -NTへのログオン数: - -
NTログオンサーバ: - -NTワークステーション: - -
NTコードページ: - -NT国コード: - -
NT主要グループ ID: - -NTプロファイル: - -
NTホームディレクトリ: - -NT ホーム ディレクトリドライブ: - -
NTスクリプトパス: - -NT最大記憶容量: - -
NTユニット/週: - -NTユーザの特権: - -
NTユーザのオペレータ特権: - -NT ユーザ アカウントのその他の機能: - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-事業および場所に関する情報
事業カテゴリ: - -役職: - -
機関単位: - -マネージャ:
- - - -
-これらのフィールドを修正する前にこのエントリを保存する必要があります。 - - - - - -
部屋番号: - -管理者:
- - - -
- -
部署番号: - -社員番号: - -
自動車のナンバープレート番号: - -    
住所: - -
- - - - - - - - - - - - - - - - - - - - ---> - -
-追加情報
記述: - -
参照:
- - - -
- -このフィールドを修正する前にこのエントリを保存する必要があります。 - - - - - -
URL: - -
- - -このエントリの最終変更日: - - 変更者: - - - - - - - - diff --git a/config/ja/display-ntperson.html.in b/config/ja/display-ntperson.html.in new file mode 100644 index 0000000..1a42ebf --- /dev/null +++ b/config/ja/display-ntperson.html.in @@ -0,0 +1,537 @@ + + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +NT Person Entry - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + + + + + + + +
+ + + +BORDER=0> + + +ユーザ(クリックするとカードが表示されます) + + + + + > +Click to display organization chart + + + +新規NTユーザ - + + +
+ + + + +>Download Certificate + + + + +   + +>Play Audio Clip + + + + + + + + +
+ + +   + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + + + + + + + + +* は必要なフィールドを示しています。
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+連絡先
姓: + +* + + + +氏名: + +* + + + +
名: + +
Directory Password: + + Repeat password to confirm: + +
電話: + +電子メールアドレス: + +
ファックス: + +ユーザ ID: + +
ポケットベル: + +携帯電話: + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+WindowsNTアカウント情報
NTユーザ ID: + +* + + + + + + + + +NTドメイン名: + +* + + + +
ユーザを削除した場合は NTアカウントを削除: + +
新規NTアカウントの作成 : + +
NTユーザに関するコメント: + +NTユーザの固有 ID: + +
NTパスワード失効: + +NT不良パスワード回数: + +
NTの最終ログオン日: + +NT の最終ログオフ日: + +
NTアカウント失効日: + +NTへのログオン数: + +
NTログオンサーバ: + +NTワークステーション: + +
NTコードページ: + +NT国コード: + +
NT主要グループ ID: + +NTプロファイル: + +
NTホームディレクトリ: + +NT ホーム ディレクトリドライブ: + +
NTスクリプトパス: + +NT最大記憶容量: + +
NTユニット/週: + +NTユーザの特権: + +
NTユーザのオペレータ特権: + +NT ユーザ アカウントのその他の機能: + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+事業および場所に関する情報
事業カテゴリ: + +役職: + +
機関単位: + +マネージャ:
+ + + +
+これらのフィールドを修正する前にこのエントリを保存する必要があります。 + + + + + +
部屋番号: + +管理者:
+ + + +
+ +
部署番号: + +社員番号: + +
自動車のナンバープレート番号: + +    
住所: + +
+ + + + + + + + + + + + + + + + + + + + +--> + +
+追加情報
記述: + +
参照:
+ + + +
+ +このフィールドを修正する前にこのエントリを保存する必要があります。 + + + + + +
URL: + +
+ + +このエントリの最終変更日: + + 変更者: + + + + + + + + diff --git a/config/ja/display-org.html b/config/ja/display-org.html deleted file mode 100644 index 5b1bf8d..0000000 --- a/config/ja/display-org.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -Organization - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - -
-機関 - - - -新規機関 - - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - - -
- -* は必要なフィールドを示しています。
- - - - - - - - - - - - - - - - - - - - - - -
機関名: - -* - - - -記述: - -
電話: - -事業カテゴリ: - -
ファックス: - -場所: - -
住所: - -
参照: - -
- - -
-このエントリの最終変更日: - -変更者: - - - - - - - - diff --git a/config/ja/display-org.html.in b/config/ja/display-org.html.in new file mode 100644 index 0000000..46e9495 --- /dev/null +++ b/config/ja/display-org.html.in @@ -0,0 +1,167 @@ + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +Organization - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + +
+機関 + + + +新規機関 - + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + + +
+ +* は必要なフィールドを示しています。
+ + + + + + + + + + + + + + + + + + + + + + +
機関名: + +* + + + +記述: + +
電話: + +事業カテゴリ: + +
ファックス: + +場所: + +
住所: + +
参照: + +
+ + +
+このエントリの最終変更日: + +変更者: + + + + + + + + diff --git a/config/ja/display-orgperson.html b/config/ja/display-orgperson.html deleted file mode 100644 index 4f3f173..0000000 --- a/config/ja/display-orgperson.html +++ /dev/null @@ -1,376 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -Person Entry - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - - - - - - - - -
- - - -BORDER=0> - - -ユーザ (クリックするとカードが表示されます) - - - - > -Click to display organization chart - - - -新規ユーザ - - - -
- - - - ->証明書のダウンロード - - - - -   - ->オーディオクリップの再生 - - - - - - - - -
- - -   - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - - - - - - - -* は必要なフィールドを示しています。
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-連絡先
姓: - -* - - - -氏名: - -* - - - -
名: - -
パスワード: - - 確認のためパスワードを再度入力: - -
電話: - -電子メールアドレス: - -
ファックス: - -ユーザ ID: - -
ポケットベル: - -携帯電話: - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-事業および場所に関する情報
事業カテゴリ: - -役職: - -
機関単位: - -マネージャ:
- - - -
-これらのフィールドを修正する前にこのエントリを保存する必要があります。 - - - - - -
部屋番号: - -管理者:
- - - -
- -
部署番号: - -社員番号: - -
自動車のナンバープレート番号: - -    
住所: - -
- - - - - - - - - - - - - - - - - - - - ---> - -
-追加情報
記述: - -
参照:
- - - -
- -このフィールドを修正する前にこのエントリを保存する必要があります。 - - - - - -
URL: - -
- - -このエントリの最終変更日: - - 変更者: - - - - - - - - diff --git a/config/ja/display-orgperson.html.in b/config/ja/display-orgperson.html.in new file mode 100644 index 0000000..c275d59 --- /dev/null +++ b/config/ja/display-orgperson.html.in @@ -0,0 +1,376 @@ + + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +Person Entry - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + + + + + + + + +
+ + + +BORDER=0> + + +ユーザ (クリックするとカードが表示されます) + + + + > +Click to display organization chart + + + +新規ユーザ - + + +
+ + + + +>証明書のダウンロード + + + + +   + +>オーディオクリップの再生 + + + + + + + + +
+ + +   + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + + + + + + + +* は必要なフィールドを示しています。
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+連絡先
姓: + +* + + + +氏名: + +* + + + +
名: + +
パスワード: + + 確認のためパスワードを再度入力: + +
電話: + +電子メールアドレス: + +
ファックス: + +ユーザ ID: + +
ポケットベル: + +携帯電話: + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+事業および場所に関する情報
事業カテゴリ: + +役職: + +
機関単位: + +マネージャ:
+ + + +
+これらのフィールドを修正する前にこのエントリを保存する必要があります。 + + + + + +
部屋番号: + +管理者:
+ + + +
+ +
部署番号: + +社員番号: + +
自動車のナンバープレート番号: + +    
住所: + +
+ + + + + + + + + + + + + + + + + + + + +--> + +
+追加情報
記述: + +
参照:
+ + + +
+ +このフィールドを修正する前にこのエントリを保存する必要があります。 + + + + + +
URL: + +
+ + +このエントリの最終変更日: + + 変更者: + + + + + + + + diff --git a/config/ja/display-orgunit.html b/config/ja/display-orgunit.html deleted file mode 100644 index c85aa27..0000000 --- a/config/ja/display-orgunit.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -新規 -<!-- ENDIF // Adding --> -機関単位 - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - -
-機関単位 - - - -新規機関単位 - - - - -
- - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - -
- - - - - - - - - -
- -* は必要なフィールドを示しています。
- - - - - - - - - - - - - - - - - - - - - - -
単位名: - -* - - - -記述: - -
電話: - -事業カテゴリ: - -
ファックス: - -場所: - -
住所: - -
参照: - -
- - -
-このエントリの最終変更日: - -変更者: - - - - - - - - diff --git a/config/ja/display-orgunit.html.in b/config/ja/display-orgunit.html.in new file mode 100644 index 0000000..b92fbf2 --- /dev/null +++ b/config/ja/display-orgunit.html.in @@ -0,0 +1,167 @@ + + + + + + + +<!-- IF "Adding" --> +新規 +<!-- ENDIF // Adding --> +機関単位 - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + +
+機関単位 + + + +新規機関単位 - + + + +
+ + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + +
+ + + + + + + + + +
+ +* は必要なフィールドを示しています。
+ + + + + + + + + + + + + + + + + + + + + + +
単位名: + +* + + + +記述: + +
電話: + +事業カテゴリ: + +
ファックス: + +場所: + +
住所: + +
参照: + +
+ + +
+このエントリの最終変更日: + +変更者: + + + + + + + + diff --git a/config/ja/display-person.html b/config/ja/display-person.html deleted file mode 100644 index 38d16db..0000000 --- a/config/ja/display-person.html +++ /dev/null @@ -1,261 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -Person Entry - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - - - - - -
- -ユーザ(クリックするとカードが表示されます) - - - - > -Click to display organization chart - - - -新規ユーザ - - - -
- - - - - - - -
- - -   - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - - - - -
- -* は必要なフィールドを示しています。
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
苗字: - -* - - - -氏名: - -

パスワード: - - 確認のためパスワードを再度入力: - -

電話: - -電子メールアドレス: - -
ファックス: - -ユーザ ID: - -
ポケットベル: - -携帯電話: - -

役職: - -
住所: - -

記述: - -
参照:
- - - -
- -このフィールドを修正する前にこのエントリを保存する必要があります。 - - - - - -
URL: - -
好きな飲物: - -
- - -
-このエントリの最終変更日: - - 変更者: - - - - - - - - diff --git a/config/ja/display-person.html.in b/config/ja/display-person.html.in new file mode 100644 index 0000000..0f2482c --- /dev/null +++ b/config/ja/display-person.html.in @@ -0,0 +1,261 @@ + + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +Person Entry - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + + + + + +
+ +ユーザ(クリックするとカードが表示されます) + + + + > +Click to display organization chart + + + +新規ユーザ - + + +
+ + + + + + + +
+ + +   + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + + + + +
+ +* は必要なフィールドを示しています。
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
苗字: + +* + + + +氏名: + +

パスワード: + + 確認のためパスワードを再度入力: + +

電話: + +電子メールアドレス: + +
ファックス: + +ユーザ ID: + +
ポケットベル: + +携帯電話: + +

役職: + +
住所: + +

記述: + +
参照:
+ + + +
+ +このフィールドを修正する前にこのエントリを保存する必要があります。 + + + + + +
URL: + +
好きな飲物: + +
+ + +
+このエントリの最終変更日: + + 変更者: + + + + + + + + diff --git a/config/ja/display-umperson.html b/config/ja/display-umperson.html deleted file mode 100644 index 1c28a70..0000000 --- a/config/ja/display-umperson.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - -<!-- IF "Adding" --> -新規 -<!-- ENDIF // Adding --> -ミシガン大学ユーザのエントリ - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - -
- -> -ユーザ - - - > -Click to display organization chart - - - -新規ミシガン大学ユーザ - - - -
- - ->オーディオクリップの再生 - - - - - - - -
- - - - - - - -   - - - -   - - - - - -   - - - - - -
- - - - - - - -
- -* は必要なフィールドを示しています。
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
苗字: - -* - - - -氏名: - -* - - - -
電話: - -電子メールアドレス: - -
ファックス: - -固有の名前: - -
ポケットベル: - -携帯電話: - -

役職: - -
住所: - -

記述: - -
参照:
- -
- -
URL: - -
好きな飲物: - -
- - -
-このエントリの最終変更日: - -変更者: - - - - - - - - diff --git a/config/ja/display-umperson.html.in b/config/ja/display-umperson.html.in new file mode 100644 index 0000000..344800e --- /dev/null +++ b/config/ja/display-umperson.html.in @@ -0,0 +1,230 @@ + + + + + + + + +<!-- IF "Adding" --> +新規 +<!-- ENDIF // Adding --> +ミシガン大学ユーザのエントリ - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + +
+ +> +ユーザ + + + > +Click to display organization chart + + + +新規ミシガン大学ユーザ - + + +
+ + +>オーディオクリップの再生 + + + + + + + +
+ + + + + + + +   + + + +   + + + + + +   + + + + + +
+ + + + + + + +
+ +* は必要なフィールドを示しています。
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
苗字: + +* + + + +氏名: + +* + + + +
電話: + +電子メールアドレス: + +
ファックス: + +固有の名前: + +
ポケットベル: + +携帯電話: + +

役職: + +
住所: + +

記述: + +
参照:
+ +
+ +
URL: + +
好きな飲物: + +
+ + +
+このエントリの最終変更日: + +変更者: + + + + + + + + diff --git a/config/ja/newentry.html b/config/ja/newentry.html deleted file mode 100644 index 8fc5d7b..0000000 --- a/config/ja/newentry.html +++ /dev/null @@ -1,57 +0,0 @@ - - - - -Netscape Directory Server Gateway: New Entry - - - - - - - - - -<BODY> -このドキュメントを表示するにはフレームをサポートするクライアントが必要です。 -</BODY> - - diff --git a/config/ja/newentry.html.in b/config/ja/newentry.html.in new file mode 100644 index 0000000..717cb21 --- /dev/null +++ b/config/ja/newentry.html.in @@ -0,0 +1,57 @@ + + + + +Netscape Directory Server Gateway: New Entry + + + + + + + + + +<BODY> +このドキュメントを表示するにはフレームをサポートするクライアントが必要です。 +</BODY> + + diff --git a/config/ja/search.html b/config/ja/search.html deleted file mode 100644 index acce939..0000000 --- a/config/ja/search.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - -Netscape Directory Server Gateway: Standard Search - - - - - - - - diff --git a/config/ja/search.html.in b/config/ja/search.html.in new file mode 100644 index 0000000..0b002ce --- /dev/null +++ b/config/ja/search.html.in @@ -0,0 +1,49 @@ + + + + +Netscape Directory Server Gateway: Standard Search + + + + + + + + diff --git a/config/list-Anything.html b/config/list-Anything.html deleted file mode 100644 index 738787f..0000000 --- a/config/list-Anything.html +++ /dev/null @@ -1,151 +0,0 @@ - - -Search for Anything - - - - - - - - - - - - - - - - -
- -
  -
- - - - - - - - - - - - - - - - - - - - - - - -
- Name - - Phone - - E-mail - - Description -
- - - - - - - -
-
-  
- Click on an entry's Name to bring up more information about that entry. -
- - -

-

- - - - -
- - - - -
-
- - - - - - - - - - -
- - -   - -

- No match found. -

-
- -

- No entries match the requested search term. Please try a different search. -

-
-
-
-
-
-

- - - - diff --git a/config/list-Anything.html.in b/config/list-Anything.html.in new file mode 100644 index 0000000..d8bb920 --- /dev/null +++ b/config/list-Anything.html.in @@ -0,0 +1,151 @@ + + +Search for Anything + + + + + + + + + + + + + + + + +
+ +
  +
+ + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Phone + + E-mail + + Description +
+ + + + + + + +
+
+  
+ Click on an entry's Name to bring up more information about that entry. +
+ + +

+

+ + + + +
+ + + + +
+
+ + + + + + + + + + +
+ + +   + +

+ No match found. +

+
+ +

+ No entries match the requested search term. Please try a different search. +

+
+
+
+
+
+

+ + + + diff --git a/config/list-Auth.html b/config/list-Auth.html deleted file mode 100644 index 78f043b..0000000 --- a/config/list-Auth.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - -Authenticate as... - - - - -
- - -> - -
- - - -
- -

- -Please click on the name of the entry you would like to use for authentication. -

-

- - - - -
Authenticate As Title - - - - -
- - - - - - -
- -

Please go back and try again.
- -
- -
- - -
- - - -
-
- - diff --git a/config/list-Auth.html.in b/config/list-Auth.html.in new file mode 100644 index 0000000..0e3fda8 --- /dev/null +++ b/config/list-Auth.html.in @@ -0,0 +1,109 @@ + + + + + +Authenticate as... + + + + +
+ + +> + +
+ + + +
+ +

+ +Please click on the name of the entry you would like to use for authentication. +

+

+ + + + +
Authenticate As Title + + + + +
+ + + + + + +
+ +

Please go back and try again.
+ +
+ +
+ + +
+ + + +
+
+ + diff --git a/config/list-Domaincomponent.html b/config/list-Domaincomponent.html deleted file mode 100644 index 6bdaa73..0000000 --- a/config/list-Domaincomponent.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - -Search for Domaincomponents - - - - - - - - - - - - - - - -
- -
  -
- - - - - - - - - - - - - - - - - - - - -
- Domaincomponent - - Description - - Phone -
- - - - - -
- -
-  
- Click on an domaincomponent's name to bring up more information about that entry. -
- - -

-

- - - - -
- - - - -
-
- - - - - - - - - - -
- - -   - -

- No match found. -

-
- -

- No entries match the requested search term. Please try a different search. -

-
-
-
-
-
-

- - - - diff --git a/config/list-Domaincomponent.html.in b/config/list-Domaincomponent.html.in new file mode 100644 index 0000000..925fbde --- /dev/null +++ b/config/list-Domaincomponent.html.in @@ -0,0 +1,146 @@ + + + + +Search for Domaincomponents + + + + + + + + + + + + + + + +
+ +
  +
+ + + + + + + + + + + + + + + + + + + + +
+ Domaincomponent + + Description + + Phone +
+ + + + + +
+ +
+  
+ Click on an domaincomponent's name to bring up more information about that entry. +
+ + +

+

+ + + + +
+ + + + +
+
+ + + + + + + + + + +
+ + +   + +

+ No match found. +

+
+ +

+ No entries match the requested search term. Please try a different search. +

+
+
+
+
+
+

+ + + + diff --git a/config/list-Groups.html b/config/list-Groups.html deleted file mode 100644 index 18389c2..0000000 --- a/config/list-Groups.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - -Search for Groups - - - - - - - - - - - - - - - - -
- -
  -
- - - - - - - - - - - - - - - - - - -
- Group Name - - Description -
-  - - -
- -
-  
- Click on a Group's Name to bring up more information about that entry. -
- - -

-

- - - - -
- - - - -
-
- - - - - - - - - - -
- - -   - -

- No match found. -

-
- -

- No entries match the requested search term. Please try a different search. -

-
-
-
-
-
-

- - - - diff --git a/config/list-Groups.html.in b/config/list-Groups.html.in new file mode 100644 index 0000000..15903c3 --- /dev/null +++ b/config/list-Groups.html.in @@ -0,0 +1,141 @@ + + + + +Search for Groups + + + + + + + + + + + + + + + + +
+ +
  +
+ + + + + + + + + + + + + + + + + + +
+ Group Name + + Description +
+  + + +
+ +
+  
+ Click on a Group's Name to bring up more information about that entry. +
+ + +

+

+ + + + +
+ + + + +
+
+ + + + + + + + + + +
+ + +   + +

+ No match found. +

+
+ +

+ No entries match the requested search term. Please try a different search. +

+
+
+
+
+
+

+ + + + diff --git a/config/list-NT-Groups.html b/config/list-NT-Groups.html deleted file mode 100644 index 19c5d10..0000000 --- a/config/list-NT-Groups.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - -Search for NT Groups - - - - - - - - - - - - - - - -
- -
  -
- - - - - - - - - - - - - - - - - - - -
- LDAP Group Name - - NT Group Name - - Description -
- - - - - -
-
-  
- Click on an entry's Name to bring up more information about that entry. -
- - -

-

- - - - -
- - - - -
-
- - - - - - - - - - -
- - -   - -

- No match found. -

-
- -

- No entries match the requested search term. Please try a different search. -

-
-
-
-
-
-

- - - - diff --git a/config/list-NT-Groups.html.in b/config/list-NT-Groups.html.in new file mode 100644 index 0000000..4b5f23e --- /dev/null +++ b/config/list-NT-Groups.html.in @@ -0,0 +1,144 @@ + + + + +Search for NT Groups + + + + + + + + + + + + + + + +
+ +
  +
+ + + + + + + + + + + + + + + + + + + +
+ LDAP Group Name + + NT Group Name + + Description +
+ + + + + +
+
+  
+ Click on an entry's Name to bring up more information about that entry. +
+ + +

+

+ + + + +
+ + + + +
+
+ + + + + + + + + + +
+ + +   + +

+ No match found. +

+
+ +

+ No entries match the requested search term. Please try a different search. +

+
+
+
+
+
+

+ + + + diff --git a/config/list-NT-People.html b/config/list-NT-People.html deleted file mode 100644 index c2f63f8..0000000 --- a/config/list-NT-People.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - -Search for NT-People" - - - - - - - - - - - - - - - - - - -
- -
  -
- - - - - - - - - - - - - - - - - - - - - -
- Name - - NT Domain - - NT Username - - AIM ID - - Phone -
- - - - - - - - -
- -
-  
- Click on an entry's ID to bring up more information about that entry. -
- - -

-

- - - - -
- - - - -
-
- - - - - - - - - - -
- - -   - -

- No match found. -

-
- -

- No entries match the requested search term. Please try a different search. -

-
-
-
-
-
-

- - - - diff --git a/config/list-NT-People.html.in b/config/list-NT-People.html.in new file mode 100644 index 0000000..44245e0 --- /dev/null +++ b/config/list-NT-People.html.in @@ -0,0 +1,180 @@ + + + + +Search for NT-People" + + + + + + + + + + + + + + + + + + +
+ +
  +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + NT Domain + + NT Username + + AIM ID + + Phone +
+ + + + + + + + +
+ +
+  
+ Click on an entry's ID to bring up more information about that entry. +
+ + +

+

+ + + + +
+ + + + +
+
+ + + + + + + + + + +
+ + +   + +

+ No match found. +

+
+ +

+ No entries match the requested search term. Please try a different search. +

+
+
+
+
+
+

+ + + + diff --git a/config/list-Org-Units.html b/config/list-Org-Units.html deleted file mode 100644 index c52070e..0000000 --- a/config/list-Org-Units.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - -Search for Organizational Units - - - - - - - - - - - - - - - -
- -
  -
- - - - - - - - - - - - - - - - - - - -
- Organizational Unit - - Description - - Phone -
- - - - - -
- -
-  
- Click on an entry's ID to bring up more information about that entry. -
- - -

-

- - - - -
- - - - -
-
- - - - - - - - - - -
- - -   - -

- - No match found. - -

-
- -

- - No entries match the requested search term. Please try a different search. - -

-
-
-
-
-
-

- - - - diff --git a/config/list-Org-Units.html.in b/config/list-Org-Units.html.in new file mode 100644 index 0000000..fad3e71 --- /dev/null +++ b/config/list-Org-Units.html.in @@ -0,0 +1,149 @@ + + + + +Search for Organizational Units + + + + + + + + + + + + + + + +
+ +
  +
+ + + + + + + + + + + + + + + + + + + +
+ Organizational Unit + + Description + + Phone +
+ + + + + +
+ +
+  
+ Click on an entry's ID to bring up more information about that entry. +
+ + +

+

+ + + + +
+ + + + +
+
+ + + + + + + + + + +
+ + +   + +

+ + No match found. + +

+
+ +

+ + No entries match the requested search term. Please try a different search. + +

+
+
+
+
+
+

+ + + + diff --git a/config/list-Organizations.html b/config/list-Organizations.html deleted file mode 100644 index b7eeb4f..0000000 --- a/config/list-Organizations.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - -Search for Organizations - - - - - - - - - - - - - - - -
- -
  -
- - - - - - - - - - - - - - - - - - - - -
- Organization - - Description - - Phone -
- - - - - - - - - - - -
- -
-  
- - Click on an organization's name to bring up more information about that entry. - -
- - -

-

- - - - -
- - - - -
-
- - - - - - - - - - -
- - -   - -

- - No match found. - -

-
- -

- - No entries match the requested search term. Please try a different search. - -

-
-
-
-
-
-

- - - - diff --git a/config/list-Organizations.html.in b/config/list-Organizations.html.in new file mode 100644 index 0000000..573425d --- /dev/null +++ b/config/list-Organizations.html.in @@ -0,0 +1,158 @@ + + + + +Search for Organizations + + + + + + + + + + + + + + + +
+ +
  +
+ + + + + + + + + + + + + + + + + + + + +
+ Organization + + Description + + Phone +
+ + + + + + + + + + + +
+ +
+  
+ + Click on an organization's name to bring up more information about that entry. + +
+ + +

+

+ + + + +
+ + + + +
+
+ + + + + + + + + + +
+ + +   + +

+ + No match found. + +

+
+ +

+ + No entries match the requested search term. Please try a different search. + +

+
+
+
+
+
+

+ + + + diff --git a/config/list-People.html b/config/list-People.html deleted file mode 100644 index 6484296..0000000 --- a/config/list-People.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - -Search for People - - - - - - - - - - - - - - - - - -
- - - -
  -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
- Name - - ID - - Phone - - E-mail - - AIM ID - - Group -
- - - - - - - - - - - - - - - - - - - - -
- -
-  
- - Click on an entry's ID to bring up more information about that entry. - -
- - -

-

- - - - -
- - - - -
-
- - - - - - - - - - -
- - -   - -

- - No match found. - -

-
- -

- - No entries match the requested search term. Please try a different search. - -

-
-
-
-
-
-

- - - - diff --git a/config/list-People.html.in b/config/list-People.html.in new file mode 100644 index 0000000..4513617 --- /dev/null +++ b/config/list-People.html.in @@ -0,0 +1,207 @@ + + + + +Search for People + + + + + + + + + + + + + + + + + +
+ + + +
  +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + ID + + Phone + + E-mail + + AIM ID + + Group +
+ + + + + + + + + + + + + + + + + + + + +
+ +
+  
+ + Click on an entry's ID to bring up more information about that entry. + +
+ + +

+

+ + + + +
+ + + + +
+
+ + + + + + + + + + +
+ + +   + +

+ + No match found. + +

+
+ +

+ + No entries match the requested search term. Please try a different search. + +

+
+
+
+
+
+

+ + + + diff --git a/config/list-fa-Groups.html b/config/list-fa-Groups.html deleted file mode 100644 index fd384c4..0000000 --- a/config/list-fa-Groups.html +++ /dev/null @@ -1,57 +0,0 @@ - - - -Search for People - - - - - -
- - - - -
- - - - - - diff --git a/config/list-fa-Groups.html.in b/config/list-fa-Groups.html.in new file mode 100644 index 0000000..b56af80 --- /dev/null +++ b/config/list-fa-Groups.html.in @@ -0,0 +1,57 @@ + + + +Search for People + + + + + +
+ + + + +
+ + + + + + diff --git a/config/list-fa-People.html b/config/list-fa-People.html deleted file mode 100644 index fd384c4..0000000 --- a/config/list-fa-People.html +++ /dev/null @@ -1,57 +0,0 @@ - - - -Search for People - - - - - -
- - - - -
- - - - - - diff --git a/config/list-fa-People.html.in b/config/list-fa-People.html.in new file mode 100644 index 0000000..b56af80 --- /dev/null +++ b/config/list-fa-People.html.in @@ -0,0 +1,57 @@ + + + +Search for People + + + + + +
+ + + + +
+ + + + + + diff --git a/config/list-urlsearch.html b/config/list-urlsearch.html deleted file mode 100644 index 34bd64d..0000000 --- a/config/list-urlsearch.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - -URL-based Search - - - - - - - - - - - - - - - -
- - - -
  -
- - - - - - - - - - - - - - - - - - - - - -
- Name - - Phone - - E-mail -
- - - - - - - - - - - -
- -
-  
- - Click on an entry's Name to bring up more information about that entry. - -
- - -

-

- - - - -
- - - - -
-
- - - - - - - - - - -
- - -   - -

- - No match found. - -

-
- -

- - No entries match the requested search term. Please try a different search. - -

-
-
-
-
-
-

- - - diff --git a/config/list-urlsearch.html.in b/config/list-urlsearch.html.in new file mode 100644 index 0000000..aa90a2e --- /dev/null +++ b/config/list-urlsearch.html.in @@ -0,0 +1,160 @@ + + + + +URL-based Search + + + + + + + + + + + + + + + +
+ + + +
  +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Phone + + E-mail +
+ + + + + + + + + + + +
+ +
+  
+ + Click on an entry's Name to bring up more information about that entry. + +
+ + +

+

+ + + + +
+ + + + +
+
+ + + + + + + + + + +
+ + +   + +

+ + No match found. + +

+
+ +

+ + No entries match the requested search term. Please try a different search. + +

+
+
+
+
+
+

+ + + diff --git a/config/newentry.html b/config/newentry.html deleted file mode 100644 index fdc17ce..0000000 --- a/config/newentry.html +++ /dev/null @@ -1,57 +0,0 @@ - - - - -Netscape Directory Server Gateway: New Entry - - - - - - - - - -<BODY> -You must use a client that supports frames to view this document. -</BODY> - - diff --git a/config/newentry.html.in b/config/newentry.html.in new file mode 100644 index 0000000..0d31e98 --- /dev/null +++ b/config/newentry.html.in @@ -0,0 +1,57 @@ + + + + +Netscape Directory Server Gateway: New Entry + + + + + + + + + +<BODY> +You must use a client that supports frames to view this document. +</BODY> + + diff --git a/config/newentryName.html b/config/newentryName.html deleted file mode 100644 index 71ca351..0000000 --- a/config/newentryName.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - -

- -

-
-Step 2. Provide a name for the new - -. -
- -: - - -

- -Step 3. - - -Select a directory location for this - -, or select Other and enter the complete -distinguished name where this entry should be added. -

- - - - -
- - -

- -Step 4. - - -Click Continue. You will be presented with an editable view -of the entry. When you are done filling in information, -save the entry. -

- -

- - - -
- - - diff --git a/config/newentryName.html.in b/config/newentryName.html.in new file mode 100644 index 0000000..cb2fe1e --- /dev/null +++ b/config/newentryName.html.in @@ -0,0 +1,93 @@ + + + + + + + +

+ +

+
+Step 2. Provide a name for the new + +. +
+ +: + + +

+ +Step 3. + + +Select a directory location for this + +, or select Other and enter the complete +distinguished name where this entry should be added. +

+ + + + +
+ + +

+ +Step 4. + + +Click Continue. You will be presented with an editable view +of the entry. When you are done filling in information, +save the entry. +

+ +

+ + + +
+ + + diff --git a/config/newentryType.html b/config/newentryType.html deleted file mode 100644 index 7790efe..0000000 --- a/config/newentryType.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - -
-Create New Entry -
- -Step 1. Select the type of entry to create. - - -
- - - - diff --git a/config/newentryType.html.in b/config/newentryType.html.in new file mode 100644 index 0000000..bddfaa5 --- /dev/null +++ b/config/newentryType.html.in @@ -0,0 +1,56 @@ + + + + + + + + +
+Create New Entry +
+ +Step 1. Select the type of entry to create. + + +
+ + + + diff --git a/config/search.html b/config/search.html deleted file mode 100644 index 390aaad..0000000 --- a/config/search.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - -Netscape Directory Server Gateway: Standard Search - - - - - - - - diff --git a/config/search.html.in b/config/search.html.in new file mode 100644 index 0000000..f4a9b2e --- /dev/null +++ b/config/search.html.in @@ -0,0 +1,49 @@ + + + + +Netscape Directory Server Gateway: Standard Search + + + + + + + + diff --git a/config/searchString.html b/config/searchString.html deleted file mode 100644 index a9bed05..0000000 --- a/config/searchString.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - -
-Find - - -within - - - -
-Search for - - - - - -
- - - - - - diff --git a/config/searchString.html.in b/config/searchString.html.in new file mode 100644 index 0000000..500e8fc --- /dev/null +++ b/config/searchString.html.in @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + +
+Find + + +within + + + +
+Search for + + + + + +
+ + + + + + diff --git a/configure b/configure index a5bc729..b6c6406 100755 --- a/configure +++ b/configure @@ -466,7 +466,7 @@ ac_includes_default="\ #endif" ac_default_prefix=/opt/dirsrv -ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT build build_cpu build_vendor build_os host host_cpu host_vendor host_os CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CC CFLAGS ac_ct_CC CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE SED EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL LIBOBJS POW_LIB PACKAGE_BASE_NAME instconfigdir BUNDLE_TRUE BUNDLE_FALSE LIBSOCKET LIBNSL LIBCSTD LIBCRUN perlexec CXXLINK_REQUIRED_TRUE CXXLINK_REQUIRED_FALSE HPUX_TRUE HPUX_FALSE SOLARIS_TRUE SOLARIS_FALSE PKG_CONFIG ICU_CONFIG nspr_inc nspr_lib nspr_libdir nss_inc nss_lib nss_libdir sasl_inc sasl_lib sasl_libdir ldapsdk_inc ldapsdk_lib ldapsdk_libdir adminutil_inc adminutil_lib adminutil_libdir adminutil_ver icu_lib icu_libdir icu_inc icu_bin cgibindir cgiuri dsgwuri orguri propertydir htmldir pbhtmldir orghtmldir configdir pbconfigdir contextdir securitydir cookiedir perldir NEED_LDIF_TRUE NEED_LDIF_FALSE WINNT_TRUE WINNT_FALSE LTLIBOBJS' +ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT build build_cpu build_vendor build_os host host_cpu host_vendor host_os CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CC CFLAGS ac_ct_CC CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE SED EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL LIBOBJS POW_LIB PACKAGE_BASE_NAME instconfigdir BUNDLE_TRUE BUNDLE_FALSE LIBSOCKET LIBNSL LIBCSTD LIBCRUN perlexec CXXLINK_REQUIRED_TRUE CXXLINK_REQUIRED_FALSE HPUX_TRUE HPUX_FALSE SOLARIS_TRUE SOLARIS_FALSE PKG_CONFIG ICU_CONFIG nspr_inc nspr_lib nspr_libdir nss_inc nss_lib nss_libdir sasl_inc sasl_lib sasl_libdir ldapsdk_inc ldapsdk_lib ldapsdk_libdir adminutil_inc adminutil_lib adminutil_libdir adminutil_ver icu_lib icu_libdir icu_inc icu_bin cgibindir cgiuri dsgwuri orguri pburi propertydir htmldir pbhtmldir orghtmldir configdir pbconfigdir contextdir securitydir cookiedir perldir NEED_LDIF_TRUE NEED_LDIF_FALSE WINNT_TRUE WINNT_FALSE LTLIBOBJS' ac_subst_files='' # Initialize some variables set by options. @@ -21551,6 +21551,7 @@ cookiedir=/run/$PACKAGE_BASE_NAME/dsgw/cookies cgiuri=/cgi-bin dsgwuri=/dsgw orguri=/orgchart +pburi=/dsgw/pbhtml # Check for library dependencies # BEGIN COPYRIGHT BLOCK @@ -22626,6 +22627,7 @@ fi + # need a check here to see if the ldif functions are exported from libldap # for now, just assume they are not @@ -23492,6 +23494,7 @@ s,@cgibindir@,$cgibindir,;t t s,@cgiuri@,$cgiuri,;t t s,@dsgwuri@,$dsgwuri,;t t s,@orguri@,$orguri,;t t +s,@pburi@,$pburi,;t t s,@propertydir@,$propertydir,;t t s,@htmldir@,$htmldir,;t t s,@pbhtmldir@,$pbhtmldir,;t t diff --git a/configure.ac b/configure.ac index 5dae447..6268b91 100644 --- a/configure.ac +++ b/configure.ac @@ -278,6 +278,7 @@ cookiedir=/run/$PACKAGE_BASE_NAME/dsgw/cookies cgiuri=/cgi-bin dsgwuri=/dsgw orguri=/orgchart +pburi=/dsgw/pbhtml # Check for library dependencies m4_include(m4/nspr.m4) @@ -315,6 +316,7 @@ AC_SUBST(cgibindir) AC_SUBST(cgiuri) AC_SUBST(dsgwuri) AC_SUBST(orguri) +AC_SUBST(pburi) AC_SUBST(propertydir) AC_SUBST(htmldir) AC_SUBST(pbhtmldir) diff --git a/dsgw.h b/dsgw.h index 5a058d9..4ff0480 100644 --- a/dsgw.h +++ b/dsgw.h @@ -266,7 +266,6 @@ extern char *countri; /* The language chosen by libsi18n. */ /* URL prefixes specific to our gateway */ #define DSGW_URLPREFIX_MAIN_HTTP "lang?file=" #define DSGW_URLPREFIX_CGI_HTTP "" -#define DSGW_URLPREFIX_BIN "/clients/dsgw/bin/" #define DSGW_URLPREFIX_MAIN DSGW_URLPREFIX_MAIN_HTTP diff --git a/dsgwutil.c b/dsgwutil.c index ae9b60a..60ef015 100644 --- a/dsgwutil.c +++ b/dsgwutil.c @@ -93,7 +93,7 @@ dsgw_init( int argc, char **argv, int methods_handled ) (void)ADMUTIL_Init(); /* initialize the string database */ - XP_InitStringDatabase("../property", "dsgw"); + XP_InitStringDatabase(PROPERTYDIR, "dsgw"); /* set default default languages for string database */ SetLanguage(CLIENT_LANGUAGE, ""); SetLanguage(ADMIN_LANGUAGE, ""); @@ -664,7 +664,7 @@ dsgw_emit_helpbutton( char *topic ) " window.open('%s?%s&context=%s', 'infowin_dsgw', " " 'resizable=1,width=400,height=500');" "}\">\n", - XP_GetClientStr(DBT_help_1),tutorvp, topic, context, + XP_GetClientStr(DBT_help_1), tutorvp, topic, context, tutorvp, topic, context ); } @@ -855,9 +855,9 @@ dsgw_getvp( int cginum ) vpmap[ cginum ] = dsgw_ch_malloc( strlen( gc->gc_urlpfxcgi ) + strlen( surl ) /*+ strlen( extpath ) */ - + strlen( cginame ) + 2 ); + + strlen( cginame ) + 3 ); - sprintf( vpmap[ cginum ], "%s%s%s", surl, + sprintf( vpmap[ cginum ], "%s%s/%s", surl, /*extpath, */ gc->gc_urlpfxcgi, cginame ); diff --git a/html/alert.html b/html/alert.html deleted file mode 100644 index d15c414..0000000 --- a/html/alert.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - -<!-- DS_POSTEDVALUE "NAME=TITLE" --> - - - - - - - -
Alert - -
-
- -
- diff --git a/html/alert.html.in b/html/alert.html.in new file mode 100644 index 0000000..c5bb11d --- /dev/null +++ b/html/alert.html.in @@ -0,0 +1,55 @@ + + + + +<!-- DS_POSTEDVALUE "NAME=TITLE" --> + + + + + + + +
Alert + +
+
+ +
+ diff --git a/html/auth.html b/html/auth.html deleted file mode 100644 index 1fee031..0000000 --- a/html/auth.html +++ /dev/null @@ -1,57 +0,0 @@ - - - - -Directory Server Gateway: Authenticate - - - - - - - - -<H3>Frames-capable browser required</H3> -Sorry, but in order to use the Directory Server Gateway, you -must use a browser which supports HTML forms and JavaScript, such -as Mozilla Firefox. To learn how to obtain Firefox, visit the -<A HREF="http://www.mozilla.org">Mozilla Home Page</A>. - - diff --git a/html/auth.html.in b/html/auth.html.in new file mode 100644 index 0000000..c005f75 --- /dev/null +++ b/html/auth.html.in @@ -0,0 +1,57 @@ + + + + +Directory Server Gateway: Authenticate + + + + + + + + +<H3>Frames-capable browser required</H3> +Sorry, but in order to use the Directory Server Gateway, you +must use a browser which supports HTML forms and JavaScript, such +as Mozilla Firefox. To learn how to obtain Firefox, visit the +<A HREF="http://www.mozilla.org">Mozilla Home Page</A>. + + diff --git a/html/authroot.html b/html/authroot.html deleted file mode 100644 index 19dc0a8..0000000 --- a/html/authroot.html +++ /dev/null @@ -1,57 +0,0 @@ - - - - -Directory Server Gateway: Authenticate - - - - - - - -<H3>Frames-capable browser required</H3> -Sorry, but in order to use the Directory Server Gateway, you -must use a browser which supports HTML forms and JavaScript, such -as Mozilla Firefox. To learn how to obtain Firefox, visit the -<A HREF="http://www.mozilla.org">Mozilla Home Page</A>. - - diff --git a/html/authroot.html.in b/html/authroot.html.in new file mode 100644 index 0000000..95ff986 --- /dev/null +++ b/html/authroot.html.in @@ -0,0 +1,57 @@ + + + + +Directory Server Gateway: Authenticate + + + + + + + +<H3>Frames-capable browser required</H3> +Sorry, but in order to use the Directory Server Gateway, you +must use a browser which supports HTML forms and JavaScript, such +as Mozilla Firefox. To learn how to obtain Firefox, visit the +<A HREF="http://www.mozilla.org">Mozilla Home Page</A>. + + diff --git a/html/authtitle.html b/html/authtitle.html deleted file mode 100644 index 6ad0255..0000000 --- a/html/authtitle.html +++ /dev/null @@ -1,187 +0,0 @@ - - - -Directory Server - - - - - - - - - -
- - - - - - - - - - - - - -
-
Directory Server Gateway
-
- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -
Standard Search
-
- - - - - - - - - - - - - - - - -
Advanced Search
-
- - - - - - - - - - - - - - - - -
New Entry
-
- - - - - - - - - - - - - - - - - - -
Authentication
-
- - - - - - - - - - -
- -
-
- - diff --git a/html/authtitle.html.in b/html/authtitle.html.in new file mode 100644 index 0000000..54c85dc --- /dev/null +++ b/html/authtitle.html.in @@ -0,0 +1,187 @@ + + + +Directory Server + + + + + + + + + +
+ + + + + + + + + + + + + +
+
Directory Server Gateway
+
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
Standard Search
+
+ + + + + + + + + + + + + + + + +
Advanced Search
+
+ + + + + + + + + + + + + + + + +
New Entry
+
+ + + + + + + + + + + + + + + + + + +
Authentication
+
+ + + + + + + + + + +
+ +
+
+ + diff --git a/html/confirm.html b/html/confirm.html deleted file mode 100644 index 762f56c..0000000 --- a/html/confirm.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - -
Confirm - -
-
- - - -
- - - -
- diff --git a/html/confirm.html.in b/html/confirm.html.in new file mode 100644 index 0000000..4120c7c --- /dev/null +++ b/html/confirm.html.in @@ -0,0 +1,61 @@ + + + + + + + + + + +
Confirm + +
+
+ + + +
+ + + +
+ diff --git a/html/csearchtitle.html b/html/csearchtitle.html deleted file mode 100644 index e6a09d8..0000000 --- a/html/csearchtitle.html +++ /dev/null @@ -1,187 +0,0 @@ - - - -Directory Server - - - - - - - - - -
- - - - - - - - - - - - - -
-
Directory Server Gateway
-
- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -
Standard Search
-
- - - - - - - - - - - - - - - - - - -
Advanced Search
-
- - - - - - - - - - - - - - - - -
New Entry
-
- - - - - - - - - - - - - - - - -
Authentication
-
- - - - - - - - - - -
- -
-
- - diff --git a/html/csearchtitle.html.in b/html/csearchtitle.html.in new file mode 100644 index 0000000..5b36eca --- /dev/null +++ b/html/csearchtitle.html.in @@ -0,0 +1,187 @@ + + + +Directory Server + + + + + + + + + +
+ + + + + + + + + + + + + +
+
Directory Server Gateway
+
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
Standard Search
+
+ + + + + + + + + + + + + + + + + + +
Advanced Search
+
+ + + + + + + + + + + + + + + + +
New Entry
+
+ + + + + + + + + + + + + + + + +
Authentication
+
+ + + + + + + + + + +
+ +
+
+ + diff --git a/html/de/auth.html b/html/de/auth.html deleted file mode 100644 index 4d1e202..0000000 --- a/html/de/auth.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - -Netscape Directory Server Gateway: Beglaubigen - - - - - - - - -<H3>Browser muä Rahmen verarbeiten kȸnnen</H3> -Um das Netscape Directory Server Gateway zu verwenden, muä Ihr Browser HTML-Formulare und JavaScript verarbeiten kȸnnen, wie zum Beispiel Netscape Navigator Version 3 oder hȸher. Wie Sie Netscape Navigator bekommen, erfahren Sie auf der <A HREF="http://home.netscape.com">Netscape-Startseite</A>. - - - diff --git a/html/de/auth.html.in b/html/de/auth.html.in new file mode 100644 index 0000000..e5747d2 --- /dev/null +++ b/html/de/auth.html.in @@ -0,0 +1,55 @@ + + + + +Netscape Directory Server Gateway: Beglaubigen + + + + + + + + +<H3>Browser muä Rahmen verarbeiten kȸnnen</H3> +Um das Netscape Directory Server Gateway zu verwenden, muä Ihr Browser HTML-Formulare und JavaScript verarbeiten kȸnnen, wie zum Beispiel Netscape Navigator Version 3 oder hȸher. Wie Sie Netscape Navigator bekommen, erfahren Sie auf der <A HREF="http://home.netscape.com">Netscape-Startseite</A>. + + + diff --git a/html/de/authroot.html b/html/de/authroot.html deleted file mode 100644 index eaca935..0000000 --- a/html/de/authroot.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - -Netscape Directory Server Gateway: Beglaubigen - - - - - - - -<H3>Browser muä Rahmen verarbeiten kȸnnen</H3> -Um das Netscape Directory Server Gateway zu verwenden, muä Ihr Browser HTML-Formulare und JavaScript verarbeiten kȸnnen, wie zum Beispiel Netscape Navigator Version 3 oder hȸher. Wie Sie Netscape Navigator bekommen, erfahren Sie auf der <A HREF="http://home.netscape.com">Netscape-Startseite</A>. - - diff --git a/html/de/authroot.html.in b/html/de/authroot.html.in new file mode 100644 index 0000000..e5a05b3 --- /dev/null +++ b/html/de/authroot.html.in @@ -0,0 +1,53 @@ + + + + +Netscape Directory Server Gateway: Beglaubigen + + + + + + + +<H3>Browser muä Rahmen verarbeiten kȸnnen</H3> +Um das Netscape Directory Server Gateway zu verwenden, muä Ihr Browser HTML-Formulare und JavaScript verarbeiten kȸnnen, wie zum Beispiel Netscape Navigator Version 3 oder hȸher. Wie Sie Netscape Navigator bekommen, erfahren Sie auf der <A HREF="http://home.netscape.com">Netscape-Startseite</A>. + + diff --git a/html/de/authtitle.html b/html/de/authtitle.html deleted file mode 100644 index 09530ec..0000000 --- a/html/de/authtitle.html +++ /dev/null @@ -1,68 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -StandardsucheErweiterte SucheNeuer EintragBeglaubigung - - - diff --git a/html/de/authtitle.html.in b/html/de/authtitle.html.in new file mode 100644 index 0000000..534cdf1 --- /dev/null +++ b/html/de/authtitle.html.in @@ -0,0 +1,68 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +StandardsucheErweiterte SucheNeuer EintragBeglaubigung + + + diff --git a/html/de/csearchtitle.html b/html/de/csearchtitle.html deleted file mode 100644 index eea0234..0000000 --- a/html/de/csearchtitle.html +++ /dev/null @@ -1,68 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -StandardsucheErweiterte SucheNeuer EintragBeglaubigung - - - diff --git a/html/de/csearchtitle.html.in b/html/de/csearchtitle.html.in new file mode 100644 index 0000000..f6ba487 --- /dev/null +++ b/html/de/csearchtitle.html.in @@ -0,0 +1,68 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +StandardsucheErweiterte SucheNeuer EintragBeglaubigung + + + diff --git a/html/de/greeting.html b/html/de/greeting.html deleted file mode 100644 index 91203e1..0000000 --- a/html/de/greeting.html +++ /dev/null @@ -1,95 +0,0 @@ - - - -Netscape Directory Server - - - -
-
-Netscape Directory Server Gateway -
-

-Mit dieser Schnittstelle können Sie Einträge zur Speicherung im Netscape Directory Server suchen, ändern oder erstellen. -

-Die Schaltflächen oben im Fenster sind bei der Arbeit mit dem Directory Server Gateway ständig verfügbar. Durch Anklicken dieser Schaltflächen können Sie die folgenden Aktionen ausführen lassen: -

- - - - - - - - - - - - - - - - - -
-Standardsuche - -Die Standardsuche ist die einfachste Möglichkeit zum Durchsuchen des Verzeichnisses. Hierbei wird Ihre Eingabe analysiert und danach automatisch eine oder mehrere passende Verzeichnis-Suchmethoden aktiviert. -
-Erweiterte Suche - -Bei der Erweiterten Suche geben Sie genau ein, was Sie suchen, nach welchem Attribut Sie suchen und welche Art der Übereinstimmung mit den Suchkriterien erforderlich ist. -
-Neuer Eintrag - -Mit "Neuer Eintrag" können Sie neue Einträge im Verzeichnis vornehmen.. Unter Umständen hat der Systemverwalter das Verzeichnis so eingerichtet, daß Sie zum Hinzufügen neuer Einträge eine besondere Berechtigung benötigen. Wenn Sie nicht sicher sind, wenden Sie sich an Ihren Systemverwalter. -
-Beglaubigung - -Mit den Beblaubigungs-Eingabefenstern melden Sie sich im Verzeichnis an und ab. Sie müssen sich beglaubigen lassen, bevor Sie Einträge im dem Verzeichnis ändern und hinzufügen können. Sie müssen sich außerdem je nach Vorgabe des Systemverwalters auch beglaubigen lassen, bevor Sie ein Verzeichnis durchsuchen können. -
- - - diff --git a/html/de/greeting.html.in b/html/de/greeting.html.in new file mode 100644 index 0000000..e793841 --- /dev/null +++ b/html/de/greeting.html.in @@ -0,0 +1,95 @@ + + + +Netscape Directory Server + + + +


+
+Netscape Directory Server Gateway +
+

+Mit dieser Schnittstelle können Sie Einträge zur Speicherung im Netscape Directory Server suchen, ändern oder erstellen. +

+Die Schaltflächen oben im Fenster sind bei der Arbeit mit dem Directory Server Gateway ständig verfügbar. Durch Anklicken dieser Schaltflächen können Sie die folgenden Aktionen ausführen lassen: +

+ + + + + + + + + + + + + + + + + +
+Standardsuche + +Die Standardsuche ist die einfachste Möglichkeit zum Durchsuchen des Verzeichnisses. Hierbei wird Ihre Eingabe analysiert und danach automatisch eine oder mehrere passende Verzeichnis-Suchmethoden aktiviert. +
+Erweiterte Suche + +Bei der Erweiterten Suche geben Sie genau ein, was Sie suchen, nach welchem Attribut Sie suchen und welche Art der Übereinstimmung mit den Suchkriterien erforderlich ist. +
+Neuer Eintrag + +Mit "Neuer Eintrag" können Sie neue Einträge im Verzeichnis vornehmen.. Unter Umständen hat der Systemverwalter das Verzeichnis so eingerichtet, daß Sie zum Hinzufügen neuer Einträge eine besondere Berechtigung benötigen. Wenn Sie nicht sicher sind, wenden Sie sich an Ihren Systemverwalter. +
+Beglaubigung + +Mit den Beblaubigungs-Eingabefenstern melden Sie sich im Verzeichnis an und ab. Sie müssen sich beglaubigen lassen, bevor Sie Einträge im dem Verzeichnis ändern und hinzufügen können. Sie müssen sich außerdem je nach Vorgabe des Systemverwalters auch beglaubigen lassen, bevor Sie ein Verzeichnis durchsuchen können. +
+ + + diff --git a/html/de/index.html b/html/de/index.html deleted file mode 100644 index 81dedd1..0000000 --- a/html/de/index.html +++ /dev/null @@ -1,52 +0,0 @@ - - - -Netscape Directory Server Gateway - - - - - - -<H3>Browser muä Rahmen verarbeiten kȸnnen</H3> -Um das Netscape Directory Server Gateway zu verwenden, muä Ihr Browser HTML-Formulare und JavaScript verarbeiten kȸnnen, wie zum Beispiel Netscape Navigator Version 3 oder hȸher. Wie Sie Netscape Navigator bekommen, erfahren Sie auf der <A HREF="http://home.netscape.com">Netscape-Startseite</A>. - - - diff --git a/html/de/index.html.in b/html/de/index.html.in new file mode 100644 index 0000000..e33810a --- /dev/null +++ b/html/de/index.html.in @@ -0,0 +1,52 @@ + + + +Netscape Directory Server Gateway + + + + + + +<H3>Browser muä Rahmen verarbeiten kȸnnen</H3> +Um das Netscape Directory Server Gateway zu verwenden, muä Ihr Browser HTML-Formulare und JavaScript verarbeiten kȸnnen, wie zum Beispiel Netscape Navigator Version 3 oder hȸher. Wie Sie Netscape Navigator bekommen, erfahren Sie auf der <A HREF="http://home.netscape.com">Netscape-Startseite</A>. + + + diff --git a/html/de/maintitle.html b/html/de/maintitle.html deleted file mode 100644 index df1b303..0000000 --- a/html/de/maintitle.html +++ /dev/null @@ -1,68 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -StandardsucheErweiterte SucheNeuer EintragBeglaubigung - - - diff --git a/html/de/maintitle.html.in b/html/de/maintitle.html.in new file mode 100644 index 0000000..7cdd238 --- /dev/null +++ b/html/de/maintitle.html.in @@ -0,0 +1,68 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +StandardsucheErweiterte SucheNeuer EintragBeglaubigung + + + diff --git a/html/de/newentrytitle.html b/html/de/newentrytitle.html deleted file mode 100644 index 207714a..0000000 --- a/html/de/newentrytitle.html +++ /dev/null @@ -1,68 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -StandardsucheErweiterte SucheNeuer EintragBeglaubigung - - - diff --git a/html/de/newentrytitle.html.in b/html/de/newentrytitle.html.in new file mode 100644 index 0000000..f7fa4ed --- /dev/null +++ b/html/de/newentrytitle.html.in @@ -0,0 +1,68 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +StandardsucheErweiterte SucheNeuer EintragBeglaubigung + + + diff --git a/html/de/searchtitle.html b/html/de/searchtitle.html deleted file mode 100644 index 1046fc7..0000000 --- a/html/de/searchtitle.html +++ /dev/null @@ -1,68 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -StandardsucheErweiterte SucheNeuer EintragBeglaubigung - - - diff --git a/html/de/searchtitle.html.in b/html/de/searchtitle.html.in new file mode 100644 index 0000000..08afd63 --- /dev/null +++ b/html/de/searchtitle.html.in @@ -0,0 +1,68 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +StandardsucheErweiterte SucheNeuer EintragBeglaubigung + + + diff --git a/html/es/auth.html b/html/es/auth.html deleted file mode 100644 index 604186f..0000000 --- a/html/es/auth.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - -Pasarela de Netscape Directory Server: Autenticar - - - - - - - - -<H3>Es necesario un navegador que admita marcos</H3> -Lo siento, pero para poder usar la Pasarela de Netscape Directory Server, debe emplear un navegador que admita formularios HTML y JavaScript, como Netscape Navigator versi&oacute;n 3 o posterior. Para conseguir Navigator, visite la <A HREF="http://home.es.netscape.com/es/">P&aacute;gina principal de Netscape</A>. - - diff --git a/html/es/auth.html.in b/html/es/auth.html.in new file mode 100644 index 0000000..bfc65e1 --- /dev/null +++ b/html/es/auth.html.in @@ -0,0 +1,54 @@ + + + + +Pasarela de Netscape Directory Server: Autenticar + + + + + + + + +<H3>Es necesario un navegador que admita marcos</H3> +Lo siento, pero para poder usar la Pasarela de Netscape Directory Server, debe emplear un navegador que admita formularios HTML y JavaScript, como Netscape Navigator versi&oacute;n 3 o posterior. Para conseguir Navigator, visite la <A HREF="http://home.es.netscape.com/es/">P&aacute;gina principal de Netscape</A>. + + diff --git a/html/es/authroot.html b/html/es/authroot.html deleted file mode 100644 index 78dfc38..0000000 --- a/html/es/authroot.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - -Pasarela de Netscape Directory Server: Autenticar - - - - - - - -<H3>Es necesario un navegador que admita marcos</H3> -Lo siento, pero para poder usar la Pasarela de Netscape Directory Server, debe emplear un navegador que admita formularios HTML y JavaScript, como Netscape Navigator versi&oacute;n 3 o posterior. Para conseguir Navigator, visite la <A HREF="http://home.es.netscape.com/es/">P&aacute;gina principal de Netscape</A>. - - diff --git a/html/es/authroot.html.in b/html/es/authroot.html.in new file mode 100644 index 0000000..937d6e8 --- /dev/null +++ b/html/es/authroot.html.in @@ -0,0 +1,53 @@ + + + + +Pasarela de Netscape Directory Server: Autenticar + + + + + + + +<H3>Es necesario un navegador que admita marcos</H3> +Lo siento, pero para poder usar la Pasarela de Netscape Directory Server, debe emplear un navegador que admita formularios HTML y JavaScript, como Netscape Navigator versi&oacute;n 3 o posterior. Para conseguir Navigator, visite la <A HREF="http://home.es.netscape.com/es/">P&aacute;gina principal de Netscape</A>. + + diff --git a/html/es/authtitle.html b/html/es/authtitle.html deleted file mode 100644 index a58e7a1..0000000 --- a/html/es/authtitle.html +++ /dev/null @@ -1,68 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -Búsqueda normalBúsqueda avanzadaNueva entradaAutenticación - - - diff --git a/html/es/authtitle.html.in b/html/es/authtitle.html.in new file mode 100644 index 0000000..d9d4be0 --- /dev/null +++ b/html/es/authtitle.html.in @@ -0,0 +1,68 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +Búsqueda normalBúsqueda avanzadaNueva entradaAutenticación + + + diff --git a/html/es/csearchtitle.html b/html/es/csearchtitle.html deleted file mode 100644 index d9f32a1..0000000 --- a/html/es/csearchtitle.html +++ /dev/null @@ -1,68 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -Búsqueda normalBúsqueda avanzadaNueva entradaAutenticación - - - diff --git a/html/es/csearchtitle.html.in b/html/es/csearchtitle.html.in new file mode 100644 index 0000000..520e1ef --- /dev/null +++ b/html/es/csearchtitle.html.in @@ -0,0 +1,68 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +Búsqueda normalBúsqueda avanzadaNueva entradaAutenticación + + + diff --git a/html/es/greeting.html b/html/es/greeting.html deleted file mode 100644 index f5cd731..0000000 --- a/html/es/greeting.html +++ /dev/null @@ -1,95 +0,0 @@ - - - -Netscape Directory Server - - - -


-
-Bienvenido a la Pasarela de Netscape Directory Server -
-

-Mediante esta interfaz puede buscar, modificar y crear entradas que quedan almacenadas en el Netscape Directory Server. -

-Siempre que utilice la Pasarela de Netscape Directory Server dispondrá de la barra de herramientas de la parte superior de esta ventana. Puede hacer clic en los botones para llevar a cabo cualquiera de las siguientes tareas: -

- - - - - - - - - - - - - - - - - -
-Búsqueda normal - -Con esta función puede buscar fácilmente información del directorio. Esta función examina los datos que haya introducido y selecciona automáticamente uno o varios métodos de búsqueda en el directorio. -
-Búsqueda avanzada - -Con esta función puede especificar exactamente lo que esté buscando, los atributos que desee buscar y el tipo de concordancia que desee aplicar. -
-Nueva entrada - -Con esta función puede crear nuevas entradas en el directorio. Según la configuración de directorio aplicada por el administrador del sistema, deberá disponer de un permiso especial para añadir entradas nuevas. Si no está seguro, consulte al administrador del sistema. -
-Autenticar - -Con esta función puede usar las pantallas de autenticación para entrar y salir del directorio. Debe autenticarse para poder modificar o añadir entradas al directorio. Es posible que también tenga que hacerlo para poder buscar en el directorio si el administrador del sistema lo estableció de ese modo. -
- - - diff --git a/html/es/greeting.html.in b/html/es/greeting.html.in new file mode 100644 index 0000000..5ab3225 --- /dev/null +++ b/html/es/greeting.html.in @@ -0,0 +1,95 @@ + + + +Netscape Directory Server + + + +


+
+Bienvenido a la Pasarela de Netscape Directory Server +
+

+Mediante esta interfaz puede buscar, modificar y crear entradas que quedan almacenadas en el Netscape Directory Server. +

+Siempre que utilice la Pasarela de Netscape Directory Server dispondrá de la barra de herramientas de la parte superior de esta ventana. Puede hacer clic en los botones para llevar a cabo cualquiera de las siguientes tareas: +

+ + + + + + + + + + + + + + + + + +
+Búsqueda normal + +Con esta función puede buscar fácilmente información del directorio. Esta función examina los datos que haya introducido y selecciona automáticamente uno o varios métodos de búsqueda en el directorio. +
+Búsqueda avanzada + +Con esta función puede especificar exactamente lo que esté buscando, los atributos que desee buscar y el tipo de concordancia que desee aplicar. +
+Nueva entrada + +Con esta función puede crear nuevas entradas en el directorio. Según la configuración de directorio aplicada por el administrador del sistema, deberá disponer de un permiso especial para añadir entradas nuevas. Si no está seguro, consulte al administrador del sistema. +
+Autenticar + +Con esta función puede usar las pantallas de autenticación para entrar y salir del directorio. Debe autenticarse para poder modificar o añadir entradas al directorio. Es posible que también tenga que hacerlo para poder buscar en el directorio si el administrador del sistema lo estableció de ese modo. +
+ + + diff --git a/html/es/index.html b/html/es/index.html deleted file mode 100644 index 2ef8fdb..0000000 --- a/html/es/index.html +++ /dev/null @@ -1,51 +0,0 @@ - - - -Pasarela de Netscape Directory Server - - - - - - -<H3>Es necesario un navegador que admita marcos</H3> -Lo siento, pero para poder usar la Pasarela de Netscape Directory Server, debe emplear un navegador que admita formularios HTML y JavaScript, como Netscape Navigator versi&oacute;n 3 o posterior. Para conseguir Navigator, visite la <A HREF="http://home.es.netscape.com/es/">P&aacute;gina principal de Netscape</A>. - - diff --git a/html/es/index.html.in b/html/es/index.html.in new file mode 100644 index 0000000..ef634b9 --- /dev/null +++ b/html/es/index.html.in @@ -0,0 +1,51 @@ + + + +Pasarela de Netscape Directory Server + + + + + + +<H3>Es necesario un navegador que admita marcos</H3> +Lo siento, pero para poder usar la Pasarela de Netscape Directory Server, debe emplear un navegador que admita formularios HTML y JavaScript, como Netscape Navigator versi&oacute;n 3 o posterior. Para conseguir Navigator, visite la <A HREF="http://home.es.netscape.com/es/">P&aacute;gina principal de Netscape</A>. + + diff --git a/html/es/maintitle.html b/html/es/maintitle.html deleted file mode 100644 index b64a4ba..0000000 --- a/html/es/maintitle.html +++ /dev/null @@ -1,68 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -Búsqueda normalBúsqueda avanzadaNueva entradaAutenticación - - - diff --git a/html/es/maintitle.html.in b/html/es/maintitle.html.in new file mode 100644 index 0000000..3029efc --- /dev/null +++ b/html/es/maintitle.html.in @@ -0,0 +1,68 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +Búsqueda normalBúsqueda avanzadaNueva entradaAutenticación + + + diff --git a/html/es/newentrytitle.html b/html/es/newentrytitle.html deleted file mode 100644 index eb62d64..0000000 --- a/html/es/newentrytitle.html +++ /dev/null @@ -1,68 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -Búsqueda normalBúsqueda avanzadaNueva entradaAutenticación - - - diff --git a/html/es/newentrytitle.html.in b/html/es/newentrytitle.html.in new file mode 100644 index 0000000..6a217eb --- /dev/null +++ b/html/es/newentrytitle.html.in @@ -0,0 +1,68 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +Búsqueda normalBúsqueda avanzadaNueva entradaAutenticación + + + diff --git a/html/es/searchtitle.html b/html/es/searchtitle.html deleted file mode 100644 index 308346c..0000000 --- a/html/es/searchtitle.html +++ /dev/null @@ -1,68 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -Búsqueda normalBúsqueda avanzadaNueva entradaAutenticación - - - diff --git a/html/es/searchtitle.html.in b/html/es/searchtitle.html.in new file mode 100644 index 0000000..aac059e --- /dev/null +++ b/html/es/searchtitle.html.in @@ -0,0 +1,68 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +Búsqueda normalBúsqueda avanzadaNueva entradaAutenticación + + + diff --git a/html/fr/auth.html b/html/fr/auth.html deleted file mode 100644 index 1b720bb..0000000 --- a/html/fr/auth.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - -Passerelle Netscape Directory Server : Authentication - - - - - - - - -<H3>Un navigateur supportant la fonction de cadres est requis</H3> -Afin de pouvoir utiliser la passerelle Netscape Directory Server, vous devez utiliser un navigateur compatible avec les formulaires HTML et JavaScript, comme la version 3 ou toute version ult��rieure de Netscape Navigator. Pour savoir comment vous procurer Navigator, consultez la page d'accueil de Netscape �� l'adresse : <A HREF="http://home.netscape.com"> -</A>. - - diff --git a/html/fr/auth.html.in b/html/fr/auth.html.in new file mode 100644 index 0000000..0fa015d --- /dev/null +++ b/html/fr/auth.html.in @@ -0,0 +1,55 @@ + + + + +Passerelle Netscape Directory Server : Authentication + + + + + + + + +<H3>Un navigateur supportant la fonction de cadres est requis</H3> +Afin de pouvoir utiliser la passerelle Netscape Directory Server, vous devez utiliser un navigateur compatible avec les formulaires HTML et JavaScript, comme la version 3 ou toute version ult��rieure de Netscape Navigator. Pour savoir comment vous procurer Navigator, consultez la page d'accueil de Netscape �� l'adresse : <A HREF="http://home.netscape.com"> +</A>. + + diff --git a/html/fr/authroot.html b/html/fr/authroot.html deleted file mode 100644 index 0f857a7..0000000 --- a/html/fr/authroot.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - -Passerelle Netscape Directory Server : authentification - - - - - - - -<H3> Un navigateur supportant la fonction de cadres est requis</H3> -Afin de pouvoir utiliser la passerelle Netscape Directory Server, vous devez utiliser un navigateur compatible avec les formulaires HTML et JavaScript, comme la version 3 ou toute version ultȨrieure de Netscape Navigator. Pour savoir comment vous procurer Navigator, consultez la page d'accueil de Netscape �� l'adresse : <A HREF="http://home.netscape.com">la page d'accueil de Netscape</A>. - - diff --git a/html/fr/authroot.html.in b/html/fr/authroot.html.in new file mode 100644 index 0000000..26923c1 --- /dev/null +++ b/html/fr/authroot.html.in @@ -0,0 +1,53 @@ + + + + +Passerelle Netscape Directory Server : authentification + + + + + + + +<H3> Un navigateur supportant la fonction de cadres est requis</H3> +Afin de pouvoir utiliser la passerelle Netscape Directory Server, vous devez utiliser un navigateur compatible avec les formulaires HTML et JavaScript, comme la version 3 ou toute version ultȨrieure de Netscape Navigator. Pour savoir comment vous procurer Navigator, consultez la page d'accueil de Netscape �� l'adresse : <A HREF="http://home.netscape.com">la page d'accueil de Netscape</A>. + + diff --git a/html/fr/authtitle.html b/html/fr/authtitle.html deleted file mode 100644 index 75ca9ee..0000000 --- a/html/fr/authtitle.html +++ /dev/null @@ -1,68 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -Recherche standardRecherche avancéeNouvelle entréeAuthentification - - - diff --git a/html/fr/authtitle.html.in b/html/fr/authtitle.html.in new file mode 100644 index 0000000..8480094 --- /dev/null +++ b/html/fr/authtitle.html.in @@ -0,0 +1,68 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +Recherche standardRecherche avancéeNouvelle entréeAuthentification + + + diff --git a/html/fr/csearchtitle.html b/html/fr/csearchtitle.html deleted file mode 100644 index 6fc5386..0000000 --- a/html/fr/csearchtitle.html +++ /dev/null @@ -1,68 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -Recherche standardRecherche avancéeNouvelle entréeAuthentification - - - diff --git a/html/fr/csearchtitle.html.in b/html/fr/csearchtitle.html.in new file mode 100644 index 0000000..7d869ee --- /dev/null +++ b/html/fr/csearchtitle.html.in @@ -0,0 +1,68 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +Recherche standardRecherche avancéeNouvelle entréeAuthentification + + + diff --git a/html/fr/greeting.html b/html/fr/greeting.html deleted file mode 100644 index ca4a478..0000000 --- a/html/fr/greeting.html +++ /dev/null @@ -1,96 +0,0 @@ - - - -Netscape Directory Server - - - -


-
-Bienvenue dans la passerelle de Netscape Directory Server. -
-

-Cette interface peut être utilisée pour rechercher, modifier et créer des entrées stockées dans Netscape Directory Server. -

-La barre d'outils qui apparaît dans la partie supérieure de cette fenêtre est toujours affichée lorsque vous utilisez la passerelle Directory Server. Vous pouvez cliquer sur ces boutons pour effectuer les tâches suivantes : -

- - - - - - - - - - - - - - - - - -
-Recherche standard - -La recherche standard est la manière la plus simple d'effectuer une recherche dans un annuaire. Elle examine les données saisies et sélectionne automatiquement une ou plusieurs méthodes de recherche d'annuaires. -
-Recherche avancée - -Le bouton Recherche avancée vous permet de spécifier votre recherche avec exactitude à l'aide d'options de critères de recherche et de type de correspondance. -
-Nouvelle entrée - -Le bouton Nouvelle entrée vous permet de créer de nouvelles entrées dans l'annuaire. Selon la façon dont l'administrateur système a configuré votre annuaire, vous devez peut-être obtenir de celui-ci le privilège d'ajouter de nouvelles entrées. Dans le doute, consultez votre administrateur système. -
-Authentification - -Les écrans d'authentification vous permettent de vous connecter et de vous déconnecter d'un annuaire. Vous devez vous authentifier avant de modifier ou d'ajouter des entrées à l'annuaire. -
- - - - diff --git a/html/fr/greeting.html.in b/html/fr/greeting.html.in new file mode 100644 index 0000000..22c4998 --- /dev/null +++ b/html/fr/greeting.html.in @@ -0,0 +1,96 @@ + + + +Netscape Directory Server + + + +


+
+Bienvenue dans la passerelle de Netscape Directory Server. +
+

+Cette interface peut être utilisée pour rechercher, modifier et créer des entrées stockées dans Netscape Directory Server. +

+La barre d'outils qui apparaît dans la partie supérieure de cette fenêtre est toujours affichée lorsque vous utilisez la passerelle Directory Server. Vous pouvez cliquer sur ces boutons pour effectuer les tâches suivantes : +

+ + + + + + + + + + + + + + + + + +
+Recherche standard + +La recherche standard est la manière la plus simple d'effectuer une recherche dans un annuaire. Elle examine les données saisies et sélectionne automatiquement une ou plusieurs méthodes de recherche d'annuaires. +
+Recherche avancée + +Le bouton Recherche avancée vous permet de spécifier votre recherche avec exactitude à l'aide d'options de critères de recherche et de type de correspondance. +
+Nouvelle entrée + +Le bouton Nouvelle entrée vous permet de créer de nouvelles entrées dans l'annuaire. Selon la façon dont l'administrateur système a configuré votre annuaire, vous devez peut-être obtenir de celui-ci le privilège d'ajouter de nouvelles entrées. Dans le doute, consultez votre administrateur système. +
+Authentification + +Les écrans d'authentification vous permettent de vous connecter et de vous déconnecter d'un annuaire. Vous devez vous authentifier avant de modifier ou d'ajouter des entrées à l'annuaire. +
+ + + + diff --git a/html/fr/index.html b/html/fr/index.html deleted file mode 100644 index 1d62471..0000000 --- a/html/fr/index.html +++ /dev/null @@ -1,51 +0,0 @@ - - - -Passerelle Netscape Directory Server - - - - - - -<H3> Un navigateur supportant la fonction de cadres est requis</H3> -Afin de pouvoir utiliser la passerelle Netscape Directory Server, vous devez utiliser un navigateur compatible avec les formulaires HTML et JavaScript, comme la version 3 ou toute version ultȨrieure de Netscape Navigator. Pour savoir comment vous procurer Navigator, consultez la page d'accueil de Netscape �� l'adresse : <A HREF="http://home.netscape.com">la page d'accueil de Netscape</A>. - - diff --git a/html/fr/index.html.in b/html/fr/index.html.in new file mode 100644 index 0000000..53fb9a9 --- /dev/null +++ b/html/fr/index.html.in @@ -0,0 +1,51 @@ + + + +Passerelle Netscape Directory Server + + + + + + +<H3> Un navigateur supportant la fonction de cadres est requis</H3> +Afin de pouvoir utiliser la passerelle Netscape Directory Server, vous devez utiliser un navigateur compatible avec les formulaires HTML et JavaScript, comme la version 3 ou toute version ultȨrieure de Netscape Navigator. Pour savoir comment vous procurer Navigator, consultez la page d'accueil de Netscape �� l'adresse : <A HREF="http://home.netscape.com">la page d'accueil de Netscape</A>. + + diff --git a/html/fr/maintitle.html b/html/fr/maintitle.html deleted file mode 100644 index 5944927..0000000 --- a/html/fr/maintitle.html +++ /dev/null @@ -1,69 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -Recherche standardRecherche avancéeNouvelle entréeAuthentification - - - - diff --git a/html/fr/maintitle.html.in b/html/fr/maintitle.html.in new file mode 100644 index 0000000..c83e9cb --- /dev/null +++ b/html/fr/maintitle.html.in @@ -0,0 +1,69 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +Recherche standardRecherche avancéeNouvelle entréeAuthentification + + + + diff --git a/html/fr/newentrytitle.html b/html/fr/newentrytitle.html deleted file mode 100644 index 9298b6f..0000000 --- a/html/fr/newentrytitle.html +++ /dev/null @@ -1,69 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -Recherche standardRecherche avancéeNouvelle entréeAuthentification - - - - diff --git a/html/fr/newentrytitle.html.in b/html/fr/newentrytitle.html.in new file mode 100644 index 0000000..d7c308e --- /dev/null +++ b/html/fr/newentrytitle.html.in @@ -0,0 +1,69 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +Recherche standardRecherche avancéeNouvelle entréeAuthentification + + + + diff --git a/html/fr/searchtitle.html b/html/fr/searchtitle.html deleted file mode 100644 index 28a54d3..0000000 --- a/html/fr/searchtitle.html +++ /dev/null @@ -1,69 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -Recherche standardRecherche avancéeNouvelle entréeAuthentification - - - - diff --git a/html/fr/searchtitle.html.in b/html/fr/searchtitle.html.in new file mode 100644 index 0000000..f476a16 --- /dev/null +++ b/html/fr/searchtitle.html.in @@ -0,0 +1,69 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +Recherche standardRecherche avancéeNouvelle entréeAuthentification + + + + diff --git a/html/greeting.html b/html/greeting.html deleted file mode 100644 index 63c67df..0000000 --- a/html/greeting.html +++ /dev/null @@ -1,120 +0,0 @@ - - - -Directory Server - - - - - - -

- - - - - - - - - - - - - - - - -
-You are using the Directory Server Gateway. This interface can be -used to search for, modify, and create entries that are stored in the Fedora Directory Server. -

-You are currently viewing the Standard Search screen, which provides an -easy and convenient way to search the directory. Standard Search -examines what you type and automatically selects one or more methods -for searching the directory. Enter a name, telephone number, user id, -or e-mail address in the Search For field and click the -Search button to quickly locate directory entries. Click the Help -button if you need additional assistance. - -

-The toolbar you see at the top of this window is always available when you -are using the Directory Server Gateway. In addition to Standard Search, -you can click the other buttons to perform a variety of tasks. -If you want to modify your own directory entry, first search for it using -Standard or Advanced Search and then click the Edit Person button -within the entry display. - -

- - Advanced
Search
-
-With Advanced Search, you can specify exactly what you are looking -for, what attribute you wish to search for, and what type of matching -you wish to allow. - -
- - New Entry - - -New Entry allows you to create new entries in the directory. Depending -on how the system administrator has set up your directory you may need -to be granted special permission to add new entries. If you are not sure, ask -your system administrator. - -
- - Authenticate - - -You use the authentication screens to log into and out of the directory. -You need to authenticate before you can modify or add entries to the -directory. You may also need to authenticate before searching the -directory, if your system administrator requires it. -
- - - diff --git a/html/greeting.html.in b/html/greeting.html.in new file mode 100644 index 0000000..e8f1853 --- /dev/null +++ b/html/greeting.html.in @@ -0,0 +1,120 @@ + + + +Directory Server + + + + + + +
+ + + + + + + + + + + + + + + + +
+You are using the Directory Server Gateway. This interface can be +used to search for, modify, and create entries that are stored in the Fedora Directory Server. +

+You are currently viewing the Standard Search screen, which provides an +easy and convenient way to search the directory. Standard Search +examines what you type and automatically selects one or more methods +for searching the directory. Enter a name, telephone number, user id, +or e-mail address in the Search For field and click the +Search button to quickly locate directory entries. Click the Help +button if you need additional assistance. + +

+The toolbar you see at the top of this window is always available when you +are using the Directory Server Gateway. In addition to Standard Search, +you can click the other buttons to perform a variety of tasks. +If you want to modify your own directory entry, first search for it using +Standard or Advanced Search and then click the Edit Person button +within the entry display. + +

+ + Advanced
Search
+
+With Advanced Search, you can specify exactly what you are looking +for, what attribute you wish to search for, and what type of matching +you wish to allow. + +
+ + New Entry + + +New Entry allows you to create new entries in the directory. Depending +on how the system administrator has set up your directory you may need +to be granted special permission to add new entries. If you are not sure, ask +your system administrator. + +
+ + Authenticate + + +You use the authentication screens to log into and out of the directory. +You need to authenticate before you can modify or add entries to the +directory. You may also need to authenticate before searching the +directory, if your system administrator requires it. +
+ + + diff --git a/html/index.html b/html/index.html deleted file mode 100644 index 0c880c7..0000000 --- a/html/index.html +++ /dev/null @@ -1,55 +0,0 @@ - - - -Directory Server Gateway - - - - - - -<H3>Frames-capable browser required</H3> -Sorry, but in order to use the Directory Server Gateway, you -must use a browser which supports HTML forms and JavaScript, such -as Mozilla Firefox. To learn how to obtain Firefox, visit the -<A HREF="http://www.mozilla.org">Mozilla Home Page</A>. - - diff --git a/html/index.html.in b/html/index.html.in new file mode 100644 index 0000000..948153e --- /dev/null +++ b/html/index.html.in @@ -0,0 +1,55 @@ + + + +Directory Server Gateway + + + + + + +<H3>Frames-capable browser required</H3> +Sorry, but in order to use the Directory Server Gateway, you +must use a browser which supports HTML forms and JavaScript, such +as Mozilla Firefox. To learn how to obtain Firefox, visit the +<A HREF="http://www.mozilla.org">Mozilla Home Page</A>. + + diff --git a/html/ja/auth.html b/html/ja/auth.html deleted file mode 100644 index 0098402..0000000 --- a/html/ja/auth.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - -Netscape Directory Server Gateway: Authentication - - - - - - - - -<H3>フレーム機能をサポートするブラウザが必要です</H3> -Netscape Directory Server Gatewayを使用するには、Netscape Navigatorパージョン3以降のようなHTMLフォームとJavaScriptをサポートするブラウザが必要です。Navigatorの入手方法については<A HREF="http://home.netscape.com">Netscapeのホームページ</A>をご覧ください。 - - diff --git a/html/ja/auth.html.in b/html/ja/auth.html.in new file mode 100644 index 0000000..528241a --- /dev/null +++ b/html/ja/auth.html.in @@ -0,0 +1,54 @@ + + + + +Netscape Directory Server Gateway: Authentication + + + + + + + + +<H3>フレーム機能をサポートするブラウザが必要です</H3> +Netscape Directory Server Gatewayを使用するには、Netscape Navigatorパージョン3以降のようなHTMLフォームとJavaScriptをサポートするブラウザが必要です。Navigatorの入手方法については<A HREF="http://home.netscape.com">Netscapeのホームページ</A>をご覧ください。 + + diff --git a/html/ja/authroot.html b/html/ja/authroot.html deleted file mode 100644 index 52a0044..0000000 --- a/html/ja/authroot.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - -Netscape Directory Server Gateway: 認証 - - - - - - - -<H3>フレーム機能をサポートするブラウザが必要です</H3> -Netscape Directory Server Gatewayを使用するには、Netscape Navigatorパージョン3以降のようなHTMLフォームとJavaScriptをサポートするブラウザが必要です。Navigatorの入手方法については<A HREF="http://home.netscape.com">Netscape -のホームページ</A>をご覧ください。 - - diff --git a/html/ja/authroot.html.in b/html/ja/authroot.html.in new file mode 100644 index 0000000..f2906c9 --- /dev/null +++ b/html/ja/authroot.html.in @@ -0,0 +1,54 @@ + + + + +Netscape Directory Server Gateway: 認証 + + + + + + + +<H3>フレーム機能をサポートするブラウザが必要です</H3> +Netscape Directory Server Gatewayを使用するには、Netscape Navigatorパージョン3以降のようなHTMLフォームとJavaScriptをサポートするブラウザが必要です。Navigatorの入手方法については<A HREF="http://home.netscape.com">Netscape +のホームページ</A>をご覧ください。 + + diff --git a/html/ja/authtitle.html b/html/ja/authtitle.html deleted file mode 100644 index e796518..0000000 --- a/html/ja/authtitle.html +++ /dev/null @@ -1,68 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -標準検索拡張検索新規エントリ認証 - - - diff --git a/html/ja/authtitle.html.in b/html/ja/authtitle.html.in new file mode 100644 index 0000000..1fb3c72 --- /dev/null +++ b/html/ja/authtitle.html.in @@ -0,0 +1,68 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +標準検索拡張検索新規エントリ認証 + + + diff --git a/html/ja/csearchtitle.html b/html/ja/csearchtitle.html deleted file mode 100644 index 846156a..0000000 --- a/html/ja/csearchtitle.html +++ /dev/null @@ -1,68 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -標準検索拡張検索新規エントリ認証 - - - diff --git a/html/ja/csearchtitle.html.in b/html/ja/csearchtitle.html.in new file mode 100644 index 0000000..5f8e60e --- /dev/null +++ b/html/ja/csearchtitle.html.in @@ -0,0 +1,68 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +標準検索拡張検索新規エントリ認証 + + + diff --git a/html/ja/greeting.html b/html/ja/greeting.html deleted file mode 100644 index f6ada80..0000000 --- a/html/ja/greeting.html +++ /dev/null @@ -1,96 +0,0 @@ - - - -Netscape Directory Server - - - -
-
-Netscape Directory Server Gateway にようこそ -
-

-このインタフェースは、Netscape Directory Server に保存されているエントリの検索、変更、および作成に使用できます。 -

-Directory Server Gateway のご使用中は、このウィンドウ上部のツールバーをいつでもご利用いただけます。 ボタンをクリックすれば以下のタスクを実行できます。 -

- - - - - - - - - - - - - - - - - -
-標準検索 - -[標準検索]はディレクトリ検索の最も簡単な方法です。 ユーザの入力に基づいて、1つ以上のディレクトリ検索方法が自動的に選択されます。 -
-拡張検索 - -[拡張検索]を使用すると、検索対象、検索属性、および一致タイプを指定できます。 -
-新規エントリ - -[新規エントリ]でディレクトリに新規エントリを作成することができます。 システム管理者によるディレクトリの設定方法によっては、新規エントリを追加するのに特別な許可を持っていなければならないこともあります。 不明の場合は、システム管理者にお尋ねください。 -
-認証 - -ディレクトリにログインまたはログアウトするには認証画面を使用します。 ディレクトリの変更またはエントリの追加を行う前には認証が必要です。 システム管理者が義務付けている場合は、ディレクトリ検索の前にも認証が必要な場合があります。 -
- - - - diff --git a/html/ja/greeting.html.in b/html/ja/greeting.html.in new file mode 100644 index 0000000..034704f --- /dev/null +++ b/html/ja/greeting.html.in @@ -0,0 +1,96 @@ + + + +Netscape Directory Server + + + +


+
+Netscape Directory Server Gateway にようこそ +
+

+このインタフェースは、Netscape Directory Server に保存されているエントリの検索、変更、および作成に使用できます。 +

+Directory Server Gateway のご使用中は、このウィンドウ上部のツールバーをいつでもご利用いただけます。 ボタンをクリックすれば以下のタスクを実行できます。 +

+ + + + + + + + + + + + + + + + + +
+標準検索 + +[標準検索]はディレクトリ検索の最も簡単な方法です。 ユーザの入力に基づいて、1つ以上のディレクトリ検索方法が自動的に選択されます。 +
+拡張検索 + +[拡張検索]を使用すると、検索対象、検索属性、および一致タイプを指定できます。 +
+新規エントリ + +[新規エントリ]でディレクトリに新規エントリを作成することができます。 システム管理者によるディレクトリの設定方法によっては、新規エントリを追加するのに特別な許可を持っていなければならないこともあります。 不明の場合は、システム管理者にお尋ねください。 +
+認証 + +ディレクトリにログインまたはログアウトするには認証画面を使用します。 ディレクトリの変更またはエントリの追加を行う前には認証が必要です。 システム管理者が義務付けている場合は、ディレクトリ検索の前にも認証が必要な場合があります。 +
+ + + + diff --git a/html/ja/index.html b/html/ja/index.html deleted file mode 100644 index 95c9753..0000000 --- a/html/ja/index.html +++ /dev/null @@ -1,51 +0,0 @@ - - - -Netscape Directory Server Gateway - - - - - - -<H3>フレーム機能をサポートするブラウザが必要です</H3> -Netscape Directory Server Gatewayを使用するには、Netscape Navigatorパージョン3以降のようなHTMLフォームとJavaScriptをサポートするブラウザが必要です。Navigatorの入手方法については<A HREF="http://home.netscape.com">Netscapeのホームページ</A>をご覧ください。 - - diff --git a/html/ja/index.html.in b/html/ja/index.html.in new file mode 100644 index 0000000..a707bc1 --- /dev/null +++ b/html/ja/index.html.in @@ -0,0 +1,51 @@ + + + +Netscape Directory Server Gateway + + + + + + +<H3>フレーム機能をサポートするブラウザが必要です</H3> +Netscape Directory Server Gatewayを使用するには、Netscape Navigatorパージョン3以降のようなHTMLフォームとJavaScriptをサポートするブラウザが必要です。Navigatorの入手方法については<A HREF="http://home.netscape.com">Netscapeのホームページ</A>をご覧ください。 + + diff --git a/html/ja/maintitle.html b/html/ja/maintitle.html deleted file mode 100644 index 9db1831..0000000 --- a/html/ja/maintitle.html +++ /dev/null @@ -1,68 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -標準検索拡張検索新規エントリ認証 - - - diff --git a/html/ja/maintitle.html.in b/html/ja/maintitle.html.in new file mode 100644 index 0000000..3b7c90f --- /dev/null +++ b/html/ja/maintitle.html.in @@ -0,0 +1,68 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +標準検索拡張検索新規エントリ認証 + + + diff --git a/html/ja/newentrytitle.html b/html/ja/newentrytitle.html deleted file mode 100644 index 4fa7775..0000000 --- a/html/ja/newentrytitle.html +++ /dev/null @@ -1,68 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -標準検索拡張検索新規エントリ認証 - - - diff --git a/html/ja/newentrytitle.html.in b/html/ja/newentrytitle.html.in new file mode 100644 index 0000000..358304d --- /dev/null +++ b/html/ja/newentrytitle.html.in @@ -0,0 +1,68 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +標準検索拡張検索新規エントリ認証 + + + diff --git a/html/ja/searchtitle.html b/html/ja/searchtitle.html deleted file mode 100644 index 55b1e1e..0000000 --- a/html/ja/searchtitle.html +++ /dev/null @@ -1,68 +0,0 @@ - - - -Netscape Directory Server - - - - -Netscape Directory Server
- - - - - -標準検索拡張検索新規エントリ認証 - - - diff --git a/html/ja/searchtitle.html.in b/html/ja/searchtitle.html.in new file mode 100644 index 0000000..06848d6 --- /dev/null +++ b/html/ja/searchtitle.html.in @@ -0,0 +1,68 @@ + + + +Netscape Directory Server + + + + +Netscape Directory Server
+ + + + + +標準検索拡張検索新規エントリ認証 + + + diff --git a/html/maintitle.html b/html/maintitle.html deleted file mode 100644 index 987c38b..0000000 --- a/html/maintitle.html +++ /dev/null @@ -1,183 +0,0 @@ - - - -Directory Server - - - - - - - - - -
- - - - - - - - - - - - - -
-
Directory Server Gateway
-
- - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -
Standard Search
-
- - - - - - - - - - - - - - - - -
Advanced Search
-
- - - - - - - - - - - - - - - - -
New Entry
-
- - - - - - - - - - - - - - - - -
Authentication
-
- - - - - - - - - - -
- -
-
- - diff --git a/html/maintitle.html.in b/html/maintitle.html.in new file mode 100644 index 0000000..b41fe85 --- /dev/null +++ b/html/maintitle.html.in @@ -0,0 +1,183 @@ + + + +Directory Server + + + + + + + + + +
+ + + + + + + + + + + + + +
+
Directory Server Gateway
+
+ + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
Standard Search
+
+ + + + + + + + + + + + + + + + +
Advanced Search
+
+ + + + + + + + + + + + + + + + +
New Entry
+
+ + + + + + + + + + + + + + + + +
Authentication
+
+ + + + + + + + + + +
+ +
+
+ + diff --git a/html/newentrytitle.html b/html/newentrytitle.html deleted file mode 100644 index b8e28a4..0000000 --- a/html/newentrytitle.html +++ /dev/null @@ -1,187 +0,0 @@ - - - -Directory Server - - - - - - - - - -
- - - - - - - - - - - - - -
-
Directory Server Gateway
-
- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -
Standard Search
-
- - - - - - - - - - - - - - - - -
Advanced Search
-
- - - - - - - - - - - - - - - - - - -
New Entry
-
- - - - - - - - - - - - - - - - -
Authentication
-
- - - - - - - - - - -
- -
-
- - diff --git a/html/newentrytitle.html.in b/html/newentrytitle.html.in new file mode 100644 index 0000000..6e9108b --- /dev/null +++ b/html/newentrytitle.html.in @@ -0,0 +1,187 @@ + + + +Directory Server + + + + + + + + + +
+ + + + + + + + + + + + + +
+
Directory Server Gateway
+
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
Standard Search
+
+ + + + + + + + + + + + + + + + +
Advanced Search
+
+ + + + + + + + + + + + + + + + + + +
New Entry
+
+ + + + + + + + + + + + + + + + +
Authentication
+
+ + + + + + + + + + +
+ +
+
+ + diff --git a/html/searchtitle.html b/html/searchtitle.html deleted file mode 100644 index 5f260f1..0000000 --- a/html/searchtitle.html +++ /dev/null @@ -1,188 +0,0 @@ - - - -Directory Server - - - - - - - - - -
- - - - - - - - - - - - - -
-
Directory Server Gateway
-
- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - -
Standard Search
-
- - - - - - - - - - - - - - - - -
Advanced Search
-
- - - - - - - - - - - - - - - - -
New Entry
-
- - - - - - - - - - - - - - - - -
Authentication
-
- - - - - - - - - - -
- -
-
- - - diff --git a/html/searchtitle.html.in b/html/searchtitle.html.in new file mode 100644 index 0000000..944dfb8 --- /dev/null +++ b/html/searchtitle.html.in @@ -0,0 +1,188 @@ + + + +Directory Server + + + + + + + + + +
+ + + + + + + + + + + + + +
+
Directory Server Gateway
+
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + +
Standard Search
+
+ + + + + + + + + + + + + + + + +
Advanced Search
+
+ + + + + + + + + + + + + + + + +
New Entry
+
+ + + + + + + + + + + + + + + + +
Authentication
+
+ + + + + + + + + + +
+ +
+
+ + + diff --git a/pbconfig/authPassword.html b/pbconfig/authPassword.html deleted file mode 100644 index 3f7c058..0000000 --- a/pbconfig/authPassword.html +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - -Authenticate... - - - - - - - -

-Password for - -: -

-

- - - -
- - - diff --git a/pbconfig/authPassword.html.in b/pbconfig/authPassword.html.in new file mode 100644 index 0000000..6029207 --- /dev/null +++ b/pbconfig/authPassword.html.in @@ -0,0 +1,74 @@ + + + + + + +Authenticate... + + + + + + + +

+Password for + +: +

+

+ + + +
+ + + diff --git a/pbconfig/authSearch.html b/pbconfig/authSearch.html deleted file mode 100644 index 73b17eb..0000000 --- a/pbconfig/authSearch.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - -Authenticate... - - - - - - -The first step in authenticating to the directory is identifying -yourself.
Please type your name: - -

-

- - - -
- -

- - (only available to Directory Administrators) - - - diff --git a/pbconfig/authSearch.html.in b/pbconfig/authSearch.html.in new file mode 100644 index 0000000..4a6fbb7 --- /dev/null +++ b/pbconfig/authSearch.html.in @@ -0,0 +1,75 @@ + + + + + + +Authenticate... + + + + + + +The first step in authenticating to the directory is identifying +yourself.
Please type your name: + +

+

+ + + +
+ +

+ + (only available to Directory Administrators) + + + diff --git a/pbconfig/display-orgperson.html b/pbconfig/display-orgperson.html deleted file mode 100644 index 578ee81..0000000 --- a/pbconfig/display-orgperson.html +++ /dev/null @@ -1,419 +0,0 @@ - - - - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -Person Entry - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - - - - - -
Person Entry
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - New Person - - - - - - - class="linknodec"> -Click to view this person's organization chart. org chart - - Click to view this person's digital business card.  vCard - - -    - -onMouseOver="top.status='Retrieve this person\'s security certificate.'; return true">Click to retrieve this 
-person's security certificate. Get Certificate - -   -
-   - - - - -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 
- class="bold" - -> - Work Phone - - -
- class="bold" - -> - Email Address - - -
- class="bold" - -> - AIM ID - - - - - -
- class="bold" - -> - Homepage - - -
 
- class="bold" - -> - Home Phone - - -
- class="bold" - -> - Mobile Phone - - -
- class="bold" - -> - Pager - - -
- class="bold" - -> - FAX - - -
 
- class="bold" - -> - Mailing Address - - -
- class="bold" - -> - Mailstop - - -
- class="bold" - -> - Location - - -
- class="bold" - -> - Cube Number - - -
 
- - -
- -BORDER=0> -
- - - - - - - - - - - - - -
- - - - - - diff --git a/pbconfig/display-orgperson.html.in b/pbconfig/display-orgperson.html.in new file mode 100644 index 0000000..71bb50e --- /dev/null +++ b/pbconfig/display-orgperson.html.in @@ -0,0 +1,419 @@ + + + + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +Person Entry - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + + + + + +
Person Entry
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + New Person - + + + + + + class="linknodec"> +Click to view this person's organization chart. org chart + + Click to view this person's digital business card.  vCard + + +    + +onMouseOver="top.status='Retrieve this person\'s security certificate.'; return true">Click to retrieve this 
+person's security certificate. Get Certificate + +   +
+   + + + + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 
+ class="bold" + +> + Work Phone + + +
+ class="bold" + +> + Email Address + + +
+ class="bold" + +> + AIM ID + + + + + +
+ class="bold" + +> + Homepage + + +
 
+ class="bold" + +> + Home Phone + + +
+ class="bold" + +> + Mobile Phone + + +
+ class="bold" + +> + Pager + + +
+ class="bold" + +> + FAX + + +
 
+ class="bold" + +> + Mailing Address + + +
+ class="bold" + +> + Mailstop + + +
+ class="bold" + +> + Location + + +
+ class="bold" + +> + Cube Number + + +
 
+ + +
+ +BORDER=0> +
+ + + + + + + + + + + + + +
+ + + + + + diff --git a/pbconfig/display-orgunit.html b/pbconfig/display-orgunit.html deleted file mode 100644 index 50b17e0..0000000 --- a/pbconfig/display-orgunit.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -Organizational Unit Entry - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
-   - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 
- Business Category - - -
- Description - - -
- Contact Phone - - -
- Fax - - -
 
- Location - - -
- Mailing Address - - -
- Mailstop - - -
- Postal Code - - -
- Post Office Box - - -
 
- See Also - - -
 
- - - -
- - -
- - diff --git a/pbconfig/display-orgunit.html.in b/pbconfig/display-orgunit.html.in new file mode 100644 index 0000000..b52cc1c --- /dev/null +++ b/pbconfig/display-orgunit.html.in @@ -0,0 +1,229 @@ + + + + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +Organizational Unit Entry + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + +
+   + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 
+ Business Category + + +
+ Description + + +
+ Contact Phone + + +
+ Fax + + +
 
+ Location + + +
+ Mailing Address + + +
+ Mailstop + + +
+ Postal Code + + +
+ Post Office Box + + +
 
+ See Also + + +
 
+ + + +
+ + +
+ + diff --git a/pbconfig/display-room.html b/pbconfig/display-room.html deleted file mode 100644 index 437001c..0000000 --- a/pbconfig/display-room.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - -<!-- IF "Adding" --> -New -<!-- ENDIF // Adding --> -Room Entry - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - New Room - - - - - -
-   - - - Room - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 
- Phone Number - - -
- Description - - -
- See Also - - -
 
- -
- - -
- -
- - - - - - - diff --git a/pbconfig/display-room.html.in b/pbconfig/display-room.html.in new file mode 100644 index 0000000..11178b1 --- /dev/null +++ b/pbconfig/display-room.html.in @@ -0,0 +1,155 @@ + + + + + + + +<!-- IF "Adding" --> +New +<!-- ENDIF // Adding --> +Room Entry + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + New Room + + + + + +
+   + + + Room + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 
+ Phone Number + + +
+ Description + + +
+ See Also + + +
 
+ +
+ + +
+ +
+ + + + + + + diff --git a/pbconfig/edit-passwd.html b/pbconfig/edit-passwd.html deleted file mode 100644 index 2ab442f..0000000 --- a/pbconfig/edit-passwd.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - -Change Password - -<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> - - - - - - - - - - - -
Person Entry
- - - - - -
- - - - - - - - - - -
- - - Change Password for - -
- -

- - - - - - - - - - - - - - - - - - - -
-Enter the old password: - - -
-Enter the old password: - - -
-Enter the new password: - - -
-Enter the new password again to confirm: - - -
- -

- - - - - - - -
- - - - - - - -
- - - - - - - diff --git a/pbconfig/edit-passwd.html.in b/pbconfig/edit-passwd.html.in new file mode 100644 index 0000000..7eb4596 --- /dev/null +++ b/pbconfig/edit-passwd.html.in @@ -0,0 +1,142 @@ + + + + + + +Change Password - +<!-- DS_ATTRIBUTE "attr=dn" "syntax=dn" "options=nolink" --> + + + + + + + + + + + +
Person Entry
+ + + + + +
+ + + + + + + + + + +
+ + + Change Password for + +
+ +

+ + + + + + + + + + + + + + + + + + + +
+Enter the old password: + + +
+Enter the old password: + + +
+Enter the new password: + + +
+Enter the new password again to confirm: + + +
+ +

+ + + + + + + +
+ + + + + + + +
+ + + + + + + diff --git a/pbconfig/list-Auth.html b/pbconfig/list-Auth.html deleted file mode 100644 index 5a9c570..0000000 --- a/pbconfig/list-Auth.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - -Authenticate as... - - - - - - - - - - -
Authenticate as...
- - - - -
- -

- - -> - -
- - - - - - - - - -
- -
-

- -

- -

- -Please click on the name of the entry you would like to use for authentication. -

-

- - - - - - - - - - -
Authenticate AsTitle
- - - - - - -
- -Please go back and try again. - -

- -
- - - - - - -
- - -
- -
- - diff --git a/pbconfig/list-Auth.html.in b/pbconfig/list-Auth.html.in new file mode 100644 index 0000000..91eee19 --- /dev/null +++ b/pbconfig/list-Auth.html.in @@ -0,0 +1,147 @@ + + + + +Authenticate as... + + + + + + + + + + +
Authenticate as...
+ + + + +
+ +
+ + +> + +
+ + + + + + + + + +
+ +
+

+ +

+ +

+ +Please click on the name of the entry you would like to use for authentication. +

+

+ + + + + + + + + + +
Authenticate AsTitle
+ + + + + + +
+ +Please go back and try again. + +

+ +
+ + + + + + +
+ + +
+ +
+ + diff --git a/pbconfig/list-People.html b/pbconfig/list-People.html deleted file mode 100644 index 42cbeed..0000000 --- a/pbconfig/list-People.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
  -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
- Name - - ID - - Phone - - E-mail - - AIM ID - - Group -
- - - - - - - - - - - - -
- -
-  
- Click on an entry's ID to bring up more information about that entry. -
- - -

-

- No entries match the requested search term. Please try a different search. -
-

- - - - diff --git a/pbconfig/list-People.html.in b/pbconfig/list-People.html.in new file mode 100644 index 0000000..f351125 --- /dev/null +++ b/pbconfig/list-People.html.in @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
  +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + ID + + Phone + + E-mail + + AIM ID + + Group +
+ + + + + + + + + + + + +
+ +
+  
+ Click on an entry's ID to bring up more information about that entry. +
+ + +

+

+ No entries match the requested search term. Please try a different search. +
+

+ + + + diff --git a/pbconfig/pb.tmpl b/pbconfig/pb.tmpl deleted file mode 100644 index 8d29ab5..0000000 --- a/pbconfig/pb.tmpl +++ /dev/null @@ -1,174 +0,0 @@ -# BEGIN COPYRIGHT BLOCK -# This Program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License as published by the Free Software -# Foundation; version 2 of the License. -# -# This Program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License along with -# this Program; if not, write to the Free Software Foundation, Inc., 59 Temple -# Place, Suite 330, Boston, MA 02111-1307 USA. -# -# In addition, as a special exception, Red Hat, Inc. gives You the additional -# right to link the code of this Program with code not covered under the GNU -# General Public License ("Non-GPL Code") and to distribute linked combinations -# including the two, subject to the limitations in this paragraph. Non-GPL Code -# permitted under this exception must only link to the code of this Program -# through those well defined interfaces identified in the file named EXCEPTION -# found in the source code files (the "Approved Interfaces"). The files of -# Non-GPL Code may instantiate templates or use macros or inline functions from -# the Approved Interfaces without causing the resulting work to be covered by -# the GNU General Public License. Only Red Hat, Inc. may make changes or -# additions to the list of Approved Interfaces. You must obey the GNU General -# Public License in all respects for all of the Program code and other code used -# in conjunction with the Program except the Non-GPL Code covered by this -# exception. If you modify this file, you may extend this exception to your -# version of the file, but you are not obligated to do so. If you do not wish to -# provide this exception without modification, you must delete this exception -# statement from your version and license this file solely under the GPL without -# exception. -# -# -# Copyright (C) 2001 Sun Microsystems, Inc. Used by permission. -# Copyright (C) 2005 Red Hat, Inc. -# All rights reserved. -# END COPYRIGHT BLOCK - -baseurl "ldap://@host@:@port@/@suffix@" - -dirmgr "@dirmgr@" - -location-suffix @suffix@ - -securitypath "@contextdir@" - -url-orgchart-base http://@host@:@port@/clients/orgchart/bin/org?context=pb&data= - -# The attribute the orgchart uses to search for entries. -# This value should correspond to the value of attrib-farleft-rdn -# in the orgchart's config.txt configuration file. -orgchart-attrib-farleft-rdn uid - -# Check for Aim presence when the user's entry is displayed -enable-aim-presence true - -# The htmldir directive tells the CGIs where to find the html files -htmldir ../pbhtml - -# The configdir directive tells the CGIs where to find the -# templates/configuration files -configdir ../pbconfig - -# The gwnametrans directive tells the CGIs what url to output -# for http redirection. It should be the same nameTrans set -# in the webserver, if any is being is used. -gwnametrans /clients/dsgw/pbhtml/ - -# The authlifetime directive specifies how long authentication credentials -# are valid (in seconds). -authlifetime 7200 - -# The libNLS data directory. This directory should contain a directory -# named "locales", which contains the configuration files LANG.ctx and -# LANG.txt for each supported language (locale). -NLS ../../../lib/nls - -# The default character set, for communication with HTTP clients. -# A client may override this default, using an HTTP Accept-Charset header. -# Or, this default may be overridden for a specific language, by creating -# a LANG/dsgwcharset.conf file which contains the charset name. -# For compatibility with HTTP clients that can't handle an HTTP response -# with a charset parameter in the content-type, comment out this directive; -# responses will be sent in ISO-8859-1, with no explicit charset parameter. -# RFC 1345 defines the syntax of charset names. There is a registry of -# charsets, at ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets -# charset UTF-8 - -# ignoreAcceptCharsetFrom [ ] -# where each of whose values is the version string (or part of the version -# string) sent by an HTTP client which can't / doesn't want to handle UTF-8. -# Charset from dsgwcharset.conf or charset directive is used (in the order). -# ignoreAcceptCharsetFrom Mozilla/4.01x-NSCP Mozilla/3 - -# Substitute ideographic space for non-breaking space in Asian charsets: -changeHTML "  " " " Shift_JIS Big5 EUC-KR EUC-JP -changeHTML " " " " Shift_JIS Big5 EUC-KR EUC-JP - -# Mapping between config/display-XXX.html templates and LDAP objectClasses. -# This can be generated by using ds/templateindex. The format is: -# -# template TEMPLATENAME OBJECTCLASSES -# -# where "display-TEMPLATENAME.html" is the name of a display template -# that is found in this config directory (e.g., "display-group.html") and -# OBJECTCLASSES is a list of one or more objectClass values. For a given -# template to be used, all the objectClass values listed must be present -# in the directory entry, so the order of these template lines is -# significant (e.g. note that the more specific "orgperson" template is -# listed before the one for an ordinary "person"). -# -template orgunit organizationalUnit -template room room -template orgperson person inetOrgPerson - - -# -# The remainder of this file contains information about the locations and -# types for new entries. -# -# "location" lines define places in the directory where new entries can be added -# The format of each line is: -# location HANDLE FRIENDLYNAME DN -# where HANDLE is a short name which is used in the "newtype" lines (see below) -# and FRIENDLYNAME is a human-readable name for the location -# and DN is the Distinguished Name for this location (if it does not end with -# '#', the location-suffix is appended to to construct a full DN; if it -# does end with `#', it assumed to be a full DN and the `#' is removed). -# -location country "United States" "c=US#" -location org "This Organization" "" -location groups "Groups" "ou=Groups" -location people "People" "ou=People" -location special "Special Users" "ou=Special Users" - -# "newtype" lines define the types of new entries that may be added -# The format of each line is: -# newtype TEMPLATENAME FRIENDLYNAME RDNATTR LOCATIONS... -# where TEMPLATENAME corresponds to an existing display-TEMPLATENAME.html file -# and FRIENDLYNAME is a human-readable name for this type of entry -# and RDNATTR is the attribute that is used to name entries of this type -# and LOCATIONS is a blank-separated list of locations where these types of -# entries can be added (corresponding to a HANDLE on a "location" -# config. file line). -# -newtype orgperson "Person" uid people special -newtype ntperson "NT Person" uid people special -newtype ntgroup "NT Group" cn groups -newtype groupun "Group" cn groups -newtype orgunit "Organizational Unit" ou people org -newtype org "Organization" o country - -# Mappings between VCard properties and LDAP attribute types: -# The format of each line is: -# vcard-property VCARDPROP SYNTAX LDAPATTR [LDAPATTR2] -# where VCARDPROP is the name of a VCard property -# and SYNTAX is "cis" for simple strings and "mls" for multiline strings -# and LDAPATTR is the LDAP attribute that corresponds to VCARDPROP -# and LDAPATTR2 is an optional secondary LDAP attribute which is added to -# the property value by appending a semicolon and then the attr2 value. -vcard-property FN cis cn -vcard-property N cis sn givenName -vcard-property ORG cis o ou -vcard-property ROLE cis businessCategory -vcard-property ADR;WORK mls postalAddress -vcard-property ADR;HOME mls homePostalAddress -vcard-property EMAIL;INTERNET cis mail -vcard-property TITLE cis title -vcard-property TEL;WORK cis telephoneNumber -vcard-property TEL;FAX cis facsimileTelephoneNumber -vcard-property TEL;CELL cis mobile -vcard-property TEL;HOME cis homePhone -vcard-property NOTE cis description - diff --git a/pbconfig/pb.tmpl.in b/pbconfig/pb.tmpl.in new file mode 100644 index 0000000..8a5643d --- /dev/null +++ b/pbconfig/pb.tmpl.in @@ -0,0 +1,174 @@ +# BEGIN COPYRIGHT BLOCK +# This Program is free software; you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free Software +# Foundation; version 2 of the License. +# +# This Program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along with +# this Program; if not, write to the Free Software Foundation, Inc., 59 Temple +# Place, Suite 330, Boston, MA 02111-1307 USA. +# +# In addition, as a special exception, Red Hat, Inc. gives You the additional +# right to link the code of this Program with code not covered under the GNU +# General Public License ("Non-GPL Code") and to distribute linked combinations +# including the two, subject to the limitations in this paragraph. Non-GPL Code +# permitted under this exception must only link to the code of this Program +# through those well defined interfaces identified in the file named EXCEPTION +# found in the source code files (the "Approved Interfaces"). The files of +# Non-GPL Code may instantiate templates or use macros or inline functions from +# the Approved Interfaces without causing the resulting work to be covered by +# the GNU General Public License. Only Red Hat, Inc. may make changes or +# additions to the list of Approved Interfaces. You must obey the GNU General +# Public License in all respects for all of the Program code and other code used +# in conjunction with the Program except the Non-GPL Code covered by this +# exception. If you modify this file, you may extend this exception to your +# version of the file, but you are not obligated to do so. If you do not wish to +# provide this exception without modification, you must delete this exception +# statement from your version and license this file solely under the GPL without +# exception. +# +# +# Copyright (C) 2001 Sun Microsystems, Inc. Used by permission. +# Copyright (C) 2005 Red Hat, Inc. +# All rights reserved. +# END COPYRIGHT BLOCK + +baseurl "ldap://@host@:@port@/@suffix@" + +dirmgr "@dirmgr@" + +location-suffix @suffix@ + +securitypath "@contextdir@" + +url-orgchart-base http://@host@:@port@/clients/orgchart/bin/org?context=pb&data= + +# The attribute the orgchart uses to search for entries. +# This value should correspond to the value of attrib-farleft-rdn +# in the orgchart's config.txt configuration file. +orgchart-attrib-farleft-rdn uid + +# Check for Aim presence when the user's entry is displayed +enable-aim-presence true + +# The htmldir directive tells the CGIs where to find the html files +htmldir @pbhtmldir@ + +# The configdir directive tells the CGIs where to find the +# templates/configuration files +configdir @pbconfigdir@ + +# The gwnametrans directive tells the CGIs what url to output +# for http redirection. It should be the same nameTrans set +# in the webserver, if any is being is used. +gwnametrans @pburi@/ + +# The authlifetime directive specifies how long authentication credentials +# are valid (in seconds). +authlifetime 7200 + +# The libNLS data directory. This directory should contain a directory +# named "locales", which contains the configuration files LANG.ctx and +# LANG.txt for each supported language (locale). +NLS ../../../lib/nls + +# The default character set, for communication with HTTP clients. +# A client may override this default, using an HTTP Accept-Charset header. +# Or, this default may be overridden for a specific language, by creating +# a LANG/dsgwcharset.conf file which contains the charset name. +# For compatibility with HTTP clients that can't handle an HTTP response +# with a charset parameter in the content-type, comment out this directive; +# responses will be sent in ISO-8859-1, with no explicit charset parameter. +# RFC 1345 defines the syntax of charset names. There is a registry of +# charsets, at ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets +# charset UTF-8 + +# ignoreAcceptCharsetFrom [ ] +# where each of whose values is the version string (or part of the version +# string) sent by an HTTP client which can't / doesn't want to handle UTF-8. +# Charset from dsgwcharset.conf or charset directive is used (in the order). +# ignoreAcceptCharsetFrom Mozilla/4.01x-NSCP Mozilla/3 + +# Substitute ideographic space for non-breaking space in Asian charsets: +changeHTML "  " " " Shift_JIS Big5 EUC-KR EUC-JP +changeHTML " " " " Shift_JIS Big5 EUC-KR EUC-JP + +# Mapping between config/display-XXX.html templates and LDAP objectClasses. +# This can be generated by using ds/templateindex. The format is: +# +# template TEMPLATENAME OBJECTCLASSES +# +# where "display-TEMPLATENAME.html" is the name of a display template +# that is found in this config directory (e.g., "display-group.html") and +# OBJECTCLASSES is a list of one or more objectClass values. For a given +# template to be used, all the objectClass values listed must be present +# in the directory entry, so the order of these template lines is +# significant (e.g. note that the more specific "orgperson" template is +# listed before the one for an ordinary "person"). +# +template orgunit organizationalUnit +template room room +template orgperson person inetOrgPerson + + +# +# The remainder of this file contains information about the locations and +# types for new entries. +# +# "location" lines define places in the directory where new entries can be added +# The format of each line is: +# location HANDLE FRIENDLYNAME DN +# where HANDLE is a short name which is used in the "newtype" lines (see below) +# and FRIENDLYNAME is a human-readable name for the location +# and DN is the Distinguished Name for this location (if it does not end with +# '#', the location-suffix is appended to to construct a full DN; if it +# does end with `#', it assumed to be a full DN and the `#' is removed). +# +location country "United States" "c=US#" +location org "This Organization" "" +location groups "Groups" "ou=Groups" +location people "People" "ou=People" +location special "Special Users" "ou=Special Users" + +# "newtype" lines define the types of new entries that may be added +# The format of each line is: +# newtype TEMPLATENAME FRIENDLYNAME RDNATTR LOCATIONS... +# where TEMPLATENAME corresponds to an existing display-TEMPLATENAME.html file +# and FRIENDLYNAME is a human-readable name for this type of entry +# and RDNATTR is the attribute that is used to name entries of this type +# and LOCATIONS is a blank-separated list of locations where these types of +# entries can be added (corresponding to a HANDLE on a "location" +# config. file line). +# +newtype orgperson "Person" uid people special +newtype ntperson "NT Person" uid people special +newtype ntgroup "NT Group" cn groups +newtype groupun "Group" cn groups +newtype orgunit "Organizational Unit" ou people org +newtype org "Organization" o country + +# Mappings between VCard properties and LDAP attribute types: +# The format of each line is: +# vcard-property VCARDPROP SYNTAX LDAPATTR [LDAPATTR2] +# where VCARDPROP is the name of a VCard property +# and SYNTAX is "cis" for simple strings and "mls" for multiline strings +# and LDAPATTR is the LDAP attribute that corresponds to VCARDPROP +# and LDAPATTR2 is an optional secondary LDAP attribute which is added to +# the property value by appending a semicolon and then the attr2 value. +vcard-property FN cis cn +vcard-property N cis sn givenName +vcard-property ORG cis o ou +vcard-property ROLE cis businessCategory +vcard-property ADR;WORK mls postalAddress +vcard-property ADR;HOME mls homePostalAddress +vcard-property EMAIL;INTERNET cis mail +vcard-property TITLE cis title +vcard-property TEL;WORK cis telephoneNumber +vcard-property TEL;FAX cis facsimileTelephoneNumber +vcard-property TEL;CELL cis mobile +vcard-property TEL;HOME cis homePhone +vcard-property NOTE cis description + diff --git a/pbhtml/alert.html b/pbhtml/alert.html deleted file mode 100644 index 22821bf..0000000 --- a/pbhtml/alert.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - -<!-- DS_POSTEDVALUE "NAME=TITLE" --> - - - - - - - -
Alert - -
-
- -
- diff --git a/pbhtml/alert.html.in b/pbhtml/alert.html.in new file mode 100644 index 0000000..9e3f62b --- /dev/null +++ b/pbhtml/alert.html.in @@ -0,0 +1,55 @@ + + + + +<!-- DS_POSTEDVALUE "NAME=TITLE" --> + + + + + + + +
Alert + +
+
+ +
+ diff --git a/pbhtml/carded.html b/pbhtml/carded.html deleted file mode 100644 index db9ac9c..0000000 --- a/pbhtml/carded.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - vCard - - - - - - - - - - - diff --git a/pbhtml/carded.html.in b/pbhtml/carded.html.in new file mode 100644 index 0000000..fd48b26 --- /dev/null +++ b/pbhtml/carded.html.in @@ -0,0 +1,75 @@ + + + + vCard + + + + + + + + + + + diff --git a/pbhtml/confirm.html b/pbhtml/confirm.html deleted file mode 100644 index 371f582..0000000 --- a/pbhtml/confirm.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - -<!-- DS_POSTEDVALUE "NAME=TITLE" --> - - - - - - - -
Confirm - -
-
- - - -
- - - -
- diff --git a/pbhtml/confirm.html.in b/pbhtml/confirm.html.in new file mode 100644 index 0000000..aca73a8 --- /dev/null +++ b/pbhtml/confirm.html.in @@ -0,0 +1,61 @@ + + + + +<!-- DS_POSTEDVALUE "NAME=TITLE" --> + + + + + + + +
Confirm + +
+
+ + + +
+ + + +
+ diff --git a/pbhtml/index.html b/pbhtml/index.html deleted file mode 100644 index bdcf196..0000000 --- a/pbhtml/index.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - - -Directory Express - - - - - - - - - - - - - diff --git a/pbhtml/index.html.in b/pbhtml/index.html.in new file mode 100644 index 0000000..3f7cba8 --- /dev/null +++ b/pbhtml/index.html.in @@ -0,0 +1,68 @@ + + + + + +Directory Express + + + + + + + + + + + + + diff --git a/pbhtml/intro.html b/pbhtml/intro.html deleted file mode 100644 index 2b66574..0000000 --- a/pbhtml/intro.html +++ /dev/null @@ -1,238 +0,0 @@ - - - -Directory Express - - - - - - - - - - - - - - - - - - -
-

-  
- About Directory Express -
  -

-
- Directory Express displays people, conference rooms, buildings and branch offices. - If multiple entries are found, the results are displayed in a table: -
-   -
- -
- - - - - - - - - - - - - - - -
- Found x entries where the name or user ID matches 'your search'. -
  -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-   - - Name - - ID - - Phone - - E-mail - - Group -
- - - Jane Castle - - jane - - 4444 - - jane@example.com - - engineering -
- - - John Castle - - john - - 5555 - - john@example.com - - marketing -
- - - King's Castle - - King's Castle - - 2121 - -   - -   -
- - - Quincy Castlegate - - quincy - - 7777 - - quincy@example.com - - product development -
- -
-  
- Click on an entry's ID to bring up more information about that entry. -
- -
- - - - - - - - - - - -
-   -
- If a single, unique entry is found, all information pertaining to that entry is - displayed. Users can edit portions of their personal information by displaying - their information as described above, and clicking the "Edit Person" - button at the bottom of the their entry. -
- - - - - - - diff --git a/pbhtml/intro.html.in b/pbhtml/intro.html.in new file mode 100644 index 0000000..9c59f6b --- /dev/null +++ b/pbhtml/intro.html.in @@ -0,0 +1,238 @@ + + + +Directory Express + + + + + + + + + + + + + + + + + + +
+

+  
+ About Directory Express +
  +

+
+ Directory Express displays people, conference rooms, buildings and branch offices. + If multiple entries are found, the results are displayed in a table: +
+   +
+ +
+ + + + + + + + + + + + + + + +
+ Found x entries where the name or user ID matches 'your search'. +
  +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+   + + Name + + ID + + Phone + + E-mail + + Group +
+ + + Jane Castle + + jane + + 4444 + + jane@example.com + + engineering +
+ + + John Castle + + john + + 5555 + + john@example.com + + marketing +
+ + + King's Castle + + King's Castle + + 2121 + +   + +   +
+ + + Quincy Castlegate + + quincy + + 7777 + + quincy@example.com + + product development +
+ +
+  
+ Click on an entry's ID to bring up more information about that entry. +
+ +
+ + + + + + + + + + + +
+   +
+ If a single, unique entry is found, all information pertaining to that entry is + displayed. Users can edit portions of their personal information by displaying + their information as described above, and clicking the "Edit Person" + button at the bottom of the their entry. +
+ + + + + + + diff --git a/pbhtml/modify.html b/pbhtml/modify.html deleted file mode 100644 index 94fba69..0000000 --- a/pbhtml/modify.html +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - -Directory Express - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
-LEGEND - - - -
User-editable Users can edit their own information.
Administrator Email changes to the Directory Express Administrator team.
Help Request Fill out an online Help Request.
Call Helpdesk 555-1111 Please don't call between 10-12, and 2-4 Pacific Time
PeopleSoft Form- Employees Legal Name changes: Use the online Change of Employee Information form. -
- All others: Download the Employee Change Sheet, print it, fill it out and give it to your divisional HR representative.
Special Email- Vendors, Services, and Other ContractorsThe conditions of your contract determine who gets your Email request.
-

- - - -

- -
- - - -
-Person - -Your Name Here
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Contact Information
Phone: -Administrator -E-Mail Address: -Help Request -
User ID: -Help Request -Mailstop: - -Administrator -
First Name: -Call Helpdesk 555-1111 -Pager: -User-editable -
Last Name: - -Call Helpdesk 555-1111 -Legal Name:Employees: - PeopleSoft -Form
Vendors, Services, and Other Contractors: Special Email - -
Home Phone:
(optional) -
-User-editable -Mobile Phone: -User-editable -
Fax: -User-editable -
- - - - -

-

- - - - - - - - - - - - - - - - -
Location Information
Mailing Address:Administrator
Building #:AdministratorBuilding Level:Administrator
Physical Location: Administrator
- -

-

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Business Information
Business Category:Employees:PeopleSoft Form
Vendors, Services, and Other Contractors: Special Email
Title:Employees:PeopleSoft Form
Vendors, Services, and Other Contractors: Special Email
Organizational Unit:Employees:PeopleSoft Form
Vendors, Services, and Other Contractors Special Email
Manager:Employees:PeopleSoft Form
Vendors, Services, and Other Contractors: Special Email
Cube #:AdministratorAdmin.:Administrator
Dept#:Employees:PeopleSoft Form
Vendors, Services, and Other Contractors: Special Email
Employee Status:Employees:PeopleSoft Form
Vendors, Services, and Other Contractors: Special Email
Vehicle License#:User-editableCurrent Contact Info.User-editable
- - -

-

- - - - - - - - - - - - - - - - - -
Additional Information
Description:User-editable
See Also:User-editable
URL:User-editable
- -

-

- - - - - - - - - - - - - - - - - - - - - - - - - - - -
Mail Information
Mail Server: -Help RequestMail Addresses:Help Request
Autoreply mode:User-editable
Autoreply Text:User-editable
Mail Delivery Option: -User-editableForwarding Addresses:User-editable
- -

-

- - - - - - - - diff --git a/pbhtml/modify.html.in b/pbhtml/modify.html.in new file mode 100644 index 0000000..ab6c6ab --- /dev/null +++ b/pbhtml/modify.html.in @@ -0,0 +1,323 @@ + + + + + + +Directory Express + + + + + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+LEGEND + + + +
User-editable Users can edit their own information.
Administrator Email changes to the Directory Express Administrator team.
Help Request Fill out an online Help Request.
Call Helpdesk 555-1111 Please don't call between 10-12, and 2-4 Pacific Time
PeopleSoft Form- Employees Legal Name changes: Use the online Change of Employee Information form. +
+ All others: Download the Employee Change Sheet, print it, fill it out and give it to your divisional HR representative.
Special Email- Vendors, Services, and Other ContractorsThe conditions of your contract determine who gets your Email request.
+

+ + + +

+ +
+ + + +
+Person + +Your Name Here
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Contact Information
Phone: +Administrator +E-Mail Address: +Help Request +
User ID: +Help Request +Mailstop: + +Administrator +
First Name: +Call Helpdesk 555-1111 +Pager: +User-editable +
Last Name: + +Call Helpdesk 555-1111 +Legal Name:Employees: + PeopleSoft +Form
Vendors, Services, and Other Contractors: Special Email + +
Home Phone:
(optional) +
+User-editable +Mobile Phone: +User-editable +
Fax: +User-editable +
+ + + + +

+

+ + + + + + + + + + + + + + + + +
Location Information
Mailing Address:Administrator
Building #:AdministratorBuilding Level:Administrator
Physical Location: Administrator
+ +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Business Information
Business Category:Employees:PeopleSoft Form
Vendors, Services, and Other Contractors: Special Email
Title:Employees:PeopleSoft Form
Vendors, Services, and Other Contractors: Special Email
Organizational Unit:Employees:PeopleSoft Form
Vendors, Services, and Other Contractors Special Email
Manager:Employees:PeopleSoft Form
Vendors, Services, and Other Contractors: Special Email
Cube #:AdministratorAdmin.:Administrator
Dept#:Employees:PeopleSoft Form
Vendors, Services, and Other Contractors: Special Email
Employee Status:Employees:PeopleSoft Form
Vendors, Services, and Other Contractors: Special Email
Vehicle License#:User-editableCurrent Contact Info.User-editable
+ + +

+

+ + + + + + + + + + + + + + + + + +
Additional Information
Description:User-editable
See Also:User-editable
URL:User-editable
+ +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Mail Information
Mail Server: +Help RequestMail Addresses:Help Request
Autoreply mode:User-editable
Autoreply Text:User-editable
Mail Delivery Option: +User-editableForwarding Addresses:User-editable
+ +

+

+ + + + + + + + diff --git a/pbhtml/nullStringError.html b/pbhtml/nullStringError.html deleted file mode 100644 index 4f6dcac..0000000 --- a/pbhtml/nullStringError.html +++ /dev/null @@ -1,95 +0,0 @@ - - - -Error! - - - - -

-   -

- - - - -
- - - - - -
-
- - - - - - - - - - - - - - -
- - -   - - No search term entered. -
-   -
-   - - Directory Express searches against an entry's name, user ID, and phone extension. - Please enter a search term and try again. -
- -
-
- -
- - - diff --git a/pbhtml/nullStringError.html.in b/pbhtml/nullStringError.html.in new file mode 100644 index 0000000..cf5f886 --- /dev/null +++ b/pbhtml/nullStringError.html.in @@ -0,0 +1,95 @@ + + + +Error! + + + + +

+   +

+ + + + +
+ + + + + +
+
+ + + + + + + + + + + + + + +
+ + +   + + No search term entered. +
+   +
+   + + Directory Express searches against an entry's name, user ID, and phone extension. + Please enter a search term and try again. +
+ +
+
+ +
+ + + diff --git a/pbhtml/phone.html b/pbhtml/phone.html deleted file mode 100644 index 9a638b7..0000000 --- a/pbhtml/phone.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - -Directory Express - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -Directory Express - - - - - -
- Search for: - - - - - - - -
-
-
- - diff --git a/pbhtml/phone.html.in b/pbhtml/phone.html.in new file mode 100644 index 0000000..90f0b1a --- /dev/null +++ b/pbhtml/phone.html.in @@ -0,0 +1,112 @@ + + + + +Directory Express + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +Directory Express + + + + + +
+ Search for: + + + + + + + +
+
+
+ + diff --git a/pbhtml/report.html b/pbhtml/report.html deleted file mode 100644 index b3768fb..0000000 --- a/pbhtml/report.html +++ /dev/null @@ -1,186 +0,0 @@ - - - - - Telephone Book: Reports - - - - -

- -

- -

Make a report that looks like this table: -

- -

-


- -
- - - - - - - - - - - - - - - - - -
-

-
- -

-


- -
- - - - - - - - - -
The report has entries where includes
- -
- - - - - - - - - - - - - - - -
-

-
and is sorted by and then by and then by . -
- -
- - - -
Should the report have multiple smaller tables?  Yes -No
- -


-
-
-

- -
- - - - - -
- -

- - - diff --git a/pbhtml/report.html.in b/pbhtml/report.html.in new file mode 100644 index 0000000..64afadf --- /dev/null +++ b/pbhtml/report.html.in @@ -0,0 +1,186 @@ + + + + + Telephone Book: Reports + + + + +

+ +

+ +

Make a report that looks like this table: +

+ +

+


+ +
+ + + + + + + + + + + + + + + + + +
+

+
+ +

+


+ +
+ + + + + + + + + +
The report has entries where includes
+ +
+ + + + + + + + + + + + + + + +
+

+
and is sorted by and then by and then by . +
+ +
+ + + +
Should the report have multiple smaller tables?  Yes +No
+ +


+
+
+

+ +
+ + + + + +
+ +

+ + +