| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | Added title subcommand groups | Kevin Van Brunt | 2018-10-04 | 1 | -2/+2 | |
| |/ | ||||||
| * | Fixed issue introduced in the recent batch of changes that appended to ↵ | Kevin Van Brunt | 2018-10-04 | 1 | -2/+2 | |
| | | | | | | | history after running a command. This is to avoid out of order history that would result if a command made another call to onecmd(). | |||||
| * | Updated docstring | Kevin Van Brunt | 2018-10-03 | 1 | -2/+2 | |
| | | ||||||
| * | Merge pull request #564 from python-cmd2/stdsim_binary | Todd Leonhardt | 2018-10-03 | 2 | -12/+36 | |
| |\ | | | | | StdSim improvements for handling binary data | |||||
| | * | Updated docstring | Kevin Van Brunt | 2018-10-03 | 1 | -2/+2 | |
| | | | ||||||
| | * | Added unit tests for new methods of StdSim | Todd Leonhardt | 2018-10-03 | 1 | -0/+10 | |
| | | | ||||||
| | * | Made encode and error class members of StdSim | Kevin Van Brunt | 2018-10-03 | 1 | -20/+20 | |
| | | | ||||||
| | * | Fixed error where binary data was crashing getvalue. Added accessor methods ↵ | Kevin Van Brunt | 2018-10-03 | 1 | -13/+27 | |
| |/ | | | | for retrieving StdSim contents as bytes. | |||||
| * | Merge pull request #560 from python-cmd2/py_enhancements | Todd Leonhardt | 2018-10-03 | 4 | -74/+85 | |
| |\ | | | | | Py enhancements | |||||
| | * | Added unit test for valid case of calling is_valid_command() | Todd Leonhardt | 2018-10-03 | 1 | -6/+12 | |
| | | | ||||||
| | * | Tweaked some error strings | Kevin Van Brunt | 2018-10-03 | 1 | -2/+2 | |
| | | | ||||||
| | * | Added unit test for is_valid_command | Kevin Van Brunt | 2018-10-03 | 1 | -0/+26 | |
| | | | ||||||
| | * | Merge branch 'master' into py_enhancements | Todd Leonhardt | 2018-10-03 | 2 | -57/+68 | |
| | |\ | |/ |/| | ||||||
| * | | Merge pull request #563 from python-cmd2/help_summary | Todd Leonhardt | 2018-10-03 | 2 | -57/+68 | |
| |\ \ | | | | | | | Fixed argparse help summary when no docstring was provided | |||||
| | * | | Added unit test for categorized command without a docstring | Kevin Van Brunt | 2018-10-03 | 1 | -1/+7 | |
| | | | | ||||||
| | * | | Updated comment | Kevin Van Brunt | 2018-10-03 | 1 | -2/+2 | |
| | | | | ||||||
| | * | | Commands with categories will no longer show in the 'Undocumented commands' ↵ | Kevin Van Brunt | 2018-10-03 | 1 | -22/+32 | |
| | | | | | | | | | | | | | section | |||||
| | * | | Don't recognize help functions for argparse commands | Kevin Van Brunt | 2018-10-03 | 1 | -7/+7 | |
| | | | | ||||||
| | * | | Fixed argparse help summary when no docstring was provided | Kevin Van Brunt | 2018-10-03 | 1 | -33/+28 | |
| |/ / | ||||||
| | * | Returned cmd_echo default to False except when running a Python command at ↵ | Kevin Van Brunt | 2018-10-02 | 20 | -1/+21 | |
| | | | | | | | | | the CLI | |||||
| | * | Improved documentation | Kevin Van Brunt | 2018-10-02 | 1 | -3/+5 | |
| | | | ||||||
| | * | Don't worry about unquoting alias and macro names as they shouldn't be ↵ | Kevin Van Brunt | 2018-10-02 | 2 | -56/+10 | |
| | | | | | | | | | entered this way anyway | |||||
| | * | Default cmd_echo to True in PyscriptBridge so things like 'py app.help()' ↵ | Kevin Van Brunt | 2018-10-02 | 19 | -23/+5 | |
| | | | | | | | | | will show output | |||||
| | * | Changed PyscriptBridge.__getattr__ to raise Attribute error for non-commands | Kevin Van Brunt | 2018-10-02 | 1 | -2/+6 | |
| | | | ||||||
| | * | Changed default() to print the actual command run for unknown syntax errors. | Kevin Van Brunt | 2018-10-02 | 1 | -12/+6 | |
| | | | | | | | | | Fixed default() to run the resolved command instead of raw when default_to_shell is True. | |||||
| | * | Added echo parameter for calling commands from Pyscript | Kevin Van Brunt | 2018-10-02 | 2 | -8/+31 | |
| |/ | | | | Documented py command's parsing limitations | |||||
| * | Merge pull request #559 from python-cmd2/self | Todd Leonhardt | 2018-10-01 | 2 | -1/+20 | |
| |\ | | | | | Remove self from pystate if locals_in_py is False | |||||
| | * | Remove self from pystate if locals_in_py is False | Kevin Van Brunt | 2018-10-01 | 2 | -1/+20 | |
| |/ | ||||||
| * | Merge pull request #556 from python-cmd2/preserve_quotes | Todd Leonhardt | 2018-10-01 | 2 | -4/+11 | |
| |\ | | | | | Preserving quotes for do_py input | |||||
| | * | Preserving quotes for do_py input | Kevin Van Brunt | 2018-10-01 | 2 | -4/+11 | |
| |/ | ||||||
| * | Merge pull request #555 from python-cmd2/transcript_fixes | Todd Leonhardt | 2018-09-30 | 6 | -4/+28 | |
| |\ | | | | | Transcript fixes | |||||
| | * | Fixed transcript testing bug where last command in transcript has no ↵ | Todd Leonhardt | 2018-09-30 | 5 | -2/+14 | |
| | | | | | | | | | | | | | | | expected output Also: - Added unit test for this specific case | |||||
| | * | Merge branch 'master' into transcript_fixes | Todd Leonhardt | 2018-09-30 | 2 | -11/+6 | |
| | |\ | |/ |/| | ||||||
| * | | Merge pull request #554 from python-cmd2/cleanup | Todd Leonhardt | 2018-09-30 | 2 | -11/+6 | |
| |\ \ | | | | | | | Small refactoring | |||||
| | * | | Change TBD release date of 0.9.5 to be in October 2018 | Todd Leonhardt | 2018-09-30 | 1 | -1/+1 | |
| | | | | ||||||
| | * | | Small refactoring | Kevin Van Brunt | 2018-09-30 | 1 | -10/+5 | |
| |/ / | ||||||
| | * | Merged master into transcript_fixes branch and resolved conflicts | Todd Leonhardt | 2018-09-30 | 49 | -1245/+3244 | |
| | |\ | |/ |/| | ||||||
| * | | Merge pull request #553 from python-cmd2/argparse_conversion | Todd Leonhardt | 2018-09-28 | 8 | -260/+324 | |
| |\ \ | | | | | | | Argparse conversion | |||||
| | * | | Added more code coverage with unit tests | Kevin Van Brunt | 2018-09-28 | 2 | -0/+21 | |
| | | | | ||||||
| | * | | Added unit test for onchange_hook | Kevin Van Brunt | 2018-09-28 | 1 | -0/+24 | |
| | | | | ||||||
| | * | | Added more code coverage | Kevin Van Brunt | 2018-09-28 | 1 | -0/+9 | |
| | | | | ||||||
| | * | | Addressing code review comments | Kevin Van Brunt | 2018-09-28 | 1 | -4/+4 | |
| | | | | ||||||
| | * | | Added that we converted everything to argparse | Kevin Van Brunt | 2018-09-28 | 1 | -1/+1 | |
| | | | | ||||||
| | * | | Merge branch 'master' into argparse_conversion | Todd Leonhardt | 2018-09-28 | 0 | -0/+0 | |
| | |\ \ | |/ / |/| | | ||||||
| * | | | Merge pull request #550 from python-cmd2/macro | Todd Leonhardt | 2018-09-28 | 21 | -321/+1060 | |
| |\ \ \ | | | | | | | | | Added macros | |||||
| | * | | | Made hooks.py executable | Todd Leonhardt | 2018-09-28 | 1 | -0/+0 | |
| | | | | | ||||||
| | * | | | Updated abbreviation example to use new cmd2 function to resolve command ↵ | Kevin Van Brunt | 2018-09-28 | 1 | -5/+5 | |
| | | | | | | | | | | | | | | | | | functions | |||||
| | * | | | Refactored functions to use cmd2.cmd_func() | Kevin Van Brunt | 2018-09-28 | 1 | -15/+15 | |
| | | | | | ||||||
| | | * | | Made hooks.py executable | Todd Leonhardt | 2018-09-28 | 1 | -0/+0 | |
| | | | | | ||||||
| | | * | | Updated abbreviation example to use new cmd2 function to resolve command ↵ | Kevin Van Brunt | 2018-09-28 | 1 | -5/+5 | |
| | | | | | | | | | | | | | | | | | functions | |||||
