New patch 2003-01-27-23-09-04 PENDING.
[email protected] (root) Mon, 27 Jan 2003 18:09:05 -0500 (EST)
| Newsgroups | gmane.comp.cms.xaraya.patches |
|---|---|
| Message-ID | <[email protected]> |
A patch was submitted to the patch system:
by a user rcave at host lxwdev-1.schwabfoundation.org
This patch is now in the PENDING state and
needs to be checked in (committed)
For this you need to log on to the server and execute
the following commands in the xaraya-patches repository:
1. cd PENDING
2. bk sfiles -x | bk new -
3. bk commit
4. bk push
This will change the state of the patch to REGISTERED
it wil *NOT* apply the patch. Alternatively, you may
wait for the next run of the cron job which will
automatically check in PENDING patches.
Once a patch is in the REGISTERED state it will be
propagated by push/pull operations and patch handling
can be done remotely from that point on in any clone
from the main repository once properly synchronized.
Patch system status:
---------------------------------------------
PENDING : 1
REGISTERED: 10
---------------------------------------------
The patch contains the following changesets:
ChangeSet
1.454 03/01/27 15:08:49 rcave-rIoA2dxFqdxvvToxOdHx6mP8kLm7lcA4hIvA6WVW+J8@public.gmane.org +1 -0
Data was being overwritten in column xar_name of xar_users table
with data for xar_uname and xar_email columns.
html/includes/xarUser.php
1.97 03/01/27 15:08:49 rcave-rIoA2dxFqdxvvToxOdHx6mP8kLm7lcA4hIvA6WVW+J8@public.gmane.org +5 -6
xarUser__setUsersTableUserVar had hardcoded column name xar_name
for UPDATE of xar_users table. This was overwriting the value
for xar_name with expected values for xar_uname and xar_email.
Changed function to accept column name as $name variable and updated
function calls accordingly.
ChangeSet
1.450.1.47 03/01/27 18:10:50 nuncanada@fbotelho. +1 -0
rfc0035.xml:
Upgrading
docs/rfc/rfc0035.xml
1.5 03/01/27 18:07:32 nuncanada@fbotelho. +105 -28
Upgrading
ChangeSet
1.450.17.1 03/01/27 17:38:08 nuncanada@fbotelho. +1 -0
rfc2629.xsl:
Added support to display notes in the rfc references
docs/rfc/rfc2629.xsl
1.14 03/01/27 17:36:26 nuncanada@fbotelho. +543 -526
Added support to display notes in the rfc references
ChangeSet
1.452 03/01/27 10:06:15 rcave-rIoA2dxFqdxvvToxOdHx6mP8kLm7lcA4hIvA6WVW+J8@public.gmane.org +2 -0
Merge http://xaraya.com:15000/xaraya
into lxwdev-1.schwabfoundation.org:/var/www/xaraya_bk/xaraya
html/modules/users/xaruser.php
1.47 03/01/27 10:06:14 rcave-rIoA2dxFqdxvvToxOdHx6mP8kLm7lcA4hIvA6WVW+J8@public.gmane.org +0 -0
Auto merged
html/modules/users/xaradminapi.php
1.32 03/01/27 10:06:14 rcave-rIoA2dxFqdxvvToxOdHx6mP8kLm7lcA4hIvA6WVW+J8@public.gmane.org +0 -0
Auto merged
ChangeSet
1.450.1.45 03/01/27 09:21:23 Dracos@numenor. +4 -0
begin revised css conversion
html/themes/Xaraya_Classic/style/style.css
1.7 03/01/27 09:20:01 Dracos@numenor. +104 -71
begin revised css conversion
html/themes/Xaraya_Classic/pages/default.xt
1.17 03/01/27 09:20:01 Dracos@numenor. +2 -2
begin revised css conversion
html/themes/Xaraya_Classic/pages/admin.xt
1.6 03/01/27 09:20:01 Dracos@numenor. +3 -3
begin revised css conversion
html/modules/adminpanels/xartemplates/blocks/sidemenu.xd
1.10 03/01/27 09:20:00 Dracos@numenor. +6 -4
begin revised css conversion
ChangeSet
1.450.1.44 03/01/27 07:27:28 Dracos@numenor. +1 -0
remove debug line
html/modules/installer/xarfunctions.php
1.13 03/01/27 07:27:27 Dracos@numenor. +0 -1
remove debug line that shouldn't be there
ChangeSet
1.450.16.1 03/01/27 07:24:03 Dracos@numenor. +1 -0
remove debug line
html/modules/installer/xarfunctions.php
1.11.1.1 03/01/27 07:24:01 Dracos@numenor. +0 -1
remove debug line that shouldn't have been there
ChangeSet
1.444.1.3 03/01/23 15:50:14 rcave-rIoA2dxFqdxvvToxOdHx6mP8kLm7lcA4hIvA6WVW+J8@public.gmane.org +3 -0
Made changes to the user login due to login failing to allow a
user that may be trying to login with an external authentication
module. Also fixed a minor bug when updating a user as admin.
More detailed information is included in deltas.
html/modules/users/xaruser.php
1.46 03/01/23 15:50:13 rcave-rIoA2dxFqdxvvToxOdHx6mP8kLm7lcA4hIvA6WVW+J8@public.gmane.org +58 -9
users_user_login() did not allow a user to login if the user did
not exist in the xar_users table. The code tried to get the uid
from the users table and returned if the value was not found. This
circumvented the new functionality in the authldap module that
tries to create a user in Xaraya if it exists in LDAP but not
in the Xaraya users table.
I added code to loop through the authentication modules and set
the state appropriately. Also checks if the user exists in the
xar_users table with a different state, so that an invalid or
deleted user will not be able to login.
html/modules/users/xaradminapi.php
1.31 03/01/23 15:50:13 rcave-rIoA2dxFqdxvvToxOdHx6mP8kLm7lcA4hIvA6WVW+J8@public.gmane.org +6 -5
Included the field xar_auth_module and set to default authentication
module 'authsystem' for an admin user create.
html/modules/users/xaradmin.php
1.42 03/01/23 15:50:13 rcave-rIoA2dxFqdxvvToxOdHx6mP8kLm7lcA4hIvA6WVW+J8@public.gmane.org +4 -3
Changed value of 'name' to include actual user name. Updating to a
blank name was throwing an error when updating the database because
the column xar_name has a unique key and the user 'Anonymous' has
a blank name.
Also included the field xar_auth_module and set to default
authentication module 'authsystem' for an admin user create.