|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /usr/share/doc/python-ldap-2.2.0/Demo/Lib/ldif/ |
Upload File : |
"""
ldifcopy - reads LDIF from stdin, retrieve values by URL and
write resulting LDIF to stdout
Written by Michael Stroeder <michael@stroeder.com>
$Id: ldifcopy.py,v 1.2 2001/12/12 22:04:49 stroeder Exp $
This example translates the naming context of data read from
input, sanitizes some attributes, maps/removes object classes,
maps/removes attributes., etc. It's far from being complete though.
Python compability note:
Tested on Python 2.0+, should run on Python 1.5.x.
"""
import sys,ldif
infile = sys.stdin
outfile = sys.stdout
ldif_collector = ldif.LDIFCopy(
infile,
outfile,
process_url_schemes=['file','ftp','http']
)
ldif_collector.parse()