summaryrefslogtreecommitdiffstats
path: root/ipalib
Commit message (Collapse)AuthorAgeFilesLines
* Added docstrings to the new rpc.xml_dumps() and rcp.xml_loads() functionsJason Gerard DeRose2009-01-161-6/+57
|
* ipalib.rpc: now using allow_none=True after conversation with Rob; added ↵Jason Gerard DeRose2009-01-151-9/+27
| | | | xml_dumps() and xml_loads() functions; some name cleanup
* Small change in ipalib.cli to check if param is a Password instance instead ↵Jason Gerard DeRose2009-01-141-1/+2
| | | | of calling depreciated ispasswd() method
* Fixed a problem in the host plugin module; added not in TODO about using ↵Jason Gerard DeRose2009-01-142-40/+41
| | | | Param.query
* Updated service plugins module to where it can at least be importedJason Gerard DeRose2009-01-141-11/+14
|
* Updated ra plugins module to where it can at least be importedJason Gerard DeRose2009-01-141-6/+4
|
* Updated pwpolicy plugins module to where it can at least be importedJason Gerard DeRose2009-01-141-17/+9
|
* Updated passwd plugins module to where it can at least be importedJason Gerard DeRose2009-01-144-11/+15
|
* Updated hostgroup plugins module to where it can at least be importedJason Gerard DeRose2009-01-141-18/+16
|
* Updated host plugins module to where it can at least be importedJason Gerard DeRose2009-01-141-19/+14
|
* Updated group plugins module to where it can at least be importedJason Gerard DeRose2009-01-141-21/+17
|
* Fixed automount plugins module to where it can at least be importedJason Gerard DeRose2009-01-141-36/+40
|
* New Param: all docstring examples now pass under doctestsJason Gerard DeRose2009-01-143-30/+54
|
* New Param: added Param.query kwarg for crud operations like Retrieve and ↵Jason Gerard DeRose2009-01-142-2/+6
| | | | Search where criteria should not be validated
* All unit tests now working (except for doctests and Rob's xmlrpc tests)Jason Gerard DeRose2009-01-142-3/+9
|
* New Param: got most of unit tests ported (still have 6 errors); haven't ↵Jason Gerard DeRose2009-01-141-26/+22
| | | | ported doctests yet
* New Param: removed more depreciated 'import ipa_types'Jason Gerard DeRose2009-01-142-2/+2
|
* Removed depreciated code from frontend.py; frontend.py no longer imports ↵Jason Gerard DeRose2009-01-141-450/+3
| | | | ipa_types
* New Param: ipalib.__init__ no longer import ipa_types and instead imports ↵Jason Gerard DeRose2009-01-141-2/+2
| | | | appropriate classes from parameters
* Removed deprecited ipa_types.py and test_ipa_types.pyJason Gerard DeRose2009-01-141-189/+0
|
* New Param: split common Bytes/Str functionality into new Data base class; ↵Jason Gerard DeRose2009-01-141-15/+36
| | | | Str no longer subclasses from Bytes
* New Param: renamed parameter.py to parameters.pyJason Gerard DeRose2009-01-141-0/+0
|
* New Param: Small docstring change in FlagJason Gerard DeRose2009-01-141-6/+14
|
* New Param: Flag now fill-in default=False and also forces default to be a boolJason Gerard DeRose2009-01-141-2/+25
|
* New Param: added new Flag param class and its unit testJason Gerard DeRose2009-01-131-2/+30
|
* New Param: added Param.clone() method and corresponding unit testJason Gerard DeRose2009-01-131-0/+8
|
* New Param: updated Str._convert_scalar() so it raises a ConversionErrorJason Gerard DeRose2009-01-131-13/+29
|
* New Param: implemented a base Param._convert_scalar() method; added ↵Jason Gerard DeRose2009-01-132-15/+30
| | | | Param.type_error attribute for ConversionError message
* New Param: updated Bytes and Str length rules to use new rule(_, value) ↵Jason Gerard DeRose2009-01-131-22/+14
| | | | calling signature; updated corresponding unit tests
* New Param: ported create_param() function and unit testsJason Gerard DeRose2009-01-131-3/+49
|
* New Param: added Param.get_default() method and detailed docstring; added ↵Jason Gerard DeRose2009-01-121-4/+132
| | | | corresponding unit tests
* New Param: added Param.validate() and Param._validate_scalar() methods; ↵Jason Gerard DeRose2009-01-122-0/+51
| | | | added corresponding unit tests
* Changed PublicError so str(e) is untranslated (for logging) and added ↵Jason Gerard DeRose2009-01-081-36/+44
| | | | format=None kwarg for generic use
* Renamed PublicError.code attribute to PublicError.errnoJason Gerard DeRose2009-01-061-25/+25
|
* Fixed type in KerberosError, droped LDAPError range to just 100 codes for nowJason Gerard DeRose2009-01-061-4/+4
|
* Additional work on the new error code tree in errors2.pyJason Gerard DeRose2009-01-061-12/+89
|
* Added a few missing things to base.ReadOnly docstringsJason Gerard DeRose2009-01-051-2/+19
|
* A few docstring improvements in EnvJason Gerard DeRose2009-01-051-10/+20
|
* New Param: added Str length rule methods; added corresponding unit testsJason Gerard DeRose2009-01-051-0/+33
|
* New Param: decided on calling signature for rules; added unit tests for ↵Jason Gerard DeRose2009-01-051-6/+12
| | | | Bytes._rule_minlength, _rule_maxlength, and _rule_length
* New Param: Added Param.get_label() method for a way to retrieve translated ↵Jason Gerard DeRose2009-01-051-0/+10
| | | | message at request time
* Renamed all references to 'ipa_server' to 'ipaserver'Jason Gerard DeRose2009-01-043-7/+7
|
* Added more public exceptions and did some other cleanup in errors2Jason Gerard DeRose2009-01-041-44/+98
|
* Quite a bit of work on new public errors and their unit testsJason Gerard DeRose2009-01-041-8/+95
|
* Added request.ugettext() and request.ungettext() functions; added ↵Jason Gerard DeRose2009-01-042-5/+13
| | | | corresponding unit tests
* request.create_translation() now sets context.ugettext and context.ungettextJason Gerard DeRose2009-01-031-3/+3
|
* Removed unneeded import of errors from plugable.pyJason Gerard DeRose2009-01-031-5/+4
|
* Plugin.call() now uses errors2 version of SubprocessErrorJason Gerard DeRose2009-01-032-8/+12
|
* Ported plugin registration errors into errors2.py; plugable.Registrar now ↵Jason Gerard DeRose2009-01-032-14/+90
| | | | raises new errors2 exceptions
* Ported errors.SubprocessError to errors2Jason Gerard DeRose2009-01-031-0/+31
|