[Fedora-directory-commits] ldapserver/ldap/servers/plugins/memberof memberof.c, 1.3, 1.4
by Doctor Conrad
Author: nkinder
Update of /cvs/dirsec/ldapserver/ldap/servers/plugins/memberof
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv24900
Modified Files:
memberof.c
Log Message:
Summary: Avoid adding a group as a memberOf itself.
Resolves: 439450
Index: memberof.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/memberof/memberof.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- memberof.c 28 Mar 2008 20:45:22 -0000 1.3
+++ memberof.c 28 Mar 2008 21:45:52 -0000 1.4
@@ -946,6 +946,27 @@
}
/* continue with operation */
{
+ Slapi_Value *to_dn_val = slapi_value_new_string(op_to);
+ Slapi_Value *this_dn_val = slapi_value_new_string(op_this);
+
+ /* We want to avoid listing a group as a memberOf itself
+ * in case someone set up a circular grouping.
+ */
+ if (0 == memberof_compare(&this_dn_val, &to_dn_val))
+ {
+ slapi_log_error( SLAPI_LOG_PLUGIN,
+ MEMBEROF_PLUGIN_SUBSYSTEM,
+ "memberof_modop_one_r: not processing memberOf "
+ "operations on self entry: %s\n", this_dn_val);
+ slapi_value_free(&to_dn_val);
+ slapi_value_free(&this_dn_val);
+ goto bail;
+ }
+
+ /* We don't need the Slapi_Value copies of the DN's anymore */
+ slapi_value_free(&to_dn_val);
+ slapi_value_free(&this_dn_val);
+
if(stack && LDAP_MOD_DELETE == mod_op)
{
if(memberof_is_legit_member(pb, group_dn,
@@ -1012,20 +1033,12 @@
if(LDAP_MOD_ADD == mod_op)
{
- Slapi_Value *to_dn_val = slapi_value_new_string(op_to);
- Slapi_Value *this_dn_val = slapi_value_new_string(op_this);
-
/* If we failed to update memberOf for op_to, we shouldn't
- * try to fix up membership for parent groups. We also want
- * to avoid going into an endless loop if we've hit a
- * circular grouping. */
- if ((rc == 0) && (0 != memberof_compare(&this_dn_val, &to_dn_val))) {
+ * try to fix up membership for parent groups. */
+ if (rc == 0) {
/* fix up membership for groups that are now in scope */
memberof_add_membership(pb, op_this, op_to);
}
-
- slapi_value_free(&to_dn_val);
- slapi_value_free(&this_dn_val);
}
}
15 years, 6 months
[Fedora-directory-commits] ldapserver/ldap/servers/plugins/memberof memberof.c, 1.2, 1.3
by Doctor Conrad
Author: nkinder
Update of /cvs/dirsec/ldapserver/ldap/servers/plugins/memberof
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv16910
Modified Files:
memberof.c
Log Message:
Resolves: 439097
Summary: Handle delete modify of all present member values. When doing a delete modify, we should treat it the same as a replace when no deletion values are specified.
Index: memberof.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/memberof/memberof.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- memberof.c 26 Mar 2008 22:25:49 -0000 1.2
+++ memberof.c 28 Mar 2008 20:45:22 -0000 1.3
@@ -654,8 +654,19 @@
case LDAP_MOD_DELETE:
{
- /* remove group DN from targets */
- memberof_del_smod_list(pb, dn, smod);
+ /* If there are no values in the smod, we should
+ * just do a replace instead. The user is just
+ * trying to delete all members from this this
+ * entry, which the replace code deals with. */
+ if (slapi_mod_get_num_values(smod) == 0)
+ {
+ memberof_replace_list(pb, dn);
+ }
+ else
+ {
+ /* remove group DN from target values in smod*/
+ memberof_del_smod_list(pb, dn, smod);
+ }
break;
}
15 years, 6 months
[Fedora-directory-commits] ldapserver/ldap/servers/plugins/memberof memberof.c, 1.1, 1.2
by Doctor Conrad
Author: nkinder
Update of /cvs/dirsec/ldapserver/ldap/servers/plugins/memberof
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv31579
Modified Files:
memberof.c
Log Message:
Resolves: 438891
Summary: Handle updates of memberOf attributes for indirect members when a group is renamed.
Index: memberof.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/memberof/memberof.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- memberof.c 19 Feb 2008 06:04:56 -0000 1.1
+++ memberof.c 26 Mar 2008 22:25:49 -0000 1.2
@@ -1177,7 +1177,17 @@
strncpy(dn_str, bv->bv_val, (size_t)bv->bv_len);
- memberof_modop_one_r(pb, mod, group_dn, op_this, dn_str, stack);
+ /* If we're doing a replace (as we would in the MODRDN case), we need
+ * to specify the new group DN value */
+ if(mod == LDAP_MOD_REPLACE)
+ {
+ memberof_modop_one_replace_r(pb, mod, group_dn, op_this, group_dn,
+ dn_str, stack);
+ }
+ else
+ {
+ memberof_modop_one_r(pb, mod, group_dn, op_this, dn_str, stack);
+ }
hint = slapi_attr_next_value(attr, hint, &val);
}
15 years, 6 months
[Fedora-directory-commits] dsgw/pbhtml modify.html.in, 1.2, 1.3 phone.html.in, 1.2, 1.3
by Doctor Conrad
Author: rmeggins
Update of /cvs/dirsec/dsgw/pbhtml
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv31631/dsgw/pbhtml
Modified Files:
modify.html.in phone.html.in
Log Message:
Resolves: bug 435230
Description: Clean up all HTML pages (Gateway, Org Tool, Phonebook, etc)
Fix Description: This is the second pass. I focused mainly on the
dsgw pages. Some of the fixes will apply to phonebook too.
I also moved the cgi bin directory to dsgw-cgi-bin - needs to be completely
separate from the admin server cgi bin directory. There are changes to
dsgw-httpd.conf to reflect this as well as changes to other files.
The dsgw uses a path of dsgwcmd, instead of using cgi-bin directly. This
is mapped in the dsgw-httpd.conf.
One problem that still remains - HTML Tidy does not like frames and framesets.
The only workaround suggested is to rewrite them using divs. I'm not really
up to the task right now.
Platforms tested: RHEL5 x86_64
Flag day: Yes - autotool file changes.
Doc: none yet
Index: modify.html.in
===================================================================
RCS file: /cvs/dirsec/dsgw/pbhtml/modify.html.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- modify.html.in 6 Mar 2008 22:00:40 -0000 1.2
+++ modify.html.in 20 Mar 2008 02:18:44 -0000 1.3
@@ -94,7 +94,7 @@
<TD>The conditions of your contract determine who gets your Email request.</TD>
</TR>
</TABLE>
-<P>
+<br>
@@ -196,8 +196,8 @@
-<P>
-<P>
+<br>
+<br>
<TABLE BORDER BGCOLOR=#f2f2f2 WIDTH=575>
<TR>
@@ -216,8 +216,8 @@
<TD VALIGN="TOP" COLSPAN=3><B><A href="mailto:administrator@example.com?subject=Please update my physical location">Administrator</A></B></TD></TR>
</TABLE>
-<P>
-<P>
+<br>
+<br>
<TABLE BORDER BGCOLOR=#f2f2f2 WIDTH=575>
<TR>
@@ -259,8 +259,8 @@
</TABLE>
-<P>
-<P>
+<br>
+<br>
<TABLE BORDER BGCOLOR=#f2f2f2 WIDTH=575>
<TR>
@@ -280,8 +280,8 @@
</TABLE>
-<P>
-<P>
+<br>
+<br>
<TABLE BORDER BGCOLOR=#f2f2f2 WIDTH=575>
<TR>
<TD BGCOLOR=TEAL COLSPAN=4><FONT SIZE=+1 FACE=ARIAL,HELVETICA COLOR=WHITE>Mail Information</FONT></TD></TR>
@@ -313,8 +313,8 @@
</TR>
</TABLE>
-<P>
-<P>
+<br>
+<br>
Index: phone.html.in
===================================================================
RCS file: /cvs/dirsec/dsgw/pbhtml/phone.html.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- phone.html.in 6 Mar 2008 22:00:40 -0000 1.2
+++ phone.html.in 20 Mar 2008 02:18:44 -0000 1.3
@@ -57,7 +57,6 @@
</head>
<body class="Search" onLoad="fieldFocus();" style="marginwidth: 0; marginheight: 0; leftmargin: 0; topmargin: 0">
-<!-- <body class="Search" onLoad="fieldFocus();" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0"> -->
<form method="post" name="searchform" target="resultframe" action="@cgiuri@/dosearch" onSubmit="return checkForNullString()">
15 years, 6 months
[Fedora-directory-commits] dsgw/pbconfig edit-passwd.html.in, 1.2, 1.3 list-Auth.html.in, 1.3, 1.4
by Doctor Conrad
Author: rmeggins
Update of /cvs/dirsec/dsgw/pbconfig
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv31631/dsgw/pbconfig
Modified Files:
edit-passwd.html.in list-Auth.html.in
Log Message:
Resolves: bug 435230
Description: Clean up all HTML pages (Gateway, Org Tool, Phonebook, etc)
Fix Description: This is the second pass. I focused mainly on the
dsgw pages. Some of the fixes will apply to phonebook too.
I also moved the cgi bin directory to dsgw-cgi-bin - needs to be completely
separate from the admin server cgi bin directory. There are changes to
dsgw-httpd.conf to reflect this as well as changes to other files.
The dsgw uses a path of dsgwcmd, instead of using cgi-bin directly. This
is mapped in the dsgw-httpd.conf.
One problem that still remains - HTML Tidy does not like frames and framesets.
The only workaround suggested is to rewrite them using divs. I'm not really
up to the task right now.
Platforms tested: RHEL5 x86_64
Flag day: Yes - autotool file changes.
Doc: none yet
Index: edit-passwd.html.in
===================================================================
RCS file: /cvs/dirsec/dsgw/pbconfig/edit-passwd.html.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- edit-passwd.html.in 6 Mar 2008 22:00:40 -0000 1.2
+++ edit-passwd.html.in 20 Mar 2008 02:18:44 -0000 1.3
@@ -118,7 +118,7 @@
</TD></TR>
</TABLE>
-<P>
+<br>
<img src="@cgiuri@/lang?<!-- GCONTEXT -->&file=pixel.gif" height="1" width="1" hspace="20" align="left" border="0">
Index: list-Auth.html.in
===================================================================
RCS file: /cvs/dirsec/dsgw/pbconfig/list-Auth.html.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- list-Auth.html.in 6 Mar 2008 22:00:40 -0000 1.3
+++ list-Auth.html.in 20 Mar 2008 02:18:44 -0000 1.4
@@ -60,7 +60,7 @@
-->
<LINK REL=stylesheet TYPE="text/css" HREF="@cgiuri@/lang?<!-- GCONTEXT -->&file=style.css">
</head>
-<body bgcolor="#FFFFFF" marginheight=0 marginwidth=0 leftmargin="0" topmargin="0" rightmargin="0">
+<body bgcolor="#FFFFFF" style="marginwidth:0; marginheight:0; leftmargin:0; topmargin:0; rightmargin:0">
<table width=100% class="bgColor1" cellspacing="0" cellpadding="0" border="0">
<tr width=100% class="bgColor1">
<TD valign="top" class="bgColor1"><IMG src="@cgiuri@/lang?<!-- GCONTEXT -->&file=clear.gif" width="10" height="45" border="0"></TD>
@@ -103,15 +103,15 @@
</td>
</tr>
</TABLE>
-<P>
+<br>
<CENTER>
<!-- DS_SEARCHDESC "VERBOSE" -->
-<P>
+<p>
<!-- IF "FoundEntries" -->
Please click on the name of the entry you would like to use for authentication.
-</P>
-<P>
+</p>
+<br>
<TABLE BORDER=1 CELLPADDING=4>
<TR>
15 years, 6 months
[Fedora-directory-commits] dsgw/orghtml index.html,1.2,1.3
by Doctor Conrad
Author: rmeggins
Update of /cvs/dirsec/dsgw/orghtml
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv31631/dsgw/orghtml
Modified Files:
index.html
Log Message:
Resolves: bug 435230
Description: Clean up all HTML pages (Gateway, Org Tool, Phonebook, etc)
Fix Description: This is the second pass. I focused mainly on the
dsgw pages. Some of the fixes will apply to phonebook too.
I also moved the cgi bin directory to dsgw-cgi-bin - needs to be completely
separate from the admin server cgi bin directory. There are changes to
dsgw-httpd.conf to reflect this as well as changes to other files.
The dsgw uses a path of dsgwcmd, instead of using cgi-bin directly. This
is mapped in the dsgw-httpd.conf.
One problem that still remains - HTML Tidy does not like frames and framesets.
The only workaround suggested is to rewrite them using divs. I'm not really
up to the task right now.
Platforms tested: RHEL5 x86_64
Flag day: Yes - autotool file changes.
Doc: none yet
Index: index.html
===================================================================
RCS file: /cvs/dirsec/dsgw/orghtml/index.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- index.html 6 Mar 2008 22:00:39 -0000 1.2
+++ index.html 20 Mar 2008 02:18:44 -0000 1.3
@@ -61,8 +61,8 @@
</HEAD>
-<frameset frameborder=no border=0 framespacing="0" ROWS="50,*">
- <frame name="input_window" src="topframe.html" SCROLLING=NO noresize marginwidth="5" marginheight="5">
+<frameset frameborder="no" border="0" framespacing="0" ROWS="50,*">
+ <frame name="input_window" src="topframe.html" SCROLLING="NO" noresize marginwidth="5" marginheight="5">
<frame name="output_window" src="botframe.html" marginwidth="10" marginheight="10">
</frameset>
15 years, 6 months
[Fedora-directory-commits] dsgw/orgbin myorg.in,1.3,1.4
by Doctor Conrad
Author: rmeggins
Update of /cvs/dirsec/dsgw/orgbin
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv31631/dsgw/orgbin
Modified Files:
myorg.in
Log Message:
Resolves: bug 435230
Description: Clean up all HTML pages (Gateway, Org Tool, Phonebook, etc)
Fix Description: This is the second pass. I focused mainly on the
dsgw pages. Some of the fixes will apply to phonebook too.
I also moved the cgi bin directory to dsgw-cgi-bin - needs to be completely
separate from the admin server cgi bin directory. There are changes to
dsgw-httpd.conf to reflect this as well as changes to other files.
The dsgw uses a path of dsgwcmd, instead of using cgi-bin directly. This
is mapped in the dsgw-httpd.conf.
One problem that still remains - HTML Tidy does not like frames and framesets.
The only workaround suggested is to rewrite them using divs. I'm not really
up to the task right now.
Platforms tested: RHEL5 x86_64
Flag day: Yes - autotool file changes.
Doc: none yet
Index: myorg.in
===================================================================
RCS file: /cvs/dirsec/dsgw/orgbin/myorg.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- myorg.in 6 Mar 2008 22:00:39 -0000 1.3
+++ myorg.in 20 Mar 2008 02:18:43 -0000 1.4
@@ -159,7 +159,7 @@
print "
-<body bgcolor=\"#FFFFFF\" leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onLoad=\"initValues()\">
+<body bgcolor=\"#FFFFFF\" style=\"leftmargin:0; topmargin:0; marginwidth:0; marginheight:0\" onLoad=\"initValues()\">
<FORM name=\"customize\">
15 years, 6 months
[Fedora-directory-commits] dsgw/html/de auth.html.in, 1.3, 1.4 authroot.html.in, 1.3, 1.4 index.html.in, 1.3, 1.4
by Doctor Conrad
Author: rmeggins
Update of /cvs/dirsec/dsgw/html/de
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv31631/dsgw/html/de
Modified Files:
auth.html.in authroot.html.in index.html.in
Log Message:
Resolves: bug 435230
Description: Clean up all HTML pages (Gateway, Org Tool, Phonebook, etc)
Fix Description: This is the second pass. I focused mainly on the
dsgw pages. Some of the fixes will apply to phonebook too.
I also moved the cgi bin directory to dsgw-cgi-bin - needs to be completely
separate from the admin server cgi bin directory. There are changes to
dsgw-httpd.conf to reflect this as well as changes to other files.
The dsgw uses a path of dsgwcmd, instead of using cgi-bin directly. This
is mapped in the dsgw-httpd.conf.
One problem that still remains - HTML Tidy does not like frames and framesets.
The only workaround suggested is to rewrite them using divs. I'm not really
up to the task right now.
Platforms tested: RHEL5 x86_64
Flag day: Yes - autotool file changes.
Doc: none yet
Index: auth.html.in
===================================================================
RCS file: /cvs/dirsec/dsgw/html/de/auth.html.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- auth.html.in 6 Mar 2008 22:00:22 -0000 1.3
+++ auth.html.in 20 Mar 2008 02:18:41 -0000 1.4
@@ -44,7 +44,7 @@
</TITLE>
</HEAD>
-<FRAMESET ROWS=100,* BORDER=2>
+<FRAMESET ROWS="100,*" BORDER="2">
<FRAME SRC="@cgiuri@/lang?<!-- GCONTEXT -->&file=authtitle.html" NAME="authTitleFrame" NORESIZE
SCROLLING="NO">
<FRAME SRC="@cgiuri@/auth?<!-- GCONTEXT -->" NAME="authFrame">
Index: authroot.html.in
===================================================================
RCS file: /cvs/dirsec/dsgw/html/de/authroot.html.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- authroot.html.in 6 Mar 2008 22:00:22 -0000 1.3
+++ authroot.html.in 20 Mar 2008 02:18:41 -0000 1.4
@@ -43,7 +43,7 @@
Directory Server Gateway: Beglaubigen
</TITLE>
</HEAD>
-<FRAMESET ROWS=100,* BORDER=2>
+<FRAMESET ROWS="100,*" BORDER="2">
<FRAME SRC="@cgiuri@/lang?<!-- GCONTEXT -->&file=authtitle.html" NAME="authTitleFrame" NORESIZE
SCROLLING="NO">
<FRAME SRC="@cgiuri@/auth?MANAGER&<!-- GCONTEXT -->" NAME="authFrame">
Index: index.html.in
===================================================================
RCS file: /cvs/dirsec/dsgw/html/de/index.html.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- index.html.in 6 Mar 2008 22:00:22 -0000 1.3
+++ index.html.in 20 Mar 2008 02:18:41 -0000 1.4
@@ -41,7 +41,7 @@
<HEAD>
<TITLE>Directory Server Gateway</TITLE>
</HEAD>
-<FRAMESET ROWS=100,*>
+<FRAMESET ROWS="100,*">
<FRAME SRC="@cgiuri@/lang?<!-- GCONTEXT -->&file=maintitle.html" NAME="buttonBarFrame" NORESIZE
SCROLLING="no">
<FRAME SRC="@cgiuri@/lang?<!-- GCONTEXT -->&file=greeting.html" NAME="greetingFrame" NORESIZE>
15 years, 6 months
[Fedora-directory-commits] dsgw/html/ja auth.html.in, 1.3, 1.4 authroot.html.in, 1.3, 1.4 index.html.in, 1.3, 1.4
by Doctor Conrad
Author: rmeggins
Update of /cvs/dirsec/dsgw/html/ja
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv31631/dsgw/html/ja
Modified Files:
auth.html.in authroot.html.in index.html.in
Log Message:
Resolves: bug 435230
Description: Clean up all HTML pages (Gateway, Org Tool, Phonebook, etc)
Fix Description: This is the second pass. I focused mainly on the
dsgw pages. Some of the fixes will apply to phonebook too.
I also moved the cgi bin directory to dsgw-cgi-bin - needs to be completely
separate from the admin server cgi bin directory. There are changes to
dsgw-httpd.conf to reflect this as well as changes to other files.
The dsgw uses a path of dsgwcmd, instead of using cgi-bin directly. This
is mapped in the dsgw-httpd.conf.
One problem that still remains - HTML Tidy does not like frames and framesets.
The only workaround suggested is to rewrite them using divs. I'm not really
up to the task right now.
Platforms tested: RHEL5 x86_64
Flag day: Yes - autotool file changes.
Doc: none yet
Index: auth.html.in
===================================================================
RCS file: /cvs/dirsec/dsgw/html/ja/auth.html.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- auth.html.in 6 Mar 2008 22:00:36 -0000 1.3
+++ auth.html.in 20 Mar 2008 02:18:43 -0000 1.4
@@ -44,7 +44,7 @@
</TITLE>
</HEAD>
-<FRAMESET ROWS=100,* BORDER=2>
+<FRAMESET ROWS="100,*" BORDER="2">
<FRAME SRC="@cgiuri@/lang?<!-- GCONTEXT -->&file=authtitle.html" NAME="authTitleFrame" NORESIZE
SCROLLING="NO">
<FRAME SRC="@cgiuri@/auth?<!-- GCONTEXT -->" NAME="authFrame">
Index: authroot.html.in
===================================================================
RCS file: /cvs/dirsec/dsgw/html/ja/authroot.html.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- authroot.html.in 6 Mar 2008 22:00:36 -0000 1.3
+++ authroot.html.in 20 Mar 2008 02:18:43 -0000 1.4
@@ -43,7 +43,7 @@
Directory Server Gateway: ������
</TITLE>
</HEAD>
-<FRAMESET ROWS=100,* BORDER=2>
+<FRAMESET ROWS="100,*" BORDER="2">
<FRAME SRC="@cgiuri@/lang?<!-- GCONTEXT -->&file=authtitle.html" NAME="authTitleFrame" NORESIZE
SCROLLING="NO">
<FRAME SRC="@cgiuri@/auth/MANAGER&<!-- GCONTEXT -->" NAME="authFrame">
Index: index.html.in
===================================================================
RCS file: /cvs/dirsec/dsgw/html/ja/index.html.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- index.html.in 6 Mar 2008 22:00:36 -0000 1.3
+++ index.html.in 20 Mar 2008 02:18:43 -0000 1.4
@@ -41,7 +41,7 @@
<HEAD>
<TITLE>Directory Server Gateway</TITLE>
</HEAD>
-<FRAMESET ROWS=100,*>
+<FRAMESET ROWS="100,*">
<FRAME SRC="@cgiuri@/lang?<!-- GCONTEXT -->&file=maintitle.html" NAME="buttonBarFrame" NORESIZE
SCROLLING="no">
<FRAME SRC="@cgiuri@/lang?<!-- GCONTEXT -->&file=greeting.html" NAME="greetingFrame" NORESIZE>
15 years, 6 months
[Fedora-directory-commits] dsgw/html/fr auth.html.in, 1.3, 1.4 authroot.html.in, 1.3, 1.4 index.html.in, 1.3, 1.4
by Doctor Conrad
Author: rmeggins
Update of /cvs/dirsec/dsgw/html/fr
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv31631/dsgw/html/fr
Modified Files:
auth.html.in authroot.html.in index.html.in
Log Message:
Resolves: bug 435230
Description: Clean up all HTML pages (Gateway, Org Tool, Phonebook, etc)
Fix Description: This is the second pass. I focused mainly on the
dsgw pages. Some of the fixes will apply to phonebook too.
I also moved the cgi bin directory to dsgw-cgi-bin - needs to be completely
separate from the admin server cgi bin directory. There are changes to
dsgw-httpd.conf to reflect this as well as changes to other files.
The dsgw uses a path of dsgwcmd, instead of using cgi-bin directly. This
is mapped in the dsgw-httpd.conf.
One problem that still remains - HTML Tidy does not like frames and framesets.
The only workaround suggested is to rewrite them using divs. I'm not really
up to the task right now.
Platforms tested: RHEL5 x86_64
Flag day: Yes - autotool file changes.
Doc: none yet
Index: auth.html.in
===================================================================
RCS file: /cvs/dirsec/dsgw/html/fr/auth.html.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- auth.html.in 6 Mar 2008 22:00:26 -0000 1.3
+++ auth.html.in 20 Mar 2008 02:18:43 -0000 1.4
@@ -44,7 +44,7 @@
</TITLE>
</HEAD>
-<FRAMESET ROWS=100,* BORDER=2>
+<FRAMESET ROWS="100,*" BORDER="2">
<FRAME SRC="@cgiuri@/lang?<!-- GCONTEXT -->&file=authtitle.html" NAME="authTitleFrame" NORESIZE
SCROLLING="NO">
<FRAME SRC="@cgiuri@/auth?<!-- GCONTEXT -->" NAME="authFrame">
Index: authroot.html.in
===================================================================
RCS file: /cvs/dirsec/dsgw/html/fr/authroot.html.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- authroot.html.in 6 Mar 2008 22:00:26 -0000 1.3
+++ authroot.html.in 20 Mar 2008 02:18:43 -0000 1.4
@@ -43,7 +43,7 @@
Passerelle Directory Server : authentification
</TITLE>
</HEAD>
-<FRAMESET ROWS=100,* BORDER=2>
+<FRAMESET ROWS="100,*" BORDER="2">
<FRAME SRC="@cgiuri@/lang?<!-- GCONTEXT -->&file=authtitle.html" NAME="authTitleFrame" NORESIZE
SCROLLING="NO">
<FRAME SRC="@cgiuri@/auth/MANAGER&<!-- GCONTEXT -->" NAME="authFrame">
Index: index.html.in
===================================================================
RCS file: /cvs/dirsec/dsgw/html/fr/index.html.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- index.html.in 6 Mar 2008 22:00:26 -0000 1.3
+++ index.html.in 20 Mar 2008 02:18:43 -0000 1.4
@@ -41,7 +41,7 @@
<HEAD>
<TITLE>Passerelle Directory Server</TITLE>
</HEAD>
-<FRAMESET ROWS=100,*>
+<FRAMESET ROWS="100,*">
<FRAME SRC="@cgiuri@/lang?<!-- GCONTEXT -->&file=maintitle.html" NAME="buttonBarFrame" NORESIZE
SCROLLING="no">
<FRAME SRC="@cgiuri@/lang?<!-- GCONTEXT -->&file=greeting.html" NAME="greetingFrame" NORESIZE>
15 years, 6 months