summaryrefslogtreecommitdiffstats
path: root/ipalib/encoder.py
Commit message (Collapse)AuthorAgeFilesLines
* Prevent double encoding/decoding when processing compound types.Pavel Zuna2009-08-031-5/+10
|
* Add support for incomplete (truncated) search results.Pavel Zuna2009-06-151-1/+1
| | | | | | | | | | ldap2.find_entries now returns a tuple containing 2 values. First, a list of entries (dn, entry_attrs), Second, the truncated flag. If the truncated flag is True, search results hit a server limitation and are incomplete. This patch also removes decoding of non-string scalar python types into unicode (they are left unchanged).
* Fix bug in Encoder where tuples were encoded into lists. Fix Encoder and ↵Pavel Zuna2009-06-101-3/+3
| | | | Command.args_options_2_entry unit tests.
* Fix bug where finalized IPA object where trying to modify their member ↵Pavel Zuna2009-05-221-78/+66
| | | | variables in Encoder methods.
* Add Encoder base class and method decorators to encode arguments/decode ↵Pavel Zuna2009-05-191-0/+210
return values. Also - unit tests.