• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Net/LDAP/H26-Jun-2010-18339

t/H26-Jun-2010-9868

ChangesH A D26-Jun-2010171 106

MANIFESTH A D28-Apr-201098 98

Makefile.PLH A D26-Jun-2010561 1816

READMEH A D28-Apr-20101.5 KiB6847

README

1Net-LDAP-Makepath
2
3Provides a methode for creating paths in LDAP simply.
4
5    use Net::LDAP::Makepath;
6
7	#Uses $ldap to create the new entries.
8	#The objectClasses used are top and organizationalUnit.
9	#The attribute used for the DNs is ou.
10	#The path to be created is "some/path".
11	#The base is "dc=foo,dc=bar".
12	#
13	#The resulting entries are...
14	#dn: ou=some,dc=foo,dc=bar
15	#objectClass: top
16	#objectClass: orginationalUnit
17	#ou: some
18	#
19	#dn: ou=path,ou=some,dc=foo,dc=ath
20	#objectClass: top
21	#objectClass: orginationalUnit
22	#ou: path
23	my $returned=LDAPmakep+athSimple($ldap, ["top", "organizationalUnit"], "ou",
24						"some,path", "dc=foo,dc=bar")
25    if(!returned){
26    	print "LDAPmakepathSimple failed.";
27    };
28
29
30INSTALLATION
31
32To install this module, run the following commands:
33
34	perl Makefile.PL
35	make
36	make test
37	make install
38
39SUPPORT AND DOCUMENTATION
40
41After installing, you can find documentation for this module with the
42perldoc command.
43
44    perldoc Net::LDAP::Makepath
45
46You can also look for information at:
47
48    RT, CPAN's request tracker
49        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-LDAP-Makepath
50
51    AnnoCPAN, Annotated CPAN documentation
52        http://annocpan.org/dist/Net-LDAP-Makepath
53
54    CPAN Ratings
55        http://cpanratings.perl.org/d/Net-LDAP-Makepath
56
57    Search CPAN
58        http://search.cpan.org/dist/Net-LDAP-Makepath
59
60
61COPYRIGHT AND LICENCE
62
63Copyright (C) 2008 Zane C. Bowers
64
65This program is free software; you can redistribute it and/or modify it
66under the same terms as Perl itself.
67
68