acs-ldap-authentication

  • last updated 2 hours ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
Brace and rework expressions + Whitespace changes

  1. … 4 more files in changeset.
Prefer string comparison operators to 'string equal' and 'empty_string_p'

  1. … 3 more files in changeset.
fix typos

  1. … 11 more files in changeset.
add ad_script_abort after ad_returnredirect to make termination intent explicit

  1. … 22 more files in changeset.
fix boolean expression in adp

- set maturity to deprecated (4)

  1. … 7 more files in changeset.
remove deprecated calls to ad_parameter

  1. … 1 more file in changeset.
fix pacakge -> package typo

  1. … 10 more files in changeset.
all TCL's clock clicks always with the -milliseconds option. The TCL manual

explicitly states that without this switch the return result is platform

dependant. The OpenACS code works at the millisecond granulartiy and silently

assumes that 1 millisecond equals 1000 clicks which is not necessarily true.

I used this shell script to automatize the replacing:

#!/bin/bash

for file in `grep -lsr "\[clock clicks\]" /web/openacs-head/packages/ `; do

echo "repairing $file"

sed "s/\[clock clicks\]/\[clock clicks -milliseconds\]/g" $file > fout

mv fout $file

done

And then grepped for

grep -r "expr.*clock clicks" /web/openacs-head/packages/

to manually remove the divisions by 1000.

  1. … 10 more files in changeset.
merge of changes on oacs-5-0 branch to oacs-5-0-0b4 tag

  1. … 598 more files in changeset.
make some Notices either warnings or debug and made them more descriptive by generally including the proc name as well bug #1032

  1. … 74 more files in changeset.
noquote changes (Dirk Gomez)

  1. … 102 more files in changeset.
merge of 4.6.3b1 to HEAD

    • -2
    • +2
    ./sql/oracle/acs-ldap-authentication-create.sql
  1. … 41 more files in changeset.
Added new files to .info files

  1. … 38 more files in changeset.
ns_return->ad_return, ad_script_abort, redirect to absract urls

  1. … 48 more files in changeset.
fix some broken links

  1. … 22 more files in changeset.
Lars original ldap note

    • -0
    • +372
    ./www/doc/ldap-authentication.html

1. Changed a lot of package info files to fix problems ...

2. Added Vinod's bboard patch

3. Rationalized party e-mail checking by putting a "before insert or update"

trigger on the table that lower-cases email (this was already done by the

party.new() func but at least one update missed this). Got rid of all

"lower(email) = " and "upper(email) = " checks and just made all use the

db email column directly and lower-cased Tcl vars. In this way the index

on the email column is always and consistently used without needing to

define functional indexes on the column (an EE feature for Oracle).

4. Rationalized naming of a couple of workflows and fixed a glossary PG bug

where apparently its workflow got overwritten by one from the CMS at some

point in time.

5. Made the .cmp/.dat/.frm filters in the template code usable though not

very beautiful nor exactly correct. But with practice you can use them

to debug pages in the packages/* hierarchy. I also turned these off by

default as there's no need to run these filters on a production site!

6. Performed minor surgery on templating, including adding a new

"ad_return_exception_template" that allows you to return a templated

error page and aborts the script.

7. ??? probably but I think this covers most stuff.

  1. … 74 more files in changeset.
Initial revision

    • -0
    • +45
    ./acs-ldap-authentication.info
    • -0
    • +261
    ./sql/oracle/LdapLogin.sqlj
    • -0
    • +283
    ./sql/oracle/acs-ldap-authentication-create.sql
    • -0
    • +26
    ./sql/oracle/acs-ldap-authentication-drop.sql
    • -0
    • +384
    ./tcl/ldap-procs.tcl
    • -0
    • +327
    ./www/doc/design.html
    • -0
    • +42
    ./www/doc/index.html
    • -0
    • +157
    ./www/doc/requirements.html
    • -0
    • +71
    ./www/examples/ldap-test.tcl
    • -0
    • +34
    ./www/examples/user-login.tcl
    • -0
    • +95
    ./www/examples/user-new-2.tcl
    • -0
    • +75
    ./www/examples/user-new.adp
    • -0
    • +47
    ./www/examples/user-new.tcl
  1. … 2467 more files in changeset.