summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * 245: Removed depreciated NormalizationErrorJason Gerard DeRose2008-09-031-8/+0
| |
| * 244: Added unit tests for errors.ConversionErrorJason Gerard DeRose2008-09-032-4/+38
| |
| * 243: Added unit tests for errors.ValidationErrorJason Gerard DeRose2008-09-032-0/+35
| |
| * 242: Started cleanup of custom exceptions; added unit tests for errors.IPAErrorJason Gerard DeRose2008-09-034-20/+58
| |
| * 241: Added additional index=None kwarg to errors.ValidationError.__init__()Jason Gerard DeRose2008-09-031-1/+2
| |
| * 240: Small change in tstutil.check_TypeError(), cleaned up use of ↵Jason Gerard DeRose2008-09-032-10/+5
| | | | | | | | check_TypeError() in test_Option.test_normalize()
| * 239: Added errors.ConversionError; started big clean up of how ↵Jason Gerard DeRose2008-09-036-56/+80
| | | | | | | | ValidationError is raised so it works well with multivalues
| * 238: Some docstring cleanup & fixes in test_public.pyJason Gerard DeRose2008-09-031-4/+22
| |
| * 237: Ported public.Method to new Option; updated corresponding unit testsJason Gerard DeRose2008-09-032-15/+14
| |
| * 236: Ported pubic.Command to new Option; updated corresponding unit testsJason Gerard DeRose2008-09-022-53/+35
| |
| * 235: Added Public.option instance attribute; updated corresponding unit ↵Jason Gerard DeRose2008-09-022-44/+86
| | | | | | | | tests; disable some broken unit tests
| * 234: Renamed Option2 to OptionJason Gerard DeRose2008-09-022-9/+9
| |
| * 233: Removed public.Option class; removed corresponding unit testsJason Gerard DeRose2008-09-022-202/+38
| |
| * 232: Added Option2.get_values() method; added corresponding unit testsJason Gerard DeRose2008-09-022-0/+17
| |
| * 231: Added Option2.get_default() method; added corresponding unit testsJason Gerard DeRose2008-09-022-2/+48
| |
| * 230: Renamed allow_None kwarg to allow_noneJason Gerard DeRose2008-09-023-15/+15
| |
| * 229: Option2.__init__() now uses check_type()Jason Gerard DeRose2008-09-021-7/+9
| |
| * 228: plugable.check_name() now uses errors.check_type()Jason Gerard DeRose2008-09-022-1/+4
| |
| * 227: check_type() and check_isinstance() now take arguments in (value, ↵Jason Gerard DeRose2008-09-023-62/+65
| | | | | | | | type_, name) order so the first two match the built-in isinstance() call signature
| * 226: check_type() and check_isinstance() now return the value; updated ↵Jason Gerard DeRose2008-09-022-5/+7
| | | | | | | | corresponding unit tests
| * 225: Added errors.check_type() and errors.check_isinstance() functions; ↵Jason Gerard DeRose2008-08-292-16/+108
| | | | | | | | added corresponding unit tests
| * 224: Reworked IPATypeError class into raise_TypeError functionJason Gerard DeRose2008-08-292-53/+50
| |
| * 223: IPATypeError takes as first argument, has attributeJason Gerard DeRose2008-08-292-16/+42
| |
| * 222: Fixed broken assertion in IPATypeError; did more work on docstrings in sameJason Gerard DeRose2008-08-292-9/+18
| |
| * 221: Added errors.IPATypeError exception; added new test_errors.py module ↵Jason Gerard DeRose2008-08-292-0/+66
| | | | | | | | with corresponding unit tests
| * 220: Renamed Option2.validate_scalar() to Option2.__validate_scalar(); added ↵Jason Gerard DeRose2008-08-292-31/+124
| | | | | | | | Option2.normalize() method; added corresponding unit tests
| * 219: run-tests.bash now passes -v option to nosetests for verbose outputJason Gerard DeRose2008-08-291-1/+1
| |
| * 218: Finished unit tests for Option2.validate(), Option2.validate_scalar()Jason Gerard DeRose2008-08-283-10/+64
| |
| * 217: Started work on new Option2 class that is more declarative and doesn't ↵Jason Gerard DeRose2008-08-282-1/+65
| | | | | | | | require subclassing from Option
| * 216: Added ipa_types.Enum.validate() method; added corresponding unit testsJason Gerard DeRose2008-08-282-3/+21
| |
| * 215: Added basics of ipa_types.Enum class; added corresponding unit testsJason Gerard DeRose2008-08-282-0/+47
| |
| * 214: Added ipa_types.Bool.validate() method; added corresponding unit testsJason Gerard DeRose2008-08-282-0/+13
| |
| * 213: Added ipa_type.Bool class; added corresponding unit testsJason Gerard DeRose2008-08-282-0/+61
| |
| * 212: Type.__init__() now can also raise TypeError; added unit tests for ↵Jason Gerard DeRose2008-08-282-3/+21
| | | | | | | | Type.__init__()
| * 211: run-tests.bash now echos the number of versions the tests ran underJason Gerard DeRose2008-08-281-3/+5
| |
| * 210: Type.__init__() now takes the type as the first argument, does not use ↵Jason Gerard DeRose2008-08-282-17/+21
| | | | | | | | subclass attribute; updated Int, Unicode, and their unit tests accordingly
| * 209: Added Type.__call__() method; fleshed out Type.convert() method; added ↵Jason Gerard DeRose2008-08-282-3/+43
| | | | | | | | corresponding unit tests
| * 208: Made output of run-tests.bash a bit easier to read and also added ↵Jason Gerard DeRose2008-08-281-8/+20
| | | | | | | | python2.6 to versions tested
| * 207: Added Unicode.validate() method and corresponding unit testsJason Gerard DeRose2008-08-272-1/+32
| |
| * 206: Finished unit tests for Unicode.__init__()Jason Gerard DeRose2008-08-271-0/+31
| |
| * 205: Continued work on Unicode.__init__() and corresponding unit testsJason Gerard DeRose2008-08-272-8/+53
| |
| * 204: Fixed logic error in check_min_max(); started work on argument ↵Jason Gerard DeRose2008-08-272-17/+26
| | | | | | | | validation for Unicode
| * 203: Finished ipa_types.check_min_max() function; added corresponding unit ↵Jason Gerard DeRose2008-08-272-42/+67
| | | | | | | | tests; ipa_types.Int now uses check_min_max()
| * 202: Started work on type classes in ipa_types module; added corresponding ↵Jason Gerard DeRose2008-08-272-0/+213
| | | | | | | | unit tests
| * 201: Added new cli command 'console' that starts a custom interactive Python ↵Jason Gerard DeRose2008-08-271-1/+13
| | | | | | | | console
| * 200: Added plugins/override.py with an example of overriding a pluginJason Gerard DeRose2008-08-262-0/+34
| |
| * 199: Updated user_login and user_initials example plugins to use ↵Jason Gerard DeRose2008-08-261-12/+8
| | | | | | | | Option.default_from
| * 198: Renamed Command.default() to Command.get_default(); ↵Jason Gerard DeRose2008-08-262-14/+14
| | | | | | | | Command.get_default_iter() now correctly calls Option.get_default() instead of Option.default()
| * 197: Added new public.Option.get_default() method that calls ↵Jason Gerard DeRose2008-08-262-15/+29
| | | | | | | | Option.default_from() if it's a DefaultFrom instance, and otherwise returns Option.default (the static default value)
| * 196: DefaultFrom.__call__() now returns values from callback even if not ↵Jason Gerard DeRose2008-08-261-5/+8
| | | | | | | | basestring; small work on DefaultFrom docstrings