Help for this page

Select Code to Download


  1. or download this
    database shell
    search   /var/pg2ldap/backend.pl
    
  2. or download this
    create view ldap as select agency as objectclass,
       (agency || '-' || folderid) as dnqualifier,
    ...
       comment as description
       from userspool
       where state = 'ACTIVE'
    
  3. or download this
    use strict;
    use Parse::RecDescent;
    ...
        my $parser = new Parse::RecDescent($grammar) or die "Bad grammar!\
    +n";
        return $parser->translate($filter);
    }